@ngrok/mantle 0.19.0 → 0.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/hover-card.d.ts
CHANGED
|
@@ -8,6 +8,13 @@ declare const HoverCard: {
|
|
|
8
8
|
displayName: string;
|
|
9
9
|
};
|
|
10
10
|
declare const HoverCardTrigger: react.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
11
|
+
/**
|
|
12
|
+
* The portal for a HoverCard. Should be rendered as a child of the `HoverCard` component.
|
|
13
|
+
* Renders a portal that the `HoverCardContent` is rendered into.
|
|
14
|
+
*
|
|
15
|
+
* You likely don't need to use this component directly, as it is used internally by the `HoverCardContent` component.
|
|
16
|
+
*/
|
|
17
|
+
declare const HoverCardPortal: react.FC<HoverCardPrimitive.HoverCardPortalProps>;
|
|
11
18
|
declare const HoverCardContent: react.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
12
19
|
|
|
13
|
-
export { HoverCard, HoverCardContent, HoverCardTrigger };
|
|
20
|
+
export { HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger };
|
package/dist/hover-card.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a}from"./chunk-EW5CFGXT.js";import*as
|
|
1
|
+
import{a as d}from"./chunk-EW5CFGXT.js";import*as o from"@radix-ui/react-hover-card";import{forwardRef as f}from"react";import{jsx as a}from"react/jsx-runtime";var n=({closeDelay:e=300,openDelay:t=100,...r})=>a(o.Root,{closeDelay:e,openDelay:t,...r});n.displayName="HoverCard";var l=o.Trigger,m=o.Portal,s=f(({className:e,onClick:t,align:r="center",sideOffset:p=4,...v},C)=>a(m,{children:a(o.Content,{ref:C,align:r,sideOffset:p,className:d("bg-popover border-popover z-50 w-64 rounded-md border p-4 shadow-md outline-none","data-state-open:animate-in data-state-closed:animate-out data-state-closed:fade-out-0 data-state-open:fade-in-0 data-state-closed:zoom-out-95 data-state-open:zoom-in-95 data-side-bottom:slide-in-from-top-2 data-side-left:slide-in-from-right-2 data-side-right:slide-in-from-left-2 data-side-top:slide-in-from-bottom-2",e),onClick:i=>{i.stopPropagation(),t?.(i)},...v})}));s.displayName=o.Content.displayName;export{n as HoverCard,s as HoverCardContent,m as HoverCardPortal,l as HoverCardTrigger};
|
|
2
2
|
//# sourceMappingURL=hover-card.js.map
|
package/dist/hover-card.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/components/hover-card/hover-card.tsx"],"sourcesContent":["\"use client\";\n\nimport * as HoverCardPrimitive from \"@radix-ui/react-hover-card\";\nimport { forwardRef } from \"react\";\nimport type { ComponentPropsWithoutRef, ElementRef } from \"react\";\nimport { cx } from \"../../utils/cx/cx.js\";\n\nconst HoverCard = ({\n\tcloseDelay = 300,\n\topenDelay = 100,\n\t...props\n}: ComponentPropsWithoutRef<typeof HoverCardPrimitive.Root>) => (\n\t<HoverCardPrimitive.Root closeDelay={closeDelay} openDelay={openDelay} {...props} />\n);\nHoverCard.displayName = \"HoverCard\";\n\nconst HoverCardTrigger = HoverCardPrimitive.Trigger;\n\nconst HoverCardContent = forwardRef<\n\tElementRef<typeof HoverCardPrimitive.Content>,\n\tComponentPropsWithoutRef<typeof HoverCardPrimitive.Content>\n>(({ className, align = \"center\", sideOffset = 4, ...props }, ref) => (\n\t<HoverCardPrimitive.Content\n\t\tref={ref}\n\t\talign={align}\n\t\tsideOffset={sideOffset}\n\t\tclassName={cx(\n\t\t\t\"bg-popover border-popover z-50 w-64 rounded-md border p-4 shadow-md outline-none\",\n\t\t\t\"data-state-open:animate-in data-state-closed:animate-out data-state-closed:fade-out-0 data-state-open:fade-in-0 data-state-closed:zoom-out-95 data-state-open:zoom-in-95 data-side-bottom:slide-in-from-top-2 data-side-left:slide-in-from-right-2 data-side-right:slide-in-from-left-2 data-side-top:slide-in-from-bottom-2\",\n\t\t\tclassName,\n\t\t)}\n\t\t{...props}\n\t/>\n));\nHoverCardContent.displayName = HoverCardPrimitive.Content.displayName;\n\nexport {\n\t//,\n\tHoverCard,\n\
|
|
1
|
+
{"version":3,"sources":["../src/components/hover-card/hover-card.tsx"],"sourcesContent":["\"use client\";\n\nimport * as HoverCardPrimitive from \"@radix-ui/react-hover-card\";\nimport { forwardRef } from \"react\";\nimport type { ComponentPropsWithoutRef, ElementRef } from \"react\";\nimport { cx } from \"../../utils/cx/cx.js\";\n\nconst HoverCard = ({\n\tcloseDelay = 300,\n\topenDelay = 100,\n\t...props\n}: ComponentPropsWithoutRef<typeof HoverCardPrimitive.Root>) => (\n\t<HoverCardPrimitive.Root closeDelay={closeDelay} openDelay={openDelay} {...props} />\n);\nHoverCard.displayName = \"HoverCard\";\n\nconst HoverCardTrigger = HoverCardPrimitive.Trigger;\n\n/**\n * The portal for a HoverCard. Should be rendered as a child of the `HoverCard` component.\n * Renders a portal that the `HoverCardContent` is rendered into.\n *\n * You likely don't need to use this component directly, as it is used internally by the `HoverCardContent` component.\n */\nconst HoverCardPortal = HoverCardPrimitive.Portal;\n\nconst HoverCardContent = forwardRef<\n\tElementRef<typeof HoverCardPrimitive.Content>,\n\tComponentPropsWithoutRef<typeof HoverCardPrimitive.Content>\n>(({ className, onClick, align = \"center\", sideOffset = 4, ...props }, ref) => (\n\t<HoverCardPortal>\n\t\t<HoverCardPrimitive.Content\n\t\t\tref={ref}\n\t\t\talign={align}\n\t\t\tsideOffset={sideOffset}\n\t\t\tclassName={cx(\n\t\t\t\t\"bg-popover border-popover z-50 w-64 rounded-md border p-4 shadow-md outline-none\",\n\t\t\t\t\"data-state-open:animate-in data-state-closed:animate-out data-state-closed:fade-out-0 data-state-open:fade-in-0 data-state-closed:zoom-out-95 data-state-open:zoom-in-95 data-side-bottom:slide-in-from-top-2 data-side-left:slide-in-from-right-2 data-side-right:slide-in-from-left-2 data-side-top:slide-in-from-bottom-2\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tonClick={(event) => {\n\t\t\t\t/**\n\t\t\t\t * Prevent the click event from propagating up to parent/containing elements\n\t\t\t\t */\n\t\t\t\tevent.stopPropagation();\n\t\t\t\tonClick?.(event);\n\t\t\t}}\n\t\t\t{...props}\n\t\t/>\n\t</HoverCardPortal>\n));\nHoverCardContent.displayName = HoverCardPrimitive.Content.displayName;\n\nexport {\n\t//,\n\tHoverCard,\n\tHoverCardContent,\n\tHoverCardPortal,\n\tHoverCardTrigger,\n};\n"],"mappings":"wCAEA,UAAYA,MAAwB,6BACpC,OAAS,cAAAC,MAAkB,QAS1B,cAAAC,MAAA,oBALD,IAAMC,EAAY,CAAC,CAClB,WAAAC,EAAa,IACb,UAAAC,EAAY,IACZ,GAAGC,CACJ,IACCJ,EAAoB,OAAnB,CAAwB,WAAYE,EAAY,UAAWC,EAAY,GAAGC,EAAO,EAEnFH,EAAU,YAAc,YAExB,IAAMI,EAAsC,UAQtCC,EAAqC,SAErCC,EAAmBC,EAGvB,CAAC,CAAE,UAAAC,EAAW,QAAAC,EAAS,MAAAC,EAAQ,SAAU,WAAAC,EAAa,EAAG,GAAGR,CAAM,EAAGS,IACtEb,EAACM,EAAA,CACA,SAAAN,EAAoB,UAAnB,CACA,IAAKa,EACL,MAAOF,EACP,WAAYC,EACZ,UAAWE,EACV,mFACA,+TACAL,CACD,EACA,QAAUM,GAAU,CAInBA,EAAM,gBAAgB,EACtBL,IAAUK,CAAK,CAChB,EACC,GAAGX,EACL,EACD,CACA,EACDG,EAAiB,YAAiC,UAAQ","names":["HoverCardPrimitive","forwardRef","jsx","HoverCard","closeDelay","openDelay","props","HoverCardTrigger","HoverCardPortal","HoverCardContent","forwardRef","className","onClick","align","sideOffset","ref","cx","event"]}
|
package/dist/tailwind-preset.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var O=Object.create;var t=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var F=Object.getOwnPropertyNames;var D=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var S=(a,l)=>{for(var r in l)t(a,r,{get:l[r],enumerable:!0})},c=(a,l,r,e)=>{if(l&&typeof l=="object"||typeof l=="function")for(let s of F(l))!M.call(a,s)&&s!==r&&t(a,s,{get:()=>l[s],enumerable:!(e=C(l,s))||e.enumerable});return a};var h=(a,l,r)=>(r=a!=null?O(D(a)):{},c(l||!a||!a.__esModule?t(r,"default",{value:a,enumerable:!0}):r,a)),N=a=>c(t({},"__esModule",{value:!0}),a);var E={};S(E,{mantlePreset:()=>I,resolveMantleContentGlob:()=>V});module.exports=N(E);var A=h(require("tailwindcss-animate"),1),n=h(require("tailwindcss/defaultTheme.js"),1),i=h(require("tailwindcss/plugin.js"),1);var d=h(require("tailwindcss/plugin.js"),1);function o(a){return Object.fromEntries(Object.entries(a).filter(([l])=>l!=="DEFAULT"))}function p(a,l){let r={},{parentKey:e="",separator:s="-"}=l??{};for(let v in a)if(a.hasOwnProperty(v)){let u=e?`${e}${s}${v}`:v;typeof a[v]=="object"&&a[v]!=null&&!Array.isArray(a[v])?Object.assign(r,p(a[v],{parentKey:u})):r[u]=a[v]}return r}var g=(0,d.default)(a=>{a.matchUtilities({"animation-duration":l=>({animationDuration:l})},{values:o(a.theme("animationDuration"))})});var m=h(require("tailwindcss/plugin.js"),1),f=(0,m.default)(a=>{a.addVariant("aria-enabled",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:not([aria-disabled]).${a.e(`aria-enabled${r}${e}`)}`)})});var x=h(require("tailwindcss/plugin.js"),1),w=(0,x.default)(a=>{a.addVariant("firefox",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"supports",params:"(-moz-appearance:none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`firefox${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});var b=h(require("tailwindcss/plugin.js"),1);var y=(0,b.default)(a=>{a.matchUtilities({"stop-opacity":l=>({"stop-opacity":l})},{values:o(a.theme("opacity")),respectImportant:!0,respectPrefix:!0}),a.matchUtilities({"stop-color":l=>({"stop-color":l})},{values:p(a.theme("colors")),respectImportant:!0,respectPrefix:!0,type:"color"})});var P=h(require("tailwindcss/plugin.js"),1),k=(0,P.default)(a=>{a.addVariant("pointer-coarse",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: coarse)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-coarse${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-fine",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: fine)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-fine${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-hover",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: hover)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-hover${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});var $=h(require("tailwindcss/plugin.js"),1),R=(0,$.default)(a=>{a.addVariant("where",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:where(&.${a.e(`where${r}${e}`)})`)})});var z={inherit:"inherit",current:"currentColor",transparent:"transparent",white:"hsl(var(--white) / <alpha-value>)",black:"hsl(var(--black) / <alpha-value>)",gray:{50:"hsl(var(--gray-50) / <alpha-value>)",100:"hsl(var(--gray-100) / <alpha-value>)",200:"hsl(var(--gray-200) / <alpha-value>)",300:"hsl(var(--gray-300) / <alpha-value>)",400:"hsl(var(--gray-400) / <alpha-value>)",500:"hsl(var(--gray-500) / <alpha-value>)",600:"hsl(var(--gray-600) / <alpha-value>)",700:"hsl(var(--gray-700) / <alpha-value>)",800:"hsl(var(--gray-800) / <alpha-value>)",900:"hsl(var(--gray-900) / <alpha-value>)",950:"hsl(var(--gray-950) / <alpha-value>)"},red:{50:"hsl(var(--red-50) / <alpha-value>)",100:"hsl(var(--red-100) / <alpha-value>)",200:"hsl(var(--red-200) / <alpha-value>)",300:"hsl(var(--red-300) / <alpha-value>)",400:"hsl(var(--red-400) / <alpha-value>)",500:"hsl(var(--red-500) / <alpha-value>)",600:"hsl(var(--red-600) / <alpha-value>)",700:"hsl(var(--red-700) / <alpha-value>)",800:"hsl(var(--red-800) / <alpha-value>)",900:"hsl(var(--red-900) / <alpha-value>)",950:"hsl(var(--red-950) / <alpha-value>)"},orange:{50:"hsl(var(--orange-50) / <alpha-value>)",100:"hsl(var(--orange-100) / <alpha-value>)",200:"hsl(var(--orange-200) / <alpha-value>)",300:"hsl(var(--orange-300) / <alpha-value>)",400:"hsl(var(--orange-400) / <alpha-value>)",500:"hsl(var(--orange-500) / <alpha-value>)",600:"hsl(var(--orange-600) / <alpha-value>)",700:"hsl(var(--orange-700) / <alpha-value>)",800:"hsl(var(--orange-800) / <alpha-value>)",900:"hsl(var(--orange-900) / <alpha-value>)",950:"hsl(var(--orange-950) / <alpha-value>)"},amber:{50:"hsl(var(--amber-50) / <alpha-value>)",100:"hsl(var(--amber-100) / <alpha-value>)",200:"hsl(var(--amber-200) / <alpha-value>)",300:"hsl(var(--amber-300) / <alpha-value>)",400:"hsl(var(--amber-400) / <alpha-value>)",500:"hsl(var(--amber-500) / <alpha-value>)",600:"hsl(var(--amber-600) / <alpha-value>)",700:"hsl(var(--amber-700) / <alpha-value>)",800:"hsl(var(--amber-800) / <alpha-value>)",900:"hsl(var(--amber-900) / <alpha-value>)",950:"hsl(var(--amber-950) / <alpha-value>)"},yellow:{50:"hsl(var(--yellow-50) / <alpha-value>)",100:"hsl(var(--yellow-100) / <alpha-value>)",200:"hsl(var(--yellow-200) / <alpha-value>)",300:"hsl(var(--yellow-300) / <alpha-value>)",400:"hsl(var(--yellow-400) / <alpha-value>)",500:"hsl(var(--yellow-500) / <alpha-value>)",600:"hsl(var(--yellow-600) / <alpha-value>)",700:"hsl(var(--yellow-700) / <alpha-value>)",800:"hsl(var(--yellow-800) / <alpha-value>)",900:"hsl(var(--yellow-900) / <alpha-value>)",950:"hsl(var(--yellow-950) / <alpha-value>)"},lime:{50:"hsl(var(--lime-50) / <alpha-value>)",100:"hsl(var(--lime-100) / <alpha-value>)",200:"hsl(var(--lime-200) / <alpha-value>)",300:"hsl(var(--lime-300) / <alpha-value>)",400:"hsl(var(--lime-400) / <alpha-value>)",500:"hsl(var(--lime-500) / <alpha-value>)",600:"hsl(var(--lime-600) / <alpha-value>)",700:"hsl(var(--lime-700) / <alpha-value>)",800:"hsl(var(--lime-800) / <alpha-value>)",900:"hsl(var(--lime-900) / <alpha-value>)",950:"hsl(var(--lime-950) / <alpha-value>)"},green:{50:"hsl(var(--green-50) / <alpha-value>)",100:"hsl(var(--green-100) / <alpha-value>)",200:"hsl(var(--green-200) / <alpha-value>)",300:"hsl(var(--green-300) / <alpha-value>)",400:"hsl(var(--green-400) / <alpha-value>)",500:"hsl(var(--green-500) / <alpha-value>)",600:"hsl(var(--green-600) / <alpha-value>)",700:"hsl(var(--green-700) / <alpha-value>)",800:"hsl(var(--green-800) / <alpha-value>)",900:"hsl(var(--green-900) / <alpha-value>)",950:"hsl(var(--green-950) / <alpha-value>)"},emerald:{50:"hsl(var(--emerald-50) / <alpha-value>)",100:"hsl(var(--emerald-100) / <alpha-value>)",200:"hsl(var(--emerald-200) / <alpha-value>)",300:"hsl(var(--emerald-300) / <alpha-value>)",400:"hsl(var(--emerald-400) / <alpha-value>)",500:"hsl(var(--emerald-500) / <alpha-value>)",600:"hsl(var(--emerald-600) / <alpha-value>)",700:"hsl(var(--emerald-700) / <alpha-value>)",800:"hsl(var(--emerald-800) / <alpha-value>)",900:"hsl(var(--emerald-900) / <alpha-value>)",950:"hsl(var(--emerald-950) / <alpha-value>)"},teal:{50:"hsl(var(--teal-50) / <alpha-value>)",100:"hsl(var(--teal-100) / <alpha-value>)",200:"hsl(var(--teal-200) / <alpha-value>)",300:"hsl(var(--teal-300) / <alpha-value>)",400:"hsl(var(--teal-400) / <alpha-value>)",500:"hsl(var(--teal-500) / <alpha-value>)",600:"hsl(var(--teal-600) / <alpha-value>)",700:"hsl(var(--teal-700) / <alpha-value>)",800:"hsl(var(--teal-800) / <alpha-value>)",900:"hsl(var(--teal-900) / <alpha-value>)",950:"hsl(var(--teal-950) / <alpha-value>)"},cyan:{50:"hsl(var(--cyan-50) / <alpha-value>)",100:"hsl(var(--cyan-100) / <alpha-value>)",200:"hsl(var(--cyan-200) / <alpha-value>)",300:"hsl(var(--cyan-300) / <alpha-value>)",400:"hsl(var(--cyan-400) / <alpha-value>)",500:"hsl(var(--cyan-500) / <alpha-value>)",600:"hsl(var(--cyan-600) / <alpha-value>)",700:"hsl(var(--cyan-700) / <alpha-value>)",800:"hsl(var(--cyan-800) / <alpha-value>)",900:"hsl(var(--cyan-900) / <alpha-value>)",950:"hsl(var(--cyan-950) / <alpha-value>)"},sky:{50:"hsl(var(--sky-50) / <alpha-value>)",100:"hsl(var(--sky-100) / <alpha-value>)",200:"hsl(var(--sky-200) / <alpha-value>)",300:"hsl(var(--sky-300) / <alpha-value>)",400:"hsl(var(--sky-400) / <alpha-value>)",500:"hsl(var(--sky-500) / <alpha-value>)",600:"hsl(var(--sky-600) / <alpha-value>)",700:"hsl(var(--sky-700) / <alpha-value>)",800:"hsl(var(--sky-800) / <alpha-value>)",900:"hsl(var(--sky-900) / <alpha-value>)",950:"hsl(var(--sky-950) / <alpha-value>)"},blue:{50:"hsl(var(--blue-50) / <alpha-value>)",100:"hsl(var(--blue-100) / <alpha-value>)",200:"hsl(var(--blue-200) / <alpha-value>)",300:"hsl(var(--blue-300) / <alpha-value>)",400:"hsl(var(--blue-400) / <alpha-value>)",500:"hsl(var(--blue-500) / <alpha-value>)",600:"hsl(var(--blue-600) / <alpha-value>)",700:"hsl(var(--blue-700) / <alpha-value>)",800:"hsl(var(--blue-800) / <alpha-value>)",900:"hsl(var(--blue-900) / <alpha-value>)",950:"hsl(var(--blue-950) / <alpha-value>)"},indigo:{50:"hsl(var(--indigo-50) / <alpha-value>)",100:"hsl(var(--indigo-100) / <alpha-value>)",200:"hsl(var(--indigo-200) / <alpha-value>)",300:"hsl(var(--indigo-300) / <alpha-value>)",400:"hsl(var(--indigo-400) / <alpha-value>)",500:"hsl(var(--indigo-500) / <alpha-value>)",600:"hsl(var(--indigo-600) / <alpha-value>)",700:"hsl(var(--indigo-700) / <alpha-value>)",800:"hsl(var(--indigo-800) / <alpha-value>)",900:"hsl(var(--indigo-900) / <alpha-value>)",950:"hsl(var(--indigo-950) / <alpha-value>)"},violet:{50:"hsl(var(--violet-50) / <alpha-value>)",100:"hsl(var(--violet-100) / <alpha-value>)",200:"hsl(var(--violet-200) / <alpha-value>)",300:"hsl(var(--violet-300) / <alpha-value>)",400:"hsl(var(--violet-400) / <alpha-value>)",500:"hsl(var(--violet-500) / <alpha-value>)",600:"hsl(var(--violet-600) / <alpha-value>)",700:"hsl(var(--violet-700) / <alpha-value>)",800:"hsl(var(--violet-800) / <alpha-value>)",900:"hsl(var(--violet-900) / <alpha-value>)",950:"hsl(var(--violet-950) / <alpha-value>)"},purple:{50:"hsl(var(--purple-50) / <alpha-value>)",100:"hsl(var(--purple-100) / <alpha-value>)",200:"hsl(var(--purple-200) / <alpha-value>)",300:"hsl(var(--purple-300) / <alpha-value>)",400:"hsl(var(--purple-400) / <alpha-value>)",500:"hsl(var(--purple-500) / <alpha-value>)",600:"hsl(var(--purple-600) / <alpha-value>)",700:"hsl(var(--purple-700) / <alpha-value>)",800:"hsl(var(--purple-800) / <alpha-value>)",900:"hsl(var(--purple-900) / <alpha-value>)",950:"hsl(var(--purple-950) / <alpha-value>)"},fuchsia:{50:"hsl(var(--fuchsia-50) / <alpha-value>)",100:"hsl(var(--fuchsia-100) / <alpha-value>)",200:"hsl(var(--fuchsia-200) / <alpha-value>)",300:"hsl(var(--fuchsia-300) / <alpha-value>)",400:"hsl(var(--fuchsia-400) / <alpha-value>)",500:"hsl(var(--fuchsia-500) / <alpha-value>)",600:"hsl(var(--fuchsia-600) / <alpha-value>)",700:"hsl(var(--fuchsia-700) / <alpha-value>)",800:"hsl(var(--fuchsia-800) / <alpha-value>)",900:"hsl(var(--fuchsia-900) / <alpha-value>)",950:"hsl(var(--fuchsia-950) / <alpha-value>)"},pink:{50:"hsl(var(--pink-50) / <alpha-value>)",100:"hsl(var(--pink-100) / <alpha-value>)",200:"hsl(var(--pink-200) / <alpha-value>)",300:"hsl(var(--pink-300) / <alpha-value>)",400:"hsl(var(--pink-400) / <alpha-value>)",500:"hsl(var(--pink-500) / <alpha-value>)",600:"hsl(var(--pink-600) / <alpha-value>)",700:"hsl(var(--pink-700) / <alpha-value>)",800:"hsl(var(--pink-800) / <alpha-value>)",900:"hsl(var(--pink-900) / <alpha-value>)",950:"hsl(var(--pink-950) / <alpha-value>)"},rose:{50:"hsl(var(--rose-50) / <alpha-value>)",100:"hsl(var(--rose-100) / <alpha-value>)",200:"hsl(var(--rose-200) / <alpha-value>)",300:"hsl(var(--rose-300) / <alpha-value>)",400:"hsl(var(--rose-400) / <alpha-value>)",500:"hsl(var(--rose-500) / <alpha-value>)",600:"hsl(var(--rose-600) / <alpha-value>)",700:"hsl(var(--rose-700) / <alpha-value>)",800:"hsl(var(--rose-800) / <alpha-value>)",900:"hsl(var(--rose-900) / <alpha-value>)",950:"hsl(var(--rose-950) / <alpha-value>)"},neutral:{50:"hsl(var(--neutral-50) / <alpha-value>)",100:"hsl(var(--neutral-100) / <alpha-value>)",200:"hsl(var(--neutral-200) / <alpha-value>)",300:"hsl(var(--neutral-300) / <alpha-value>)",400:"hsl(var(--neutral-400) / <alpha-value>)",500:"hsl(var(--neutral-500) / <alpha-value>)",600:"hsl(var(--neutral-600) / <alpha-value>)",700:"hsl(var(--neutral-700) / <alpha-value>)",800:"hsl(var(--neutral-800) / <alpha-value>)",900:"hsl(var(--neutral-900) / <alpha-value>)",950:"hsl(var(--neutral-950) / <alpha-value>)"},accent:{50:"hsl(var(--accent-50) / <alpha-value>)",100:"hsl(var(--accent-100) / <alpha-value>)",200:"hsl(var(--accent-200) / <alpha-value>)",300:"hsl(var(--accent-300) / <alpha-value>)",400:"hsl(var(--accent-400) / <alpha-value>)",500:"hsl(var(--accent-500) / <alpha-value>)",600:"hsl(var(--accent-600) / <alpha-value>)",700:"hsl(var(--accent-700) / <alpha-value>)",800:"hsl(var(--accent-800) / <alpha-value>)",900:"hsl(var(--accent-900) / <alpha-value>)",950:"hsl(var(--accent-950) / <alpha-value>)"},danger:{50:"hsl(var(--danger-50) / <alpha-value>)",100:"hsl(var(--danger-100) / <alpha-value>)",200:"hsl(var(--danger-200) / <alpha-value>)",300:"hsl(var(--danger-300) / <alpha-value>)",400:"hsl(var(--danger-400) / <alpha-value>)",500:"hsl(var(--danger-500) / <alpha-value>)",600:"hsl(var(--danger-600) / <alpha-value>)",700:"hsl(var(--danger-700) / <alpha-value>)",800:"hsl(var(--danger-800) / <alpha-value>)",900:"hsl(var(--danger-900) / <alpha-value>)",950:"hsl(var(--danger-950) / <alpha-value>)"},warning:{50:"hsl(var(--warning-50) / <alpha-value>)",100:"hsl(var(--warning-100) / <alpha-value>)",200:"hsl(var(--warning-200) / <alpha-value>)",300:"hsl(var(--warning-300) / <alpha-value>)",400:"hsl(var(--warning-400) / <alpha-value>)",500:"hsl(var(--warning-500) / <alpha-value>)",600:"hsl(var(--warning-600) / <alpha-value>)",700:"hsl(var(--warning-700) / <alpha-value>)",800:"hsl(var(--warning-800) / <alpha-value>)",900:"hsl(var(--warning-900) / <alpha-value>)",950:"hsl(var(--warning-950) / <alpha-value>)"},success:{50:"hsl(var(--success-50) / <alpha-value>)",100:"hsl(var(--success-100) / <alpha-value>)",200:"hsl(var(--success-200) / <alpha-value>)",300:"hsl(var(--success-300) / <alpha-value>)",400:"hsl(var(--success-400) / <alpha-value>)",500:"hsl(var(--success-500) / <alpha-value>)",600:"hsl(var(--success-600) / <alpha-value>)",700:"hsl(var(--success-700) / <alpha-value>)",800:"hsl(var(--success-800) / <alpha-value>)",900:"hsl(var(--success-900) / <alpha-value>)",950:"hsl(var(--success-950) / <alpha-value>)"}},I={content:[],darkMode:"class",theme:{colors:z,container:{center:!0,padding:"2rem",screens:{"2xl":"1400px"}},extend:{animation:{"accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out"},aria:{collapsed:'expanded="false"',invalid:'invalid="true"',unchecked:'checked="false"'},backgroundImage:{"checked-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e")`,"indeterminate-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e")`},boxShadow:{sm:"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))",DEFAULT:"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))",md:"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))",lg:"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))",xl:"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))","2xl":"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))",inner:"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))"},backgroundColor:{base:"hsl(var(--bg-base))",card:"hsl(var(--bg-card))",dialog:"hsl(var(--bg-dialog))",form:"hsl(var(--bg-form))",overlay:"hsl(var(--bg-overlay))",popover:"hsl(var(--bg-popover))",tooltip:"hsl(var(--bg-tooltip))","base-hover":"hsl(var(--bg-base-hover))","card-hover":"hsl(var(--bg-card-hover))","filled-accent-active":"hsl(var(--bg-filled-accent-active))","filled-accent-hover":"hsl(var(--bg-filled-accent-hover))","filled-accent":"hsl(var(--bg-filled-accent))","filled-danger-active":"hsl(var(--bg-filled-danger-active))","filled-danger-hover":"hsl(var(--bg-filled-danger-hover))","filled-danger":"hsl(var(--bg-filled-danger))","filled-neutral-active":"hsl(var(--bg-filled-neutral-active))","filled-neutral-hover":"hsl(var(--bg-filled-neutral-hover))","filled-neutral":"hsl(var(--bg-filled-neutral))","filled-success-active":"hsl(var(--bg-filled-success-active))","filled-success-hover":"hsl(var(--bg-filled-success-hover))","filled-success":"hsl(var(--bg-filled-success))","filled-warning-active":"hsl(var(--bg-filled-warning-active))","filled-warning-hover":"hsl(var(--bg-filled-warning-hover))","filled-warning":"hsl(var(--bg-filled-warning))","form-active":"hsl(var(--bg-form-active))","form-hover":"hsl(var(--bg-form-hover))","popover-hover":"hsl(var(--bg-popover-hover))"},textColor:{body:"hsl(var(--text-body))",muted:"hsl(var(--text-muted))",placeholder:"hsl(var(--text-placeholder))",strong:"hsl(var(--text-strong))",tooltip:"hsl(var(--text-tooltip))","on-filled":"hsl(var(--text-on-filled))"},borderColor:{base:"hsl(var(--border-base))",card:"hsl(var(--border-card))",dialog:"hsl(var(--border-dialog))",form:"hsl(var(--border-form))",popover:"hsl(var(--border-popover))","base-muted":"hsl(var(--border-base-muted))","card-muted":"hsl(var(--border-card-muted))","dialog-muted":"hsl(var(--border-dialog-muted))","popover-muted":"hsl(var(--border-popover-muted))"},ringColor:{"focus-accent":"hsl(var(--ring-focus-accent))","focus-danger":"hsl(var(--ring-focus-danger))","focus-neutral":"hsl(var(--ring-focus-neutral))","focus-success":"hsl(var(--ring-focus-success))","focus-warning":"hsl(var(--ring-focus-warning))"},cursor:{inherit:"inherit",initial:"initial"},data:{"active-item":"active-item","drag-over":'drag-over="true"',disabled:"disabled",highlighted:"highlighted","orientation-horizontal":'orientation="horizontal"',"orientation-vertical":'orientation="vertical"',"side-bottom":'side="bottom"',"side-left":'side="left"',"side-right":'side="right"',"side-top":'side="top"',"state-active":'state~="active"',"state-checked":'state~="checked"',"state-closed":'state~="closed"',"state-idle":'state~="idle"',"state-inactive":'state~="inactive"',"state-indeterminate":'state~="indeterminate"',"state-open":'state~="open"',"state-pending":'state~="pending"',"state-selected":'state~="selected"',"state-submitting":'state~="submitting"',"state-unchecked":'state~="unchecked"',"validation-error":'validation="error"',"validation-success":'validation="success"',"validation-warning":'validation="warning"'},fontFamily:{sans:["EuclidSquare",...n.default.fontFamily.sans],mono:["IBMPlexMono",...n.default.fontFamily.mono],body:["Nunito Sans",...n.default.fontFamily.sans]},fontSize:{"size-inherit":"inherit",mono:["0.8125rem","1.25"]},fontWeight:{initial:"initial"},keyframes:{"accordion-down":{from:{height:"0"},to:{height:"var(--radix-accordion-content-height)"}},"accordion-up":{from:{height:"var(--radix-accordion-content-height)"},to:{height:"0"}},spin:{from:{transform:"rotate(var(--spin-start-deg, 0))"},to:{transform:"rotate(var(--spin-end-deg, 360deg))"}}},lineHeight:{0:"0",initial:"initial"},screens:{xs:"480px"},spacing:{"1.25":"0.3125rem"},transitionProperty:{"max-height":"max-height"},zIndex:{1:"1",max:"2147483647"}}},plugins:[g,f,w,y,k,A.default,R,(0,i.default)(function({addVariant:a}){a("dark-high-contrast",[":is(.dark-high-contrast &)"]),a("high-contrast",[":is(.light-high-contrast &)"])}),(0,i.default)(function({addVariant:a}){a("not-disabled",["&:not(:disabled)"]),a("not-aria-disabled",['&:not(&[aria-disabled="true"])'])})]};var j=h(require("path"),1);function V(a){try{let l=a.resolve("@ngrok/mantle/tailwind-preset");return j.default.join(l,"..","..","**","*.js")}catch(l){return console.warn(l),"node_modules/@ngrok/mantle/**/*.js"}}0&&(module.exports={mantlePreset,resolveMantleContentGlob});
|
|
1
|
+
"use strict";var O=Object.create;var t=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var F=Object.getOwnPropertyNames;var D=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var S=(a,l)=>{for(var r in l)t(a,r,{get:l[r],enumerable:!0})},c=(a,l,r,e)=>{if(l&&typeof l=="object"||typeof l=="function")for(let s of F(l))!M.call(a,s)&&s!==r&&t(a,s,{get:()=>l[s],enumerable:!(e=C(l,s))||e.enumerable});return a};var h=(a,l,r)=>(r=a!=null?O(D(a)):{},c(l||!a||!a.__esModule?t(r,"default",{value:a,enumerable:!0}):r,a)),N=a=>c(t({},"__esModule",{value:!0}),a);var E={};S(E,{mantlePreset:()=>I,resolveMantleContentGlob:()=>V});module.exports=N(E);var A=h(require("tailwindcss-animate"),1),n=h(require("tailwindcss/defaultTheme.js"),1),i=h(require("tailwindcss/plugin.js"),1);var d=h(require("tailwindcss/plugin.js"),1);function o(a){return Object.fromEntries(Object.entries(a).filter(([l])=>l!=="DEFAULT"))}function p(a,l){let r={},{parentKey:e="",separator:s="-"}=l??{};for(let v in a)if(a.hasOwnProperty(v)){let u=e?`${e}${s}${v}`:v;typeof a[v]=="object"&&a[v]!=null&&!Array.isArray(a[v])?Object.assign(r,p(a[v],{parentKey:u})):r[u]=a[v]}return r}var g=(0,d.default)(a=>{a.matchUtilities({"animation-duration":l=>({animationDuration:l})},{values:o(a.theme("animationDuration"))})});var m=h(require("tailwindcss/plugin.js"),1),f=(0,m.default)(a=>{a.addVariant("aria-enabled",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:not([aria-disabled]).${a.e(`aria-enabled${r}${e}`)}`)})});var x=h(require("tailwindcss/plugin.js"),1),w=(0,x.default)(a=>{a.addVariant("firefox",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"supports",params:"(-moz-appearance:none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`firefox${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});var b=h(require("tailwindcss/plugin.js"),1);var y=(0,b.default)(a=>{a.matchUtilities({"stop-opacity":l=>({"stop-opacity":l})},{values:o(a.theme("opacity")),respectImportant:!0,respectPrefix:!0}),a.matchUtilities({"stop-color":l=>({"stop-color":l})},{values:p(a.theme("colors")),respectImportant:!0,respectPrefix:!0,type:"color"})});var P=h(require("tailwindcss/plugin.js"),1),k=(0,P.default)(a=>{a.addVariant("pointer-coarse",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: coarse)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-coarse${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-fine",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: fine)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-fine${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-hover",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: hover)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-hover${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});var $=h(require("tailwindcss/plugin.js"),1),R=(0,$.default)(a=>{a.addVariant("where",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:where(&.${a.e(`where${r}${e}`)})`)})});var z={inherit:"inherit",current:"currentColor",transparent:"transparent",white:"hsl(var(--white) / <alpha-value>)",black:"hsl(var(--black) / <alpha-value>)",gray:{50:"hsl(var(--gray-50) / <alpha-value>)",100:"hsl(var(--gray-100) / <alpha-value>)",200:"hsl(var(--gray-200) / <alpha-value>)",300:"hsl(var(--gray-300) / <alpha-value>)",400:"hsl(var(--gray-400) / <alpha-value>)",500:"hsl(var(--gray-500) / <alpha-value>)",600:"hsl(var(--gray-600) / <alpha-value>)",700:"hsl(var(--gray-700) / <alpha-value>)",800:"hsl(var(--gray-800) / <alpha-value>)",900:"hsl(var(--gray-900) / <alpha-value>)",950:"hsl(var(--gray-950) / <alpha-value>)"},red:{50:"hsl(var(--red-50) / <alpha-value>)",100:"hsl(var(--red-100) / <alpha-value>)",200:"hsl(var(--red-200) / <alpha-value>)",300:"hsl(var(--red-300) / <alpha-value>)",400:"hsl(var(--red-400) / <alpha-value>)",500:"hsl(var(--red-500) / <alpha-value>)",600:"hsl(var(--red-600) / <alpha-value>)",700:"hsl(var(--red-700) / <alpha-value>)",800:"hsl(var(--red-800) / <alpha-value>)",900:"hsl(var(--red-900) / <alpha-value>)",950:"hsl(var(--red-950) / <alpha-value>)"},orange:{50:"hsl(var(--orange-50) / <alpha-value>)",100:"hsl(var(--orange-100) / <alpha-value>)",200:"hsl(var(--orange-200) / <alpha-value>)",300:"hsl(var(--orange-300) / <alpha-value>)",400:"hsl(var(--orange-400) / <alpha-value>)",500:"hsl(var(--orange-500) / <alpha-value>)",600:"hsl(var(--orange-600) / <alpha-value>)",700:"hsl(var(--orange-700) / <alpha-value>)",800:"hsl(var(--orange-800) / <alpha-value>)",900:"hsl(var(--orange-900) / <alpha-value>)",950:"hsl(var(--orange-950) / <alpha-value>)"},amber:{50:"hsl(var(--amber-50) / <alpha-value>)",100:"hsl(var(--amber-100) / <alpha-value>)",200:"hsl(var(--amber-200) / <alpha-value>)",300:"hsl(var(--amber-300) / <alpha-value>)",400:"hsl(var(--amber-400) / <alpha-value>)",500:"hsl(var(--amber-500) / <alpha-value>)",600:"hsl(var(--amber-600) / <alpha-value>)",700:"hsl(var(--amber-700) / <alpha-value>)",800:"hsl(var(--amber-800) / <alpha-value>)",900:"hsl(var(--amber-900) / <alpha-value>)",950:"hsl(var(--amber-950) / <alpha-value>)"},yellow:{50:"hsl(var(--yellow-50) / <alpha-value>)",100:"hsl(var(--yellow-100) / <alpha-value>)",200:"hsl(var(--yellow-200) / <alpha-value>)",300:"hsl(var(--yellow-300) / <alpha-value>)",400:"hsl(var(--yellow-400) / <alpha-value>)",500:"hsl(var(--yellow-500) / <alpha-value>)",600:"hsl(var(--yellow-600) / <alpha-value>)",700:"hsl(var(--yellow-700) / <alpha-value>)",800:"hsl(var(--yellow-800) / <alpha-value>)",900:"hsl(var(--yellow-900) / <alpha-value>)",950:"hsl(var(--yellow-950) / <alpha-value>)"},lime:{50:"hsl(var(--lime-50) / <alpha-value>)",100:"hsl(var(--lime-100) / <alpha-value>)",200:"hsl(var(--lime-200) / <alpha-value>)",300:"hsl(var(--lime-300) / <alpha-value>)",400:"hsl(var(--lime-400) / <alpha-value>)",500:"hsl(var(--lime-500) / <alpha-value>)",600:"hsl(var(--lime-600) / <alpha-value>)",700:"hsl(var(--lime-700) / <alpha-value>)",800:"hsl(var(--lime-800) / <alpha-value>)",900:"hsl(var(--lime-900) / <alpha-value>)",950:"hsl(var(--lime-950) / <alpha-value>)"},green:{50:"hsl(var(--green-50) / <alpha-value>)",100:"hsl(var(--green-100) / <alpha-value>)",200:"hsl(var(--green-200) / <alpha-value>)",300:"hsl(var(--green-300) / <alpha-value>)",400:"hsl(var(--green-400) / <alpha-value>)",500:"hsl(var(--green-500) / <alpha-value>)",600:"hsl(var(--green-600) / <alpha-value>)",700:"hsl(var(--green-700) / <alpha-value>)",800:"hsl(var(--green-800) / <alpha-value>)",900:"hsl(var(--green-900) / <alpha-value>)",950:"hsl(var(--green-950) / <alpha-value>)"},emerald:{50:"hsl(var(--emerald-50) / <alpha-value>)",100:"hsl(var(--emerald-100) / <alpha-value>)",200:"hsl(var(--emerald-200) / <alpha-value>)",300:"hsl(var(--emerald-300) / <alpha-value>)",400:"hsl(var(--emerald-400) / <alpha-value>)",500:"hsl(var(--emerald-500) / <alpha-value>)",600:"hsl(var(--emerald-600) / <alpha-value>)",700:"hsl(var(--emerald-700) / <alpha-value>)",800:"hsl(var(--emerald-800) / <alpha-value>)",900:"hsl(var(--emerald-900) / <alpha-value>)",950:"hsl(var(--emerald-950) / <alpha-value>)"},teal:{50:"hsl(var(--teal-50) / <alpha-value>)",100:"hsl(var(--teal-100) / <alpha-value>)",200:"hsl(var(--teal-200) / <alpha-value>)",300:"hsl(var(--teal-300) / <alpha-value>)",400:"hsl(var(--teal-400) / <alpha-value>)",500:"hsl(var(--teal-500) / <alpha-value>)",600:"hsl(var(--teal-600) / <alpha-value>)",700:"hsl(var(--teal-700) / <alpha-value>)",800:"hsl(var(--teal-800) / <alpha-value>)",900:"hsl(var(--teal-900) / <alpha-value>)",950:"hsl(var(--teal-950) / <alpha-value>)"},cyan:{50:"hsl(var(--cyan-50) / <alpha-value>)",100:"hsl(var(--cyan-100) / <alpha-value>)",200:"hsl(var(--cyan-200) / <alpha-value>)",300:"hsl(var(--cyan-300) / <alpha-value>)",400:"hsl(var(--cyan-400) / <alpha-value>)",500:"hsl(var(--cyan-500) / <alpha-value>)",600:"hsl(var(--cyan-600) / <alpha-value>)",700:"hsl(var(--cyan-700) / <alpha-value>)",800:"hsl(var(--cyan-800) / <alpha-value>)",900:"hsl(var(--cyan-900) / <alpha-value>)",950:"hsl(var(--cyan-950) / <alpha-value>)"},sky:{50:"hsl(var(--sky-50) / <alpha-value>)",100:"hsl(var(--sky-100) / <alpha-value>)",200:"hsl(var(--sky-200) / <alpha-value>)",300:"hsl(var(--sky-300) / <alpha-value>)",400:"hsl(var(--sky-400) / <alpha-value>)",500:"hsl(var(--sky-500) / <alpha-value>)",600:"hsl(var(--sky-600) / <alpha-value>)",700:"hsl(var(--sky-700) / <alpha-value>)",800:"hsl(var(--sky-800) / <alpha-value>)",900:"hsl(var(--sky-900) / <alpha-value>)",950:"hsl(var(--sky-950) / <alpha-value>)"},blue:{50:"hsl(var(--blue-50) / <alpha-value>)",100:"hsl(var(--blue-100) / <alpha-value>)",200:"hsl(var(--blue-200) / <alpha-value>)",300:"hsl(var(--blue-300) / <alpha-value>)",400:"hsl(var(--blue-400) / <alpha-value>)",500:"hsl(var(--blue-500) / <alpha-value>)",600:"hsl(var(--blue-600) / <alpha-value>)",700:"hsl(var(--blue-700) / <alpha-value>)",800:"hsl(var(--blue-800) / <alpha-value>)",900:"hsl(var(--blue-900) / <alpha-value>)",950:"hsl(var(--blue-950) / <alpha-value>)"},indigo:{50:"hsl(var(--indigo-50) / <alpha-value>)",100:"hsl(var(--indigo-100) / <alpha-value>)",200:"hsl(var(--indigo-200) / <alpha-value>)",300:"hsl(var(--indigo-300) / <alpha-value>)",400:"hsl(var(--indigo-400) / <alpha-value>)",500:"hsl(var(--indigo-500) / <alpha-value>)",600:"hsl(var(--indigo-600) / <alpha-value>)",700:"hsl(var(--indigo-700) / <alpha-value>)",800:"hsl(var(--indigo-800) / <alpha-value>)",900:"hsl(var(--indigo-900) / <alpha-value>)",950:"hsl(var(--indigo-950) / <alpha-value>)"},violet:{50:"hsl(var(--violet-50) / <alpha-value>)",100:"hsl(var(--violet-100) / <alpha-value>)",200:"hsl(var(--violet-200) / <alpha-value>)",300:"hsl(var(--violet-300) / <alpha-value>)",400:"hsl(var(--violet-400) / <alpha-value>)",500:"hsl(var(--violet-500) / <alpha-value>)",600:"hsl(var(--violet-600) / <alpha-value>)",700:"hsl(var(--violet-700) / <alpha-value>)",800:"hsl(var(--violet-800) / <alpha-value>)",900:"hsl(var(--violet-900) / <alpha-value>)",950:"hsl(var(--violet-950) / <alpha-value>)"},purple:{50:"hsl(var(--purple-50) / <alpha-value>)",100:"hsl(var(--purple-100) / <alpha-value>)",200:"hsl(var(--purple-200) / <alpha-value>)",300:"hsl(var(--purple-300) / <alpha-value>)",400:"hsl(var(--purple-400) / <alpha-value>)",500:"hsl(var(--purple-500) / <alpha-value>)",600:"hsl(var(--purple-600) / <alpha-value>)",700:"hsl(var(--purple-700) / <alpha-value>)",800:"hsl(var(--purple-800) / <alpha-value>)",900:"hsl(var(--purple-900) / <alpha-value>)",950:"hsl(var(--purple-950) / <alpha-value>)"},fuchsia:{50:"hsl(var(--fuchsia-50) / <alpha-value>)",100:"hsl(var(--fuchsia-100) / <alpha-value>)",200:"hsl(var(--fuchsia-200) / <alpha-value>)",300:"hsl(var(--fuchsia-300) / <alpha-value>)",400:"hsl(var(--fuchsia-400) / <alpha-value>)",500:"hsl(var(--fuchsia-500) / <alpha-value>)",600:"hsl(var(--fuchsia-600) / <alpha-value>)",700:"hsl(var(--fuchsia-700) / <alpha-value>)",800:"hsl(var(--fuchsia-800) / <alpha-value>)",900:"hsl(var(--fuchsia-900) / <alpha-value>)",950:"hsl(var(--fuchsia-950) / <alpha-value>)"},pink:{50:"hsl(var(--pink-50) / <alpha-value>)",100:"hsl(var(--pink-100) / <alpha-value>)",200:"hsl(var(--pink-200) / <alpha-value>)",300:"hsl(var(--pink-300) / <alpha-value>)",400:"hsl(var(--pink-400) / <alpha-value>)",500:"hsl(var(--pink-500) / <alpha-value>)",600:"hsl(var(--pink-600) / <alpha-value>)",700:"hsl(var(--pink-700) / <alpha-value>)",800:"hsl(var(--pink-800) / <alpha-value>)",900:"hsl(var(--pink-900) / <alpha-value>)",950:"hsl(var(--pink-950) / <alpha-value>)"},rose:{50:"hsl(var(--rose-50) / <alpha-value>)",100:"hsl(var(--rose-100) / <alpha-value>)",200:"hsl(var(--rose-200) / <alpha-value>)",300:"hsl(var(--rose-300) / <alpha-value>)",400:"hsl(var(--rose-400) / <alpha-value>)",500:"hsl(var(--rose-500) / <alpha-value>)",600:"hsl(var(--rose-600) / <alpha-value>)",700:"hsl(var(--rose-700) / <alpha-value>)",800:"hsl(var(--rose-800) / <alpha-value>)",900:"hsl(var(--rose-900) / <alpha-value>)",950:"hsl(var(--rose-950) / <alpha-value>)"},neutral:{50:"hsl(var(--neutral-50) / <alpha-value>)",100:"hsl(var(--neutral-100) / <alpha-value>)",200:"hsl(var(--neutral-200) / <alpha-value>)",300:"hsl(var(--neutral-300) / <alpha-value>)",400:"hsl(var(--neutral-400) / <alpha-value>)",500:"hsl(var(--neutral-500) / <alpha-value>)",600:"hsl(var(--neutral-600) / <alpha-value>)",700:"hsl(var(--neutral-700) / <alpha-value>)",800:"hsl(var(--neutral-800) / <alpha-value>)",900:"hsl(var(--neutral-900) / <alpha-value>)",950:"hsl(var(--neutral-950) / <alpha-value>)"},accent:{50:"hsl(var(--accent-50) / <alpha-value>)",100:"hsl(var(--accent-100) / <alpha-value>)",200:"hsl(var(--accent-200) / <alpha-value>)",300:"hsl(var(--accent-300) / <alpha-value>)",400:"hsl(var(--accent-400) / <alpha-value>)",500:"hsl(var(--accent-500) / <alpha-value>)",600:"hsl(var(--accent-600) / <alpha-value>)",700:"hsl(var(--accent-700) / <alpha-value>)",800:"hsl(var(--accent-800) / <alpha-value>)",900:"hsl(var(--accent-900) / <alpha-value>)",950:"hsl(var(--accent-950) / <alpha-value>)"},danger:{50:"hsl(var(--danger-50) / <alpha-value>)",100:"hsl(var(--danger-100) / <alpha-value>)",200:"hsl(var(--danger-200) / <alpha-value>)",300:"hsl(var(--danger-300) / <alpha-value>)",400:"hsl(var(--danger-400) / <alpha-value>)",500:"hsl(var(--danger-500) / <alpha-value>)",600:"hsl(var(--danger-600) / <alpha-value>)",700:"hsl(var(--danger-700) / <alpha-value>)",800:"hsl(var(--danger-800) / <alpha-value>)",900:"hsl(var(--danger-900) / <alpha-value>)",950:"hsl(var(--danger-950) / <alpha-value>)"},warning:{50:"hsl(var(--warning-50) / <alpha-value>)",100:"hsl(var(--warning-100) / <alpha-value>)",200:"hsl(var(--warning-200) / <alpha-value>)",300:"hsl(var(--warning-300) / <alpha-value>)",400:"hsl(var(--warning-400) / <alpha-value>)",500:"hsl(var(--warning-500) / <alpha-value>)",600:"hsl(var(--warning-600) / <alpha-value>)",700:"hsl(var(--warning-700) / <alpha-value>)",800:"hsl(var(--warning-800) / <alpha-value>)",900:"hsl(var(--warning-900) / <alpha-value>)",950:"hsl(var(--warning-950) / <alpha-value>)"},success:{50:"hsl(var(--success-50) / <alpha-value>)",100:"hsl(var(--success-100) / <alpha-value>)",200:"hsl(var(--success-200) / <alpha-value>)",300:"hsl(var(--success-300) / <alpha-value>)",400:"hsl(var(--success-400) / <alpha-value>)",500:"hsl(var(--success-500) / <alpha-value>)",600:"hsl(var(--success-600) / <alpha-value>)",700:"hsl(var(--success-700) / <alpha-value>)",800:"hsl(var(--success-800) / <alpha-value>)",900:"hsl(var(--success-900) / <alpha-value>)",950:"hsl(var(--success-950) / <alpha-value>)"}},I={content:[],darkMode:"class",theme:{colors:z,container:{center:!0,padding:"2rem",screens:{"2xl":"1400px"}},extend:{animation:{"accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out"},aria:{collapsed:'expanded="false"',invalid:'invalid="true"',unchecked:'checked="false"'},backgroundImage:{"checked-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e")`,"indeterminate-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e")`},boxShadow:{sm:"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))",DEFAULT:"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))",md:"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))",lg:"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))",xl:"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))","2xl":"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))",inner:"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))"},backgroundColor:{base:"hsl(var(--bg-base))",card:"hsl(var(--bg-card))",dialog:"hsl(var(--bg-dialog))",form:"hsl(var(--bg-form))",overlay:"hsl(var(--bg-overlay))",popover:"hsl(var(--bg-popover))",tooltip:"hsl(var(--bg-tooltip))","base-hover":"hsl(var(--bg-base-hover))","card-hover":"hsl(var(--bg-card-hover))","filled-accent-active":"hsl(var(--bg-filled-accent-active))","filled-accent-hover":"hsl(var(--bg-filled-accent-hover))","filled-accent":"hsl(var(--bg-filled-accent))","filled-danger-active":"hsl(var(--bg-filled-danger-active))","filled-danger-hover":"hsl(var(--bg-filled-danger-hover))","filled-danger":"hsl(var(--bg-filled-danger))","filled-neutral-active":"hsl(var(--bg-filled-neutral-active))","filled-neutral-hover":"hsl(var(--bg-filled-neutral-hover))","filled-neutral":"hsl(var(--bg-filled-neutral))","filled-success-active":"hsl(var(--bg-filled-success-active))","filled-success-hover":"hsl(var(--bg-filled-success-hover))","filled-success":"hsl(var(--bg-filled-success))","filled-warning-active":"hsl(var(--bg-filled-warning-active))","filled-warning-hover":"hsl(var(--bg-filled-warning-hover))","filled-warning":"hsl(var(--bg-filled-warning))","form-active":"hsl(var(--bg-form-active))","form-hover":"hsl(var(--bg-form-hover))","popover-hover":"hsl(var(--bg-popover-hover))"},textColor:{body:"hsl(var(--text-body))",muted:"hsl(var(--text-muted))",placeholder:"hsl(var(--text-placeholder))",strong:"hsl(var(--text-strong))",tooltip:"hsl(var(--text-tooltip))","on-filled":"hsl(var(--text-on-filled))"},borderColor:{base:"hsl(var(--border-base))",card:"hsl(var(--border-card))",dialog:"hsl(var(--border-dialog))",form:"hsl(var(--border-form))",popover:"hsl(var(--border-popover))","base-muted":"hsl(var(--border-base-muted))","card-muted":"hsl(var(--border-card-muted))","dialog-muted":"hsl(var(--border-dialog-muted))","popover-muted":"hsl(var(--border-popover-muted))"},ringColor:{"focus-accent":"hsl(var(--ring-focus-accent))","focus-danger":"hsl(var(--ring-focus-danger))","focus-neutral":"hsl(var(--ring-focus-neutral))","focus-success":"hsl(var(--ring-focus-success))","focus-warning":"hsl(var(--ring-focus-warning))"},cursor:{inherit:"inherit",initial:"initial"},data:{"active-item":"active-item","drag-over":'drag-over="true"',disabled:"disabled",highlighted:"highlighted","orientation-horizontal":'orientation="horizontal"',"orientation-vertical":'orientation="vertical"',"side-bottom":'side="bottom"',"side-left":'side="left"',"side-right":'side="right"',"side-top":'side="top"',"state-active":'state~="active"',"state-checked":'state~="checked"',"state-closed":'state~="closed"',"state-idle":'state~="idle"',"state-inactive":'state~="inactive"',"state-indeterminate":'state~="indeterminate"',"state-open":'state~="open"',"state-pending":'state~="pending"',"state-selected":'state~="selected"',"state-submitting":'state~="submitting"',"state-unchecked":'state~="unchecked"',"validation-error":'validation="error"',"validation-success":'validation="success"',"validation-warning":'validation="warning"'},fontFamily:{sans:["EuclidSquare",...n.default.fontFamily.sans],mono:["IBMPlexMono",...n.default.fontFamily.mono],body:["Nunito Sans",...n.default.fontFamily.sans]},fontSize:{"size-inherit":"inherit",mono:["0.8125rem","1.25"]},fontWeight:{initial:"initial"},keyframes:{"accordion-down":{from:{height:"0"},to:{height:"var(--radix-accordion-content-height)"}},"accordion-up":{from:{height:"var(--radix-accordion-content-height)"},to:{height:"0"}},spin:{from:{transform:"rotate(var(--spin-start-deg, 0))"},to:{transform:"rotate(var(--spin-end-deg, 360deg))"}}},lineHeight:{0:"0",initial:"initial"},screens:{xs:"480px"},spacing:{"1.25":"0.3125rem"},transitionProperty:{"max-height":"max-height"},zIndex:{1:"1",max:"2147483647"}}},plugins:[g,f,w,y,k,A.default,R,(0,i.default)(({addVariant:a})=>{a("dark-high-contrast",[":is(.dark-high-contrast &)"]),a("high-contrast",[":is(.light-high-contrast &)"])}),(0,i.default)(({addVariant:a})=>{a("not-disabled",["&:not(:disabled)"]),a("not-aria-disabled",['&:not(&[aria-disabled="true"])'])})]};var j=h(require("path"),1);function V(a){try{let l=a.resolve("@ngrok/mantle/tailwind-preset");return j.default.join(l,"..","..","**","*.js")}catch(l){return console.warn(l),"node_modules/@ngrok/mantle/**/*.js"}}0&&(module.exports={mantlePreset,resolveMantleContentGlob});
|
|
2
2
|
//# sourceMappingURL=tailwind-preset.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/tailwind-preset/index.ts","../src/tailwind-preset/tailwind.preset.ts","../src/tailwind-preset/tailwind-plugin-animation-duration.ts","../src/tailwind-preset/shared.ts","../src/tailwind-preset/tailwind-plugin-aria-enabled.ts","../src/tailwind-preset/tailwind-plugin-firefox-variant.ts","../src/tailwind-preset/tailwind-plugin-gradient-stop.ts","../src/tailwind-preset/tailwind-plugin-pointing-variants.ts","../src/tailwind-preset/tailwind-plugin-where-variant.ts","../src/tailwind-preset/resolve-mantle-content-glob.ts"],"sourcesContent":["export type { MantlePreset } from \"./tailwind.preset.js\";\n\nexport { mantlePreset } from \"./tailwind.preset.js\";\nexport { resolveMantleContentGlob } from \"./resolve-mantle-content-glob.js\";\n","import type { Config } from \"tailwindcss\";\nimport tailwindCssAnimatePlugin from \"tailwindcss-animate\";\nimport defaultTheme from \"tailwindcss/defaultTheme.js\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport { animationDurationPlugin } from \"./tailwind-plugin-animation-duration.js\";\nimport { ariaEnabledVariantPlugin } from \"./tailwind-plugin-aria-enabled.js\";\nimport { firefoxVariantPlugin } from \"./tailwind-plugin-firefox-variant.js\";\nimport { gradientStopPlugin } from \"./tailwind-plugin-gradient-stop.js\";\nimport { pointingVariantsPlugin } from \"./tailwind-plugin-pointing-variants.js\";\nimport { whereVariantPlugin } from \"./tailwind-plugin-where-variant.js\";\n\nconst colors = {\n\tinherit: \"inherit\",\n\tcurrent: \"currentColor\",\n\ttransparent: \"transparent\",\n\twhite: \"hsl(var(--white) / <alpha-value>)\",\n\tblack: \"hsl(var(--black) / <alpha-value>)\",\n\tgray: {\n\t\t50: \"hsl(var(--gray-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--gray-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--gray-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--gray-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--gray-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--gray-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--gray-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--gray-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--gray-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--gray-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--gray-950) / <alpha-value>)\",\n\t},\n\tred: {\n\t\t50: \"hsl(var(--red-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--red-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--red-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--red-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--red-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--red-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--red-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--red-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--red-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--red-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--red-950) / <alpha-value>)\",\n\t},\n\torange: {\n\t\t50: \"hsl(var(--orange-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--orange-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--orange-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--orange-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--orange-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--orange-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--orange-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--orange-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--orange-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--orange-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--orange-950) / <alpha-value>)\",\n\t},\n\tamber: {\n\t\t50: \"hsl(var(--amber-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--amber-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--amber-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--amber-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--amber-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--amber-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--amber-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--amber-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--amber-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--amber-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--amber-950) / <alpha-value>)\",\n\t},\n\tyellow: {\n\t\t50: \"hsl(var(--yellow-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--yellow-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--yellow-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--yellow-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--yellow-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--yellow-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--yellow-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--yellow-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--yellow-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--yellow-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--yellow-950) / <alpha-value>)\",\n\t},\n\tlime: {\n\t\t50: \"hsl(var(--lime-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--lime-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--lime-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--lime-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--lime-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--lime-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--lime-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--lime-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--lime-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--lime-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--lime-950) / <alpha-value>)\",\n\t},\n\tgreen: {\n\t\t50: \"hsl(var(--green-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--green-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--green-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--green-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--green-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--green-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--green-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--green-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--green-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--green-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--green-950) / <alpha-value>)\",\n\t},\n\temerald: {\n\t\t50: \"hsl(var(--emerald-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--emerald-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--emerald-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--emerald-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--emerald-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--emerald-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--emerald-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--emerald-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--emerald-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--emerald-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--emerald-950) / <alpha-value>)\",\n\t},\n\tteal: {\n\t\t50: \"hsl(var(--teal-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--teal-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--teal-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--teal-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--teal-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--teal-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--teal-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--teal-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--teal-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--teal-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--teal-950) / <alpha-value>)\",\n\t},\n\tcyan: {\n\t\t50: \"hsl(var(--cyan-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--cyan-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--cyan-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--cyan-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--cyan-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--cyan-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--cyan-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--cyan-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--cyan-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--cyan-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--cyan-950) / <alpha-value>)\",\n\t},\n\tsky: {\n\t\t50: \"hsl(var(--sky-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--sky-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--sky-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--sky-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--sky-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--sky-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--sky-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--sky-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--sky-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--sky-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--sky-950) / <alpha-value>)\",\n\t},\n\tblue: {\n\t\t50: \"hsl(var(--blue-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--blue-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--blue-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--blue-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--blue-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--blue-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--blue-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--blue-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--blue-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--blue-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--blue-950) / <alpha-value>)\",\n\t},\n\tindigo: {\n\t\t50: \"hsl(var(--indigo-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--indigo-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--indigo-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--indigo-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--indigo-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--indigo-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--indigo-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--indigo-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--indigo-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--indigo-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--indigo-950) / <alpha-value>)\",\n\t},\n\tviolet: {\n\t\t50: \"hsl(var(--violet-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--violet-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--violet-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--violet-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--violet-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--violet-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--violet-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--violet-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--violet-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--violet-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--violet-950) / <alpha-value>)\",\n\t},\n\tpurple: {\n\t\t50: \"hsl(var(--purple-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--purple-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--purple-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--purple-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--purple-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--purple-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--purple-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--purple-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--purple-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--purple-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--purple-950) / <alpha-value>)\",\n\t},\n\tfuchsia: {\n\t\t50: \"hsl(var(--fuchsia-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--fuchsia-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--fuchsia-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--fuchsia-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--fuchsia-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--fuchsia-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--fuchsia-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--fuchsia-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--fuchsia-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--fuchsia-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--fuchsia-950) / <alpha-value>)\",\n\t},\n\tpink: {\n\t\t50: \"hsl(var(--pink-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--pink-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--pink-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--pink-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--pink-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--pink-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--pink-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--pink-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--pink-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--pink-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--pink-950) / <alpha-value>)\",\n\t},\n\trose: {\n\t\t50: \"hsl(var(--rose-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--rose-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--rose-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--rose-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--rose-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--rose-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--rose-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--rose-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--rose-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--rose-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--rose-950) / <alpha-value>)\",\n\t},\n\tneutral: {\n\t\t50: \"hsl(var(--neutral-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--neutral-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--neutral-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--neutral-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--neutral-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--neutral-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--neutral-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--neutral-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--neutral-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--neutral-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--neutral-950) / <alpha-value>)\",\n\t},\n\taccent: {\n\t\t50: \"hsl(var(--accent-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--accent-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--accent-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--accent-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--accent-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--accent-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--accent-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--accent-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--accent-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--accent-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--accent-950) / <alpha-value>)\",\n\t},\n\tdanger: {\n\t\t50: \"hsl(var(--danger-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--danger-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--danger-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--danger-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--danger-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--danger-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--danger-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--danger-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--danger-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--danger-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--danger-950) / <alpha-value>)\",\n\t},\n\twarning: {\n\t\t50: \"hsl(var(--warning-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--warning-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--warning-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--warning-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--warning-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--warning-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--warning-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--warning-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--warning-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--warning-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--warning-950) / <alpha-value>)\",\n\t},\n\tsuccess: {\n\t\t50: \"hsl(var(--success-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--success-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--success-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--success-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--success-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--success-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--success-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--success-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--success-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--success-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--success-950) / <alpha-value>)\",\n\t},\n};\n\nconst mantlePreset = {\n\tcontent: [],\n\tdarkMode: \"class\",\n\ttheme: {\n\t\tcolors,\n\t\tcontainer: {\n\t\t\tcenter: true,\n\t\t\tpadding: \"2rem\",\n\t\t\tscreens: {\n\t\t\t\t\"2xl\": \"1400px\",\n\t\t\t},\n\t\t},\n\t\textend: {\n\t\t\tanimation: {\n\t\t\t\t\"accordion-down\": \"accordion-down 0.2s ease-out\",\n\t\t\t\t\"accordion-up\": \"accordion-up 0.2s ease-out\",\n\t\t\t},\n\t\t\taria: {\n\t\t\t\tcollapsed: 'expanded=\"false\"',\n\t\t\t\tinvalid: 'invalid=\"true\"',\n\t\t\t\tunchecked: 'checked=\"false\"',\n\t\t\t},\n\t\t\tbackgroundImage: {\n\t\t\t\t\"checked-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e\")`,\n\t\t\t\t\"indeterminate-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e\")`,\n\t\t\t},\n\t\t\tboxShadow: {\n\t\t\t\tsm: \"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t\tDEFAULT:\n\t\t\t\t\t\"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tmd: \"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tlg: \"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\txl: \"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\t\"2xl\":\n\t\t\t\t\t\"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tinner: \"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t},\n\t\t\tbackgroundColor: {\n\t\t\t\tbase: \"hsl(var(--bg-base))\",\n\t\t\t\tcard: \"hsl(var(--bg-card))\",\n\t\t\t\tdialog: \"hsl(var(--bg-dialog))\",\n\t\t\t\tform: \"hsl(var(--bg-form))\",\n\t\t\t\toverlay: \"hsl(var(--bg-overlay))\",\n\t\t\t\tpopover: \"hsl(var(--bg-popover))\",\n\t\t\t\ttooltip: \"hsl(var(--bg-tooltip))\",\n\t\t\t\t\"base-hover\": \"hsl(var(--bg-base-hover))\",\n\t\t\t\t\"card-hover\": \"hsl(var(--bg-card-hover))\",\n\t\t\t\t\"filled-accent-active\": \"hsl(var(--bg-filled-accent-active))\",\n\t\t\t\t\"filled-accent-hover\": \"hsl(var(--bg-filled-accent-hover))\",\n\t\t\t\t\"filled-accent\": \"hsl(var(--bg-filled-accent))\",\n\t\t\t\t\"filled-danger-active\": \"hsl(var(--bg-filled-danger-active))\",\n\t\t\t\t\"filled-danger-hover\": \"hsl(var(--bg-filled-danger-hover))\",\n\t\t\t\t\"filled-danger\": \"hsl(var(--bg-filled-danger))\",\n\t\t\t\t\"filled-neutral-active\": \"hsl(var(--bg-filled-neutral-active))\",\n\t\t\t\t\"filled-neutral-hover\": \"hsl(var(--bg-filled-neutral-hover))\",\n\t\t\t\t\"filled-neutral\": \"hsl(var(--bg-filled-neutral))\",\n\t\t\t\t\"filled-success-active\": \"hsl(var(--bg-filled-success-active))\",\n\t\t\t\t\"filled-success-hover\": \"hsl(var(--bg-filled-success-hover))\",\n\t\t\t\t\"filled-success\": \"hsl(var(--bg-filled-success))\",\n\t\t\t\t\"filled-warning-active\": \"hsl(var(--bg-filled-warning-active))\",\n\t\t\t\t\"filled-warning-hover\": \"hsl(var(--bg-filled-warning-hover))\",\n\t\t\t\t\"filled-warning\": \"hsl(var(--bg-filled-warning))\",\n\t\t\t\t\"form-active\": \"hsl(var(--bg-form-active))\",\n\t\t\t\t\"form-hover\": \"hsl(var(--bg-form-hover))\",\n\t\t\t\t\"popover-hover\": \"hsl(var(--bg-popover-hover))\",\n\t\t\t},\n\t\t\ttextColor: {\n\t\t\t\tbody: \"hsl(var(--text-body))\",\n\t\t\t\tmuted: \"hsl(var(--text-muted))\",\n\t\t\t\tplaceholder: \"hsl(var(--text-placeholder))\",\n\t\t\t\tstrong: \"hsl(var(--text-strong))\",\n\t\t\t\ttooltip: \"hsl(var(--text-tooltip))\",\n\t\t\t\t\"on-filled\": \"hsl(var(--text-on-filled))\",\n\t\t\t},\n\t\t\tborderColor: {\n\t\t\t\tbase: \"hsl(var(--border-base))\",\n\t\t\t\tcard: \"hsl(var(--border-card))\",\n\t\t\t\tdialog: \"hsl(var(--border-dialog))\",\n\t\t\t\tform: \"hsl(var(--border-form))\",\n\t\t\t\tpopover: \"hsl(var(--border-popover))\",\n\t\t\t\t\"base-muted\": \"hsl(var(--border-base-muted))\",\n\t\t\t\t\"card-muted\": \"hsl(var(--border-card-muted))\",\n\t\t\t\t\"dialog-muted\": \"hsl(var(--border-dialog-muted))\",\n\t\t\t\t\"popover-muted\": \"hsl(var(--border-popover-muted))\",\n\t\t\t},\n\t\t\tringColor: {\n\t\t\t\t\"focus-accent\": \"hsl(var(--ring-focus-accent))\",\n\t\t\t\t\"focus-danger\": \"hsl(var(--ring-focus-danger))\",\n\t\t\t\t\"focus-neutral\": \"hsl(var(--ring-focus-neutral))\",\n\t\t\t\t\"focus-success\": \"hsl(var(--ring-focus-success))\",\n\t\t\t\t\"focus-warning\": \"hsl(var(--ring-focus-warning))\",\n\t\t\t},\n\t\t\tcursor: {\n\t\t\t\tinherit: \"inherit\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tdata: {\n\t\t\t\t\"active-item\": \"active-item\",\n\t\t\t\t\"drag-over\": 'drag-over=\"true\"',\n\t\t\t\tdisabled: \"disabled\",\n\t\t\t\thighlighted: \"highlighted\",\n\t\t\t\t\"orientation-horizontal\": 'orientation=\"horizontal\"',\n\t\t\t\t\"orientation-vertical\": 'orientation=\"vertical\"',\n\t\t\t\t\"side-bottom\": 'side=\"bottom\"',\n\t\t\t\t\"side-left\": 'side=\"left\"',\n\t\t\t\t\"side-right\": 'side=\"right\"',\n\t\t\t\t\"side-top\": 'side=\"top\"',\n\t\t\t\t\"state-active\": 'state~=\"active\"',\n\t\t\t\t\"state-checked\": 'state~=\"checked\"',\n\t\t\t\t\"state-closed\": 'state~=\"closed\"',\n\t\t\t\t\"state-idle\": 'state~=\"idle\"',\n\t\t\t\t\"state-inactive\": 'state~=\"inactive\"',\n\t\t\t\t\"state-indeterminate\": 'state~=\"indeterminate\"',\n\t\t\t\t\"state-open\": 'state~=\"open\"',\n\t\t\t\t\"state-pending\": 'state~=\"pending\"',\n\t\t\t\t\"state-selected\": 'state~=\"selected\"',\n\t\t\t\t\"state-submitting\": 'state~=\"submitting\"',\n\t\t\t\t\"state-unchecked\": 'state~=\"unchecked\"',\n\t\t\t\t\"validation-error\": 'validation=\"error\"',\n\t\t\t\t\"validation-success\": 'validation=\"success\"',\n\t\t\t\t\"validation-warning\": 'validation=\"warning\"',\n\t\t\t},\n\t\t\tfontFamily: {\n\t\t\t\tsans: [\"EuclidSquare\", ...defaultTheme.fontFamily.sans],\n\t\t\t\tmono: [\"IBMPlexMono\", ...defaultTheme.fontFamily.mono],\n\t\t\t\tbody: [\"Nunito Sans\", ...defaultTheme.fontFamily.sans],\n\t\t\t},\n\t\t\tfontSize: {\n\t\t\t\t\"size-inherit\": \"inherit\",\n\t\t\t\tmono: [\"0.8125rem\", \"1.25\"] as const,\n\t\t\t},\n\t\t\tfontWeight: {\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tkeyframes: {\n\t\t\t\t\"accordion-down\": {\n\t\t\t\t\tfrom: { height: \"0\" },\n\t\t\t\t\tto: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t},\n\t\t\t\t\"accordion-up\": {\n\t\t\t\t\tfrom: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t\tto: { height: \"0\" },\n\t\t\t\t},\n\t\t\t\tspin: {\n\t\t\t\t\tfrom: { transform: \"rotate(var(--spin-start-deg, 0))\" },\n\t\t\t\t\tto: { transform: \"rotate(var(--spin-end-deg, 360deg))\" },\n\t\t\t\t} as const,\n\t\t\t},\n\t\t\tlineHeight: {\n\t\t\t\t0: \"0\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tscreens: {\n\t\t\t\txs: \"480px\",\n\t\t\t},\n\t\t\tspacing: {\n\t\t\t\t\"1.25\": \"0.3125rem\", // 5px\n\t\t\t},\n\t\t\ttransitionProperty: {\n\t\t\t\t\"max-height\": \"max-height\",\n\t\t\t},\n\t\t\tzIndex: {\n\t\t\t\t1: \"1\",\n\t\t\t\tmax: \"2147483647\",\n\t\t\t},\n\t\t},\n\t},\n\tplugins: [\n\t\tanimationDurationPlugin,\n\t\tariaEnabledVariantPlugin,\n\t\tfirefoxVariantPlugin,\n\t\tgradientStopPlugin,\n\t\tpointingVariantsPlugin,\n\t\ttailwindCssAnimatePlugin,\n\t\twhereVariantPlugin,\n\t\tplugin(function ({ addVariant }) {\n\t\t\taddVariant(\"dark-high-contrast\", [\":is(.dark-high-contrast &)\"]);\n\t\t\taddVariant(\"high-contrast\", [\":is(.light-high-contrast &)\"]);\n\t\t}),\n\t\tplugin(function ({ addVariant }) {\n\t\t\taddVariant(\"not-disabled\", [\"&:not(:disabled)\"]);\n\t\t\taddVariant(\"not-aria-disabled\", ['&:not(&[aria-disabled=\"true\"])']);\n\t\t}),\n\t],\n} satisfies Config;\n\nexport type MantlePreset = typeof mantlePreset;\n\nexport { mantlePreset };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault } from \"./shared.js\";\n\n/**\n * This plugin adds animation-duration utilities to TailwindCSS\n * These are similar to the transition-duration utilities but for animations instead of transitions.\n * It also supports arbitrary values, e.g. `animation-duration-[15s]`.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration\n * @see https://tailwindcss.com/docs/transition-duration\n */\nconst animationDurationPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"animation-duration\": (value) => ({ animationDuration: value }) },\n\t\t{ values: filterDefault(api.theme(\"animationDuration\")) },\n\t);\n});\n\nexport { animationDurationPlugin };\n","/**\n * Filters out the \"DEFAULT\" key from the given object.\n */\nexport function filterDefault(values: Record<string, string>) {\n\treturn Object.fromEntries(Object.entries(values).filter(([key]) => key !== \"DEFAULT\"));\n}\n\ntype AnyObject = Record<string, any>;\n\ntype FlattenObjectOptions = {\n\tparentKey: string;\n\tseparator?: string;\n};\n\n/**\n * Flattens an object to a single level deep object.\n */\nexport function flattenObject(obj: AnyObject, options?: FlattenObjectOptions) {\n\tlet result: AnyObject = {};\n\tconst { parentKey = \"\", separator = \"-\" } = options ?? {};\n\n\tfor (let key in obj) {\n\t\tif (obj.hasOwnProperty(key)) {\n\t\t\tlet newKey = parentKey ? `${parentKey}${separator}${key}` : key;\n\n\t\t\tif (typeof obj[key] === \"object\" && obj[key] != null && !Array.isArray(obj[key])) {\n\t\t\t\tObject.assign(result, flattenObject(obj[key], { parentKey: newKey }));\n\t\t\t} else {\n\t\t\t\tresult[newKey] = obj[key];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variant: aria-enabled\n */\nconst ariaEnabledVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"aria-enabled\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({ modifySelectors, separator }: { modifySelectors: unknown; separator: string }) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:not([aria-disabled]).${api.e(`aria-enabled${separator}${className}`)}`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { ariaEnabledVariantPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a `firefox` variant to TailwindCSS.\n *\n * @see https://gist.github.com/samselikoff/b3c5126ee4f4e69e60b0af0aa5bfb2e7\n */\nconst firefoxVariantPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"firefox\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst isFirefoxRule = api.postcss.atRule({\n\t\t\t\tname: \"supports\",\n\t\t\t\tparams: \"(-moz-appearance:none)\",\n\t\t\t});\n\t\t\tisFirefoxRule.append(container.nodes);\n\t\t\tcontainer.append(isFirefoxRule);\n\t\t\tisFirefoxRule.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`firefox${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { firefoxVariantPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault, flattenObject } from \"./shared.js\";\n\n/**\n * This plugin adds a stop svg utilities to TailwindCSS\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop#attributes\n */\nconst gradientStopPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"stop-opacity\": (value) => ({ \"stop-opacity\": value }) },\n\t\t{ values: filterDefault(api.theme(\"opacity\")), respectImportant: true, respectPrefix: true },\n\t);\n\n\tapi.matchUtilities(\n\t\t{ \"stop-color\": (value) => ({ \"stop-color\": value }) },\n\t\t{\n\t\t\tvalues: flattenObject(api.theme(\"colors\")),\n\t\t\trespectImportant: true,\n\t\t\trespectPrefix: true,\n\t\t\ttype: \"color\",\n\t\t},\n\t);\n});\n\nexport { gradientStopPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variants to TailwindCSS:\n * - `pointer-coarse`\n * - `pointer-fine`\n * - `pointer-none`\n * - `hover-hover`\n * - `hover-none`\n *\n * @see https://css-tricks.com/touch-devices-not-judged-size/\n */\nconst pointingVariantsPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-coarse\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerCoarse = api.postcss.atRule({ name: \"media\", params: \"(pointer: coarse)\" });\n\t\t\tpointerCoarse.append(container.nodes);\n\t\t\tcontainer.append(pointerCoarse);\n\t\t\tpointerCoarse.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-coarse${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-fine\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerFine = api.postcss.atRule({ name: \"media\", params: \"(pointer: fine)\" });\n\t\t\tpointerFine.append(container.nodes);\n\t\t\tcontainer.append(pointerFine);\n\t\t\tpointerFine.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-fine${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerNone = api.postcss.atRule({ name: \"media\", params: \"(pointer: none)\" });\n\t\t\tpointerNone.append(container.nodes);\n\t\t\tcontainer.append(pointerNone);\n\t\t\tpointerNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-hover\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverHover = api.postcss.atRule({ name: \"media\", params: \"(hover: hover)\" });\n\t\t\thoverHover.append(container.nodes);\n\t\t\tcontainer.append(hoverHover);\n\t\t\thoverHover.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-hover${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverNone = api.postcss.atRule({ name: \"media\", params: \"(hover: none)\" });\n\t\t\thoverNone.append(container.nodes);\n\t\t\tcontainer.append(hoverNone);\n\t\t\thoverNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { pointingVariantsPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a :where() variant to TailwindCSS\n *\n * This is useful to avoid specificity issues when using overridable base styles\n * since reduces the specificity of the selector to zero (0, 0, 0).\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/:where\n */\nconst whereVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"where\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({\n\t\t\tmodifySelectors,\n\t\t\tseparator,\n\t\t}: {\n\t\t\tmodifySelectors: (args: { className: string }) => string;\n\t\t\tseparator: string;\n\t\t}) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:where(&.${api.e(`where${separator}${className}`)})`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { whereVariantPlugin };\n","import path from \"node:path\";\n\n/**\n * Resolve the glob path to all mantle component content.\n * For use in your app's tailwind config content field.\n *\n * This works whether or not the `@ngrok/mantle` package is hoisted to a root node_modules,\n * e.g. in a js monorepo using workspaces.\n *\n * @example\n * import { createRequire } from \"node:module\";\n * import { resolveMantleContentGlob } from \"@ngrok/mantle/tailwind-preset\";\n *\n * const mantleContentGlob = resolveMantleContentGlob(createRequire(import.meta.url));\n *\n * export default {\n * content: [mantleContentGlob, \"/your/app/content/here\"],\n * // ...\n * }\n */\nfunction resolveMantleContentGlob(require: NodeRequire) {\n\ttry {\n\t\t/**\n\t\t * use the tailwind-preset module path since it is dual exported as cjs and esm\n\t\t * as long as we rely on postcss we need to reference a cjs module only or it will fail to resolve\n\t\t */\n\t\tconst presetPath = require.resolve(\"@ngrok/mantle/tailwind-preset\");\n\n\t\t/**\n\t\t * resolve the glob path to all mantle component content\n\t\t * need to go up two levels to get to the mantle package root since the\n\t\t * tailwind-preset exists at node_modules/@ngrok/mantle/dist/tailwind-preset.js\n\t\t */\n\t\treturn path.join(presetPath, \"..\", \"..\", \"**\", \"*.js\");\n\t} catch (error) {\n\t\tconsole.warn(error);\n\n\t\t// unlikely, BUT if require.resolve throws, just return a best guess glob of the mantle package\n\t\t// assumes the mantle package is hoisted to the root node_modules\n\t\treturn \"node_modules/@ngrok/mantle/**/*.js\";\n\t}\n}\n\nexport {\n\t//,\n\tresolveMantleContentGlob,\n};\n"],"mappings":"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","names":["tailwind_preset_exports","__export","mantlePreset","resolveMantleContentGlob","__toCommonJS","import_tailwindcss_animate","import_defaultTheme","import_plugin","import_plugin","filterDefault","values","key","flattenObject","obj","options","result","parentKey","separator","newKey","animationDurationPlugin","plugin","api","value","filterDefault","import_plugin","ariaEnabledVariantPlugin","plugin","api","modifySelectors","separator","className","import_plugin","firefoxVariantPlugin","plugin","api","container","separator","isFirefoxRule","rule","import_plugin","gradientStopPlugin","plugin","api","value","filterDefault","flattenObject","import_plugin","pointingVariantsPlugin","plugin","api","container","separator","pointerCoarse","rule","pointerFine","pointerNone","hoverHover","hoverNone","import_plugin","whereVariantPlugin","plugin","api","modifySelectors","separator","className","colors","mantlePreset","defaultTheme","animationDurationPlugin","ariaEnabledVariantPlugin","firefoxVariantPlugin","gradientStopPlugin","pointingVariantsPlugin","tailwindCssAnimatePlugin","whereVariantPlugin","plugin","addVariant","import_node_path","resolveMantleContentGlob","require","presetPath","path","error"]}
|
|
1
|
+
{"version":3,"sources":["../src/tailwind-preset/index.ts","../src/tailwind-preset/tailwind.preset.ts","../src/tailwind-preset/tailwind-plugin-animation-duration.ts","../src/tailwind-preset/shared.ts","../src/tailwind-preset/tailwind-plugin-aria-enabled.ts","../src/tailwind-preset/tailwind-plugin-firefox-variant.ts","../src/tailwind-preset/tailwind-plugin-gradient-stop.ts","../src/tailwind-preset/tailwind-plugin-pointing-variants.ts","../src/tailwind-preset/tailwind-plugin-where-variant.ts","../src/tailwind-preset/resolve-mantle-content-glob.ts"],"sourcesContent":["export type { MantlePreset } from \"./tailwind.preset.js\";\n\nexport { mantlePreset } from \"./tailwind.preset.js\";\nexport { resolveMantleContentGlob } from \"./resolve-mantle-content-glob.js\";\n","import type { Config } from \"tailwindcss\";\nimport tailwindCssAnimatePlugin from \"tailwindcss-animate\";\nimport defaultTheme from \"tailwindcss/defaultTheme.js\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport { animationDurationPlugin } from \"./tailwind-plugin-animation-duration.js\";\nimport { ariaEnabledVariantPlugin } from \"./tailwind-plugin-aria-enabled.js\";\nimport { firefoxVariantPlugin } from \"./tailwind-plugin-firefox-variant.js\";\nimport { gradientStopPlugin } from \"./tailwind-plugin-gradient-stop.js\";\nimport { pointingVariantsPlugin } from \"./tailwind-plugin-pointing-variants.js\";\nimport { whereVariantPlugin } from \"./tailwind-plugin-where-variant.js\";\n\nconst colors = {\n\tinherit: \"inherit\",\n\tcurrent: \"currentColor\",\n\ttransparent: \"transparent\",\n\twhite: \"hsl(var(--white) / <alpha-value>)\",\n\tblack: \"hsl(var(--black) / <alpha-value>)\",\n\tgray: {\n\t\t50: \"hsl(var(--gray-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--gray-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--gray-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--gray-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--gray-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--gray-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--gray-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--gray-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--gray-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--gray-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--gray-950) / <alpha-value>)\",\n\t},\n\tred: {\n\t\t50: \"hsl(var(--red-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--red-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--red-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--red-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--red-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--red-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--red-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--red-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--red-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--red-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--red-950) / <alpha-value>)\",\n\t},\n\torange: {\n\t\t50: \"hsl(var(--orange-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--orange-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--orange-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--orange-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--orange-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--orange-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--orange-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--orange-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--orange-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--orange-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--orange-950) / <alpha-value>)\",\n\t},\n\tamber: {\n\t\t50: \"hsl(var(--amber-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--amber-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--amber-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--amber-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--amber-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--amber-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--amber-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--amber-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--amber-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--amber-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--amber-950) / <alpha-value>)\",\n\t},\n\tyellow: {\n\t\t50: \"hsl(var(--yellow-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--yellow-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--yellow-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--yellow-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--yellow-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--yellow-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--yellow-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--yellow-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--yellow-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--yellow-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--yellow-950) / <alpha-value>)\",\n\t},\n\tlime: {\n\t\t50: \"hsl(var(--lime-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--lime-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--lime-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--lime-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--lime-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--lime-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--lime-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--lime-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--lime-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--lime-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--lime-950) / <alpha-value>)\",\n\t},\n\tgreen: {\n\t\t50: \"hsl(var(--green-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--green-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--green-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--green-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--green-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--green-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--green-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--green-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--green-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--green-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--green-950) / <alpha-value>)\",\n\t},\n\temerald: {\n\t\t50: \"hsl(var(--emerald-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--emerald-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--emerald-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--emerald-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--emerald-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--emerald-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--emerald-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--emerald-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--emerald-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--emerald-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--emerald-950) / <alpha-value>)\",\n\t},\n\tteal: {\n\t\t50: \"hsl(var(--teal-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--teal-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--teal-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--teal-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--teal-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--teal-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--teal-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--teal-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--teal-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--teal-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--teal-950) / <alpha-value>)\",\n\t},\n\tcyan: {\n\t\t50: \"hsl(var(--cyan-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--cyan-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--cyan-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--cyan-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--cyan-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--cyan-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--cyan-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--cyan-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--cyan-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--cyan-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--cyan-950) / <alpha-value>)\",\n\t},\n\tsky: {\n\t\t50: \"hsl(var(--sky-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--sky-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--sky-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--sky-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--sky-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--sky-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--sky-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--sky-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--sky-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--sky-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--sky-950) / <alpha-value>)\",\n\t},\n\tblue: {\n\t\t50: \"hsl(var(--blue-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--blue-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--blue-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--blue-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--blue-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--blue-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--blue-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--blue-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--blue-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--blue-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--blue-950) / <alpha-value>)\",\n\t},\n\tindigo: {\n\t\t50: \"hsl(var(--indigo-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--indigo-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--indigo-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--indigo-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--indigo-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--indigo-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--indigo-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--indigo-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--indigo-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--indigo-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--indigo-950) / <alpha-value>)\",\n\t},\n\tviolet: {\n\t\t50: \"hsl(var(--violet-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--violet-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--violet-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--violet-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--violet-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--violet-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--violet-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--violet-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--violet-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--violet-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--violet-950) / <alpha-value>)\",\n\t},\n\tpurple: {\n\t\t50: \"hsl(var(--purple-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--purple-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--purple-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--purple-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--purple-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--purple-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--purple-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--purple-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--purple-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--purple-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--purple-950) / <alpha-value>)\",\n\t},\n\tfuchsia: {\n\t\t50: \"hsl(var(--fuchsia-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--fuchsia-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--fuchsia-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--fuchsia-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--fuchsia-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--fuchsia-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--fuchsia-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--fuchsia-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--fuchsia-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--fuchsia-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--fuchsia-950) / <alpha-value>)\",\n\t},\n\tpink: {\n\t\t50: \"hsl(var(--pink-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--pink-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--pink-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--pink-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--pink-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--pink-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--pink-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--pink-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--pink-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--pink-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--pink-950) / <alpha-value>)\",\n\t},\n\trose: {\n\t\t50: \"hsl(var(--rose-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--rose-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--rose-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--rose-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--rose-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--rose-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--rose-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--rose-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--rose-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--rose-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--rose-950) / <alpha-value>)\",\n\t},\n\tneutral: {\n\t\t50: \"hsl(var(--neutral-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--neutral-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--neutral-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--neutral-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--neutral-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--neutral-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--neutral-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--neutral-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--neutral-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--neutral-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--neutral-950) / <alpha-value>)\",\n\t},\n\taccent: {\n\t\t50: \"hsl(var(--accent-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--accent-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--accent-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--accent-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--accent-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--accent-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--accent-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--accent-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--accent-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--accent-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--accent-950) / <alpha-value>)\",\n\t},\n\tdanger: {\n\t\t50: \"hsl(var(--danger-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--danger-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--danger-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--danger-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--danger-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--danger-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--danger-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--danger-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--danger-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--danger-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--danger-950) / <alpha-value>)\",\n\t},\n\twarning: {\n\t\t50: \"hsl(var(--warning-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--warning-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--warning-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--warning-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--warning-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--warning-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--warning-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--warning-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--warning-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--warning-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--warning-950) / <alpha-value>)\",\n\t},\n\tsuccess: {\n\t\t50: \"hsl(var(--success-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--success-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--success-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--success-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--success-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--success-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--success-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--success-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--success-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--success-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--success-950) / <alpha-value>)\",\n\t},\n};\n\nconst mantlePreset = {\n\tcontent: [],\n\tdarkMode: \"class\",\n\ttheme: {\n\t\tcolors,\n\t\tcontainer: {\n\t\t\tcenter: true,\n\t\t\tpadding: \"2rem\",\n\t\t\tscreens: {\n\t\t\t\t\"2xl\": \"1400px\",\n\t\t\t},\n\t\t},\n\t\textend: {\n\t\t\tanimation: {\n\t\t\t\t\"accordion-down\": \"accordion-down 0.2s ease-out\",\n\t\t\t\t\"accordion-up\": \"accordion-up 0.2s ease-out\",\n\t\t\t},\n\t\t\taria: {\n\t\t\t\tcollapsed: 'expanded=\"false\"',\n\t\t\t\tinvalid: 'invalid=\"true\"',\n\t\t\t\tunchecked: 'checked=\"false\"',\n\t\t\t},\n\t\t\tbackgroundImage: {\n\t\t\t\t\"checked-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e\")`,\n\t\t\t\t\"indeterminate-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e\")`,\n\t\t\t},\n\t\t\tboxShadow: {\n\t\t\t\tsm: \"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t\tDEFAULT:\n\t\t\t\t\t\"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tmd: \"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tlg: \"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\txl: \"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\t\"2xl\":\n\t\t\t\t\t\"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tinner: \"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t},\n\t\t\tbackgroundColor: {\n\t\t\t\tbase: \"hsl(var(--bg-base))\",\n\t\t\t\tcard: \"hsl(var(--bg-card))\",\n\t\t\t\tdialog: \"hsl(var(--bg-dialog))\",\n\t\t\t\tform: \"hsl(var(--bg-form))\",\n\t\t\t\toverlay: \"hsl(var(--bg-overlay))\",\n\t\t\t\tpopover: \"hsl(var(--bg-popover))\",\n\t\t\t\ttooltip: \"hsl(var(--bg-tooltip))\",\n\t\t\t\t\"base-hover\": \"hsl(var(--bg-base-hover))\",\n\t\t\t\t\"card-hover\": \"hsl(var(--bg-card-hover))\",\n\t\t\t\t\"filled-accent-active\": \"hsl(var(--bg-filled-accent-active))\",\n\t\t\t\t\"filled-accent-hover\": \"hsl(var(--bg-filled-accent-hover))\",\n\t\t\t\t\"filled-accent\": \"hsl(var(--bg-filled-accent))\",\n\t\t\t\t\"filled-danger-active\": \"hsl(var(--bg-filled-danger-active))\",\n\t\t\t\t\"filled-danger-hover\": \"hsl(var(--bg-filled-danger-hover))\",\n\t\t\t\t\"filled-danger\": \"hsl(var(--bg-filled-danger))\",\n\t\t\t\t\"filled-neutral-active\": \"hsl(var(--bg-filled-neutral-active))\",\n\t\t\t\t\"filled-neutral-hover\": \"hsl(var(--bg-filled-neutral-hover))\",\n\t\t\t\t\"filled-neutral\": \"hsl(var(--bg-filled-neutral))\",\n\t\t\t\t\"filled-success-active\": \"hsl(var(--bg-filled-success-active))\",\n\t\t\t\t\"filled-success-hover\": \"hsl(var(--bg-filled-success-hover))\",\n\t\t\t\t\"filled-success\": \"hsl(var(--bg-filled-success))\",\n\t\t\t\t\"filled-warning-active\": \"hsl(var(--bg-filled-warning-active))\",\n\t\t\t\t\"filled-warning-hover\": \"hsl(var(--bg-filled-warning-hover))\",\n\t\t\t\t\"filled-warning\": \"hsl(var(--bg-filled-warning))\",\n\t\t\t\t\"form-active\": \"hsl(var(--bg-form-active))\",\n\t\t\t\t\"form-hover\": \"hsl(var(--bg-form-hover))\",\n\t\t\t\t\"popover-hover\": \"hsl(var(--bg-popover-hover))\",\n\t\t\t},\n\t\t\ttextColor: {\n\t\t\t\tbody: \"hsl(var(--text-body))\",\n\t\t\t\tmuted: \"hsl(var(--text-muted))\",\n\t\t\t\tplaceholder: \"hsl(var(--text-placeholder))\",\n\t\t\t\tstrong: \"hsl(var(--text-strong))\",\n\t\t\t\ttooltip: \"hsl(var(--text-tooltip))\",\n\t\t\t\t\"on-filled\": \"hsl(var(--text-on-filled))\",\n\t\t\t},\n\t\t\tborderColor: {\n\t\t\t\tbase: \"hsl(var(--border-base))\",\n\t\t\t\tcard: \"hsl(var(--border-card))\",\n\t\t\t\tdialog: \"hsl(var(--border-dialog))\",\n\t\t\t\tform: \"hsl(var(--border-form))\",\n\t\t\t\tpopover: \"hsl(var(--border-popover))\",\n\t\t\t\t\"base-muted\": \"hsl(var(--border-base-muted))\",\n\t\t\t\t\"card-muted\": \"hsl(var(--border-card-muted))\",\n\t\t\t\t\"dialog-muted\": \"hsl(var(--border-dialog-muted))\",\n\t\t\t\t\"popover-muted\": \"hsl(var(--border-popover-muted))\",\n\t\t\t},\n\t\t\tringColor: {\n\t\t\t\t\"focus-accent\": \"hsl(var(--ring-focus-accent))\",\n\t\t\t\t\"focus-danger\": \"hsl(var(--ring-focus-danger))\",\n\t\t\t\t\"focus-neutral\": \"hsl(var(--ring-focus-neutral))\",\n\t\t\t\t\"focus-success\": \"hsl(var(--ring-focus-success))\",\n\t\t\t\t\"focus-warning\": \"hsl(var(--ring-focus-warning))\",\n\t\t\t},\n\t\t\tcursor: {\n\t\t\t\tinherit: \"inherit\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tdata: {\n\t\t\t\t\"active-item\": \"active-item\",\n\t\t\t\t\"drag-over\": 'drag-over=\"true\"',\n\t\t\t\tdisabled: \"disabled\",\n\t\t\t\thighlighted: \"highlighted\",\n\t\t\t\t\"orientation-horizontal\": 'orientation=\"horizontal\"',\n\t\t\t\t\"orientation-vertical\": 'orientation=\"vertical\"',\n\t\t\t\t\"side-bottom\": 'side=\"bottom\"',\n\t\t\t\t\"side-left\": 'side=\"left\"',\n\t\t\t\t\"side-right\": 'side=\"right\"',\n\t\t\t\t\"side-top\": 'side=\"top\"',\n\t\t\t\t\"state-active\": 'state~=\"active\"',\n\t\t\t\t\"state-checked\": 'state~=\"checked\"',\n\t\t\t\t\"state-closed\": 'state~=\"closed\"',\n\t\t\t\t\"state-idle\": 'state~=\"idle\"',\n\t\t\t\t\"state-inactive\": 'state~=\"inactive\"',\n\t\t\t\t\"state-indeterminate\": 'state~=\"indeterminate\"',\n\t\t\t\t\"state-open\": 'state~=\"open\"',\n\t\t\t\t\"state-pending\": 'state~=\"pending\"',\n\t\t\t\t\"state-selected\": 'state~=\"selected\"',\n\t\t\t\t\"state-submitting\": 'state~=\"submitting\"',\n\t\t\t\t\"state-unchecked\": 'state~=\"unchecked\"',\n\t\t\t\t\"validation-error\": 'validation=\"error\"',\n\t\t\t\t\"validation-success\": 'validation=\"success\"',\n\t\t\t\t\"validation-warning\": 'validation=\"warning\"',\n\t\t\t},\n\t\t\tfontFamily: {\n\t\t\t\tsans: [\"EuclidSquare\", ...defaultTheme.fontFamily.sans],\n\t\t\t\tmono: [\"IBMPlexMono\", ...defaultTheme.fontFamily.mono],\n\t\t\t\tbody: [\"Nunito Sans\", ...defaultTheme.fontFamily.sans],\n\t\t\t},\n\t\t\tfontSize: {\n\t\t\t\t\"size-inherit\": \"inherit\",\n\t\t\t\tmono: [\"0.8125rem\", \"1.25\"] as const,\n\t\t\t},\n\t\t\tfontWeight: {\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tkeyframes: {\n\t\t\t\t\"accordion-down\": {\n\t\t\t\t\tfrom: { height: \"0\" },\n\t\t\t\t\tto: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t},\n\t\t\t\t\"accordion-up\": {\n\t\t\t\t\tfrom: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t\tto: { height: \"0\" },\n\t\t\t\t},\n\t\t\t\tspin: {\n\t\t\t\t\tfrom: { transform: \"rotate(var(--spin-start-deg, 0))\" },\n\t\t\t\t\tto: { transform: \"rotate(var(--spin-end-deg, 360deg))\" },\n\t\t\t\t} as const,\n\t\t\t},\n\t\t\tlineHeight: {\n\t\t\t\t0: \"0\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tscreens: {\n\t\t\t\txs: \"480px\",\n\t\t\t},\n\t\t\tspacing: {\n\t\t\t\t\"1.25\": \"0.3125rem\", // 5px\n\t\t\t},\n\t\t\ttransitionProperty: {\n\t\t\t\t\"max-height\": \"max-height\",\n\t\t\t},\n\t\t\tzIndex: {\n\t\t\t\t1: \"1\",\n\t\t\t\tmax: \"2147483647\",\n\t\t\t},\n\t\t},\n\t},\n\tplugins: [\n\t\tanimationDurationPlugin,\n\t\tariaEnabledVariantPlugin,\n\t\tfirefoxVariantPlugin,\n\t\tgradientStopPlugin,\n\t\tpointingVariantsPlugin,\n\t\ttailwindCssAnimatePlugin,\n\t\twhereVariantPlugin,\n\t\tplugin(({ addVariant }) => {\n\t\t\taddVariant(\"dark-high-contrast\", [\":is(.dark-high-contrast &)\"]);\n\t\t\taddVariant(\"high-contrast\", [\":is(.light-high-contrast &)\"]);\n\t\t}),\n\t\tplugin(({ addVariant }) => {\n\t\t\taddVariant(\"not-disabled\", [\"&:not(:disabled)\"]);\n\t\t\taddVariant(\"not-aria-disabled\", ['&:not(&[aria-disabled=\"true\"])']);\n\t\t}),\n\t],\n} satisfies Config;\n\nexport type MantlePreset = typeof mantlePreset;\n\nexport { mantlePreset };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault } from \"./shared.js\";\n\n/**\n * This plugin adds animation-duration utilities to TailwindCSS\n * These are similar to the transition-duration utilities but for animations instead of transitions.\n * It also supports arbitrary values, e.g. `animation-duration-[15s]`.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration\n * @see https://tailwindcss.com/docs/transition-duration\n */\nconst animationDurationPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"animation-duration\": (value) => ({ animationDuration: value }) },\n\t\t{ values: filterDefault(api.theme(\"animationDuration\")) },\n\t);\n});\n\nexport { animationDurationPlugin };\n","/**\n * Filters out the \"DEFAULT\" key from the given object.\n */\nexport function filterDefault(values: Record<string, string>) {\n\treturn Object.fromEntries(Object.entries(values).filter(([key]) => key !== \"DEFAULT\"));\n}\n\ntype AnyObject = Record<string, any>;\n\ntype FlattenObjectOptions = {\n\tparentKey: string;\n\tseparator?: string;\n};\n\n/**\n * Flattens an object to a single level deep object.\n */\nexport function flattenObject(obj: AnyObject, options?: FlattenObjectOptions) {\n\tlet result: AnyObject = {};\n\tconst { parentKey = \"\", separator = \"-\" } = options ?? {};\n\n\tfor (let key in obj) {\n\t\tif (obj.hasOwnProperty(key)) {\n\t\t\tlet newKey = parentKey ? `${parentKey}${separator}${key}` : key;\n\n\t\t\tif (typeof obj[key] === \"object\" && obj[key] != null && !Array.isArray(obj[key])) {\n\t\t\t\tObject.assign(result, flattenObject(obj[key], { parentKey: newKey }));\n\t\t\t} else {\n\t\t\t\tresult[newKey] = obj[key];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variant: aria-enabled\n */\nconst ariaEnabledVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"aria-enabled\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({ modifySelectors, separator }: { modifySelectors: unknown; separator: string }) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:not([aria-disabled]).${api.e(`aria-enabled${separator}${className}`)}`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { ariaEnabledVariantPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a `firefox` variant to TailwindCSS.\n *\n * @see https://gist.github.com/samselikoff/b3c5126ee4f4e69e60b0af0aa5bfb2e7\n */\nconst firefoxVariantPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"firefox\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst isFirefoxRule = api.postcss.atRule({\n\t\t\t\tname: \"supports\",\n\t\t\t\tparams: \"(-moz-appearance:none)\",\n\t\t\t});\n\t\t\tisFirefoxRule.append(container.nodes);\n\t\t\tcontainer.append(isFirefoxRule);\n\t\t\tisFirefoxRule.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`firefox${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { firefoxVariantPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault, flattenObject } from \"./shared.js\";\n\n/**\n * This plugin adds a stop svg utilities to TailwindCSS\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop#attributes\n */\nconst gradientStopPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"stop-opacity\": (value) => ({ \"stop-opacity\": value }) },\n\t\t{ values: filterDefault(api.theme(\"opacity\")), respectImportant: true, respectPrefix: true },\n\t);\n\n\tapi.matchUtilities(\n\t\t{ \"stop-color\": (value) => ({ \"stop-color\": value }) },\n\t\t{\n\t\t\tvalues: flattenObject(api.theme(\"colors\")),\n\t\t\trespectImportant: true,\n\t\t\trespectPrefix: true,\n\t\t\ttype: \"color\",\n\t\t},\n\t);\n});\n\nexport { gradientStopPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variants to TailwindCSS:\n * - `pointer-coarse`\n * - `pointer-fine`\n * - `pointer-none`\n * - `hover-hover`\n * - `hover-none`\n *\n * @see https://css-tricks.com/touch-devices-not-judged-size/\n */\nconst pointingVariantsPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-coarse\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerCoarse = api.postcss.atRule({ name: \"media\", params: \"(pointer: coarse)\" });\n\t\t\tpointerCoarse.append(container.nodes);\n\t\t\tcontainer.append(pointerCoarse);\n\t\t\tpointerCoarse.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-coarse${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-fine\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerFine = api.postcss.atRule({ name: \"media\", params: \"(pointer: fine)\" });\n\t\t\tpointerFine.append(container.nodes);\n\t\t\tcontainer.append(pointerFine);\n\t\t\tpointerFine.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-fine${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerNone = api.postcss.atRule({ name: \"media\", params: \"(pointer: none)\" });\n\t\t\tpointerNone.append(container.nodes);\n\t\t\tcontainer.append(pointerNone);\n\t\t\tpointerNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-hover\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverHover = api.postcss.atRule({ name: \"media\", params: \"(hover: hover)\" });\n\t\t\thoverHover.append(container.nodes);\n\t\t\tcontainer.append(hoverHover);\n\t\t\thoverHover.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-hover${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverNone = api.postcss.atRule({ name: \"media\", params: \"(hover: none)\" });\n\t\t\thoverNone.append(container.nodes);\n\t\t\tcontainer.append(hoverNone);\n\t\t\thoverNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { pointingVariantsPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a :where() variant to TailwindCSS\n *\n * This is useful to avoid specificity issues when using overridable base styles\n * since reduces the specificity of the selector to zero (0, 0, 0).\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/:where\n */\nconst whereVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"where\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({\n\t\t\tmodifySelectors,\n\t\t\tseparator,\n\t\t}: {\n\t\t\tmodifySelectors: (args: { className: string }) => string;\n\t\t\tseparator: string;\n\t\t}) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:where(&.${api.e(`where${separator}${className}`)})`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { whereVariantPlugin };\n","import path from \"node:path\";\n\n/**\n * Resolve the glob path to all mantle component content.\n * For use in your app's tailwind config content field.\n *\n * This works whether or not the `@ngrok/mantle` package is hoisted to a root node_modules,\n * e.g. in a js monorepo using workspaces.\n *\n * @example\n * import { createRequire } from \"node:module\";\n * import { resolveMantleContentGlob } from \"@ngrok/mantle/tailwind-preset\";\n *\n * const mantleContentGlob = resolveMantleContentGlob(createRequire(import.meta.url));\n *\n * export default {\n * content: [mantleContentGlob, \"/your/app/content/here\"],\n * // ...\n * }\n */\nfunction resolveMantleContentGlob(require: NodeRequire) {\n\ttry {\n\t\t/**\n\t\t * use the tailwind-preset module path since it is dual exported as cjs and esm\n\t\t * as long as we rely on postcss we need to reference a cjs module only or it will fail to resolve\n\t\t */\n\t\tconst presetPath = require.resolve(\"@ngrok/mantle/tailwind-preset\");\n\n\t\t/**\n\t\t * resolve the glob path to all mantle component content\n\t\t * need to go up two levels to get to the mantle package root since the\n\t\t * tailwind-preset exists at node_modules/@ngrok/mantle/dist/tailwind-preset.js\n\t\t */\n\t\treturn path.join(presetPath, \"..\", \"..\", \"**\", \"*.js\");\n\t} catch (error) {\n\t\tconsole.warn(error);\n\n\t\t// unlikely, BUT if require.resolve throws, just return a best guess glob of the mantle package\n\t\t// assumes the mantle package is hoisted to the root node_modules\n\t\treturn \"node_modules/@ngrok/mantle/**/*.js\";\n\t}\n}\n\nexport {\n\t//,\n\tresolveMantleContentGlob,\n};\n"],"mappings":"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","names":["tailwind_preset_exports","__export","mantlePreset","resolveMantleContentGlob","__toCommonJS","import_tailwindcss_animate","import_defaultTheme","import_plugin","import_plugin","filterDefault","values","key","flattenObject","obj","options","result","parentKey","separator","newKey","animationDurationPlugin","plugin","api","value","filterDefault","import_plugin","ariaEnabledVariantPlugin","plugin","api","modifySelectors","separator","className","import_plugin","firefoxVariantPlugin","plugin","api","container","separator","isFirefoxRule","rule","import_plugin","gradientStopPlugin","plugin","api","value","filterDefault","flattenObject","import_plugin","pointingVariantsPlugin","plugin","api","container","separator","pointerCoarse","rule","pointerFine","pointerNone","hoverHover","hoverNone","import_plugin","whereVariantPlugin","plugin","api","modifySelectors","separator","className","colors","mantlePreset","defaultTheme","animationDurationPlugin","ariaEnabledVariantPlugin","firefoxVariantPlugin","gradientStopPlugin","pointingVariantsPlugin","tailwindCssAnimatePlugin","whereVariantPlugin","plugin","addVariant","import_node_path","resolveMantleContentGlob","require","presetPath","path","error"]}
|
package/dist/tailwind-preset.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import k from"tailwindcss-animate";import o from"tailwindcss/defaultTheme.js";import m from"tailwindcss/plugin.js";import f from"tailwindcss/plugin.js";function v(a){return Object.fromEntries(Object.entries(a).filter(([l])=>l!=="DEFAULT"))}function t(a,l){let r={},{parentKey:e="",separator:s="-"}=l??{};for(let h in a)if(a.hasOwnProperty(h)){let n=e?`${e}${s}${h}`:h;typeof a[h]=="object"&&a[h]!=null&&!Array.isArray(a[h])?Object.assign(r,t(a[h],{parentKey:n})):r[n]=a[h]}return r}var p=f(a=>{a.matchUtilities({"animation-duration":l=>({animationDuration:l})},{values:v(a.theme("animationDuration"))})});import x from"tailwindcss/plugin.js";var i=x(a=>{a.addVariant("aria-enabled",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:not([aria-disabled]).${a.e(`aria-enabled${r}${e}`)}`)})});import w from"tailwindcss/plugin.js";var u=w(a=>{a.addVariant("firefox",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"supports",params:"(-moz-appearance:none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`firefox${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});import b from"tailwindcss/plugin.js";var c=b(a=>{a.matchUtilities({"stop-opacity":l=>({"stop-opacity":l})},{values:v(a.theme("opacity")),respectImportant:!0,respectPrefix:!0}),a.matchUtilities({"stop-color":l=>({"stop-color":l})},{values:t(a.theme("colors")),respectImportant:!0,respectPrefix:!0,type:"color"})});import y from"tailwindcss/plugin.js";var d=y(a=>{a.addVariant("pointer-coarse",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: coarse)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-coarse${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-fine",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: fine)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-fine${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-hover",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: hover)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-hover${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});import P from"tailwindcss/plugin.js";var g=P(a=>{a.addVariant("where",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:where(&.${a.e(`where${r}${e}`)})`)})});var $={inherit:"inherit",current:"currentColor",transparent:"transparent",white:"hsl(var(--white) / <alpha-value>)",black:"hsl(var(--black) / <alpha-value>)",gray:{50:"hsl(var(--gray-50) / <alpha-value>)",100:"hsl(var(--gray-100) / <alpha-value>)",200:"hsl(var(--gray-200) / <alpha-value>)",300:"hsl(var(--gray-300) / <alpha-value>)",400:"hsl(var(--gray-400) / <alpha-value>)",500:"hsl(var(--gray-500) / <alpha-value>)",600:"hsl(var(--gray-600) / <alpha-value>)",700:"hsl(var(--gray-700) / <alpha-value>)",800:"hsl(var(--gray-800) / <alpha-value>)",900:"hsl(var(--gray-900) / <alpha-value>)",950:"hsl(var(--gray-950) / <alpha-value>)"},red:{50:"hsl(var(--red-50) / <alpha-value>)",100:"hsl(var(--red-100) / <alpha-value>)",200:"hsl(var(--red-200) / <alpha-value>)",300:"hsl(var(--red-300) / <alpha-value>)",400:"hsl(var(--red-400) / <alpha-value>)",500:"hsl(var(--red-500) / <alpha-value>)",600:"hsl(var(--red-600) / <alpha-value>)",700:"hsl(var(--red-700) / <alpha-value>)",800:"hsl(var(--red-800) / <alpha-value>)",900:"hsl(var(--red-900) / <alpha-value>)",950:"hsl(var(--red-950) / <alpha-value>)"},orange:{50:"hsl(var(--orange-50) / <alpha-value>)",100:"hsl(var(--orange-100) / <alpha-value>)",200:"hsl(var(--orange-200) / <alpha-value>)",300:"hsl(var(--orange-300) / <alpha-value>)",400:"hsl(var(--orange-400) / <alpha-value>)",500:"hsl(var(--orange-500) / <alpha-value>)",600:"hsl(var(--orange-600) / <alpha-value>)",700:"hsl(var(--orange-700) / <alpha-value>)",800:"hsl(var(--orange-800) / <alpha-value>)",900:"hsl(var(--orange-900) / <alpha-value>)",950:"hsl(var(--orange-950) / <alpha-value>)"},amber:{50:"hsl(var(--amber-50) / <alpha-value>)",100:"hsl(var(--amber-100) / <alpha-value>)",200:"hsl(var(--amber-200) / <alpha-value>)",300:"hsl(var(--amber-300) / <alpha-value>)",400:"hsl(var(--amber-400) / <alpha-value>)",500:"hsl(var(--amber-500) / <alpha-value>)",600:"hsl(var(--amber-600) / <alpha-value>)",700:"hsl(var(--amber-700) / <alpha-value>)",800:"hsl(var(--amber-800) / <alpha-value>)",900:"hsl(var(--amber-900) / <alpha-value>)",950:"hsl(var(--amber-950) / <alpha-value>)"},yellow:{50:"hsl(var(--yellow-50) / <alpha-value>)",100:"hsl(var(--yellow-100) / <alpha-value>)",200:"hsl(var(--yellow-200) / <alpha-value>)",300:"hsl(var(--yellow-300) / <alpha-value>)",400:"hsl(var(--yellow-400) / <alpha-value>)",500:"hsl(var(--yellow-500) / <alpha-value>)",600:"hsl(var(--yellow-600) / <alpha-value>)",700:"hsl(var(--yellow-700) / <alpha-value>)",800:"hsl(var(--yellow-800) / <alpha-value>)",900:"hsl(var(--yellow-900) / <alpha-value>)",950:"hsl(var(--yellow-950) / <alpha-value>)"},lime:{50:"hsl(var(--lime-50) / <alpha-value>)",100:"hsl(var(--lime-100) / <alpha-value>)",200:"hsl(var(--lime-200) / <alpha-value>)",300:"hsl(var(--lime-300) / <alpha-value>)",400:"hsl(var(--lime-400) / <alpha-value>)",500:"hsl(var(--lime-500) / <alpha-value>)",600:"hsl(var(--lime-600) / <alpha-value>)",700:"hsl(var(--lime-700) / <alpha-value>)",800:"hsl(var(--lime-800) / <alpha-value>)",900:"hsl(var(--lime-900) / <alpha-value>)",950:"hsl(var(--lime-950) / <alpha-value>)"},green:{50:"hsl(var(--green-50) / <alpha-value>)",100:"hsl(var(--green-100) / <alpha-value>)",200:"hsl(var(--green-200) / <alpha-value>)",300:"hsl(var(--green-300) / <alpha-value>)",400:"hsl(var(--green-400) / <alpha-value>)",500:"hsl(var(--green-500) / <alpha-value>)",600:"hsl(var(--green-600) / <alpha-value>)",700:"hsl(var(--green-700) / <alpha-value>)",800:"hsl(var(--green-800) / <alpha-value>)",900:"hsl(var(--green-900) / <alpha-value>)",950:"hsl(var(--green-950) / <alpha-value>)"},emerald:{50:"hsl(var(--emerald-50) / <alpha-value>)",100:"hsl(var(--emerald-100) / <alpha-value>)",200:"hsl(var(--emerald-200) / <alpha-value>)",300:"hsl(var(--emerald-300) / <alpha-value>)",400:"hsl(var(--emerald-400) / <alpha-value>)",500:"hsl(var(--emerald-500) / <alpha-value>)",600:"hsl(var(--emerald-600) / <alpha-value>)",700:"hsl(var(--emerald-700) / <alpha-value>)",800:"hsl(var(--emerald-800) / <alpha-value>)",900:"hsl(var(--emerald-900) / <alpha-value>)",950:"hsl(var(--emerald-950) / <alpha-value>)"},teal:{50:"hsl(var(--teal-50) / <alpha-value>)",100:"hsl(var(--teal-100) / <alpha-value>)",200:"hsl(var(--teal-200) / <alpha-value>)",300:"hsl(var(--teal-300) / <alpha-value>)",400:"hsl(var(--teal-400) / <alpha-value>)",500:"hsl(var(--teal-500) / <alpha-value>)",600:"hsl(var(--teal-600) / <alpha-value>)",700:"hsl(var(--teal-700) / <alpha-value>)",800:"hsl(var(--teal-800) / <alpha-value>)",900:"hsl(var(--teal-900) / <alpha-value>)",950:"hsl(var(--teal-950) / <alpha-value>)"},cyan:{50:"hsl(var(--cyan-50) / <alpha-value>)",100:"hsl(var(--cyan-100) / <alpha-value>)",200:"hsl(var(--cyan-200) / <alpha-value>)",300:"hsl(var(--cyan-300) / <alpha-value>)",400:"hsl(var(--cyan-400) / <alpha-value>)",500:"hsl(var(--cyan-500) / <alpha-value>)",600:"hsl(var(--cyan-600) / <alpha-value>)",700:"hsl(var(--cyan-700) / <alpha-value>)",800:"hsl(var(--cyan-800) / <alpha-value>)",900:"hsl(var(--cyan-900) / <alpha-value>)",950:"hsl(var(--cyan-950) / <alpha-value>)"},sky:{50:"hsl(var(--sky-50) / <alpha-value>)",100:"hsl(var(--sky-100) / <alpha-value>)",200:"hsl(var(--sky-200) / <alpha-value>)",300:"hsl(var(--sky-300) / <alpha-value>)",400:"hsl(var(--sky-400) / <alpha-value>)",500:"hsl(var(--sky-500) / <alpha-value>)",600:"hsl(var(--sky-600) / <alpha-value>)",700:"hsl(var(--sky-700) / <alpha-value>)",800:"hsl(var(--sky-800) / <alpha-value>)",900:"hsl(var(--sky-900) / <alpha-value>)",950:"hsl(var(--sky-950) / <alpha-value>)"},blue:{50:"hsl(var(--blue-50) / <alpha-value>)",100:"hsl(var(--blue-100) / <alpha-value>)",200:"hsl(var(--blue-200) / <alpha-value>)",300:"hsl(var(--blue-300) / <alpha-value>)",400:"hsl(var(--blue-400) / <alpha-value>)",500:"hsl(var(--blue-500) / <alpha-value>)",600:"hsl(var(--blue-600) / <alpha-value>)",700:"hsl(var(--blue-700) / <alpha-value>)",800:"hsl(var(--blue-800) / <alpha-value>)",900:"hsl(var(--blue-900) / <alpha-value>)",950:"hsl(var(--blue-950) / <alpha-value>)"},indigo:{50:"hsl(var(--indigo-50) / <alpha-value>)",100:"hsl(var(--indigo-100) / <alpha-value>)",200:"hsl(var(--indigo-200) / <alpha-value>)",300:"hsl(var(--indigo-300) / <alpha-value>)",400:"hsl(var(--indigo-400) / <alpha-value>)",500:"hsl(var(--indigo-500) / <alpha-value>)",600:"hsl(var(--indigo-600) / <alpha-value>)",700:"hsl(var(--indigo-700) / <alpha-value>)",800:"hsl(var(--indigo-800) / <alpha-value>)",900:"hsl(var(--indigo-900) / <alpha-value>)",950:"hsl(var(--indigo-950) / <alpha-value>)"},violet:{50:"hsl(var(--violet-50) / <alpha-value>)",100:"hsl(var(--violet-100) / <alpha-value>)",200:"hsl(var(--violet-200) / <alpha-value>)",300:"hsl(var(--violet-300) / <alpha-value>)",400:"hsl(var(--violet-400) / <alpha-value>)",500:"hsl(var(--violet-500) / <alpha-value>)",600:"hsl(var(--violet-600) / <alpha-value>)",700:"hsl(var(--violet-700) / <alpha-value>)",800:"hsl(var(--violet-800) / <alpha-value>)",900:"hsl(var(--violet-900) / <alpha-value>)",950:"hsl(var(--violet-950) / <alpha-value>)"},purple:{50:"hsl(var(--purple-50) / <alpha-value>)",100:"hsl(var(--purple-100) / <alpha-value>)",200:"hsl(var(--purple-200) / <alpha-value>)",300:"hsl(var(--purple-300) / <alpha-value>)",400:"hsl(var(--purple-400) / <alpha-value>)",500:"hsl(var(--purple-500) / <alpha-value>)",600:"hsl(var(--purple-600) / <alpha-value>)",700:"hsl(var(--purple-700) / <alpha-value>)",800:"hsl(var(--purple-800) / <alpha-value>)",900:"hsl(var(--purple-900) / <alpha-value>)",950:"hsl(var(--purple-950) / <alpha-value>)"},fuchsia:{50:"hsl(var(--fuchsia-50) / <alpha-value>)",100:"hsl(var(--fuchsia-100) / <alpha-value>)",200:"hsl(var(--fuchsia-200) / <alpha-value>)",300:"hsl(var(--fuchsia-300) / <alpha-value>)",400:"hsl(var(--fuchsia-400) / <alpha-value>)",500:"hsl(var(--fuchsia-500) / <alpha-value>)",600:"hsl(var(--fuchsia-600) / <alpha-value>)",700:"hsl(var(--fuchsia-700) / <alpha-value>)",800:"hsl(var(--fuchsia-800) / <alpha-value>)",900:"hsl(var(--fuchsia-900) / <alpha-value>)",950:"hsl(var(--fuchsia-950) / <alpha-value>)"},pink:{50:"hsl(var(--pink-50) / <alpha-value>)",100:"hsl(var(--pink-100) / <alpha-value>)",200:"hsl(var(--pink-200) / <alpha-value>)",300:"hsl(var(--pink-300) / <alpha-value>)",400:"hsl(var(--pink-400) / <alpha-value>)",500:"hsl(var(--pink-500) / <alpha-value>)",600:"hsl(var(--pink-600) / <alpha-value>)",700:"hsl(var(--pink-700) / <alpha-value>)",800:"hsl(var(--pink-800) / <alpha-value>)",900:"hsl(var(--pink-900) / <alpha-value>)",950:"hsl(var(--pink-950) / <alpha-value>)"},rose:{50:"hsl(var(--rose-50) / <alpha-value>)",100:"hsl(var(--rose-100) / <alpha-value>)",200:"hsl(var(--rose-200) / <alpha-value>)",300:"hsl(var(--rose-300) / <alpha-value>)",400:"hsl(var(--rose-400) / <alpha-value>)",500:"hsl(var(--rose-500) / <alpha-value>)",600:"hsl(var(--rose-600) / <alpha-value>)",700:"hsl(var(--rose-700) / <alpha-value>)",800:"hsl(var(--rose-800) / <alpha-value>)",900:"hsl(var(--rose-900) / <alpha-value>)",950:"hsl(var(--rose-950) / <alpha-value>)"},neutral:{50:"hsl(var(--neutral-50) / <alpha-value>)",100:"hsl(var(--neutral-100) / <alpha-value>)",200:"hsl(var(--neutral-200) / <alpha-value>)",300:"hsl(var(--neutral-300) / <alpha-value>)",400:"hsl(var(--neutral-400) / <alpha-value>)",500:"hsl(var(--neutral-500) / <alpha-value>)",600:"hsl(var(--neutral-600) / <alpha-value>)",700:"hsl(var(--neutral-700) / <alpha-value>)",800:"hsl(var(--neutral-800) / <alpha-value>)",900:"hsl(var(--neutral-900) / <alpha-value>)",950:"hsl(var(--neutral-950) / <alpha-value>)"},accent:{50:"hsl(var(--accent-50) / <alpha-value>)",100:"hsl(var(--accent-100) / <alpha-value>)",200:"hsl(var(--accent-200) / <alpha-value>)",300:"hsl(var(--accent-300) / <alpha-value>)",400:"hsl(var(--accent-400) / <alpha-value>)",500:"hsl(var(--accent-500) / <alpha-value>)",600:"hsl(var(--accent-600) / <alpha-value>)",700:"hsl(var(--accent-700) / <alpha-value>)",800:"hsl(var(--accent-800) / <alpha-value>)",900:"hsl(var(--accent-900) / <alpha-value>)",950:"hsl(var(--accent-950) / <alpha-value>)"},danger:{50:"hsl(var(--danger-50) / <alpha-value>)",100:"hsl(var(--danger-100) / <alpha-value>)",200:"hsl(var(--danger-200) / <alpha-value>)",300:"hsl(var(--danger-300) / <alpha-value>)",400:"hsl(var(--danger-400) / <alpha-value>)",500:"hsl(var(--danger-500) / <alpha-value>)",600:"hsl(var(--danger-600) / <alpha-value>)",700:"hsl(var(--danger-700) / <alpha-value>)",800:"hsl(var(--danger-800) / <alpha-value>)",900:"hsl(var(--danger-900) / <alpha-value>)",950:"hsl(var(--danger-950) / <alpha-value>)"},warning:{50:"hsl(var(--warning-50) / <alpha-value>)",100:"hsl(var(--warning-100) / <alpha-value>)",200:"hsl(var(--warning-200) / <alpha-value>)",300:"hsl(var(--warning-300) / <alpha-value>)",400:"hsl(var(--warning-400) / <alpha-value>)",500:"hsl(var(--warning-500) / <alpha-value>)",600:"hsl(var(--warning-600) / <alpha-value>)",700:"hsl(var(--warning-700) / <alpha-value>)",800:"hsl(var(--warning-800) / <alpha-value>)",900:"hsl(var(--warning-900) / <alpha-value>)",950:"hsl(var(--warning-950) / <alpha-value>)"},success:{50:"hsl(var(--success-50) / <alpha-value>)",100:"hsl(var(--success-100) / <alpha-value>)",200:"hsl(var(--success-200) / <alpha-value>)",300:"hsl(var(--success-300) / <alpha-value>)",400:"hsl(var(--success-400) / <alpha-value>)",500:"hsl(var(--success-500) / <alpha-value>)",600:"hsl(var(--success-600) / <alpha-value>)",700:"hsl(var(--success-700) / <alpha-value>)",800:"hsl(var(--success-800) / <alpha-value>)",900:"hsl(var(--success-900) / <alpha-value>)",950:"hsl(var(--success-950) / <alpha-value>)"}},R={content:[],darkMode:"class",theme:{colors:$,container:{center:!0,padding:"2rem",screens:{"2xl":"1400px"}},extend:{animation:{"accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out"},aria:{collapsed:'expanded="false"',invalid:'invalid="true"',unchecked:'checked="false"'},backgroundImage:{"checked-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e")`,"indeterminate-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e")`},boxShadow:{sm:"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))",DEFAULT:"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))",md:"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))",lg:"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))",xl:"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))","2xl":"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))",inner:"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))"},backgroundColor:{base:"hsl(var(--bg-base))",card:"hsl(var(--bg-card))",dialog:"hsl(var(--bg-dialog))",form:"hsl(var(--bg-form))",overlay:"hsl(var(--bg-overlay))",popover:"hsl(var(--bg-popover))",tooltip:"hsl(var(--bg-tooltip))","base-hover":"hsl(var(--bg-base-hover))","card-hover":"hsl(var(--bg-card-hover))","filled-accent-active":"hsl(var(--bg-filled-accent-active))","filled-accent-hover":"hsl(var(--bg-filled-accent-hover))","filled-accent":"hsl(var(--bg-filled-accent))","filled-danger-active":"hsl(var(--bg-filled-danger-active))","filled-danger-hover":"hsl(var(--bg-filled-danger-hover))","filled-danger":"hsl(var(--bg-filled-danger))","filled-neutral-active":"hsl(var(--bg-filled-neutral-active))","filled-neutral-hover":"hsl(var(--bg-filled-neutral-hover))","filled-neutral":"hsl(var(--bg-filled-neutral))","filled-success-active":"hsl(var(--bg-filled-success-active))","filled-success-hover":"hsl(var(--bg-filled-success-hover))","filled-success":"hsl(var(--bg-filled-success))","filled-warning-active":"hsl(var(--bg-filled-warning-active))","filled-warning-hover":"hsl(var(--bg-filled-warning-hover))","filled-warning":"hsl(var(--bg-filled-warning))","form-active":"hsl(var(--bg-form-active))","form-hover":"hsl(var(--bg-form-hover))","popover-hover":"hsl(var(--bg-popover-hover))"},textColor:{body:"hsl(var(--text-body))",muted:"hsl(var(--text-muted))",placeholder:"hsl(var(--text-placeholder))",strong:"hsl(var(--text-strong))",tooltip:"hsl(var(--text-tooltip))","on-filled":"hsl(var(--text-on-filled))"},borderColor:{base:"hsl(var(--border-base))",card:"hsl(var(--border-card))",dialog:"hsl(var(--border-dialog))",form:"hsl(var(--border-form))",popover:"hsl(var(--border-popover))","base-muted":"hsl(var(--border-base-muted))","card-muted":"hsl(var(--border-card-muted))","dialog-muted":"hsl(var(--border-dialog-muted))","popover-muted":"hsl(var(--border-popover-muted))"},ringColor:{"focus-accent":"hsl(var(--ring-focus-accent))","focus-danger":"hsl(var(--ring-focus-danger))","focus-neutral":"hsl(var(--ring-focus-neutral))","focus-success":"hsl(var(--ring-focus-success))","focus-warning":"hsl(var(--ring-focus-warning))"},cursor:{inherit:"inherit",initial:"initial"},data:{"active-item":"active-item","drag-over":'drag-over="true"',disabled:"disabled",highlighted:"highlighted","orientation-horizontal":'orientation="horizontal"',"orientation-vertical":'orientation="vertical"',"side-bottom":'side="bottom"',"side-left":'side="left"',"side-right":'side="right"',"side-top":'side="top"',"state-active":'state~="active"',"state-checked":'state~="checked"',"state-closed":'state~="closed"',"state-idle":'state~="idle"',"state-inactive":'state~="inactive"',"state-indeterminate":'state~="indeterminate"',"state-open":'state~="open"',"state-pending":'state~="pending"',"state-selected":'state~="selected"',"state-submitting":'state~="submitting"',"state-unchecked":'state~="unchecked"',"validation-error":'validation="error"',"validation-success":'validation="success"',"validation-warning":'validation="warning"'},fontFamily:{sans:["EuclidSquare",...o.fontFamily.sans],mono:["IBMPlexMono",...o.fontFamily.mono],body:["Nunito Sans",...o.fontFamily.sans]},fontSize:{"size-inherit":"inherit",mono:["0.8125rem","1.25"]},fontWeight:{initial:"initial"},keyframes:{"accordion-down":{from:{height:"0"},to:{height:"var(--radix-accordion-content-height)"}},"accordion-up":{from:{height:"var(--radix-accordion-content-height)"},to:{height:"0"}},spin:{from:{transform:"rotate(var(--spin-start-deg, 0))"},to:{transform:"rotate(var(--spin-end-deg, 360deg))"}}},lineHeight:{0:"0",initial:"initial"},screens:{xs:"480px"},spacing:{"1.25":"0.3125rem"},transitionProperty:{"max-height":"max-height"},zIndex:{1:"1",max:"2147483647"}}},plugins:[p,i,u,c,d,k,g,m(function({addVariant:a}){a("dark-high-contrast",[":is(.dark-high-contrast &)"]),a("high-contrast",[":is(.light-high-contrast &)"])}),m(function({addVariant:a}){a("not-disabled",["&:not(:disabled)"]),a("not-aria-disabled",['&:not(&[aria-disabled="true"])'])})]};import A from"node:path";function I(a){try{let l=a.resolve("@ngrok/mantle/tailwind-preset");return A.join(l,"..","..","**","*.js")}catch(l){return console.warn(l),"node_modules/@ngrok/mantle/**/*.js"}}export{R as mantlePreset,I as resolveMantleContentGlob};
|
|
1
|
+
import k from"tailwindcss-animate";import o from"tailwindcss/defaultTheme.js";import m from"tailwindcss/plugin.js";import f from"tailwindcss/plugin.js";function v(a){return Object.fromEntries(Object.entries(a).filter(([l])=>l!=="DEFAULT"))}function t(a,l){let r={},{parentKey:e="",separator:s="-"}=l??{};for(let h in a)if(a.hasOwnProperty(h)){let n=e?`${e}${s}${h}`:h;typeof a[h]=="object"&&a[h]!=null&&!Array.isArray(a[h])?Object.assign(r,t(a[h],{parentKey:n})):r[n]=a[h]}return r}var p=f(a=>{a.matchUtilities({"animation-duration":l=>({animationDuration:l})},{values:v(a.theme("animationDuration"))})});import x from"tailwindcss/plugin.js";var i=x(a=>{a.addVariant("aria-enabled",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:not([aria-disabled]).${a.e(`aria-enabled${r}${e}`)}`)})});import w from"tailwindcss/plugin.js";var u=w(a=>{a.addVariant("firefox",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"supports",params:"(-moz-appearance:none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`firefox${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});import b from"tailwindcss/plugin.js";var c=b(a=>{a.matchUtilities({"stop-opacity":l=>({"stop-opacity":l})},{values:v(a.theme("opacity")),respectImportant:!0,respectPrefix:!0}),a.matchUtilities({"stop-color":l=>({"stop-color":l})},{values:t(a.theme("colors")),respectImportant:!0,respectPrefix:!0,type:"color"})});import y from"tailwindcss/plugin.js";var d=y(a=>{a.addVariant("pointer-coarse",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: coarse)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-coarse${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-fine",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: fine)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-fine${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("pointer-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(pointer: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`pointer-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-hover",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: hover)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-hover${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})}),a.addVariant("hover-none",({container:l,separator:r})=>{let e=a.postcss.atRule({name:"media",params:"(hover: none)"});e.append(l.nodes),l.append(e),e.walkRules(s=>{s.selector=`.${a.e(`hover-none${r}${s.selector.slice(1).replace(/\\/g,"")}`)}`})})});import P from"tailwindcss/plugin.js";var g=P(a=>{a.addVariant("where",({modifySelectors:l,separator:r})=>{l(({className:e})=>`:where(&.${a.e(`where${r}${e}`)})`)})});var $={inherit:"inherit",current:"currentColor",transparent:"transparent",white:"hsl(var(--white) / <alpha-value>)",black:"hsl(var(--black) / <alpha-value>)",gray:{50:"hsl(var(--gray-50) / <alpha-value>)",100:"hsl(var(--gray-100) / <alpha-value>)",200:"hsl(var(--gray-200) / <alpha-value>)",300:"hsl(var(--gray-300) / <alpha-value>)",400:"hsl(var(--gray-400) / <alpha-value>)",500:"hsl(var(--gray-500) / <alpha-value>)",600:"hsl(var(--gray-600) / <alpha-value>)",700:"hsl(var(--gray-700) / <alpha-value>)",800:"hsl(var(--gray-800) / <alpha-value>)",900:"hsl(var(--gray-900) / <alpha-value>)",950:"hsl(var(--gray-950) / <alpha-value>)"},red:{50:"hsl(var(--red-50) / <alpha-value>)",100:"hsl(var(--red-100) / <alpha-value>)",200:"hsl(var(--red-200) / <alpha-value>)",300:"hsl(var(--red-300) / <alpha-value>)",400:"hsl(var(--red-400) / <alpha-value>)",500:"hsl(var(--red-500) / <alpha-value>)",600:"hsl(var(--red-600) / <alpha-value>)",700:"hsl(var(--red-700) / <alpha-value>)",800:"hsl(var(--red-800) / <alpha-value>)",900:"hsl(var(--red-900) / <alpha-value>)",950:"hsl(var(--red-950) / <alpha-value>)"},orange:{50:"hsl(var(--orange-50) / <alpha-value>)",100:"hsl(var(--orange-100) / <alpha-value>)",200:"hsl(var(--orange-200) / <alpha-value>)",300:"hsl(var(--orange-300) / <alpha-value>)",400:"hsl(var(--orange-400) / <alpha-value>)",500:"hsl(var(--orange-500) / <alpha-value>)",600:"hsl(var(--orange-600) / <alpha-value>)",700:"hsl(var(--orange-700) / <alpha-value>)",800:"hsl(var(--orange-800) / <alpha-value>)",900:"hsl(var(--orange-900) / <alpha-value>)",950:"hsl(var(--orange-950) / <alpha-value>)"},amber:{50:"hsl(var(--amber-50) / <alpha-value>)",100:"hsl(var(--amber-100) / <alpha-value>)",200:"hsl(var(--amber-200) / <alpha-value>)",300:"hsl(var(--amber-300) / <alpha-value>)",400:"hsl(var(--amber-400) / <alpha-value>)",500:"hsl(var(--amber-500) / <alpha-value>)",600:"hsl(var(--amber-600) / <alpha-value>)",700:"hsl(var(--amber-700) / <alpha-value>)",800:"hsl(var(--amber-800) / <alpha-value>)",900:"hsl(var(--amber-900) / <alpha-value>)",950:"hsl(var(--amber-950) / <alpha-value>)"},yellow:{50:"hsl(var(--yellow-50) / <alpha-value>)",100:"hsl(var(--yellow-100) / <alpha-value>)",200:"hsl(var(--yellow-200) / <alpha-value>)",300:"hsl(var(--yellow-300) / <alpha-value>)",400:"hsl(var(--yellow-400) / <alpha-value>)",500:"hsl(var(--yellow-500) / <alpha-value>)",600:"hsl(var(--yellow-600) / <alpha-value>)",700:"hsl(var(--yellow-700) / <alpha-value>)",800:"hsl(var(--yellow-800) / <alpha-value>)",900:"hsl(var(--yellow-900) / <alpha-value>)",950:"hsl(var(--yellow-950) / <alpha-value>)"},lime:{50:"hsl(var(--lime-50) / <alpha-value>)",100:"hsl(var(--lime-100) / <alpha-value>)",200:"hsl(var(--lime-200) / <alpha-value>)",300:"hsl(var(--lime-300) / <alpha-value>)",400:"hsl(var(--lime-400) / <alpha-value>)",500:"hsl(var(--lime-500) / <alpha-value>)",600:"hsl(var(--lime-600) / <alpha-value>)",700:"hsl(var(--lime-700) / <alpha-value>)",800:"hsl(var(--lime-800) / <alpha-value>)",900:"hsl(var(--lime-900) / <alpha-value>)",950:"hsl(var(--lime-950) / <alpha-value>)"},green:{50:"hsl(var(--green-50) / <alpha-value>)",100:"hsl(var(--green-100) / <alpha-value>)",200:"hsl(var(--green-200) / <alpha-value>)",300:"hsl(var(--green-300) / <alpha-value>)",400:"hsl(var(--green-400) / <alpha-value>)",500:"hsl(var(--green-500) / <alpha-value>)",600:"hsl(var(--green-600) / <alpha-value>)",700:"hsl(var(--green-700) / <alpha-value>)",800:"hsl(var(--green-800) / <alpha-value>)",900:"hsl(var(--green-900) / <alpha-value>)",950:"hsl(var(--green-950) / <alpha-value>)"},emerald:{50:"hsl(var(--emerald-50) / <alpha-value>)",100:"hsl(var(--emerald-100) / <alpha-value>)",200:"hsl(var(--emerald-200) / <alpha-value>)",300:"hsl(var(--emerald-300) / <alpha-value>)",400:"hsl(var(--emerald-400) / <alpha-value>)",500:"hsl(var(--emerald-500) / <alpha-value>)",600:"hsl(var(--emerald-600) / <alpha-value>)",700:"hsl(var(--emerald-700) / <alpha-value>)",800:"hsl(var(--emerald-800) / <alpha-value>)",900:"hsl(var(--emerald-900) / <alpha-value>)",950:"hsl(var(--emerald-950) / <alpha-value>)"},teal:{50:"hsl(var(--teal-50) / <alpha-value>)",100:"hsl(var(--teal-100) / <alpha-value>)",200:"hsl(var(--teal-200) / <alpha-value>)",300:"hsl(var(--teal-300) / <alpha-value>)",400:"hsl(var(--teal-400) / <alpha-value>)",500:"hsl(var(--teal-500) / <alpha-value>)",600:"hsl(var(--teal-600) / <alpha-value>)",700:"hsl(var(--teal-700) / <alpha-value>)",800:"hsl(var(--teal-800) / <alpha-value>)",900:"hsl(var(--teal-900) / <alpha-value>)",950:"hsl(var(--teal-950) / <alpha-value>)"},cyan:{50:"hsl(var(--cyan-50) / <alpha-value>)",100:"hsl(var(--cyan-100) / <alpha-value>)",200:"hsl(var(--cyan-200) / <alpha-value>)",300:"hsl(var(--cyan-300) / <alpha-value>)",400:"hsl(var(--cyan-400) / <alpha-value>)",500:"hsl(var(--cyan-500) / <alpha-value>)",600:"hsl(var(--cyan-600) / <alpha-value>)",700:"hsl(var(--cyan-700) / <alpha-value>)",800:"hsl(var(--cyan-800) / <alpha-value>)",900:"hsl(var(--cyan-900) / <alpha-value>)",950:"hsl(var(--cyan-950) / <alpha-value>)"},sky:{50:"hsl(var(--sky-50) / <alpha-value>)",100:"hsl(var(--sky-100) / <alpha-value>)",200:"hsl(var(--sky-200) / <alpha-value>)",300:"hsl(var(--sky-300) / <alpha-value>)",400:"hsl(var(--sky-400) / <alpha-value>)",500:"hsl(var(--sky-500) / <alpha-value>)",600:"hsl(var(--sky-600) / <alpha-value>)",700:"hsl(var(--sky-700) / <alpha-value>)",800:"hsl(var(--sky-800) / <alpha-value>)",900:"hsl(var(--sky-900) / <alpha-value>)",950:"hsl(var(--sky-950) / <alpha-value>)"},blue:{50:"hsl(var(--blue-50) / <alpha-value>)",100:"hsl(var(--blue-100) / <alpha-value>)",200:"hsl(var(--blue-200) / <alpha-value>)",300:"hsl(var(--blue-300) / <alpha-value>)",400:"hsl(var(--blue-400) / <alpha-value>)",500:"hsl(var(--blue-500) / <alpha-value>)",600:"hsl(var(--blue-600) / <alpha-value>)",700:"hsl(var(--blue-700) / <alpha-value>)",800:"hsl(var(--blue-800) / <alpha-value>)",900:"hsl(var(--blue-900) / <alpha-value>)",950:"hsl(var(--blue-950) / <alpha-value>)"},indigo:{50:"hsl(var(--indigo-50) / <alpha-value>)",100:"hsl(var(--indigo-100) / <alpha-value>)",200:"hsl(var(--indigo-200) / <alpha-value>)",300:"hsl(var(--indigo-300) / <alpha-value>)",400:"hsl(var(--indigo-400) / <alpha-value>)",500:"hsl(var(--indigo-500) / <alpha-value>)",600:"hsl(var(--indigo-600) / <alpha-value>)",700:"hsl(var(--indigo-700) / <alpha-value>)",800:"hsl(var(--indigo-800) / <alpha-value>)",900:"hsl(var(--indigo-900) / <alpha-value>)",950:"hsl(var(--indigo-950) / <alpha-value>)"},violet:{50:"hsl(var(--violet-50) / <alpha-value>)",100:"hsl(var(--violet-100) / <alpha-value>)",200:"hsl(var(--violet-200) / <alpha-value>)",300:"hsl(var(--violet-300) / <alpha-value>)",400:"hsl(var(--violet-400) / <alpha-value>)",500:"hsl(var(--violet-500) / <alpha-value>)",600:"hsl(var(--violet-600) / <alpha-value>)",700:"hsl(var(--violet-700) / <alpha-value>)",800:"hsl(var(--violet-800) / <alpha-value>)",900:"hsl(var(--violet-900) / <alpha-value>)",950:"hsl(var(--violet-950) / <alpha-value>)"},purple:{50:"hsl(var(--purple-50) / <alpha-value>)",100:"hsl(var(--purple-100) / <alpha-value>)",200:"hsl(var(--purple-200) / <alpha-value>)",300:"hsl(var(--purple-300) / <alpha-value>)",400:"hsl(var(--purple-400) / <alpha-value>)",500:"hsl(var(--purple-500) / <alpha-value>)",600:"hsl(var(--purple-600) / <alpha-value>)",700:"hsl(var(--purple-700) / <alpha-value>)",800:"hsl(var(--purple-800) / <alpha-value>)",900:"hsl(var(--purple-900) / <alpha-value>)",950:"hsl(var(--purple-950) / <alpha-value>)"},fuchsia:{50:"hsl(var(--fuchsia-50) / <alpha-value>)",100:"hsl(var(--fuchsia-100) / <alpha-value>)",200:"hsl(var(--fuchsia-200) / <alpha-value>)",300:"hsl(var(--fuchsia-300) / <alpha-value>)",400:"hsl(var(--fuchsia-400) / <alpha-value>)",500:"hsl(var(--fuchsia-500) / <alpha-value>)",600:"hsl(var(--fuchsia-600) / <alpha-value>)",700:"hsl(var(--fuchsia-700) / <alpha-value>)",800:"hsl(var(--fuchsia-800) / <alpha-value>)",900:"hsl(var(--fuchsia-900) / <alpha-value>)",950:"hsl(var(--fuchsia-950) / <alpha-value>)"},pink:{50:"hsl(var(--pink-50) / <alpha-value>)",100:"hsl(var(--pink-100) / <alpha-value>)",200:"hsl(var(--pink-200) / <alpha-value>)",300:"hsl(var(--pink-300) / <alpha-value>)",400:"hsl(var(--pink-400) / <alpha-value>)",500:"hsl(var(--pink-500) / <alpha-value>)",600:"hsl(var(--pink-600) / <alpha-value>)",700:"hsl(var(--pink-700) / <alpha-value>)",800:"hsl(var(--pink-800) / <alpha-value>)",900:"hsl(var(--pink-900) / <alpha-value>)",950:"hsl(var(--pink-950) / <alpha-value>)"},rose:{50:"hsl(var(--rose-50) / <alpha-value>)",100:"hsl(var(--rose-100) / <alpha-value>)",200:"hsl(var(--rose-200) / <alpha-value>)",300:"hsl(var(--rose-300) / <alpha-value>)",400:"hsl(var(--rose-400) / <alpha-value>)",500:"hsl(var(--rose-500) / <alpha-value>)",600:"hsl(var(--rose-600) / <alpha-value>)",700:"hsl(var(--rose-700) / <alpha-value>)",800:"hsl(var(--rose-800) / <alpha-value>)",900:"hsl(var(--rose-900) / <alpha-value>)",950:"hsl(var(--rose-950) / <alpha-value>)"},neutral:{50:"hsl(var(--neutral-50) / <alpha-value>)",100:"hsl(var(--neutral-100) / <alpha-value>)",200:"hsl(var(--neutral-200) / <alpha-value>)",300:"hsl(var(--neutral-300) / <alpha-value>)",400:"hsl(var(--neutral-400) / <alpha-value>)",500:"hsl(var(--neutral-500) / <alpha-value>)",600:"hsl(var(--neutral-600) / <alpha-value>)",700:"hsl(var(--neutral-700) / <alpha-value>)",800:"hsl(var(--neutral-800) / <alpha-value>)",900:"hsl(var(--neutral-900) / <alpha-value>)",950:"hsl(var(--neutral-950) / <alpha-value>)"},accent:{50:"hsl(var(--accent-50) / <alpha-value>)",100:"hsl(var(--accent-100) / <alpha-value>)",200:"hsl(var(--accent-200) / <alpha-value>)",300:"hsl(var(--accent-300) / <alpha-value>)",400:"hsl(var(--accent-400) / <alpha-value>)",500:"hsl(var(--accent-500) / <alpha-value>)",600:"hsl(var(--accent-600) / <alpha-value>)",700:"hsl(var(--accent-700) / <alpha-value>)",800:"hsl(var(--accent-800) / <alpha-value>)",900:"hsl(var(--accent-900) / <alpha-value>)",950:"hsl(var(--accent-950) / <alpha-value>)"},danger:{50:"hsl(var(--danger-50) / <alpha-value>)",100:"hsl(var(--danger-100) / <alpha-value>)",200:"hsl(var(--danger-200) / <alpha-value>)",300:"hsl(var(--danger-300) / <alpha-value>)",400:"hsl(var(--danger-400) / <alpha-value>)",500:"hsl(var(--danger-500) / <alpha-value>)",600:"hsl(var(--danger-600) / <alpha-value>)",700:"hsl(var(--danger-700) / <alpha-value>)",800:"hsl(var(--danger-800) / <alpha-value>)",900:"hsl(var(--danger-900) / <alpha-value>)",950:"hsl(var(--danger-950) / <alpha-value>)"},warning:{50:"hsl(var(--warning-50) / <alpha-value>)",100:"hsl(var(--warning-100) / <alpha-value>)",200:"hsl(var(--warning-200) / <alpha-value>)",300:"hsl(var(--warning-300) / <alpha-value>)",400:"hsl(var(--warning-400) / <alpha-value>)",500:"hsl(var(--warning-500) / <alpha-value>)",600:"hsl(var(--warning-600) / <alpha-value>)",700:"hsl(var(--warning-700) / <alpha-value>)",800:"hsl(var(--warning-800) / <alpha-value>)",900:"hsl(var(--warning-900) / <alpha-value>)",950:"hsl(var(--warning-950) / <alpha-value>)"},success:{50:"hsl(var(--success-50) / <alpha-value>)",100:"hsl(var(--success-100) / <alpha-value>)",200:"hsl(var(--success-200) / <alpha-value>)",300:"hsl(var(--success-300) / <alpha-value>)",400:"hsl(var(--success-400) / <alpha-value>)",500:"hsl(var(--success-500) / <alpha-value>)",600:"hsl(var(--success-600) / <alpha-value>)",700:"hsl(var(--success-700) / <alpha-value>)",800:"hsl(var(--success-800) / <alpha-value>)",900:"hsl(var(--success-900) / <alpha-value>)",950:"hsl(var(--success-950) / <alpha-value>)"}},R={content:[],darkMode:"class",theme:{colors:$,container:{center:!0,padding:"2rem",screens:{"2xl":"1400px"}},extend:{animation:{"accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out"},aria:{collapsed:'expanded="false"',invalid:'invalid="true"',unchecked:'checked="false"'},backgroundImage:{"checked-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e")`,"indeterminate-icon":`url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e")`},boxShadow:{sm:"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))",DEFAULT:"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))",md:"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))",lg:"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))",xl:"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))","2xl":"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))",inner:"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))"},backgroundColor:{base:"hsl(var(--bg-base))",card:"hsl(var(--bg-card))",dialog:"hsl(var(--bg-dialog))",form:"hsl(var(--bg-form))",overlay:"hsl(var(--bg-overlay))",popover:"hsl(var(--bg-popover))",tooltip:"hsl(var(--bg-tooltip))","base-hover":"hsl(var(--bg-base-hover))","card-hover":"hsl(var(--bg-card-hover))","filled-accent-active":"hsl(var(--bg-filled-accent-active))","filled-accent-hover":"hsl(var(--bg-filled-accent-hover))","filled-accent":"hsl(var(--bg-filled-accent))","filled-danger-active":"hsl(var(--bg-filled-danger-active))","filled-danger-hover":"hsl(var(--bg-filled-danger-hover))","filled-danger":"hsl(var(--bg-filled-danger))","filled-neutral-active":"hsl(var(--bg-filled-neutral-active))","filled-neutral-hover":"hsl(var(--bg-filled-neutral-hover))","filled-neutral":"hsl(var(--bg-filled-neutral))","filled-success-active":"hsl(var(--bg-filled-success-active))","filled-success-hover":"hsl(var(--bg-filled-success-hover))","filled-success":"hsl(var(--bg-filled-success))","filled-warning-active":"hsl(var(--bg-filled-warning-active))","filled-warning-hover":"hsl(var(--bg-filled-warning-hover))","filled-warning":"hsl(var(--bg-filled-warning))","form-active":"hsl(var(--bg-form-active))","form-hover":"hsl(var(--bg-form-hover))","popover-hover":"hsl(var(--bg-popover-hover))"},textColor:{body:"hsl(var(--text-body))",muted:"hsl(var(--text-muted))",placeholder:"hsl(var(--text-placeholder))",strong:"hsl(var(--text-strong))",tooltip:"hsl(var(--text-tooltip))","on-filled":"hsl(var(--text-on-filled))"},borderColor:{base:"hsl(var(--border-base))",card:"hsl(var(--border-card))",dialog:"hsl(var(--border-dialog))",form:"hsl(var(--border-form))",popover:"hsl(var(--border-popover))","base-muted":"hsl(var(--border-base-muted))","card-muted":"hsl(var(--border-card-muted))","dialog-muted":"hsl(var(--border-dialog-muted))","popover-muted":"hsl(var(--border-popover-muted))"},ringColor:{"focus-accent":"hsl(var(--ring-focus-accent))","focus-danger":"hsl(var(--ring-focus-danger))","focus-neutral":"hsl(var(--ring-focus-neutral))","focus-success":"hsl(var(--ring-focus-success))","focus-warning":"hsl(var(--ring-focus-warning))"},cursor:{inherit:"inherit",initial:"initial"},data:{"active-item":"active-item","drag-over":'drag-over="true"',disabled:"disabled",highlighted:"highlighted","orientation-horizontal":'orientation="horizontal"',"orientation-vertical":'orientation="vertical"',"side-bottom":'side="bottom"',"side-left":'side="left"',"side-right":'side="right"',"side-top":'side="top"',"state-active":'state~="active"',"state-checked":'state~="checked"',"state-closed":'state~="closed"',"state-idle":'state~="idle"',"state-inactive":'state~="inactive"',"state-indeterminate":'state~="indeterminate"',"state-open":'state~="open"',"state-pending":'state~="pending"',"state-selected":'state~="selected"',"state-submitting":'state~="submitting"',"state-unchecked":'state~="unchecked"',"validation-error":'validation="error"',"validation-success":'validation="success"',"validation-warning":'validation="warning"'},fontFamily:{sans:["EuclidSquare",...o.fontFamily.sans],mono:["IBMPlexMono",...o.fontFamily.mono],body:["Nunito Sans",...o.fontFamily.sans]},fontSize:{"size-inherit":"inherit",mono:["0.8125rem","1.25"]},fontWeight:{initial:"initial"},keyframes:{"accordion-down":{from:{height:"0"},to:{height:"var(--radix-accordion-content-height)"}},"accordion-up":{from:{height:"var(--radix-accordion-content-height)"},to:{height:"0"}},spin:{from:{transform:"rotate(var(--spin-start-deg, 0))"},to:{transform:"rotate(var(--spin-end-deg, 360deg))"}}},lineHeight:{0:"0",initial:"initial"},screens:{xs:"480px"},spacing:{"1.25":"0.3125rem"},transitionProperty:{"max-height":"max-height"},zIndex:{1:"1",max:"2147483647"}}},plugins:[p,i,u,c,d,k,g,m(({addVariant:a})=>{a("dark-high-contrast",[":is(.dark-high-contrast &)"]),a("high-contrast",[":is(.light-high-contrast &)"])}),m(({addVariant:a})=>{a("not-disabled",["&:not(:disabled)"]),a("not-aria-disabled",['&:not(&[aria-disabled="true"])'])})]};import A from"node:path";function I(a){try{let l=a.resolve("@ngrok/mantle/tailwind-preset");return A.join(l,"..","..","**","*.js")}catch(l){return console.warn(l),"node_modules/@ngrok/mantle/**/*.js"}}export{R as mantlePreset,I as resolveMantleContentGlob};
|
|
2
2
|
//# sourceMappingURL=tailwind-preset.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/tailwind-preset/tailwind.preset.ts","../src/tailwind-preset/tailwind-plugin-animation-duration.ts","../src/tailwind-preset/shared.ts","../src/tailwind-preset/tailwind-plugin-aria-enabled.ts","../src/tailwind-preset/tailwind-plugin-firefox-variant.ts","../src/tailwind-preset/tailwind-plugin-gradient-stop.ts","../src/tailwind-preset/tailwind-plugin-pointing-variants.ts","../src/tailwind-preset/tailwind-plugin-where-variant.ts","../src/tailwind-preset/resolve-mantle-content-glob.ts"],"sourcesContent":["import type { Config } from \"tailwindcss\";\nimport tailwindCssAnimatePlugin from \"tailwindcss-animate\";\nimport defaultTheme from \"tailwindcss/defaultTheme.js\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport { animationDurationPlugin } from \"./tailwind-plugin-animation-duration.js\";\nimport { ariaEnabledVariantPlugin } from \"./tailwind-plugin-aria-enabled.js\";\nimport { firefoxVariantPlugin } from \"./tailwind-plugin-firefox-variant.js\";\nimport { gradientStopPlugin } from \"./tailwind-plugin-gradient-stop.js\";\nimport { pointingVariantsPlugin } from \"./tailwind-plugin-pointing-variants.js\";\nimport { whereVariantPlugin } from \"./tailwind-plugin-where-variant.js\";\n\nconst colors = {\n\tinherit: \"inherit\",\n\tcurrent: \"currentColor\",\n\ttransparent: \"transparent\",\n\twhite: \"hsl(var(--white) / <alpha-value>)\",\n\tblack: \"hsl(var(--black) / <alpha-value>)\",\n\tgray: {\n\t\t50: \"hsl(var(--gray-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--gray-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--gray-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--gray-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--gray-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--gray-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--gray-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--gray-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--gray-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--gray-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--gray-950) / <alpha-value>)\",\n\t},\n\tred: {\n\t\t50: \"hsl(var(--red-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--red-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--red-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--red-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--red-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--red-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--red-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--red-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--red-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--red-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--red-950) / <alpha-value>)\",\n\t},\n\torange: {\n\t\t50: \"hsl(var(--orange-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--orange-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--orange-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--orange-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--orange-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--orange-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--orange-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--orange-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--orange-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--orange-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--orange-950) / <alpha-value>)\",\n\t},\n\tamber: {\n\t\t50: \"hsl(var(--amber-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--amber-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--amber-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--amber-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--amber-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--amber-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--amber-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--amber-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--amber-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--amber-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--amber-950) / <alpha-value>)\",\n\t},\n\tyellow: {\n\t\t50: \"hsl(var(--yellow-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--yellow-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--yellow-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--yellow-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--yellow-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--yellow-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--yellow-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--yellow-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--yellow-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--yellow-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--yellow-950) / <alpha-value>)\",\n\t},\n\tlime: {\n\t\t50: \"hsl(var(--lime-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--lime-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--lime-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--lime-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--lime-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--lime-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--lime-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--lime-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--lime-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--lime-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--lime-950) / <alpha-value>)\",\n\t},\n\tgreen: {\n\t\t50: \"hsl(var(--green-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--green-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--green-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--green-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--green-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--green-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--green-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--green-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--green-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--green-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--green-950) / <alpha-value>)\",\n\t},\n\temerald: {\n\t\t50: \"hsl(var(--emerald-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--emerald-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--emerald-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--emerald-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--emerald-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--emerald-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--emerald-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--emerald-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--emerald-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--emerald-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--emerald-950) / <alpha-value>)\",\n\t},\n\tteal: {\n\t\t50: \"hsl(var(--teal-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--teal-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--teal-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--teal-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--teal-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--teal-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--teal-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--teal-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--teal-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--teal-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--teal-950) / <alpha-value>)\",\n\t},\n\tcyan: {\n\t\t50: \"hsl(var(--cyan-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--cyan-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--cyan-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--cyan-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--cyan-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--cyan-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--cyan-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--cyan-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--cyan-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--cyan-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--cyan-950) / <alpha-value>)\",\n\t},\n\tsky: {\n\t\t50: \"hsl(var(--sky-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--sky-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--sky-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--sky-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--sky-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--sky-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--sky-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--sky-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--sky-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--sky-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--sky-950) / <alpha-value>)\",\n\t},\n\tblue: {\n\t\t50: \"hsl(var(--blue-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--blue-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--blue-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--blue-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--blue-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--blue-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--blue-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--blue-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--blue-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--blue-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--blue-950) / <alpha-value>)\",\n\t},\n\tindigo: {\n\t\t50: \"hsl(var(--indigo-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--indigo-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--indigo-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--indigo-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--indigo-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--indigo-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--indigo-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--indigo-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--indigo-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--indigo-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--indigo-950) / <alpha-value>)\",\n\t},\n\tviolet: {\n\t\t50: \"hsl(var(--violet-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--violet-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--violet-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--violet-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--violet-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--violet-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--violet-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--violet-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--violet-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--violet-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--violet-950) / <alpha-value>)\",\n\t},\n\tpurple: {\n\t\t50: \"hsl(var(--purple-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--purple-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--purple-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--purple-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--purple-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--purple-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--purple-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--purple-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--purple-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--purple-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--purple-950) / <alpha-value>)\",\n\t},\n\tfuchsia: {\n\t\t50: \"hsl(var(--fuchsia-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--fuchsia-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--fuchsia-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--fuchsia-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--fuchsia-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--fuchsia-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--fuchsia-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--fuchsia-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--fuchsia-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--fuchsia-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--fuchsia-950) / <alpha-value>)\",\n\t},\n\tpink: {\n\t\t50: \"hsl(var(--pink-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--pink-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--pink-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--pink-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--pink-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--pink-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--pink-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--pink-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--pink-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--pink-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--pink-950) / <alpha-value>)\",\n\t},\n\trose: {\n\t\t50: \"hsl(var(--rose-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--rose-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--rose-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--rose-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--rose-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--rose-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--rose-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--rose-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--rose-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--rose-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--rose-950) / <alpha-value>)\",\n\t},\n\tneutral: {\n\t\t50: \"hsl(var(--neutral-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--neutral-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--neutral-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--neutral-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--neutral-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--neutral-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--neutral-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--neutral-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--neutral-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--neutral-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--neutral-950) / <alpha-value>)\",\n\t},\n\taccent: {\n\t\t50: \"hsl(var(--accent-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--accent-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--accent-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--accent-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--accent-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--accent-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--accent-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--accent-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--accent-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--accent-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--accent-950) / <alpha-value>)\",\n\t},\n\tdanger: {\n\t\t50: \"hsl(var(--danger-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--danger-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--danger-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--danger-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--danger-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--danger-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--danger-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--danger-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--danger-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--danger-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--danger-950) / <alpha-value>)\",\n\t},\n\twarning: {\n\t\t50: \"hsl(var(--warning-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--warning-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--warning-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--warning-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--warning-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--warning-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--warning-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--warning-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--warning-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--warning-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--warning-950) / <alpha-value>)\",\n\t},\n\tsuccess: {\n\t\t50: \"hsl(var(--success-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--success-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--success-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--success-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--success-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--success-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--success-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--success-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--success-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--success-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--success-950) / <alpha-value>)\",\n\t},\n};\n\nconst mantlePreset = {\n\tcontent: [],\n\tdarkMode: \"class\",\n\ttheme: {\n\t\tcolors,\n\t\tcontainer: {\n\t\t\tcenter: true,\n\t\t\tpadding: \"2rem\",\n\t\t\tscreens: {\n\t\t\t\t\"2xl\": \"1400px\",\n\t\t\t},\n\t\t},\n\t\textend: {\n\t\t\tanimation: {\n\t\t\t\t\"accordion-down\": \"accordion-down 0.2s ease-out\",\n\t\t\t\t\"accordion-up\": \"accordion-up 0.2s ease-out\",\n\t\t\t},\n\t\t\taria: {\n\t\t\t\tcollapsed: 'expanded=\"false\"',\n\t\t\t\tinvalid: 'invalid=\"true\"',\n\t\t\t\tunchecked: 'checked=\"false\"',\n\t\t\t},\n\t\t\tbackgroundImage: {\n\t\t\t\t\"checked-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e\")`,\n\t\t\t\t\"indeterminate-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e\")`,\n\t\t\t},\n\t\t\tboxShadow: {\n\t\t\t\tsm: \"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t\tDEFAULT:\n\t\t\t\t\t\"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tmd: \"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tlg: \"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\txl: \"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\t\"2xl\":\n\t\t\t\t\t\"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tinner: \"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t},\n\t\t\tbackgroundColor: {\n\t\t\t\tbase: \"hsl(var(--bg-base))\",\n\t\t\t\tcard: \"hsl(var(--bg-card))\",\n\t\t\t\tdialog: \"hsl(var(--bg-dialog))\",\n\t\t\t\tform: \"hsl(var(--bg-form))\",\n\t\t\t\toverlay: \"hsl(var(--bg-overlay))\",\n\t\t\t\tpopover: \"hsl(var(--bg-popover))\",\n\t\t\t\ttooltip: \"hsl(var(--bg-tooltip))\",\n\t\t\t\t\"base-hover\": \"hsl(var(--bg-base-hover))\",\n\t\t\t\t\"card-hover\": \"hsl(var(--bg-card-hover))\",\n\t\t\t\t\"filled-accent-active\": \"hsl(var(--bg-filled-accent-active))\",\n\t\t\t\t\"filled-accent-hover\": \"hsl(var(--bg-filled-accent-hover))\",\n\t\t\t\t\"filled-accent\": \"hsl(var(--bg-filled-accent))\",\n\t\t\t\t\"filled-danger-active\": \"hsl(var(--bg-filled-danger-active))\",\n\t\t\t\t\"filled-danger-hover\": \"hsl(var(--bg-filled-danger-hover))\",\n\t\t\t\t\"filled-danger\": \"hsl(var(--bg-filled-danger))\",\n\t\t\t\t\"filled-neutral-active\": \"hsl(var(--bg-filled-neutral-active))\",\n\t\t\t\t\"filled-neutral-hover\": \"hsl(var(--bg-filled-neutral-hover))\",\n\t\t\t\t\"filled-neutral\": \"hsl(var(--bg-filled-neutral))\",\n\t\t\t\t\"filled-success-active\": \"hsl(var(--bg-filled-success-active))\",\n\t\t\t\t\"filled-success-hover\": \"hsl(var(--bg-filled-success-hover))\",\n\t\t\t\t\"filled-success\": \"hsl(var(--bg-filled-success))\",\n\t\t\t\t\"filled-warning-active\": \"hsl(var(--bg-filled-warning-active))\",\n\t\t\t\t\"filled-warning-hover\": \"hsl(var(--bg-filled-warning-hover))\",\n\t\t\t\t\"filled-warning\": \"hsl(var(--bg-filled-warning))\",\n\t\t\t\t\"form-active\": \"hsl(var(--bg-form-active))\",\n\t\t\t\t\"form-hover\": \"hsl(var(--bg-form-hover))\",\n\t\t\t\t\"popover-hover\": \"hsl(var(--bg-popover-hover))\",\n\t\t\t},\n\t\t\ttextColor: {\n\t\t\t\tbody: \"hsl(var(--text-body))\",\n\t\t\t\tmuted: \"hsl(var(--text-muted))\",\n\t\t\t\tplaceholder: \"hsl(var(--text-placeholder))\",\n\t\t\t\tstrong: \"hsl(var(--text-strong))\",\n\t\t\t\ttooltip: \"hsl(var(--text-tooltip))\",\n\t\t\t\t\"on-filled\": \"hsl(var(--text-on-filled))\",\n\t\t\t},\n\t\t\tborderColor: {\n\t\t\t\tbase: \"hsl(var(--border-base))\",\n\t\t\t\tcard: \"hsl(var(--border-card))\",\n\t\t\t\tdialog: \"hsl(var(--border-dialog))\",\n\t\t\t\tform: \"hsl(var(--border-form))\",\n\t\t\t\tpopover: \"hsl(var(--border-popover))\",\n\t\t\t\t\"base-muted\": \"hsl(var(--border-base-muted))\",\n\t\t\t\t\"card-muted\": \"hsl(var(--border-card-muted))\",\n\t\t\t\t\"dialog-muted\": \"hsl(var(--border-dialog-muted))\",\n\t\t\t\t\"popover-muted\": \"hsl(var(--border-popover-muted))\",\n\t\t\t},\n\t\t\tringColor: {\n\t\t\t\t\"focus-accent\": \"hsl(var(--ring-focus-accent))\",\n\t\t\t\t\"focus-danger\": \"hsl(var(--ring-focus-danger))\",\n\t\t\t\t\"focus-neutral\": \"hsl(var(--ring-focus-neutral))\",\n\t\t\t\t\"focus-success\": \"hsl(var(--ring-focus-success))\",\n\t\t\t\t\"focus-warning\": \"hsl(var(--ring-focus-warning))\",\n\t\t\t},\n\t\t\tcursor: {\n\t\t\t\tinherit: \"inherit\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tdata: {\n\t\t\t\t\"active-item\": \"active-item\",\n\t\t\t\t\"drag-over\": 'drag-over=\"true\"',\n\t\t\t\tdisabled: \"disabled\",\n\t\t\t\thighlighted: \"highlighted\",\n\t\t\t\t\"orientation-horizontal\": 'orientation=\"horizontal\"',\n\t\t\t\t\"orientation-vertical\": 'orientation=\"vertical\"',\n\t\t\t\t\"side-bottom\": 'side=\"bottom\"',\n\t\t\t\t\"side-left\": 'side=\"left\"',\n\t\t\t\t\"side-right\": 'side=\"right\"',\n\t\t\t\t\"side-top\": 'side=\"top\"',\n\t\t\t\t\"state-active\": 'state~=\"active\"',\n\t\t\t\t\"state-checked\": 'state~=\"checked\"',\n\t\t\t\t\"state-closed\": 'state~=\"closed\"',\n\t\t\t\t\"state-idle\": 'state~=\"idle\"',\n\t\t\t\t\"state-inactive\": 'state~=\"inactive\"',\n\t\t\t\t\"state-indeterminate\": 'state~=\"indeterminate\"',\n\t\t\t\t\"state-open\": 'state~=\"open\"',\n\t\t\t\t\"state-pending\": 'state~=\"pending\"',\n\t\t\t\t\"state-selected\": 'state~=\"selected\"',\n\t\t\t\t\"state-submitting\": 'state~=\"submitting\"',\n\t\t\t\t\"state-unchecked\": 'state~=\"unchecked\"',\n\t\t\t\t\"validation-error\": 'validation=\"error\"',\n\t\t\t\t\"validation-success\": 'validation=\"success\"',\n\t\t\t\t\"validation-warning\": 'validation=\"warning\"',\n\t\t\t},\n\t\t\tfontFamily: {\n\t\t\t\tsans: [\"EuclidSquare\", ...defaultTheme.fontFamily.sans],\n\t\t\t\tmono: [\"IBMPlexMono\", ...defaultTheme.fontFamily.mono],\n\t\t\t\tbody: [\"Nunito Sans\", ...defaultTheme.fontFamily.sans],\n\t\t\t},\n\t\t\tfontSize: {\n\t\t\t\t\"size-inherit\": \"inherit\",\n\t\t\t\tmono: [\"0.8125rem\", \"1.25\"] as const,\n\t\t\t},\n\t\t\tfontWeight: {\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tkeyframes: {\n\t\t\t\t\"accordion-down\": {\n\t\t\t\t\tfrom: { height: \"0\" },\n\t\t\t\t\tto: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t},\n\t\t\t\t\"accordion-up\": {\n\t\t\t\t\tfrom: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t\tto: { height: \"0\" },\n\t\t\t\t},\n\t\t\t\tspin: {\n\t\t\t\t\tfrom: { transform: \"rotate(var(--spin-start-deg, 0))\" },\n\t\t\t\t\tto: { transform: \"rotate(var(--spin-end-deg, 360deg))\" },\n\t\t\t\t} as const,\n\t\t\t},\n\t\t\tlineHeight: {\n\t\t\t\t0: \"0\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tscreens: {\n\t\t\t\txs: \"480px\",\n\t\t\t},\n\t\t\tspacing: {\n\t\t\t\t\"1.25\": \"0.3125rem\", // 5px\n\t\t\t},\n\t\t\ttransitionProperty: {\n\t\t\t\t\"max-height\": \"max-height\",\n\t\t\t},\n\t\t\tzIndex: {\n\t\t\t\t1: \"1\",\n\t\t\t\tmax: \"2147483647\",\n\t\t\t},\n\t\t},\n\t},\n\tplugins: [\n\t\tanimationDurationPlugin,\n\t\tariaEnabledVariantPlugin,\n\t\tfirefoxVariantPlugin,\n\t\tgradientStopPlugin,\n\t\tpointingVariantsPlugin,\n\t\ttailwindCssAnimatePlugin,\n\t\twhereVariantPlugin,\n\t\tplugin(function ({ addVariant }) {\n\t\t\taddVariant(\"dark-high-contrast\", [\":is(.dark-high-contrast &)\"]);\n\t\t\taddVariant(\"high-contrast\", [\":is(.light-high-contrast &)\"]);\n\t\t}),\n\t\tplugin(function ({ addVariant }) {\n\t\t\taddVariant(\"not-disabled\", [\"&:not(:disabled)\"]);\n\t\t\taddVariant(\"not-aria-disabled\", ['&:not(&[aria-disabled=\"true\"])']);\n\t\t}),\n\t],\n} satisfies Config;\n\nexport type MantlePreset = typeof mantlePreset;\n\nexport { mantlePreset };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault } from \"./shared.js\";\n\n/**\n * This plugin adds animation-duration utilities to TailwindCSS\n * These are similar to the transition-duration utilities but for animations instead of transitions.\n * It also supports arbitrary values, e.g. `animation-duration-[15s]`.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration\n * @see https://tailwindcss.com/docs/transition-duration\n */\nconst animationDurationPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"animation-duration\": (value) => ({ animationDuration: value }) },\n\t\t{ values: filterDefault(api.theme(\"animationDuration\")) },\n\t);\n});\n\nexport { animationDurationPlugin };\n","/**\n * Filters out the \"DEFAULT\" key from the given object.\n */\nexport function filterDefault(values: Record<string, string>) {\n\treturn Object.fromEntries(Object.entries(values).filter(([key]) => key !== \"DEFAULT\"));\n}\n\ntype AnyObject = Record<string, any>;\n\ntype FlattenObjectOptions = {\n\tparentKey: string;\n\tseparator?: string;\n};\n\n/**\n * Flattens an object to a single level deep object.\n */\nexport function flattenObject(obj: AnyObject, options?: FlattenObjectOptions) {\n\tlet result: AnyObject = {};\n\tconst { parentKey = \"\", separator = \"-\" } = options ?? {};\n\n\tfor (let key in obj) {\n\t\tif (obj.hasOwnProperty(key)) {\n\t\t\tlet newKey = parentKey ? `${parentKey}${separator}${key}` : key;\n\n\t\t\tif (typeof obj[key] === \"object\" && obj[key] != null && !Array.isArray(obj[key])) {\n\t\t\t\tObject.assign(result, flattenObject(obj[key], { parentKey: newKey }));\n\t\t\t} else {\n\t\t\t\tresult[newKey] = obj[key];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variant: aria-enabled\n */\nconst ariaEnabledVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"aria-enabled\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({ modifySelectors, separator }: { modifySelectors: unknown; separator: string }) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:not([aria-disabled]).${api.e(`aria-enabled${separator}${className}`)}`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { ariaEnabledVariantPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a `firefox` variant to TailwindCSS.\n *\n * @see https://gist.github.com/samselikoff/b3c5126ee4f4e69e60b0af0aa5bfb2e7\n */\nconst firefoxVariantPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"firefox\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst isFirefoxRule = api.postcss.atRule({\n\t\t\t\tname: \"supports\",\n\t\t\t\tparams: \"(-moz-appearance:none)\",\n\t\t\t});\n\t\t\tisFirefoxRule.append(container.nodes);\n\t\t\tcontainer.append(isFirefoxRule);\n\t\t\tisFirefoxRule.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`firefox${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { firefoxVariantPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault, flattenObject } from \"./shared.js\";\n\n/**\n * This plugin adds a stop svg utilities to TailwindCSS\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop#attributes\n */\nconst gradientStopPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"stop-opacity\": (value) => ({ \"stop-opacity\": value }) },\n\t\t{ values: filterDefault(api.theme(\"opacity\")), respectImportant: true, respectPrefix: true },\n\t);\n\n\tapi.matchUtilities(\n\t\t{ \"stop-color\": (value) => ({ \"stop-color\": value }) },\n\t\t{\n\t\t\tvalues: flattenObject(api.theme(\"colors\")),\n\t\t\trespectImportant: true,\n\t\t\trespectPrefix: true,\n\t\t\ttype: \"color\",\n\t\t},\n\t);\n});\n\nexport { gradientStopPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variants to TailwindCSS:\n * - `pointer-coarse`\n * - `pointer-fine`\n * - `pointer-none`\n * - `hover-hover`\n * - `hover-none`\n *\n * @see https://css-tricks.com/touch-devices-not-judged-size/\n */\nconst pointingVariantsPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-coarse\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerCoarse = api.postcss.atRule({ name: \"media\", params: \"(pointer: coarse)\" });\n\t\t\tpointerCoarse.append(container.nodes);\n\t\t\tcontainer.append(pointerCoarse);\n\t\t\tpointerCoarse.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-coarse${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-fine\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerFine = api.postcss.atRule({ name: \"media\", params: \"(pointer: fine)\" });\n\t\t\tpointerFine.append(container.nodes);\n\t\t\tcontainer.append(pointerFine);\n\t\t\tpointerFine.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-fine${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerNone = api.postcss.atRule({ name: \"media\", params: \"(pointer: none)\" });\n\t\t\tpointerNone.append(container.nodes);\n\t\t\tcontainer.append(pointerNone);\n\t\t\tpointerNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-hover\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverHover = api.postcss.atRule({ name: \"media\", params: \"(hover: hover)\" });\n\t\t\thoverHover.append(container.nodes);\n\t\t\tcontainer.append(hoverHover);\n\t\t\thoverHover.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-hover${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverNone = api.postcss.atRule({ name: \"media\", params: \"(hover: none)\" });\n\t\t\thoverNone.append(container.nodes);\n\t\t\tcontainer.append(hoverNone);\n\t\t\thoverNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { pointingVariantsPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a :where() variant to TailwindCSS\n *\n * This is useful to avoid specificity issues when using overridable base styles\n * since reduces the specificity of the selector to zero (0, 0, 0).\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/:where\n */\nconst whereVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"where\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({\n\t\t\tmodifySelectors,\n\t\t\tseparator,\n\t\t}: {\n\t\t\tmodifySelectors: (args: { className: string }) => string;\n\t\t\tseparator: string;\n\t\t}) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:where(&.${api.e(`where${separator}${className}`)})`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { whereVariantPlugin };\n","import path from \"node:path\";\n\n/**\n * Resolve the glob path to all mantle component content.\n * For use in your app's tailwind config content field.\n *\n * This works whether or not the `@ngrok/mantle` package is hoisted to a root node_modules,\n * e.g. in a js monorepo using workspaces.\n *\n * @example\n * import { createRequire } from \"node:module\";\n * import { resolveMantleContentGlob } from \"@ngrok/mantle/tailwind-preset\";\n *\n * const mantleContentGlob = resolveMantleContentGlob(createRequire(import.meta.url));\n *\n * export default {\n * content: [mantleContentGlob, \"/your/app/content/here\"],\n * // ...\n * }\n */\nfunction resolveMantleContentGlob(require: NodeRequire) {\n\ttry {\n\t\t/**\n\t\t * use the tailwind-preset module path since it is dual exported as cjs and esm\n\t\t * as long as we rely on postcss we need to reference a cjs module only or it will fail to resolve\n\t\t */\n\t\tconst presetPath = require.resolve(\"@ngrok/mantle/tailwind-preset\");\n\n\t\t/**\n\t\t * resolve the glob path to all mantle component content\n\t\t * need to go up two levels to get to the mantle package root since the\n\t\t * tailwind-preset exists at node_modules/@ngrok/mantle/dist/tailwind-preset.js\n\t\t */\n\t\treturn path.join(presetPath, \"..\", \"..\", \"**\", \"*.js\");\n\t} catch (error) {\n\t\tconsole.warn(error);\n\n\t\t// unlikely, BUT if require.resolve throws, just return a best guess glob of the mantle package\n\t\t// assumes the mantle package is hoisted to the root node_modules\n\t\treturn \"node_modules/@ngrok/mantle/**/*.js\";\n\t}\n}\n\nexport {\n\t//,\n\tresolveMantleContentGlob,\n};\n"],"mappings":"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","names":["tailwindCssAnimatePlugin","defaultTheme","plugin","plugin","filterDefault","values","key","flattenObject","obj","options","result","parentKey","separator","newKey","animationDurationPlugin","plugin","api","value","filterDefault","plugin","ariaEnabledVariantPlugin","api","modifySelectors","separator","className","plugin","firefoxVariantPlugin","api","container","separator","isFirefoxRule","rule","plugin","gradientStopPlugin","plugin","api","value","filterDefault","flattenObject","plugin","pointingVariantsPlugin","api","container","separator","pointerCoarse","rule","pointerFine","pointerNone","hoverHover","hoverNone","plugin","whereVariantPlugin","api","modifySelectors","separator","className","colors","mantlePreset","defaultTheme","animationDurationPlugin","ariaEnabledVariantPlugin","firefoxVariantPlugin","gradientStopPlugin","pointingVariantsPlugin","tailwindCssAnimatePlugin","whereVariantPlugin","plugin","addVariant","path","resolveMantleContentGlob","require","presetPath","error"]}
|
|
1
|
+
{"version":3,"sources":["../src/tailwind-preset/tailwind.preset.ts","../src/tailwind-preset/tailwind-plugin-animation-duration.ts","../src/tailwind-preset/shared.ts","../src/tailwind-preset/tailwind-plugin-aria-enabled.ts","../src/tailwind-preset/tailwind-plugin-firefox-variant.ts","../src/tailwind-preset/tailwind-plugin-gradient-stop.ts","../src/tailwind-preset/tailwind-plugin-pointing-variants.ts","../src/tailwind-preset/tailwind-plugin-where-variant.ts","../src/tailwind-preset/resolve-mantle-content-glob.ts"],"sourcesContent":["import type { Config } from \"tailwindcss\";\nimport tailwindCssAnimatePlugin from \"tailwindcss-animate\";\nimport defaultTheme from \"tailwindcss/defaultTheme.js\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport { animationDurationPlugin } from \"./tailwind-plugin-animation-duration.js\";\nimport { ariaEnabledVariantPlugin } from \"./tailwind-plugin-aria-enabled.js\";\nimport { firefoxVariantPlugin } from \"./tailwind-plugin-firefox-variant.js\";\nimport { gradientStopPlugin } from \"./tailwind-plugin-gradient-stop.js\";\nimport { pointingVariantsPlugin } from \"./tailwind-plugin-pointing-variants.js\";\nimport { whereVariantPlugin } from \"./tailwind-plugin-where-variant.js\";\n\nconst colors = {\n\tinherit: \"inherit\",\n\tcurrent: \"currentColor\",\n\ttransparent: \"transparent\",\n\twhite: \"hsl(var(--white) / <alpha-value>)\",\n\tblack: \"hsl(var(--black) / <alpha-value>)\",\n\tgray: {\n\t\t50: \"hsl(var(--gray-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--gray-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--gray-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--gray-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--gray-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--gray-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--gray-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--gray-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--gray-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--gray-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--gray-950) / <alpha-value>)\",\n\t},\n\tred: {\n\t\t50: \"hsl(var(--red-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--red-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--red-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--red-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--red-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--red-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--red-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--red-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--red-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--red-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--red-950) / <alpha-value>)\",\n\t},\n\torange: {\n\t\t50: \"hsl(var(--orange-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--orange-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--orange-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--orange-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--orange-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--orange-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--orange-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--orange-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--orange-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--orange-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--orange-950) / <alpha-value>)\",\n\t},\n\tamber: {\n\t\t50: \"hsl(var(--amber-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--amber-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--amber-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--amber-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--amber-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--amber-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--amber-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--amber-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--amber-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--amber-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--amber-950) / <alpha-value>)\",\n\t},\n\tyellow: {\n\t\t50: \"hsl(var(--yellow-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--yellow-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--yellow-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--yellow-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--yellow-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--yellow-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--yellow-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--yellow-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--yellow-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--yellow-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--yellow-950) / <alpha-value>)\",\n\t},\n\tlime: {\n\t\t50: \"hsl(var(--lime-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--lime-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--lime-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--lime-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--lime-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--lime-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--lime-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--lime-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--lime-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--lime-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--lime-950) / <alpha-value>)\",\n\t},\n\tgreen: {\n\t\t50: \"hsl(var(--green-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--green-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--green-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--green-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--green-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--green-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--green-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--green-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--green-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--green-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--green-950) / <alpha-value>)\",\n\t},\n\temerald: {\n\t\t50: \"hsl(var(--emerald-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--emerald-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--emerald-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--emerald-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--emerald-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--emerald-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--emerald-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--emerald-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--emerald-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--emerald-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--emerald-950) / <alpha-value>)\",\n\t},\n\tteal: {\n\t\t50: \"hsl(var(--teal-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--teal-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--teal-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--teal-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--teal-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--teal-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--teal-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--teal-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--teal-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--teal-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--teal-950) / <alpha-value>)\",\n\t},\n\tcyan: {\n\t\t50: \"hsl(var(--cyan-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--cyan-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--cyan-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--cyan-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--cyan-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--cyan-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--cyan-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--cyan-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--cyan-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--cyan-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--cyan-950) / <alpha-value>)\",\n\t},\n\tsky: {\n\t\t50: \"hsl(var(--sky-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--sky-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--sky-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--sky-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--sky-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--sky-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--sky-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--sky-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--sky-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--sky-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--sky-950) / <alpha-value>)\",\n\t},\n\tblue: {\n\t\t50: \"hsl(var(--blue-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--blue-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--blue-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--blue-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--blue-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--blue-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--blue-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--blue-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--blue-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--blue-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--blue-950) / <alpha-value>)\",\n\t},\n\tindigo: {\n\t\t50: \"hsl(var(--indigo-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--indigo-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--indigo-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--indigo-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--indigo-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--indigo-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--indigo-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--indigo-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--indigo-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--indigo-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--indigo-950) / <alpha-value>)\",\n\t},\n\tviolet: {\n\t\t50: \"hsl(var(--violet-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--violet-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--violet-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--violet-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--violet-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--violet-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--violet-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--violet-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--violet-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--violet-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--violet-950) / <alpha-value>)\",\n\t},\n\tpurple: {\n\t\t50: \"hsl(var(--purple-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--purple-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--purple-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--purple-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--purple-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--purple-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--purple-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--purple-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--purple-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--purple-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--purple-950) / <alpha-value>)\",\n\t},\n\tfuchsia: {\n\t\t50: \"hsl(var(--fuchsia-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--fuchsia-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--fuchsia-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--fuchsia-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--fuchsia-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--fuchsia-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--fuchsia-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--fuchsia-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--fuchsia-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--fuchsia-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--fuchsia-950) / <alpha-value>)\",\n\t},\n\tpink: {\n\t\t50: \"hsl(var(--pink-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--pink-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--pink-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--pink-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--pink-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--pink-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--pink-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--pink-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--pink-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--pink-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--pink-950) / <alpha-value>)\",\n\t},\n\trose: {\n\t\t50: \"hsl(var(--rose-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--rose-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--rose-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--rose-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--rose-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--rose-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--rose-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--rose-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--rose-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--rose-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--rose-950) / <alpha-value>)\",\n\t},\n\tneutral: {\n\t\t50: \"hsl(var(--neutral-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--neutral-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--neutral-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--neutral-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--neutral-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--neutral-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--neutral-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--neutral-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--neutral-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--neutral-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--neutral-950) / <alpha-value>)\",\n\t},\n\taccent: {\n\t\t50: \"hsl(var(--accent-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--accent-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--accent-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--accent-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--accent-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--accent-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--accent-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--accent-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--accent-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--accent-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--accent-950) / <alpha-value>)\",\n\t},\n\tdanger: {\n\t\t50: \"hsl(var(--danger-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--danger-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--danger-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--danger-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--danger-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--danger-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--danger-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--danger-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--danger-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--danger-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--danger-950) / <alpha-value>)\",\n\t},\n\twarning: {\n\t\t50: \"hsl(var(--warning-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--warning-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--warning-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--warning-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--warning-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--warning-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--warning-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--warning-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--warning-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--warning-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--warning-950) / <alpha-value>)\",\n\t},\n\tsuccess: {\n\t\t50: \"hsl(var(--success-50) / <alpha-value>)\",\n\t\t100: \"hsl(var(--success-100) / <alpha-value>)\",\n\t\t200: \"hsl(var(--success-200) / <alpha-value>)\",\n\t\t300: \"hsl(var(--success-300) / <alpha-value>)\",\n\t\t400: \"hsl(var(--success-400) / <alpha-value>)\",\n\t\t500: \"hsl(var(--success-500) / <alpha-value>)\",\n\t\t600: \"hsl(var(--success-600) / <alpha-value>)\",\n\t\t700: \"hsl(var(--success-700) / <alpha-value>)\",\n\t\t800: \"hsl(var(--success-800) / <alpha-value>)\",\n\t\t900: \"hsl(var(--success-900) / <alpha-value>)\",\n\t\t950: \"hsl(var(--success-950) / <alpha-value>)\",\n\t},\n};\n\nconst mantlePreset = {\n\tcontent: [],\n\tdarkMode: \"class\",\n\ttheme: {\n\t\tcolors,\n\t\tcontainer: {\n\t\t\tcenter: true,\n\t\t\tpadding: \"2rem\",\n\t\t\tscreens: {\n\t\t\t\t\"2xl\": \"1400px\",\n\t\t\t},\n\t\t},\n\t\textend: {\n\t\t\tanimation: {\n\t\t\t\t\"accordion-down\": \"accordion-down 0.2s ease-out\",\n\t\t\t\t\"accordion-up\": \"accordion-up 0.2s ease-out\",\n\t\t\t},\n\t\t\taria: {\n\t\t\t\tcollapsed: 'expanded=\"false\"',\n\t\t\t\tinvalid: 'invalid=\"true\"',\n\t\t\t\tunchecked: 'checked=\"false\"',\n\t\t\t},\n\t\t\tbackgroundImage: {\n\t\t\t\t\"checked-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.7071 4.29289c.3905.39053.3905 1.02369 0 1.41422L6.70711 11.7071c-.39053.3905-1.02369.3905-1.41422 0l-2-1.99999c-.39052-.39053-.39052-1.02369 0-1.41422.39053-.39052 1.02369-.39052 1.41422 0L6 9.58579l5.2929-5.2929c.3905-.39052 1.0237-.39052 1.4142 0Z'/%3e%3c/svg%3e\")`,\n\t\t\t\t\"indeterminate-icon\": `url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M4 8c0-.55228.44772-1 1-1h6c.5523 0 1 .44772 1 1s-.4477 1-1 1H5c-.55228 0-1-.44772-1-1Z'/%3e%3c/svg%3e\")`,\n\t\t\t},\n\t\t\tboxShadow: {\n\t\t\t\tsm: \"0px 1px 2px 0 hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t\tDEFAULT:\n\t\t\t\t\t\"0px 1px 2px -1px hsl(var(--shadow-color) / var(--shadow-second)), 0px 1px 3px 0px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tmd: \"0px 2px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 2px 4px -2px hsl(var(--shadow-color) / var(--shadow-second)), 0px 4px 6px -1px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tlg: \"0px 1px 13px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 4px 6px -4px hsl(var(--shadow-color) / var(--shadow-second)), 0px 10px 15px -3px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\txl: \"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 8px 10px -6px hsl(var(--shadow-color) / var(--shadow-second)), 0px 20px 25px -5px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\t\"2xl\":\n\t\t\t\t\t\"0px 0px 15px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 11px 10px 0px hsl(var(--shadow-color) / var(--shadow-first)), 0px 17px 25px 2px hsl(var(--shadow-color) / var(--shadow-second))\",\n\t\t\t\tinner: \"inset 0px 2px 4px 0px hsl(var(--shadow-color) / var(--shadow-first))\",\n\t\t\t},\n\t\t\tbackgroundColor: {\n\t\t\t\tbase: \"hsl(var(--bg-base))\",\n\t\t\t\tcard: \"hsl(var(--bg-card))\",\n\t\t\t\tdialog: \"hsl(var(--bg-dialog))\",\n\t\t\t\tform: \"hsl(var(--bg-form))\",\n\t\t\t\toverlay: \"hsl(var(--bg-overlay))\",\n\t\t\t\tpopover: \"hsl(var(--bg-popover))\",\n\t\t\t\ttooltip: \"hsl(var(--bg-tooltip))\",\n\t\t\t\t\"base-hover\": \"hsl(var(--bg-base-hover))\",\n\t\t\t\t\"card-hover\": \"hsl(var(--bg-card-hover))\",\n\t\t\t\t\"filled-accent-active\": \"hsl(var(--bg-filled-accent-active))\",\n\t\t\t\t\"filled-accent-hover\": \"hsl(var(--bg-filled-accent-hover))\",\n\t\t\t\t\"filled-accent\": \"hsl(var(--bg-filled-accent))\",\n\t\t\t\t\"filled-danger-active\": \"hsl(var(--bg-filled-danger-active))\",\n\t\t\t\t\"filled-danger-hover\": \"hsl(var(--bg-filled-danger-hover))\",\n\t\t\t\t\"filled-danger\": \"hsl(var(--bg-filled-danger))\",\n\t\t\t\t\"filled-neutral-active\": \"hsl(var(--bg-filled-neutral-active))\",\n\t\t\t\t\"filled-neutral-hover\": \"hsl(var(--bg-filled-neutral-hover))\",\n\t\t\t\t\"filled-neutral\": \"hsl(var(--bg-filled-neutral))\",\n\t\t\t\t\"filled-success-active\": \"hsl(var(--bg-filled-success-active))\",\n\t\t\t\t\"filled-success-hover\": \"hsl(var(--bg-filled-success-hover))\",\n\t\t\t\t\"filled-success\": \"hsl(var(--bg-filled-success))\",\n\t\t\t\t\"filled-warning-active\": \"hsl(var(--bg-filled-warning-active))\",\n\t\t\t\t\"filled-warning-hover\": \"hsl(var(--bg-filled-warning-hover))\",\n\t\t\t\t\"filled-warning\": \"hsl(var(--bg-filled-warning))\",\n\t\t\t\t\"form-active\": \"hsl(var(--bg-form-active))\",\n\t\t\t\t\"form-hover\": \"hsl(var(--bg-form-hover))\",\n\t\t\t\t\"popover-hover\": \"hsl(var(--bg-popover-hover))\",\n\t\t\t},\n\t\t\ttextColor: {\n\t\t\t\tbody: \"hsl(var(--text-body))\",\n\t\t\t\tmuted: \"hsl(var(--text-muted))\",\n\t\t\t\tplaceholder: \"hsl(var(--text-placeholder))\",\n\t\t\t\tstrong: \"hsl(var(--text-strong))\",\n\t\t\t\ttooltip: \"hsl(var(--text-tooltip))\",\n\t\t\t\t\"on-filled\": \"hsl(var(--text-on-filled))\",\n\t\t\t},\n\t\t\tborderColor: {\n\t\t\t\tbase: \"hsl(var(--border-base))\",\n\t\t\t\tcard: \"hsl(var(--border-card))\",\n\t\t\t\tdialog: \"hsl(var(--border-dialog))\",\n\t\t\t\tform: \"hsl(var(--border-form))\",\n\t\t\t\tpopover: \"hsl(var(--border-popover))\",\n\t\t\t\t\"base-muted\": \"hsl(var(--border-base-muted))\",\n\t\t\t\t\"card-muted\": \"hsl(var(--border-card-muted))\",\n\t\t\t\t\"dialog-muted\": \"hsl(var(--border-dialog-muted))\",\n\t\t\t\t\"popover-muted\": \"hsl(var(--border-popover-muted))\",\n\t\t\t},\n\t\t\tringColor: {\n\t\t\t\t\"focus-accent\": \"hsl(var(--ring-focus-accent))\",\n\t\t\t\t\"focus-danger\": \"hsl(var(--ring-focus-danger))\",\n\t\t\t\t\"focus-neutral\": \"hsl(var(--ring-focus-neutral))\",\n\t\t\t\t\"focus-success\": \"hsl(var(--ring-focus-success))\",\n\t\t\t\t\"focus-warning\": \"hsl(var(--ring-focus-warning))\",\n\t\t\t},\n\t\t\tcursor: {\n\t\t\t\tinherit: \"inherit\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tdata: {\n\t\t\t\t\"active-item\": \"active-item\",\n\t\t\t\t\"drag-over\": 'drag-over=\"true\"',\n\t\t\t\tdisabled: \"disabled\",\n\t\t\t\thighlighted: \"highlighted\",\n\t\t\t\t\"orientation-horizontal\": 'orientation=\"horizontal\"',\n\t\t\t\t\"orientation-vertical\": 'orientation=\"vertical\"',\n\t\t\t\t\"side-bottom\": 'side=\"bottom\"',\n\t\t\t\t\"side-left\": 'side=\"left\"',\n\t\t\t\t\"side-right\": 'side=\"right\"',\n\t\t\t\t\"side-top\": 'side=\"top\"',\n\t\t\t\t\"state-active\": 'state~=\"active\"',\n\t\t\t\t\"state-checked\": 'state~=\"checked\"',\n\t\t\t\t\"state-closed\": 'state~=\"closed\"',\n\t\t\t\t\"state-idle\": 'state~=\"idle\"',\n\t\t\t\t\"state-inactive\": 'state~=\"inactive\"',\n\t\t\t\t\"state-indeterminate\": 'state~=\"indeterminate\"',\n\t\t\t\t\"state-open\": 'state~=\"open\"',\n\t\t\t\t\"state-pending\": 'state~=\"pending\"',\n\t\t\t\t\"state-selected\": 'state~=\"selected\"',\n\t\t\t\t\"state-submitting\": 'state~=\"submitting\"',\n\t\t\t\t\"state-unchecked\": 'state~=\"unchecked\"',\n\t\t\t\t\"validation-error\": 'validation=\"error\"',\n\t\t\t\t\"validation-success\": 'validation=\"success\"',\n\t\t\t\t\"validation-warning\": 'validation=\"warning\"',\n\t\t\t},\n\t\t\tfontFamily: {\n\t\t\t\tsans: [\"EuclidSquare\", ...defaultTheme.fontFamily.sans],\n\t\t\t\tmono: [\"IBMPlexMono\", ...defaultTheme.fontFamily.mono],\n\t\t\t\tbody: [\"Nunito Sans\", ...defaultTheme.fontFamily.sans],\n\t\t\t},\n\t\t\tfontSize: {\n\t\t\t\t\"size-inherit\": \"inherit\",\n\t\t\t\tmono: [\"0.8125rem\", \"1.25\"] as const,\n\t\t\t},\n\t\t\tfontWeight: {\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tkeyframes: {\n\t\t\t\t\"accordion-down\": {\n\t\t\t\t\tfrom: { height: \"0\" },\n\t\t\t\t\tto: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t},\n\t\t\t\t\"accordion-up\": {\n\t\t\t\t\tfrom: { height: \"var(--radix-accordion-content-height)\" },\n\t\t\t\t\tto: { height: \"0\" },\n\t\t\t\t},\n\t\t\t\tspin: {\n\t\t\t\t\tfrom: { transform: \"rotate(var(--spin-start-deg, 0))\" },\n\t\t\t\t\tto: { transform: \"rotate(var(--spin-end-deg, 360deg))\" },\n\t\t\t\t} as const,\n\t\t\t},\n\t\t\tlineHeight: {\n\t\t\t\t0: \"0\",\n\t\t\t\tinitial: \"initial\",\n\t\t\t},\n\t\t\tscreens: {\n\t\t\t\txs: \"480px\",\n\t\t\t},\n\t\t\tspacing: {\n\t\t\t\t\"1.25\": \"0.3125rem\", // 5px\n\t\t\t},\n\t\t\ttransitionProperty: {\n\t\t\t\t\"max-height\": \"max-height\",\n\t\t\t},\n\t\t\tzIndex: {\n\t\t\t\t1: \"1\",\n\t\t\t\tmax: \"2147483647\",\n\t\t\t},\n\t\t},\n\t},\n\tplugins: [\n\t\tanimationDurationPlugin,\n\t\tariaEnabledVariantPlugin,\n\t\tfirefoxVariantPlugin,\n\t\tgradientStopPlugin,\n\t\tpointingVariantsPlugin,\n\t\ttailwindCssAnimatePlugin,\n\t\twhereVariantPlugin,\n\t\tplugin(({ addVariant }) => {\n\t\t\taddVariant(\"dark-high-contrast\", [\":is(.dark-high-contrast &)\"]);\n\t\t\taddVariant(\"high-contrast\", [\":is(.light-high-contrast &)\"]);\n\t\t}),\n\t\tplugin(({ addVariant }) => {\n\t\t\taddVariant(\"not-disabled\", [\"&:not(:disabled)\"]);\n\t\t\taddVariant(\"not-aria-disabled\", ['&:not(&[aria-disabled=\"true\"])']);\n\t\t}),\n\t],\n} satisfies Config;\n\nexport type MantlePreset = typeof mantlePreset;\n\nexport { mantlePreset };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault } from \"./shared.js\";\n\n/**\n * This plugin adds animation-duration utilities to TailwindCSS\n * These are similar to the transition-duration utilities but for animations instead of transitions.\n * It also supports arbitrary values, e.g. `animation-duration-[15s]`.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration\n * @see https://tailwindcss.com/docs/transition-duration\n */\nconst animationDurationPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"animation-duration\": (value) => ({ animationDuration: value }) },\n\t\t{ values: filterDefault(api.theme(\"animationDuration\")) },\n\t);\n});\n\nexport { animationDurationPlugin };\n","/**\n * Filters out the \"DEFAULT\" key from the given object.\n */\nexport function filterDefault(values: Record<string, string>) {\n\treturn Object.fromEntries(Object.entries(values).filter(([key]) => key !== \"DEFAULT\"));\n}\n\ntype AnyObject = Record<string, any>;\n\ntype FlattenObjectOptions = {\n\tparentKey: string;\n\tseparator?: string;\n};\n\n/**\n * Flattens an object to a single level deep object.\n */\nexport function flattenObject(obj: AnyObject, options?: FlattenObjectOptions) {\n\tlet result: AnyObject = {};\n\tconst { parentKey = \"\", separator = \"-\" } = options ?? {};\n\n\tfor (let key in obj) {\n\t\tif (obj.hasOwnProperty(key)) {\n\t\t\tlet newKey = parentKey ? `${parentKey}${separator}${key}` : key;\n\n\t\t\tif (typeof obj[key] === \"object\" && obj[key] != null && !Array.isArray(obj[key])) {\n\t\t\t\tObject.assign(result, flattenObject(obj[key], { parentKey: newKey }));\n\t\t\t} else {\n\t\t\t\tresult[newKey] = obj[key];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variant: aria-enabled\n */\nconst ariaEnabledVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"aria-enabled\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({ modifySelectors, separator }: { modifySelectors: unknown; separator: string }) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:not([aria-disabled]).${api.e(`aria-enabled${separator}${className}`)}`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { ariaEnabledVariantPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a `firefox` variant to TailwindCSS.\n *\n * @see https://gist.github.com/samselikoff/b3c5126ee4f4e69e60b0af0aa5bfb2e7\n */\nconst firefoxVariantPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"firefox\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst isFirefoxRule = api.postcss.atRule({\n\t\t\t\tname: \"supports\",\n\t\t\t\tparams: \"(-moz-appearance:none)\",\n\t\t\t});\n\t\t\tisFirefoxRule.append(container.nodes);\n\t\t\tcontainer.append(isFirefoxRule);\n\t\t\tisFirefoxRule.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`firefox${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { firefoxVariantPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\nimport { filterDefault, flattenObject } from \"./shared.js\";\n\n/**\n * This plugin adds a stop svg utilities to TailwindCSS\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop#attributes\n */\nconst gradientStopPlugin = plugin((api: PluginAPI) => {\n\tapi.matchUtilities(\n\t\t{ \"stop-opacity\": (value) => ({ \"stop-opacity\": value }) },\n\t\t{ values: filterDefault(api.theme(\"opacity\")), respectImportant: true, respectPrefix: true },\n\t);\n\n\tapi.matchUtilities(\n\t\t{ \"stop-color\": (value) => ({ \"stop-color\": value }) },\n\t\t{\n\t\t\tvalues: flattenObject(api.theme(\"colors\")),\n\t\t\trespectImportant: true,\n\t\t\trespectPrefix: true,\n\t\t\ttype: \"color\",\n\t\t},\n\t);\n});\n\nexport { gradientStopPlugin };\n","import type { Postcss, Root } from \"postcss\";\nimport plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds the following variants to TailwindCSS:\n * - `pointer-coarse`\n * - `pointer-fine`\n * - `pointer-none`\n * - `hover-hover`\n * - `hover-none`\n *\n * @see https://css-tricks.com/touch-devices-not-judged-size/\n */\nconst pointingVariantsPlugin = plugin(\n\t// @ts-expect-error PluginAPI is not typed correctly, missing postcss\n\t(api: PluginAPI & { postcss: Postcss }) => {\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-coarse\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerCoarse = api.postcss.atRule({ name: \"media\", params: \"(pointer: coarse)\" });\n\t\t\tpointerCoarse.append(container.nodes);\n\t\t\tcontainer.append(pointerCoarse);\n\t\t\tpointerCoarse.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-coarse${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-fine\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerFine = api.postcss.atRule({ name: \"media\", params: \"(pointer: fine)\" });\n\t\t\tpointerFine.append(container.nodes);\n\t\t\tcontainer.append(pointerFine);\n\t\t\tpointerFine.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-fine${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"pointer-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst pointerNone = api.postcss.atRule({ name: \"media\", params: \"(pointer: none)\" });\n\t\t\tpointerNone.append(container.nodes);\n\t\t\tcontainer.append(pointerNone);\n\t\t\tpointerNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`pointer-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-hover\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverHover = api.postcss.atRule({ name: \"media\", params: \"(hover: hover)\" });\n\t\t\thoverHover.append(container.nodes);\n\t\t\tcontainer.append(hoverHover);\n\t\t\thoverHover.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-hover${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\tapi.addVariant(\"hover-none\", ({ container, separator }: { container: Root; separator: string }) => {\n\t\t\tconst hoverNone = api.postcss.atRule({ name: \"media\", params: \"(hover: none)\" });\n\t\t\thoverNone.append(container.nodes);\n\t\t\tcontainer.append(hoverNone);\n\t\t\thoverNone.walkRules((rule) => {\n\t\t\t\trule.selector = `.${api.e(`hover-none${separator}${rule.selector.slice(1).replace(/\\\\/g, \"\")}`)}`;\n\t\t\t});\n\t\t});\n\t},\n);\n\nexport { pointingVariantsPlugin };\n","import plugin from \"tailwindcss/plugin.js\";\nimport type { PluginAPI } from \"tailwindcss/types/config.js\";\n\n/**\n * This plugin adds a :where() variant to TailwindCSS\n *\n * This is useful to avoid specificity issues when using overridable base styles\n * since reduces the specificity of the selector to zero (0, 0, 0).\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/:where\n */\nconst whereVariantPlugin = plugin((api: PluginAPI) => {\n\tapi.addVariant(\n\t\t\"where\",\n\t\t// @ts-expect-error addVariant is not typed correctly\n\t\t({\n\t\t\tmodifySelectors,\n\t\t\tseparator,\n\t\t}: {\n\t\t\tmodifySelectors: (args: { className: string }) => string;\n\t\t\tseparator: string;\n\t\t}) => {\n\t\t\t// @ts-expect-error modifySelectors is not typed correctly\n\t\t\tmodifySelectors(({ className }: { className: string }) => {\n\t\t\t\treturn `:where(&.${api.e(`where${separator}${className}`)})`;\n\t\t\t});\n\t\t},\n\t);\n});\n\nexport { whereVariantPlugin };\n","import path from \"node:path\";\n\n/**\n * Resolve the glob path to all mantle component content.\n * For use in your app's tailwind config content field.\n *\n * This works whether or not the `@ngrok/mantle` package is hoisted to a root node_modules,\n * e.g. in a js monorepo using workspaces.\n *\n * @example\n * import { createRequire } from \"node:module\";\n * import { resolveMantleContentGlob } from \"@ngrok/mantle/tailwind-preset\";\n *\n * const mantleContentGlob = resolveMantleContentGlob(createRequire(import.meta.url));\n *\n * export default {\n * content: [mantleContentGlob, \"/your/app/content/here\"],\n * // ...\n * }\n */\nfunction resolveMantleContentGlob(require: NodeRequire) {\n\ttry {\n\t\t/**\n\t\t * use the tailwind-preset module path since it is dual exported as cjs and esm\n\t\t * as long as we rely on postcss we need to reference a cjs module only or it will fail to resolve\n\t\t */\n\t\tconst presetPath = require.resolve(\"@ngrok/mantle/tailwind-preset\");\n\n\t\t/**\n\t\t * resolve the glob path to all mantle component content\n\t\t * need to go up two levels to get to the mantle package root since the\n\t\t * tailwind-preset exists at node_modules/@ngrok/mantle/dist/tailwind-preset.js\n\t\t */\n\t\treturn path.join(presetPath, \"..\", \"..\", \"**\", \"*.js\");\n\t} catch (error) {\n\t\tconsole.warn(error);\n\n\t\t// unlikely, BUT if require.resolve throws, just return a best guess glob of the mantle package\n\t\t// assumes the mantle package is hoisted to the root node_modules\n\t\treturn \"node_modules/@ngrok/mantle/**/*.js\";\n\t}\n}\n\nexport {\n\t//,\n\tresolveMantleContentGlob,\n};\n"],"mappings":"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","names":["tailwindCssAnimatePlugin","defaultTheme","plugin","plugin","filterDefault","values","key","flattenObject","obj","options","result","parentKey","separator","newKey","animationDurationPlugin","plugin","api","value","filterDefault","plugin","ariaEnabledVariantPlugin","api","modifySelectors","separator","className","plugin","firefoxVariantPlugin","api","container","separator","isFirefoxRule","rule","plugin","gradientStopPlugin","plugin","api","value","filterDefault","flattenObject","plugin","pointingVariantsPlugin","api","container","separator","pointerCoarse","rule","pointerFine","pointerNone","hoverHover","hoverNone","plugin","whereVariantPlugin","api","modifySelectors","separator","className","colors","mantlePreset","defaultTheme","animationDurationPlugin","ariaEnabledVariantPlugin","firefoxVariantPlugin","gradientStopPlugin","pointingVariantsPlugin","tailwindCssAnimatePlugin","whereVariantPlugin","plugin","addVariant","path","resolveMantleContentGlob","require","presetPath","error"]}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "mantle is ngrok's UI library and design system.",
|
|
4
4
|
"author": "ngrok",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.19.
|
|
6
|
+
"version": "0.19.2",
|
|
7
7
|
"homepage": "https://mantle.ngrok.com",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"clsx": "2.1.1",
|
|
44
44
|
"prismjs": "1.29.0",
|
|
45
45
|
"react-day-picker": "8.10.1",
|
|
46
|
-
"sonner": "1.7.
|
|
46
|
+
"sonner": "1.7.2",
|
|
47
47
|
"tailwind-merge": "2.6.0",
|
|
48
48
|
"tailwindcss-animate": "1.0.7",
|
|
49
49
|
"tiny-invariant": "1.3.3"
|
|
@@ -52,34 +52,34 @@
|
|
|
52
52
|
"@phosphor-icons/react": "2.1.7",
|
|
53
53
|
"@testing-library/dom": "10.4.0",
|
|
54
54
|
"@testing-library/jest-dom": "6.6.3",
|
|
55
|
-
"@testing-library/react": "16.
|
|
56
|
-
"@testing-library/user-event": "14.
|
|
57
|
-
"@types/node": "22.10.
|
|
55
|
+
"@testing-library/react": "16.2.0",
|
|
56
|
+
"@testing-library/user-event": "14.6.0",
|
|
57
|
+
"@types/node": "22.10.7",
|
|
58
58
|
"@types/prismjs": "1.26.5",
|
|
59
59
|
"@types/react": "18.3.18",
|
|
60
60
|
"@types/react-dom": "18.3.5",
|
|
61
61
|
"@vitejs/plugin-react": "4.3.4",
|
|
62
|
-
"@vitest/ui": "
|
|
62
|
+
"@vitest/ui": "3.0.2",
|
|
63
63
|
"autoprefixer": "10.4.20",
|
|
64
64
|
"browserslist": "4.24.4",
|
|
65
65
|
"date-fns": "3.6.0",
|
|
66
66
|
"jsdom": "26.0.0",
|
|
67
|
-
"postcss": "8.5.
|
|
67
|
+
"postcss": "8.5.1",
|
|
68
68
|
"react": "18.3.1",
|
|
69
69
|
"react-dom": "18.3.1",
|
|
70
|
-
"react-router-dom": "6.28.
|
|
70
|
+
"react-router-dom": "6.28.2",
|
|
71
71
|
"tailwindcss": "3.4.17",
|
|
72
72
|
"tsup": "8.3.5",
|
|
73
73
|
"typescript": "5.7.3",
|
|
74
74
|
"vite": "5.4.11",
|
|
75
|
-
"vitest": "
|
|
75
|
+
"vitest": "3.0.2",
|
|
76
76
|
"zod": "3.24.1",
|
|
77
77
|
"@cfg/tsconfig": "1.0.0"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"@phosphor-icons/react": "2.1.7",
|
|
81
81
|
"date-fns": "^3.6.0",
|
|
82
|
-
"postcss": "^8.5.
|
|
82
|
+
"postcss": "^8.5.1",
|
|
83
83
|
"react": "^18.3.1",
|
|
84
84
|
"react-dom": "^18.3.1",
|
|
85
85
|
"tailwindcss": "^3.4.17",
|