@readme/markdown 8.4.0 → 9.0.0
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/components/TailwindStyle/index.tsx +79 -0
- package/components/index.ts +2 -2
- package/dist/components/TailwindStyle/index.d.ts +3 -0
- package/dist/components/index.d.ts +2 -2
- package/dist/example/components.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/lib/compile.d.ts +1 -2
- package/dist/main.css +1 -1
- package/dist/main.css.map +1 -1
- package/dist/main.js +1167 -1152
- package/dist/main.node.js +1165 -1150
- package/dist/main.node.js.map +1 -1
- package/dist/processor/plugin/toc.d.ts +2 -2
- package/dist/utils/{tailwind-bundle.d.ts → tailwind-compiler.d.ts} +1 -2
- package/package.json +1 -1
- package/styles/gfm.scss +5 -0
- package/components/Style/index.tsx +0 -18
- package/dist/components/Style/index.d.ts +0 -6
package/dist/main.js
CHANGED
|
@@ -17981,6 +17981,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
17981
17981
|
remarkPlugins: () => (/* reexport */ remarkPlugins),
|
|
17982
17982
|
run: () => (/* reexport */ lib_run),
|
|
17983
17983
|
tags: () => (/* reexport */ lib_tags),
|
|
17984
|
+
tailwindCompiler: () => (/* reexport */ tailwindCompiler),
|
|
17984
17985
|
utils: () => (/* binding */ utils)
|
|
17985
17986
|
});
|
|
17986
17987
|
|
|
@@ -18002,12 +18003,12 @@ __webpack_require__.d(components_namespaceObject, {
|
|
|
18002
18003
|
HTMLBlock: () => (components_HTMLBlock),
|
|
18003
18004
|
Heading: () => (components_Heading),
|
|
18004
18005
|
Image: () => (components_Image),
|
|
18005
|
-
Style: () => (components_Style),
|
|
18006
18006
|
Tab: () => (Tab),
|
|
18007
18007
|
Table: () => (components_Table),
|
|
18008
18008
|
TableOfContents: () => (components_TableOfContents),
|
|
18009
18009
|
Tabs: () => (components_Tabs),
|
|
18010
|
-
TailwindRoot: () => (components_TailwindRoot)
|
|
18010
|
+
TailwindRoot: () => (components_TailwindRoot),
|
|
18011
|
+
TailwindStyle: () => (components_TailwindStyle)
|
|
18011
18012
|
});
|
|
18012
18013
|
|
|
18013
18014
|
// NAMESPACE OBJECT: ./node_modules/micromark/lib/constructs.js
|
|
@@ -18536,20 +18537,6 @@ const Image = (Props) => {
|
|
|
18536
18537
|
};
|
|
18537
18538
|
/* harmony default export */ const components_Image = (Image);
|
|
18538
18539
|
|
|
18539
|
-
// EXTERNAL MODULE: external {"amd":"react-dom","commonjs2":"react-dom","commonjs":"react-dom","root":"ReactDOM","umd":"react-dom"}
|
|
18540
|
-
var external_amd_react_dom_commonjs2_react_dom_commonjs_react_dom_root_ReactDOM_umd_react_dom_ = __webpack_require__(8759);
|
|
18541
|
-
;// ./components/Style/index.tsx
|
|
18542
|
-
|
|
18543
|
-
|
|
18544
|
-
const Style = ({ stylesheet }) => {
|
|
18545
|
-
const hasDom = typeof document !== 'undefined';
|
|
18546
|
-
if (!stylesheet) {
|
|
18547
|
-
return null;
|
|
18548
|
-
}
|
|
18549
|
-
return hasDom ? (0,external_amd_react_dom_commonjs2_react_dom_commonjs_react_dom_root_ReactDOM_umd_react_dom_.createPortal)(external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("style", null, stylesheet), document.head) : external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("style", null, stylesheet);
|
|
18550
|
-
};
|
|
18551
|
-
/* harmony default export */ const components_Style = (Style);
|
|
18552
|
-
|
|
18553
18540
|
;// ./components/Table/index.tsx
|
|
18554
18541
|
|
|
18555
18542
|
const Table = (props) => {
|
|
@@ -18560,6 +18547,19 @@ const Table = (props) => {
|
|
|
18560
18547
|
};
|
|
18561
18548
|
/* harmony default export */ const components_Table = (Table);
|
|
18562
18549
|
|
|
18550
|
+
;// ./components/TableOfContents/index.tsx
|
|
18551
|
+
|
|
18552
|
+
function TableOfContents({ children }) {
|
|
18553
|
+
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("nav", null,
|
|
18554
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("ul", { className: "toc-list" },
|
|
18555
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", null,
|
|
18556
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("a", { className: "tocHeader", href: "#" },
|
|
18557
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("i", { className: "icon icon-text-align-left" }),
|
|
18558
|
+
"Table of Contents")),
|
|
18559
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", { className: "toc-children" }, children))));
|
|
18560
|
+
}
|
|
18561
|
+
/* harmony default export */ const components_TableOfContents = (TableOfContents);
|
|
18562
|
+
|
|
18563
18563
|
;// ./components/Tabs/index.tsx
|
|
18564
18564
|
|
|
18565
18565
|
|
|
@@ -18577,19 +18577,6 @@ const Tabs = ({ children }) => {
|
|
|
18577
18577
|
};
|
|
18578
18578
|
/* harmony default export */ const components_Tabs = (Tabs);
|
|
18579
18579
|
|
|
18580
|
-
;// ./components/TableOfContents/index.tsx
|
|
18581
|
-
|
|
18582
|
-
function TableOfContents({ children }) {
|
|
18583
|
-
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("nav", null,
|
|
18584
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("ul", { className: "toc-list" },
|
|
18585
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", null,
|
|
18586
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("a", { className: "tocHeader", href: "#" },
|
|
18587
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("i", { className: "icon icon-text-align-left" }),
|
|
18588
|
-
"Table of Contents")),
|
|
18589
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", { className: "toc-children" }, children))));
|
|
18590
|
-
}
|
|
18591
|
-
/* harmony default export */ const components_TableOfContents = (TableOfContents);
|
|
18592
|
-
|
|
18593
18580
|
;// ./utils/consts.ts
|
|
18594
18581
|
const tailwindPrefix = 'readme-tailwind';
|
|
18595
18582
|
|
|
@@ -18602,6 +18589,231 @@ const TailwindRoot = ({ children, flow }) => {
|
|
|
18602
18589
|
};
|
|
18603
18590
|
/* harmony default export */ const components_TailwindRoot = (TailwindRoot);
|
|
18604
18591
|
|
|
18592
|
+
// EXTERNAL MODULE: external {"amd":"react-dom","commonjs2":"react-dom","commonjs":"react-dom","root":"ReactDOM","umd":"react-dom"}
|
|
18593
|
+
var external_amd_react_dom_commonjs2_react_dom_commonjs_react_dom_root_ReactDOM_umd_react_dom_ = __webpack_require__(8759);
|
|
18594
|
+
// EXTERNAL MODULE: ./node_modules/postcss/lib/postcss.js
|
|
18595
|
+
var postcss = __webpack_require__(2895);
|
|
18596
|
+
var postcss_default = /*#__PURE__*/__webpack_require__.n(postcss);
|
|
18597
|
+
;// ./node_modules/postcss/lib/postcss.mjs
|
|
18598
|
+
|
|
18599
|
+
|
|
18600
|
+
/* harmony default export */ const lib_postcss = ((postcss_default()));
|
|
18601
|
+
|
|
18602
|
+
const stringify = (postcss_default()).stringify
|
|
18603
|
+
const fromJSON = (postcss_default()).fromJSON
|
|
18604
|
+
const postcss_plugin = (postcss_default()).plugin
|
|
18605
|
+
const parse = (postcss_default()).parse
|
|
18606
|
+
const list = (postcss_default()).list
|
|
18607
|
+
|
|
18608
|
+
const postcss_document = (postcss_default()).document
|
|
18609
|
+
const comment = (postcss_default()).comment
|
|
18610
|
+
const atRule = (postcss_default()).atRule
|
|
18611
|
+
const rule = (postcss_default()).rule
|
|
18612
|
+
const decl = (postcss_default()).decl
|
|
18613
|
+
const root = (postcss_default()).root
|
|
18614
|
+
|
|
18615
|
+
const CssSyntaxError = (postcss_default()).CssSyntaxError
|
|
18616
|
+
const Declaration = (postcss_default()).Declaration
|
|
18617
|
+
const Container = (postcss_default()).Container
|
|
18618
|
+
const Processor = (postcss_default()).Processor
|
|
18619
|
+
const Document = (postcss_default()).Document
|
|
18620
|
+
const Comment = (postcss_default()).Comment
|
|
18621
|
+
const Warning = (postcss_default()).Warning
|
|
18622
|
+
const AtRule = (postcss_default()).AtRule
|
|
18623
|
+
const Result = (postcss_default()).Result
|
|
18624
|
+
const Input = (postcss_default()).Input
|
|
18625
|
+
const Rule = (postcss_default()).Rule
|
|
18626
|
+
const Root = (postcss_default()).Root
|
|
18627
|
+
const Node = (postcss_default()).Node
|
|
18628
|
+
|
|
18629
|
+
// EXTERNAL MODULE: ./node_modules/postcss-prefix-selector/index.js
|
|
18630
|
+
var postcss_prefix_selector = __webpack_require__(9193);
|
|
18631
|
+
var postcss_prefix_selector_default = /*#__PURE__*/__webpack_require__.n(postcss_prefix_selector);
|
|
18632
|
+
;// ./node_modules/tailwindcss/dist/chunk-AZANAYY2.mjs
|
|
18633
|
+
var l={inherit:"inherit",current:"currentColor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(0.984 0.003 247.858)",100:"oklch(0.968 0.007 247.896)",200:"oklch(0.929 0.013 255.508)",300:"oklch(0.869 0.022 252.894)",400:"oklch(0.704 0.04 256.788)",500:"oklch(0.554 0.046 257.417)",600:"oklch(0.446 0.043 257.281)",700:"oklch(0.372 0.044 257.287)",800:"oklch(0.279 0.041 260.031)",900:"oklch(0.208 0.042 265.755)",950:"oklch(0.129 0.042 264.695)"},gray:{50:"oklch(0.985 0.002 247.839)",100:"oklch(0.967 0.003 264.542)",200:"oklch(0.928 0.006 264.531)",300:"oklch(0.872 0.01 258.338)",400:"oklch(0.707 0.022 261.325)",500:"oklch(0.551 0.027 264.364)",600:"oklch(0.446 0.03 256.802)",700:"oklch(0.373 0.034 259.733)",800:"oklch(0.278 0.033 256.848)",900:"oklch(0.21 0.034 264.665)",950:"oklch(0.13 0.028 261.692)"},zinc:{50:"oklch(0.985 0 0)",100:"oklch(0.967 0.001 286.375)",200:"oklch(0.92 0.004 286.32)",300:"oklch(0.871 0.006 286.286)",400:"oklch(0.705 0.015 286.067)",500:"oklch(0.552 0.016 285.938)",600:"oklch(0.442 0.017 285.786)",700:"oklch(0.37 0.013 285.805)",800:"oklch(0.274 0.006 286.033)",900:"oklch(0.21 0.006 285.885)",950:"oklch(0.141 0.005 285.823)"},neutral:{50:"oklch(0.985 0 0)",100:"oklch(0.97 0 0)",200:"oklch(0.922 0 0)",300:"oklch(0.87 0 0)",400:"oklch(0.708 0 0)",500:"oklch(0.556 0 0)",600:"oklch(0.439 0 0)",700:"oklch(0.371 0 0)",800:"oklch(0.269 0 0)",900:"oklch(0.205 0 0)",950:"oklch(0.145 0 0)"},stone:{50:"oklch(0.985 0.001 106.423)",100:"oklch(0.97 0.001 106.424)",200:"oklch(0.923 0.003 48.717)",300:"oklch(0.869 0.005 56.366)",400:"oklch(0.709 0.01 56.259)",500:"oklch(0.553 0.013 58.071)",600:"oklch(0.444 0.011 73.639)",700:"oklch(0.374 0.01 67.558)",800:"oklch(0.268 0.007 34.298)",900:"oklch(0.216 0.006 56.043)",950:"oklch(0.147 0.004 49.25)"},red:{50:"oklch(0.971 0.013 17.38)",100:"oklch(0.936 0.032 17.717)",200:"oklch(0.885 0.062 18.334)",300:"oklch(0.808 0.114 19.571)",400:"oklch(0.704 0.191 22.216)",500:"oklch(0.637 0.237 25.331)",600:"oklch(0.577 0.245 27.325)",700:"oklch(0.505 0.213 27.518)",800:"oklch(0.444 0.177 26.899)",900:"oklch(0.396 0.141 25.723)",950:"oklch(0.258 0.092 26.042)"},orange:{50:"oklch(0.98 0.016 73.684)",100:"oklch(0.954 0.038 75.164)",200:"oklch(0.901 0.076 70.697)",300:"oklch(0.837 0.128 66.29)",400:"oklch(0.75 0.183 55.934)",500:"oklch(0.705 0.213 47.604)",600:"oklch(0.646 0.222 41.116)",700:"oklch(0.553 0.195 38.402)",800:"oklch(0.47 0.157 37.304)",900:"oklch(0.408 0.123 38.172)",950:"oklch(0.266 0.079 36.259)"},amber:{50:"oklch(0.987 0.022 95.277)",100:"oklch(0.962 0.059 95.617)",200:"oklch(0.924 0.12 95.746)",300:"oklch(0.879 0.169 91.605)",400:"oklch(0.828 0.189 84.429)",500:"oklch(0.769 0.188 70.08)",600:"oklch(0.666 0.179 58.318)",700:"oklch(0.555 0.163 48.998)",800:"oklch(0.473 0.137 46.201)",900:"oklch(0.414 0.112 45.904)",950:"oklch(0.279 0.077 45.635)"},yellow:{50:"oklch(0.987 0.026 102.212)",100:"oklch(0.973 0.071 103.193)",200:"oklch(0.945 0.129 101.54)",300:"oklch(0.905 0.182 98.111)",400:"oklch(0.852 0.199 91.936)",500:"oklch(0.795 0.184 86.047)",600:"oklch(0.681 0.162 75.834)",700:"oklch(0.554 0.135 66.442)",800:"oklch(0.476 0.114 61.907)",900:"oklch(0.421 0.095 57.708)",950:"oklch(0.286 0.066 53.813)"},lime:{50:"oklch(0.986 0.031 120.757)",100:"oklch(0.967 0.067 122.328)",200:"oklch(0.938 0.127 124.321)",300:"oklch(0.897 0.196 126.665)",400:"oklch(0.841 0.238 128.85)",500:"oklch(0.768 0.233 130.85)",600:"oklch(0.648 0.2 131.684)",700:"oklch(0.532 0.157 131.589)",800:"oklch(0.453 0.124 130.933)",900:"oklch(0.405 0.101 131.063)",950:"oklch(0.274 0.072 132.109)"},green:{50:"oklch(0.982 0.018 155.826)",100:"oklch(0.962 0.044 156.743)",200:"oklch(0.925 0.084 155.995)",300:"oklch(0.871 0.15 154.449)",400:"oklch(0.792 0.209 151.711)",500:"oklch(0.723 0.219 149.579)",600:"oklch(0.627 0.194 149.214)",700:"oklch(0.527 0.154 150.069)",800:"oklch(0.448 0.119 151.328)",900:"oklch(0.393 0.095 152.535)",950:"oklch(0.266 0.065 152.934)"},emerald:{50:"oklch(0.979 0.021 166.113)",100:"oklch(0.95 0.052 163.051)",200:"oklch(0.905 0.093 164.15)",300:"oklch(0.845 0.143 164.978)",400:"oklch(0.765 0.177 163.223)",500:"oklch(0.696 0.17 162.48)",600:"oklch(0.596 0.145 163.225)",700:"oklch(0.508 0.118 165.612)",800:"oklch(0.432 0.095 166.913)",900:"oklch(0.378 0.077 168.94)",950:"oklch(0.262 0.051 172.552)"},teal:{50:"oklch(0.984 0.014 180.72)",100:"oklch(0.953 0.051 180.801)",200:"oklch(0.91 0.096 180.426)",300:"oklch(0.855 0.138 181.071)",400:"oklch(0.777 0.152 181.912)",500:"oklch(0.704 0.14 182.503)",600:"oklch(0.6 0.118 184.704)",700:"oklch(0.511 0.096 186.391)",800:"oklch(0.437 0.078 188.216)",900:"oklch(0.386 0.063 188.416)",950:"oklch(0.277 0.046 192.524)"},cyan:{50:"oklch(0.984 0.019 200.873)",100:"oklch(0.956 0.045 203.388)",200:"oklch(0.917 0.08 205.041)",300:"oklch(0.865 0.127 207.078)",400:"oklch(0.789 0.154 211.53)",500:"oklch(0.715 0.143 215.221)",600:"oklch(0.609 0.126 221.723)",700:"oklch(0.52 0.105 223.128)",800:"oklch(0.45 0.085 224.283)",900:"oklch(0.398 0.07 227.392)",950:"oklch(0.302 0.056 229.695)"},sky:{50:"oklch(0.977 0.013 236.62)",100:"oklch(0.951 0.026 236.824)",200:"oklch(0.901 0.058 230.902)",300:"oklch(0.828 0.111 230.318)",400:"oklch(0.746 0.16 232.661)",500:"oklch(0.685 0.169 237.323)",600:"oklch(0.588 0.158 241.966)",700:"oklch(0.5 0.134 242.749)",800:"oklch(0.443 0.11 240.79)",900:"oklch(0.391 0.09 240.876)",950:"oklch(0.293 0.066 243.157)"},blue:{50:"oklch(0.97 0.014 254.604)",100:"oklch(0.932 0.032 255.585)",200:"oklch(0.882 0.059 254.128)",300:"oklch(0.809 0.105 251.813)",400:"oklch(0.707 0.165 254.624)",500:"oklch(0.623 0.214 259.815)",600:"oklch(0.546 0.245 262.881)",700:"oklch(0.488 0.243 264.376)",800:"oklch(0.424 0.199 265.638)",900:"oklch(0.379 0.146 265.522)",950:"oklch(0.282 0.091 267.935)"},indigo:{50:"oklch(0.962 0.018 272.314)",100:"oklch(0.93 0.034 272.788)",200:"oklch(0.87 0.065 274.039)",300:"oklch(0.785 0.115 274.713)",400:"oklch(0.673 0.182 276.935)",500:"oklch(0.585 0.233 277.117)",600:"oklch(0.511 0.262 276.966)",700:"oklch(0.457 0.24 277.023)",800:"oklch(0.398 0.195 277.366)",900:"oklch(0.359 0.144 278.697)",950:"oklch(0.257 0.09 281.288)"},violet:{50:"oklch(0.969 0.016 293.756)",100:"oklch(0.943 0.029 294.588)",200:"oklch(0.894 0.057 293.283)",300:"oklch(0.811 0.111 293.571)",400:"oklch(0.702 0.183 293.541)",500:"oklch(0.606 0.25 292.717)",600:"oklch(0.541 0.281 293.009)",700:"oklch(0.491 0.27 292.581)",800:"oklch(0.432 0.232 292.759)",900:"oklch(0.38 0.189 293.745)",950:"oklch(0.283 0.141 291.089)"},purple:{50:"oklch(0.977 0.014 308.299)",100:"oklch(0.946 0.033 307.174)",200:"oklch(0.902 0.063 306.703)",300:"oklch(0.827 0.119 306.383)",400:"oklch(0.714 0.203 305.504)",500:"oklch(0.627 0.265 303.9)",600:"oklch(0.558 0.288 302.321)",700:"oklch(0.496 0.265 301.924)",800:"oklch(0.438 0.218 303.724)",900:"oklch(0.381 0.176 304.987)",950:"oklch(0.291 0.149 302.717)"},fuchsia:{50:"oklch(0.977 0.017 320.058)",100:"oklch(0.952 0.037 318.852)",200:"oklch(0.903 0.076 319.62)",300:"oklch(0.833 0.145 321.434)",400:"oklch(0.74 0.238 322.16)",500:"oklch(0.667 0.295 322.15)",600:"oklch(0.591 0.293 322.896)",700:"oklch(0.518 0.253 323.949)",800:"oklch(0.452 0.211 324.591)",900:"oklch(0.401 0.17 325.612)",950:"oklch(0.293 0.136 325.661)"},pink:{50:"oklch(0.971 0.014 343.198)",100:"oklch(0.948 0.028 342.258)",200:"oklch(0.899 0.061 343.231)",300:"oklch(0.823 0.12 346.018)",400:"oklch(0.718 0.202 349.761)",500:"oklch(0.656 0.241 354.308)",600:"oklch(0.592 0.249 0.584)",700:"oklch(0.525 0.223 3.958)",800:"oklch(0.459 0.187 3.815)",900:"oklch(0.408 0.153 2.432)",950:"oklch(0.284 0.109 3.907)"},rose:{50:"oklch(0.969 0.015 12.422)",100:"oklch(0.941 0.03 12.58)",200:"oklch(0.892 0.058 10.001)",300:"oklch(0.81 0.117 11.638)",400:"oklch(0.712 0.194 13.428)",500:"oklch(0.645 0.246 16.439)",600:"oklch(0.586 0.253 17.585)",700:"oklch(0.514 0.222 16.935)",800:"oklch(0.455 0.188 13.697)",900:"oklch(0.41 0.159 10.272)",950:"oklch(0.271 0.105 12.094)"}};
|
|
18634
|
+
|
|
18635
|
+
;// ./node_modules/tailwindcss/dist/chunk-V2K3XTS4.mjs
|
|
18636
|
+
var U=new Set(["black","silver","gray","white","maroon","red","purple","fuchsia","green","lime","olive","yellow","navy","blue","teal","aqua","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","transparent","currentcolor","canvas","canvastext","linktext","visitedtext","activetext","buttonface","buttontext","buttonborder","field","fieldtext","highlight","highlighttext","selecteditem","selecteditemtext","mark","marktext","graytext","accentcolor","accentcolortext"]),O=/^(rgba?|hsla?|hwb|color|(ok)?(lab|lch)|light-dark|color-mix)\(/i;function S(e){return e.charCodeAt(0)===35||O.test(e)||U.has(e.toLowerCase())}var k=["calc","min","max","clamp","mod","rem","sin","cos","tan","asin","acos","atan","atan2","pow","sqrt","hypot","log","exp","round"],h=["anchor-size"],A=new RegExp(`(${h.join("|")})\\(`,"g");function b(e){return e.indexOf("(")!==-1&&k.some(r=>e.includes(`${r}(`))}function ie(e){if(!k.some(n=>e.includes(n)))return e;let r=!1;h.some(n=>e.includes(n))&&(A.lastIndex=0,e=e.replace(A,(n,o)=>(r=!0,`$${h.indexOf(o)}$(`)));let t="",i=[];for(let n=0;n<e.length;n++){let o=e[n];if(o==="("){t+=o;let m=n;for(let c=n-1;c>=0;c--){let x=e.charCodeAt(c);if(x>=48&&x<=57)m=c;else if(x>=97&&x<=122)m=c;else break}let a=e.slice(m,n);if(k.includes(a)){i.unshift(!0);continue}else if(i[0]&&a===""){i.unshift(!0);continue}i.unshift(!1);continue}else if(o===")")t+=o,i.shift();else if(o===","&&i[0]){t+=", ";continue}else{if(o===" "&&i[0]&&t[t.length-1]===" ")continue;if((o==="+"||o==="*"||o==="/"||o==="-")&&i[0]){let m=t.trimEnd(),a=m[m.length-1];if(a==="+"||a==="*"||a==="/"||a==="-"){t+=o;continue}else if(a==="("||a===","){t+=o;continue}else e[n-1]===" "?t+=`${o} `:t+=` ${o} `}else if(i[0]&&e.startsWith("to-zero",n)){let m=n;n+=7,t+=e.slice(m,n+1)}else t+=o}}return r?t.replace(/\$(\d+)\$/g,(n,o)=>h[o]??n):t}var y=new Uint8Array(256);function chunk_V2K3XTS4_u(e,r){let t=0,i=[],n=0,o=e.length,m=r.charCodeAt(0);for(let a=0;a<o;a++){let c=e.charCodeAt(a);if(t===0&&c===m){i.push(e.slice(n,a)),n=a+1;continue}switch(c){case 92:a+=1;break;case 39:case 34:for(;++a<o;){let x=e.charCodeAt(a);if(x===92){a+=1;continue}if(x===c)break}break;case 40:y[t]=41,t++;break;case 91:y[t]=93,t++;break;case 123:y[t]=125,t++;break;case 93:case 125:case 41:t>0&&c===y[t-1]&&t--;break}}return i.push(e.slice(n)),i}var R={color:S,length:C,percentage:E,ratio:j,number:M,integer:chunk_V2K3XTS4_p,url:z,position:Q,"bg-size":X,"line-width":D,image:$,"family-name":P,"generic-name":H,"absolute-size":q,"relative-size":B,angle:ee,vector:re};function pe(e,r){if(e.startsWith("var("))return null;for(let t of r)if(R[t]?.(e))return t;return null}var _=/^url\(.*\)$/;function z(e){return _.test(e)}function D(e){return e==="thin"||e==="medium"||e==="thick"}var I=/^(?:element|image|cross-fade|image-set)\(/,F=/^(repeating-)?(conic|linear|radial)-gradient\(/;function $(e){let r=0;for(let t of chunk_V2K3XTS4_u(e,","))if(!t.startsWith("var(")){if(z(t)){r+=1;continue}if(F.test(t)){r+=1;continue}if(I.test(t)){r+=1;continue}return!1}return r>0}function H(e){return e==="serif"||e==="sans-serif"||e==="monospace"||e==="cursive"||e==="fantasy"||e==="system-ui"||e==="ui-serif"||e==="ui-sans-serif"||e==="ui-monospace"||e==="ui-rounded"||e==="math"||e==="emoji"||e==="fangsong"}function P(e){let r=0;for(let t of chunk_V2K3XTS4_u(e,",")){let i=t.charCodeAt(0);if(i>=48&&i<=57)return!1;t.startsWith("var(")||(r+=1)}return r>0}function q(e){return e==="xx-small"||e==="x-small"||e==="small"||e==="medium"||e==="large"||e==="x-large"||e==="xx-large"||e==="xxx-large"}function B(e){return e==="larger"||e==="smaller"}var g=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,W=new RegExp(`^${g.source}$`);function M(e){return W.test(e)||b(e)}var G=new RegExp(`^${g.source}%$`);function E(e){return G.test(e)||b(e)}var V=new RegExp(`^${g.source}s*/s*${g.source}$`);function j(e){return V.test(e)||b(e)}var K=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],Y=new RegExp(`^${g.source}(${K.join("|")})$`);function C(e){return Y.test(e)||b(e)}function Q(e){let r=0;for(let t of chunk_V2K3XTS4_u(e," ")){if(t==="center"||t==="top"||t==="right"||t==="bottom"||t==="left"){r+=1;continue}if(!t.startsWith("var(")){if(C(t)||E(t)){r+=1;continue}return!1}}return r>0}function X(e){let r=0;for(let t of chunk_V2K3XTS4_u(e,",")){if(t==="cover"||t==="contain"){r+=1;continue}let i=chunk_V2K3XTS4_u(t," ");if(i.length!==1&&i.length!==2)return!1;if(i.every(n=>n==="auto"||C(n)||E(n))){r+=1;continue}}return r>0}var J=["deg","rad","grad","turn"],Z=new RegExp(`^${g.source}(${J.join("|")})$`);function ee(e){return Z.test(e)}var te=new RegExp(`^${g.source} +${g.source} +${g.source}$`);function re(e){return te.test(e)}function chunk_V2K3XTS4_p(e){let r=Number(e);return Number.isInteger(r)&&r>=0&&String(r)===String(e)}function ge(e){let r=Number(e);return Number.isInteger(r)&&r>0&&String(r)===String(e)}function ue(e){return N(e,.25)}function de(e){return N(e,.25)}function N(e,r){let t=Number(e);return t>=0&&t%r===0&&String(t)===String(e)}function f(e){return{__BARE_VALUE__:e}}var chunk_V2K3XTS4_l=f(e=>{if(chunk_V2K3XTS4_p(e.value))return e.value}),s=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}%`}),d=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}px`}),T=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}ms`}),w=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}deg`}),ne=f(e=>{if(e.fraction===null)return;let[r,t]=chunk_V2K3XTS4_u(e.fraction,"/");if(!(!chunk_V2K3XTS4_p(r)||!chunk_V2K3XTS4_p(t)))return e.fraction}),L=f(e=>{if(chunk_V2K3XTS4_p(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),ye={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...ne},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...s}),backdropContrast:({theme:e})=>({...e("contrast"),...s}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...s}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...w}),backdropInvert:({theme:e})=>({...e("invert"),...s}),backdropOpacity:({theme:e})=>({...e("opacity"),...s}),backdropSaturate:({theme:e})=>({...e("saturate"),...s}),backdropSepia:({theme:e})=>({...e("sepia"),...s}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentColor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...d},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...s},caretColor:({theme:e})=>e("colors"),colors:()=>({...l}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...chunk_V2K3XTS4_l},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...s},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...d}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...chunk_V2K3XTS4_l},flexShrink:{0:"0",DEFAULT:"1",...chunk_V2K3XTS4_l},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...s},grayscale:{0:"0",DEFAULT:"100%",...s},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...w},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...s},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...chunk_V2K3XTS4_l},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...s},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...chunk_V2K3XTS4_l},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentColor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...w},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...s},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...s},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...s},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...w},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...chunk_V2K3XTS4_l},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...T},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...T},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...chunk_V2K3XTS4_l}};
|
|
18637
|
+
|
|
18638
|
+
;// ./node_modules/tailwindcss/dist/chunk-WZA4AHDT.mjs
|
|
18639
|
+
function chunk_WZA4AHDT_f(n){if(arguments.length==0)throw new TypeError("`CSS.escape` requires an argument.");var e=String(n),r=e.length,i=-1,t,s="",l=e.charCodeAt(0);if(r==1&&l==45)return"\\"+e;for(;++i<r;){if(t=e.charCodeAt(i),t==0){s+="\uFFFD";continue}if(t>=1&&t<=31||t==127||i==0&&t>=48&&t<=57||i==1&&t>=48&&t<=57&&l==45){s+="\\"+t.toString(16)+" ";continue}if(t>=128||t==45||t==95||t>=48&&t<=57||t>=65&&t<=90||t>=97&&t<=122){s+=e.charAt(i);continue}s+="\\"+e.charAt(i)}return s}function chunk_WZA4AHDT_v(n){return n.replace(/\\([\dA-Fa-f]{1,6}[\t\n\f\r ]?|[\S\s])/g,e=>e.length>2?String.fromCodePoint(Number.parseInt(e.slice(1).trim(),16)):e[1])}var p=new Map([["--font",["--font-weight","--font-size"]],["--inset",["--inset-shadow","--inset-ring"]],["--text",["--text-color","--text-underline-offset","--text-indent","--text-decoration-thickness","--text-decoration-color"]]]);function chunk_WZA4AHDT_h(n,e){return(p.get(e)??[]).some(r=>n===r||n.startsWith(`${r}-`))}var chunk_WZA4AHDT_g=class{constructor(e=new Map,r=new Set([])){this.values=e;this.keyframes=r}prefix=null;add(e,r,i=0){if(e.endsWith("-*")){if(r!=="initial")throw new Error(`Invalid theme value \`${r}\` for namespace \`${e}\``);e==="--*"?this.values.clear():this.clearNamespace(e.slice(0,-2),0)}if(i&4){let t=this.values.get(e);if(t&&!(t.options&4))return}r==="initial"?this.values.delete(e):this.values.set(e,{value:r,options:i})}keysInNamespaces(e){let r=[];for(let i of e){let t=`${i}-`;for(let s of this.values.keys())s.startsWith(t)&&s.indexOf("--",2)===-1&&(chunk_WZA4AHDT_h(s,i)||r.push(s.slice(t.length)))}return r}get(e){for(let r of e){let i=this.values.get(r);if(i)return i.value}return null}hasDefault(e){return(this.getOptions(e)&4)===4}getOptions(e){return this.values.get(e)?.options??0}entries(){return this.prefix?Array.from(this.values,e=>(e[0]=this.#i(e[0]),e)):this.values.entries()}#i(e){return this.prefix?`--${this.prefix}-${e.slice(2)}`:e}clearNamespace(e,r){let i=p.get(e)??[];e:for(let t of this.values.keys())if(t.startsWith(e)){if(r!==0&&(this.getOptions(t)&r)!==r)continue;for(let s of i)if(t.startsWith(s))continue e;this.values.delete(t)}}#e(e,r){for(let i of r){let t=e!==null?`${i}-${e}`:i;if(!this.values.has(t))if(e!==null&&e.includes(".")){if(t=`${i}-${e.replaceAll(".","_")}`,!this.values.has(t))continue}else continue;if(!chunk_WZA4AHDT_h(t,i))return t}return null}#t(e){return this.values.has(e)?`var(${chunk_WZA4AHDT_f(this.#i(e))})`:null}resolve(e,r){let i=this.#e(e,r);if(!i)return null;let t=this.values.get(i);return t.options&1?t.value:this.#t(i)}resolveValue(e,r){let i=this.#e(e,r);return i?this.values.get(i).value:null}resolveWith(e,r,i=[]){let t=this.#e(e,r);if(!t)return null;let s={};for(let u of i){let a=`${t}${u}`,o=this.values.get(a);o&&(o.options&1?s[u]=o.value:s[u]=this.#t(a))}let l=this.values.get(t);return l.options&1?[l.value,s]:[this.#t(t),s]}namespace(e){let r=new Map,i=`${e}-`;for(let[t,s]of this.values)t===e?r.set(null,s.value):t.startsWith(`${i}-`)?r.set(t.slice(e.length),s.value):t.startsWith(i)&&r.set(t.slice(i.length),s.value);return r}addKeyframes(e){this.keyframes.add(e)}getKeyframes(){return Array.from(this.keyframes)}};
|
|
18640
|
+
|
|
18641
|
+
;// ./node_modules/tailwindcss/dist/lib.mjs
|
|
18642
|
+
var at="4.0.3";var ce=92,Ce=47,$e=42,yr=34,wr=39,br=58,Ve=59,lib_Q=10,lib_de=32,Ne=9,st=123,Ue=125,Me=40,ut=41,kr=91,xr=93,ft=45,Ie=64,Ar=33;function lib_X(t){t=t.replaceAll(`\r
|
|
18643
|
+
`,`
|
|
18644
|
+
`);let r=[],n=[],e=[],o=null,s=null,a="",c="",d;for(let f=0;f<t.length;f++){let p=t.charCodeAt(f);if(p===ce)a+=t.slice(f,f+2),f+=1;else if(p===Ce&&t.charCodeAt(f+1)===$e){let g=f;for(let y=f+2;y<t.length;y++)if(d=t.charCodeAt(y),d===ce)y+=1;else if(d===$e&&t.charCodeAt(y+1)===Ce){f=y+1;break}let h=t.slice(g,f+1);h.charCodeAt(2)===Ar&&n.push(Te(h.slice(2,-2)))}else if(p===wr||p===yr){let g=f;for(let h=f+1;h<t.length;h++)if(d=t.charCodeAt(h),d===ce)h+=1;else if(d===p){f=h;break}else{if(d===Ve&&t.charCodeAt(h+1)===lib_Q)throw new Error(`Unterminated string: ${t.slice(g,h+1)+String.fromCharCode(p)}`);if(d===lib_Q)throw new Error(`Unterminated string: ${t.slice(g,h)+String.fromCharCode(p)}`)}a+=t.slice(g,f+1)}else{if((p===lib_de||p===lib_Q||p===Ne)&&(d=t.charCodeAt(f+1))&&(d===lib_de||d===lib_Q||d===Ne))continue;if(p===lib_Q){if(a.length===0)continue;d=a.charCodeAt(a.length-1),d!==lib_de&&d!==lib_Q&&d!==Ne&&(a+=" ")}else if(p===ft&&t.charCodeAt(f+1)===ft&&a.length===0){let g="",h=f,y=-1;for(let v=f+2;v<t.length;v++)if(d=t.charCodeAt(v),d===ce)v+=1;else if(d===Ce&&t.charCodeAt(v+1)===$e){for(let x=v+2;x<t.length;x++)if(d=t.charCodeAt(x),d===ce)x+=1;else if(d===$e&&t.charCodeAt(x+1)===Ce){v=x+1;break}}else if(y===-1&&d===br)y=a.length+v-h;else if(d===Ve&&g.length===0){a+=t.slice(h,v),f=v;break}else if(d===Me)g+=")";else if(d===kr)g+="]";else if(d===st)g+="}";else if((d===Ue||t.length-1===v)&&g.length===0){f=v-1,a+=t.slice(h,v);break}else(d===ut||d===xr||d===Ue)&&g.length>0&&t[v]===g[g.length-1]&&(g=g.slice(0,-1));let w=ze(a,y);if(!w)throw new Error("Invalid custom property, expected a value");o?o.nodes.push(w):r.push(w),a=""}else if(p===Ve&&a.charCodeAt(0)===Ie)s=lib_pe(a),o?o.nodes.push(s):r.push(s),a="",s=null;else if(p===Ve&&c[c.length-1]!==")"){let g=ze(a);if(!g)throw a.length===0?new Error("Unexpected semicolon"):new Error(`Invalid declaration: \`${a.trim()}\``);o?o.nodes.push(g):r.push(g),a=""}else if(p===st&&c[c.length-1]!==")")c+="}",s=lib_M(a.trim()),o&&o.nodes.push(s),e.push(o),o=s,a="",s=null;else if(p===Ue&&c[c.length-1]!==")"){if(c==="")throw new Error("Missing opening {");if(c=c.slice(0,-1),a.length>0)if(a.charCodeAt(0)===Ie)s=lib_pe(a),o?o.nodes.push(s):r.push(s),a="",s=null;else{let h=a.indexOf(":");if(o){let y=ze(a,h);if(!y)throw new Error(`Invalid declaration: \`${a.trim()}\``);o.nodes.push(y)}}let g=e.pop()??null;g===null&&o&&r.push(o),o=g,a="",s=null}else if(p===Me)c+=")",a+="(";else if(p===ut){if(c[c.length-1]!==")")throw new Error("Missing opening (");c=c.slice(0,-1),a+=")"}else{if(a.length===0&&(p===lib_de||p===lib_Q||p===Ne))continue;a+=String.fromCharCode(p)}}}if(a.charCodeAt(0)===Ie&&r.push(lib_pe(a)),c.length>0&&o){if(o.kind==="rule")throw new Error(`Missing closing } at ${o.selector}`);if(o.kind==="at-rule")throw new Error(`Missing closing } at ${o.name} ${o.params}`)}return n.length>0?n.concat(r):r}function lib_pe(t,r=[]){for(let n=5;n<t.length;n++){let e=t.charCodeAt(n);if(e===lib_de||e===Me){let o=t.slice(0,n).trim(),s=t.slice(n).trim();return lib_O(o,s,r)}}return lib_O(t.trim(),"",r)}function ze(t,r=t.indexOf(":")){if(r===-1)return null;let n=t.indexOf("!important",r+1);return lib_l(t.slice(0,r).trim(),t.slice(r+1,n===-1?t.length:n).trim(),n!==-1)}var Cr=64;function lib_F(t,r=[]){return{kind:"rule",selector:t,nodes:r}}function lib_O(t,r="",n=[]){return{kind:"at-rule",name:t,params:r,nodes:n}}function lib_M(t,r=[]){return t.charCodeAt(0)===Cr?lib_pe(t,r):lib_F(t,r)}function lib_l(t,r,n=!1){return{kind:"declaration",property:t,value:r,important:n}}function Te(t){return{kind:"comment",value:t}}function lib_ee(t,r){return{kind:"context",context:t,nodes:r}}function lib_D(t){return{kind:"at-root",nodes:t}}function lib_j(t,r,n=[],e={}){for(let o=0;o<t.length;o++){let s=t[o],a=n[n.length-1]??null;if(s.kind==="context"){if(lib_j(s.nodes,r,n,{...e,...s.context})===2)return 2;continue}n.push(s);let c=r(s,{parent:a,context:e,path:n,replaceWith(d){Array.isArray(d)?d.length===0?t.splice(o,1):d.length===1?t[o]=d[0]:t.splice(o,1,...d):t[o]=d,o--}})??0;if(n.pop(),c===2)return 2;if(c!==1&&(s.kind==="rule"||s.kind==="at-rule")){n.push(s);let d=lib_j(s.nodes,r,n,e);if(n.pop(),d===2)return 2}}}function Se(t,r,n=[],e={}){for(let o=0;o<t.length;o++){let s=t[o],a=n[n.length-1]??null;if(s.kind==="rule"||s.kind==="at-rule")n.push(s),Se(s.nodes,r,n,e),n.pop();else if(s.kind==="context"){Se(s.nodes,r,n,{...e,...s.context});continue}n.push(s),r(s,{parent:a,context:e,path:n,replaceWith(c){Array.isArray(c)?c.length===0?t.splice(o,1):c.length===1?t[o]=c[0]:t.splice(o,1,...c):t[o]=c,o+=c.length-1}}),n.pop()}}function lib_te(t){let r=[],n=new Set;function e(s,a,c=0){if(s.kind==="declaration"){if(s.property==="--tw-sort"||s.value===void 0||s.value===null)return;a.push(s)}else if(s.kind==="rule")if(s.selector==="&")for(let d of s.nodes){let f=[];e(d,f,c+1),f.length>0&&a.push(...f)}else{let d={...s,nodes:[]};for(let f of s.nodes)e(f,d.nodes,c+1);d.nodes.length>0&&a.push(d)}else if(s.kind==="at-rule"&&s.name==="@property"&&c===0){if(n.has(s.params))return;n.add(s.params);let d={...s,nodes:[]};for(let f of s.nodes)e(f,d.nodes,c+1);a.push(d)}else if(s.kind==="at-rule"){let d={...s,nodes:[]};for(let f of s.nodes)e(f,d.nodes,c+1);(d.nodes.length>0||d.name==="@layer"||d.name==="@charset"||d.name==="@custom-media"||d.name==="@namespace"||d.name==="@import")&&a.push(d)}else if(s.kind==="at-root")for(let d of s.nodes){let f=[];e(d,f,0);for(let p of f)r.push(p)}else if(s.kind==="context"){if(s.context.reference)return;for(let d of s.nodes)e(d,a,c)}else s.kind==="comment"&&a.push(s)}let o=[];for(let s of t)e(s,o,0);return o.concat(r)}function lib_J(t){function r(e,o=0){let s="",a=" ".repeat(o);if(e.kind==="declaration")s+=`${a}${e.property}: ${e.value}${e.important?" !important":""};
|
|
18645
|
+
`;else if(e.kind==="rule"){s+=`${a}${e.selector} {
|
|
18646
|
+
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
18647
|
+
`}else if(e.kind==="at-rule"){if(e.nodes.length===0)return`${a}${e.name} ${e.params};
|
|
18648
|
+
`;s+=`${a}${e.name}${e.params?` ${e.params} `:" "}{
|
|
18649
|
+
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
18650
|
+
`}else if(e.kind==="comment")s+=`${a}/*${e.value}*/
|
|
18651
|
+
`;else if(e.kind==="context"||e.kind==="at-root")return"";return s}let n="";for(let e of t){let o=r(e);o!==""&&(n+=o)}return n}function Be(t){return{kind:"word",value:t}}function $r(t,r){return{kind:"function",value:t,nodes:r}}function Vr(t){return{kind:"separator",value:t}}function le(t,r,n=null){for(let e=0;e<t.length;e++){let o=t[e],s=r(o,{parent:n,replaceWith(a){Array.isArray(a)?a.length===0?t.splice(e,1):a.length===1?t[e]=a[0]:t.splice(e,1,...a):t[e]=a,e--}})??0;if(s===2)return 2;if(s!==1&&o.kind==="function"&&le(o.nodes,r,o)===2)return 2}}function lib_W(t){let r="";for(let n of t)switch(n.kind){case"word":case"separator":{r+=n.value;break}case"function":r+=n.value+"("+lib_W(n.nodes)+")"}return r}var Nr=92,Tr=41,ct=58,dt=44,Sr=34,pt=61,gt=62,mt=60,ht=10,Er=40,Rr=39,vt=47,yt=32,wt=9;function lib_L(t){t=t.replaceAll(`\r
|
|
18652
|
+
`,`
|
|
18653
|
+
`);let r=[],n=[],e=null,o="",s;for(let a=0;a<t.length;a++){let c=t.charCodeAt(a);switch(c){case ct:case dt:case pt:case gt:case mt:case ht:case vt:case yt:case wt:{if(o.length>0){let g=Be(o);e?e.nodes.push(g):r.push(g),o=""}let d=a,f=a+1;for(;f<t.length&&(s=t.charCodeAt(f),!(s!==ct&&s!==dt&&s!==pt&&s!==gt&&s!==mt&&s!==ht&&s!==vt&&s!==yt&&s!==wt));f++);a=f-1;let p=Vr(t.slice(d,f));e?e.nodes.push(p):r.push(p);break}case Rr:case Sr:{let d=a;for(let f=a+1;f<t.length;f++)if(s=t.charCodeAt(f),s===Nr)f+=1;else if(s===c){a=f;break}o+=t.slice(d,a+1);break}case Er:{let d=$r(o,[]);o="",e?e.nodes.push(d):r.push(d),n.push(d),e=d;break}case Tr:{let d=n.pop();if(o.length>0){let f=Be(o);d.nodes.push(f),o=""}n.length>0?e=n[n.length-1]:e=null;break}default:o+=String.fromCharCode(c)}}return o.length>0&&r.push(Be(o)),r}function lib_Y(t){if(t.indexOf("(")===-1)return lib_ge(t);let r=lib_L(t);return We(r),t=lib_W(r),t=ie(t),t}function lib_ge(t){let r="";for(let n=0;n<t.length;n++){let e=t[n];e==="\\"&&t[n+1]==="_"?(r+="_",n+=1):e==="_"?r+=" ":r+=e}return r}function We(t){for(let r of t)switch(r.kind){case"function":{if(r.value==="url"||r.value.endsWith("_url")){r.value=lib_ge(r.value);break}if(r.value==="var"||r.value.endsWith("_var")||r.value==="theme"||r.value.endsWith("_theme")){r.value=lib_ge(r.value);for(let n=0;n<r.nodes.length;n++)n==0&&r.nodes[n].kind==="word"||We([r.nodes[n]]);break}r.value=lib_ge(r.value),We(r.nodes);break}case"separator":case"word":{r.value=lib_ge(r.value);break}default:Kr(r)}}function Kr(t){throw new Error(`Unexpected value: ${t}`)}var Pr=58,bt=45,kt=97,xt=122;function*At(t,r){let n=chunk_V2K3XTS4_u(t,":");if(r.theme.prefix){if(n.length===1||n[0]!==r.theme.prefix)return null;n.shift()}let e=n.pop(),o=[];for(let g=n.length-1;g>=0;--g){let h=r.parseVariant(n[g]);if(h===null)return;o.push(h)}let s=!1;e[e.length-1]==="!"?(s=!0,e=e.slice(0,-1)):e[0]==="!"&&(s=!0,e=e.slice(1)),r.utilities.has(e,"static")&&!e.includes("[")&&(yield{kind:"static",root:e,variants:o,important:s,raw:t});let[a,c=null,d]=chunk_V2K3XTS4_u(e,"/");if(d)return;let f=c===null?null:qe(c);if(c!==null&&f===null)return;if(a[0]==="["){if(a[a.length-1]!=="]")return;let g=a.charCodeAt(1);if(g!==bt&&!(g>=kt&&g<=xt))return;a=a.slice(1,-1);let h=a.indexOf(":");if(h===-1||h===0||h===a.length-1)return;let y=a.slice(0,h),w=lib_Y(a.slice(h+1));yield{kind:"arbitrary",property:y,value:w,modifier:f,variants:o,important:s,raw:t};return}let p;if(a[a.length-1]==="]"){let g=a.indexOf("-[");if(g===-1)return;let h=a.slice(0,g);if(!r.utilities.has(h,"functional"))return;let y=a.slice(g+1);p=[[h,y]]}else if(a[a.length-1]===")"){let g=a.indexOf("-(");if(g===-1)return;let h=a.slice(0,g);if(!r.utilities.has(h,"functional"))return;let y=a.slice(g+2,-1),w=chunk_V2K3XTS4_u(y,":"),v=null;if(w.length===2&&(v=w[0],y=w[1]),y[0]!=="-"&&y[1]!=="-")return;p=[[h,v===null?`[var(${y})]`:`[${v}:var(${y})]`]]}else p=$t(a,g=>r.utilities.has(g,"functional"));for(let[g,h]of p){let y={kind:"functional",root:g,modifier:f,value:null,variants:o,important:s,raw:t};if(h===null){yield y;continue}{let w=h.indexOf("[");if(w!==-1){if(h[h.length-1]!=="]")return;let x=lib_Y(h.slice(w+1,-1)),T="";for(let N=0;N<x.length;N++){let R=x.charCodeAt(N);if(R===Pr){T=x.slice(0,N),x=x.slice(N+1);break}if(!(R===bt||R>=kt&&R<=xt))break}if(x.length===0||x.trim().length===0)continue;y.value={kind:"arbitrary",dataType:T||null,value:x}}else{let x=c===null||y.modifier?.kind==="arbitrary"?null:`${h}/${c}`;y.value={kind:"named",value:h,fraction:x}}}yield y}}function qe(t){if(t[0]==="["&&t[t.length-1]==="]"){let r=lib_Y(t.slice(1,-1));return r.length===0||r.trim().length===0?null:{kind:"arbitrary",value:r}}if(t[0]==="("&&t[t.length-1]===")"){let r=lib_Y(t.slice(1,-1));return r.length===0||r.trim().length===0||r[0]!=="-"&&r[1]!=="-"?null:{kind:"arbitrary",value:`var(${r})`}}return{kind:"named",value:t}}function Ct(t,r){if(t[0]==="["&&t[t.length-1]==="]"){if(t[1]==="@"&&t.includes("&"))return null;let n=lib_Y(t.slice(1,-1));if(n.length===0||n.trim().length===0)return null;let e=n[0]===">"||n[0]==="+"||n[0]==="~";return!e&&n[0]!=="@"&&!n.includes("&")&&(n=`&:is(${n})`),{kind:"arbitrary",selector:n,relative:e}}{let[n,e=null,o]=chunk_V2K3XTS4_u(t,"/");if(o)return null;let s=$t(n,a=>r.variants.has(a));for(let[a,c]of s)switch(r.variants.kind(a)){case"static":return c!==null||e!==null?null:{kind:"static",root:a};case"functional":{let d=e===null?null:qe(e);if(e!==null&&d===null)return null;if(c===null)return{kind:"functional",root:a,modifier:d,value:null};if(c[c.length-1]==="]"){if(c[0]!=="[")continue;let f=lib_Y(c.slice(1,-1));return f.length===0||f.trim().length===0?null:{kind:"functional",root:a,modifier:d,value:{kind:"arbitrary",value:f}}}if(c[c.length-1]===")"){if(c[0]!=="(")continue;let f=lib_Y(c.slice(1,-1));return f.length===0||f.trim().length===0||f[0]!=="-"&&f[1]!=="-"?null:{kind:"functional",root:a,modifier:d,value:{kind:"arbitrary",value:`var(${f})`}}}return{kind:"functional",root:a,modifier:d,value:{kind:"named",value:c}}}case"compound":{if(c===null)return null;let d=r.parseVariant(c);if(d===null||!r.variants.compoundsWith(a,d))return null;let f=e===null?null:qe(e);return e!==null&&f===null?null:{kind:"compound",root:a,modifier:f,variant:d}}}}return null}function*$t(t,r){r(t)&&(yield[t,null]);let n=t.lastIndexOf("-");if(n===-1){t[0]==="@"&&r("@")&&(yield["@",t.slice(1)]);return}do{let e=t.slice(0,n);if(r(e)){let o=[e,t.slice(n+1)];if(o[1]==="")break;yield o}n=t.lastIndexOf("-",n-1)}while(n>0)}function lib_re(t,r,n){if(t===r)return 0;let e=t.indexOf("("),o=r.indexOf("("),s=e===-1?t.replace(/[\d.]+/g,""):t.slice(0,e),a=o===-1?r.replace(/[\d.]+/g,""):r.slice(0,o),c=(s===a?0:s<a?-1:1)||(n==="asc"?parseInt(t)-parseInt(r):parseInt(r)-parseInt(t));return Number.isNaN(c)?t<r?-1:1:c}var lib_z=class extends Map{constructor(n){super();this.factory=n}get(n){let e=super.get(n);return e===void 0&&(e=this.factory(n,this),this.set(n,e)),e}};var Or=new Set(["inset","inherit","initial","revert","unset"]),Vt=/^-?(\d+|\.\d+)(.*?)$/g;function lib_ne(t,r){return chunk_V2K3XTS4_u(t,",").map(e=>{e=e.trim();let o=chunk_V2K3XTS4_u(e," ").filter(f=>f.trim()!==""),s=null,a=null,c=null;for(let f of o)Or.has(f)||(Vt.test(f)?(a===null?a=f:c===null&&(c=f),Vt.lastIndex=0):s===null&&(s=f));if(a===null||c===null)return e;let d=r(s??"currentcolor");return s!==null?e.replace(s,d):`${e} ${d}`}).join(", ")}var jr=/^-?[a-z][a-zA-Z0-9/%._-]*$/,_r=/^-?[a-z][a-zA-Z0-9/%._-]*-\*$/,Je=class{utilities=new lib_z(()=>[]);completions=new Map;static(r,n){this.utilities.get(r).push({kind:"static",compileFn:n})}functional(r,n,e){this.utilities.get(r).push({kind:"functional",compileFn:n,options:e})}has(r,n){return this.utilities.has(r)&&this.utilities.get(r).some(e=>e.kind===n)}get(r){return this.utilities.has(r)?this.utilities.get(r):[]}getCompletions(r){return this.completions.get(r)?.()??[]}suggest(r,n){this.completions.set(r,n)}keys(r){let n=[];for(let[e,o]of this.utilities.entries())for(let s of o)if(s.kind===r){n.push(e);break}return n}};function lib_$(t,r,n){return lib_O("@property",t,[lib_l("syntax",n?`"${n}"`:'"*"'),lib_l("inherits","false"),...r?[lib_l("initial-value",r)]:[]])}function lib_G(t,r){if(r===null)return t;let n=Number(r);return Number.isNaN(n)||(r=`${n*100}%`),`color-mix(in oklab, ${t} ${r}, transparent)`}function lib_B(t,r,n){if(!r)return t;if(r.kind==="arbitrary")return lib_G(t,r.value);let e=n.resolve(r.value,["--opacity"]);return e?lib_G(t,e):de(r.value)?lib_G(t,`${r.value}%`):null}function lib_q(t,r,n){let e=null;switch(t.value.value){case"inherit":{e="inherit";break}case"transparent":{e="transparent";break}case"current":{e="currentColor";break}default:{e=r.resolve(t.value.value,n);break}}return e?lib_B(e,t.modifier,r):null}function Tt(t){let r=new Je;function n(i,u){function*m(k){for(let b of t.keysInNamespaces(k))yield b.replaceAll("_",".")}r.suggest(i,()=>{let k=[];for(let b of u()){if(typeof b=="string"){k.push({values:[b],modifiers:[]});continue}let V=[...b.values??[],...m(b.valueThemeKeys??[])],K=[...b.modifiers??[],...m(b.modifierThemeKeys??[])];b.hasDefaultValue&&V.unshift(null),k.push({supportsNegative:b.supportsNegative,values:V,modifiers:K})}return k})}function e(i,u){r.static(i,()=>u.map(m=>typeof m=="function"?m():lib_l(m[0],m[1])))}function o(i,u){function m({negative:k}){return b=>{let V=null;if(b.value)if(b.value.kind==="arbitrary"){if(b.modifier)return;V=b.value.value}else{if(V=t.resolve(b.value.fraction??b.value.value,u.themeKeys??[]),V===null&&u.supportsFractions&&b.value.fraction){let[K,C]=chunk_V2K3XTS4_u(b.value.fraction,"/");if(!chunk_V2K3XTS4_p(K)||!chunk_V2K3XTS4_p(C))return;V=`calc(${b.value.fraction} * 100%)`}if(V===null&&k&&u.handleNegativeBareValue){if(V=u.handleNegativeBareValue(b.value),!V?.includes("/")&&b.modifier)return;if(V!==null)return u.handle(V)}if(V===null&&u.handleBareValue&&(V=u.handleBareValue(b.value),!V?.includes("/")&&b.modifier))return}else{if(b.modifier)return;V=u.defaultValue!==void 0?u.defaultValue:t.resolve(null,u.themeKeys??[])}if(V!==null)return u.handle(k?`calc(${V} * -1)`:V)}}u.supportsNegative&&r.functional(`-${i}`,m({negative:!0})),r.functional(i,m({negative:!1})),n(i,()=>[{supportsNegative:u.supportsNegative,valueThemeKeys:u.themeKeys??[],hasDefaultValue:u.defaultValue!==void 0&&u.defaultValue!==null}])}function s(i,u){r.functional(i,m=>{if(!m.value)return;let k=null;if(m.value.kind==="arbitrary"?(k=m.value.value,k=lib_B(k,m.modifier,t)):k=lib_q(m,t,u.themeKeys),k!==null)return u.handle(k)}),n(i,()=>[{values:["current","inherit","transparent"],valueThemeKeys:u.themeKeys,modifiers:Array.from({length:21},(m,k)=>`${k*5}`)}])}function a(i,u,m,{supportsNegative:k=!1,supportsFractions:b=!1}={}){k&&r.static(`-${i}-px`,()=>m("-1px")),r.static(`${i}-px`,()=>m("1px")),o(i,{themeKeys:u,supportsFractions:b,supportsNegative:k,defaultValue:null,handleBareValue:({value:V})=>{let K=t.resolve(null,["--spacing"]);return!K||!ue(V)?null:`calc(${K} * ${V})`},handleNegativeBareValue:({value:V})=>{let K=t.resolve(null,["--spacing"]);return!K||!ue(V)?null:`calc(${K} * -${V})`},handle:m}),n(i,()=>[{values:t.get(["--spacing"])?["0","0.5","1","1.5","2","2.5","3","3.5","4","5","6","7","8","9","10","11","12","14","16","20","24","28","32","36","40","44","48","52","56","60","64","72","80","96"]:[],supportsNegative:k,valueThemeKeys:u}])}e("sr-only",[["position","absolute"],["width","1px"],["height","1px"],["padding","0"],["margin","-1px"],["overflow","hidden"],["clip","rect(0, 0, 0, 0)"],["white-space","nowrap"],["border-width","0"]]),e("not-sr-only",[["position","static"],["width","auto"],["height","auto"],["padding","0"],["margin","0"],["overflow","visible"],["clip","auto"],["white-space","normal"]]),e("pointer-events-none",[["pointer-events","none"]]),e("pointer-events-auto",[["pointer-events","auto"]]),e("visible",[["visibility","visible"]]),e("invisible",[["visibility","hidden"]]),e("collapse",[["visibility","collapse"]]),e("static",[["position","static"]]),e("fixed",[["position","fixed"]]),e("absolute",[["position","absolute"]]),e("relative",[["position","relative"]]),e("sticky",[["position","sticky"]]);for(let[i,u]of[["inset","inset"],["inset-x","inset-inline"],["inset-y","inset-block"],["start","inset-inline-start"],["end","inset-inline-end"],["top","top"],["right","right"],["bottom","bottom"],["left","left"]])e(`${i}-auto`,[[u,"auto"]]),e(`${i}-full`,[[u,"100%"]]),e(`-${i}-full`,[[u,"-100%"]]),a(i,["--inset","--spacing"],m=>[lib_l(u,m)],{supportsNegative:!0,supportsFractions:!0});e("isolate",[["isolation","isolate"]]),e("isolation-auto",[["isolation","auto"]]),e("z-auto",[["z-index","auto"]]),o("z",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--z-index"],handle:i=>[lib_l("z-index",i)]}),n("z",()=>[{supportsNegative:!0,values:["0","10","20","30","40","50"],valueThemeKeys:["--z-index"]}]),e("order-first",[["order","calc(-infinity)"]]),e("order-last",[["order","calc(infinity)"]]),e("order-none",[["order","0"]]),o("order",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--order"],handle:i=>[lib_l("order",i)]}),n("order",()=>[{supportsNegative:!0,values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--order"]}]),e("col-auto",[["grid-column","auto"]]),o("col",{themeKeys:["--grid-column"],handle:i=>[lib_l("grid-column",i)]}),e("col-span-full",[["grid-column","1 / -1"]]),o("col-span",{handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("grid-column",`span ${i} / span ${i}`)]}),e("col-start-auto",[["grid-column-start","auto"]]),o("col-start",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-column-start"],handle:i=>[lib_l("grid-column-start",i)]}),e("col-end-auto",[["grid-column-end","auto"]]),o("col-end",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-column-end"],handle:i=>[lib_l("grid-column-end",i)]}),n("col-span",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:[]}]),n("col-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-column-start"]}]),n("col-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-column-end"]}]),e("row-auto",[["grid-row","auto"]]),o("row",{themeKeys:["--grid-row"],handle:i=>[lib_l("grid-row",i)]}),e("row-span-full",[["grid-row","1 / -1"]]),o("row-span",{themeKeys:[],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("grid-row",`span ${i} / span ${i}`)]}),e("row-start-auto",[["grid-row-start","auto"]]),o("row-start",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-row-start"],handle:i=>[lib_l("grid-row-start",i)]}),e("row-end-auto",[["grid-row-end","auto"]]),o("row-end",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-row-end"],handle:i=>[lib_l("grid-row-end",i)]}),n("row-span",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:[]}]),n("row-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-row-start"]}]),n("row-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-row-end"]}]),e("float-start",[["float","inline-start"]]),e("float-end",[["float","inline-end"]]),e("float-right",[["float","right"]]),e("float-left",[["float","left"]]),e("float-none",[["float","none"]]),e("clear-start",[["clear","inline-start"]]),e("clear-end",[["clear","inline-end"]]),e("clear-right",[["clear","right"]]),e("clear-left",[["clear","left"]]),e("clear-both",[["clear","both"]]),e("clear-none",[["clear","none"]]);for(let[i,u]of[["m","margin"],["mx","margin-inline"],["my","margin-block"],["ms","margin-inline-start"],["me","margin-inline-end"],["mt","margin-top"],["mr","margin-right"],["mb","margin-bottom"],["ml","margin-left"]])e(`${i}-auto`,[[u,"auto"]]),a(i,["--margin","--spacing"],m=>[lib_l(u,m)],{supportsNegative:!0});e("box-border",[["box-sizing","border-box"]]),e("box-content",[["box-sizing","content-box"]]),e("line-clamp-none",[["overflow","visible"],["display","block"],["-webkit-box-orient","horizontal"],["-webkit-line-clamp","unset"]]),o("line-clamp",{themeKeys:["--line-clamp"],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("overflow","hidden"),lib_l("display","-webkit-box"),lib_l("-webkit-box-orient","vertical"),lib_l("-webkit-line-clamp",i)]}),n("line-clamp",()=>[{values:["1","2","3","4","5","6"],valueThemeKeys:["--line-clamp"]}]),e("block",[["display","block"]]),e("inline-block",[["display","inline-block"]]),e("inline",[["display","inline"]]),e("hidden",[["display","none"]]),e("inline-flex",[["display","inline-flex"]]),e("table",[["display","table"]]),e("inline-table",[["display","inline-table"]]),e("table-caption",[["display","table-caption"]]),e("table-cell",[["display","table-cell"]]),e("table-column",[["display","table-column"]]),e("table-column-group",[["display","table-column-group"]]),e("table-footer-group",[["display","table-footer-group"]]),e("table-header-group",[["display","table-header-group"]]),e("table-row-group",[["display","table-row-group"]]),e("table-row",[["display","table-row"]]),e("flow-root",[["display","flow-root"]]),e("flex",[["display","flex"]]),e("grid",[["display","grid"]]),e("inline-grid",[["display","inline-grid"]]),e("contents",[["display","contents"]]),e("list-item",[["display","list-item"]]),e("field-sizing-content",[["field-sizing","content"]]),e("field-sizing-fixed",[["field-sizing","fixed"]]),e("aspect-auto",[["aspect-ratio","auto"]]),e("aspect-square",[["aspect-ratio","1 / 1"]]),o("aspect",{themeKeys:["--aspect"],handleBareValue:({fraction:i})=>{if(i===null)return null;let[u,m]=chunk_V2K3XTS4_u(i,"/");return!chunk_V2K3XTS4_p(u)||!chunk_V2K3XTS4_p(m)?null:i},handle:i=>[lib_l("aspect-ratio",i)]});for(let[i,u]of[["auto","auto"],["full","100%"],["svw","100svw"],["lvw","100lvw"],["dvw","100dvw"],["svh","100svh"],["lvh","100lvh"],["dvh","100dvh"],["min","min-content"],["max","max-content"],["fit","fit-content"]])e(`size-${i}`,[["--tw-sort","size"],["width",u],["height",u]]),e(`w-${i}`,[["width",u]]),e(`min-w-${i}`,[["min-width",u]]),e(`max-w-${i}`,[["max-width",u]]),e(`h-${i}`,[["height",u]]),e(`min-h-${i}`,[["min-height",u]]),e(`max-h-${i}`,[["max-height",u]]);e("w-screen",[["width","100vw"]]),e("min-w-screen",[["min-width","100vw"]]),e("max-w-screen",[["max-width","100vw"]]),e("h-screen",[["height","100vh"]]),e("min-h-screen",[["min-height","100vh"]]),e("max-h-screen",[["max-height","100vh"]]),e("max-w-none",[["max-width","none"]]),e("max-h-none",[["max-height","none"]]),a("size",["--size","--spacing"],i=>[lib_l("--tw-sort","size"),lib_l("width",i),lib_l("height",i)],{supportsFractions:!0});for(let[i,u,m]of[["w",["--width","--spacing","--container"],"width"],["min-w",["--min-width","--spacing","--container"],"min-width"],["max-w",["--max-width","--spacing","--container"],"max-width"],["h",["--height","--spacing"],"height"],["min-h",["--min-height","--height","--spacing"],"min-height"],["max-h",["--max-height","--height","--spacing"],"max-height"]])a(i,u,k=>[lib_l(m,k)],{supportsFractions:!0});r.static("container",()=>{let i=[...t.namespace("--breakpoint").values()];i.sort((m,k)=>lib_re(m,k,"asc"));let u=[lib_l("--tw-sort","--tw-container-component"),lib_l("width","100%")];for(let m of i)u.push(lib_O("@media",`(width >= ${m})`,[lib_l("max-width",m)]));return u}),e("flex-auto",[["flex","auto"]]),e("flex-initial",[["flex","0 auto"]]),e("flex-none",[["flex","none"]]),r.functional("flex",i=>{if(i.value){if(i.value.kind==="arbitrary")return i.modifier?void 0:[lib_l("flex",i.value.value)];if(i.value.fraction){let[u,m]=chunk_V2K3XTS4_u(i.value.fraction,"/");return!chunk_V2K3XTS4_p(u)||!chunk_V2K3XTS4_p(m)?void 0:[lib_l("flex",`calc(${i.value.fraction} * 100%)`)]}if(chunk_V2K3XTS4_p(i.value.value))return i.modifier?void 0:[lib_l("flex",i.value.value)]}}),o("shrink",{defaultValue:"1",handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("flex-shrink",i)]}),o("grow",{defaultValue:"1",handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("flex-grow",i)]}),n("shrink",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),n("grow",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),e("basis-auto",[["flex-basis","auto"]]),e("basis-full",[["flex-basis","100%"]]),a("basis",["--flex-basis","--spacing","--container"],i=>[lib_l("flex-basis",i)],{supportsFractions:!0}),e("table-auto",[["table-layout","auto"]]),e("table-fixed",[["table-layout","fixed"]]),e("caption-top",[["caption-side","top"]]),e("caption-bottom",[["caption-side","bottom"]]),e("border-collapse",[["border-collapse","collapse"]]),e("border-separate",[["border-collapse","separate"]]);let c=()=>lib_D([lib_$("--tw-border-spacing-x","0","<length>"),lib_$("--tw-border-spacing-y","0","<length>")]);a("border-spacing",["--border-spacing","--spacing"],i=>[c(),lib_l("--tw-border-spacing-x",i),lib_l("--tw-border-spacing-y",i),lib_l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-x",["--border-spacing","--spacing"],i=>[c(),lib_l("--tw-border-spacing-x",i),lib_l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-y",["--border-spacing","--spacing"],i=>[c(),lib_l("--tw-border-spacing-y",i),lib_l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),e("origin-center",[["transform-origin","center"]]),e("origin-top",[["transform-origin","top"]]),e("origin-top-right",[["transform-origin","top right"]]),e("origin-right",[["transform-origin","right"]]),e("origin-bottom-right",[["transform-origin","bottom right"]]),e("origin-bottom",[["transform-origin","bottom"]]),e("origin-bottom-left",[["transform-origin","bottom left"]]),e("origin-left",[["transform-origin","left"]]),e("origin-top-left",[["transform-origin","top left"]]),o("origin",{themeKeys:["--transform-origin"],handle:i=>[lib_l("transform-origin",i)]}),e("perspective-origin-center",[["perspective-origin","center"]]),e("perspective-origin-top",[["perspective-origin","top"]]),e("perspective-origin-top-right",[["perspective-origin","top right"]]),e("perspective-origin-right",[["perspective-origin","right"]]),e("perspective-origin-bottom-right",[["perspective-origin","bottom right"]]),e("perspective-origin-bottom",[["perspective-origin","bottom"]]),e("perspective-origin-bottom-left",[["perspective-origin","bottom left"]]),e("perspective-origin-left",[["perspective-origin","left"]]),e("perspective-origin-top-left",[["perspective-origin","top left"]]),o("perspective-origin",{themeKeys:["--perspective-origin"],handle:i=>[lib_l("perspective-origin",i)]}),e("perspective-none",[["perspective","none"]]),o("perspective",{themeKeys:["--perspective"],handle:i=>[lib_l("perspective",i)]});let d=()=>lib_D([lib_$("--tw-translate-x","0"),lib_$("--tw-translate-y","0"),lib_$("--tw-translate-z","0")]);e("translate-none",[["translate","none"]]),e("-translate-full",[d,["--tw-translate-x","-100%"],["--tw-translate-y","-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e("translate-full",[d,["--tw-translate-x","100%"],["--tw-translate-y","100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a("translate",["--translate","--spacing"],i=>[d(),lib_l("--tw-translate-x",i),lib_l("--tw-translate-y",i),lib_l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});for(let i of["x","y"])e(`-translate-${i}-full`,[d,[`--tw-translate-${i}`,"-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e(`translate-${i}-full`,[d,[`--tw-translate-${i}`,"100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a(`translate-${i}`,["--translate","--spacing"],u=>[d(),lib_l(`--tw-translate-${i}`,u),lib_l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});a("translate-z",["--translate","--spacing"],i=>[d(),lib_l("--tw-translate-z",i),lib_l("translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)")],{supportsNegative:!0}),e("-translate-z-px",[d,["--tw-translate-z","-1px"],["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]),e("translate-z-px",[d,["--tw-translate-z","1px"],["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]),e("translate-3d",[d,["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]);let f=()=>lib_D([lib_$("--tw-scale-x","1"),lib_$("--tw-scale-y","1"),lib_$("--tw-scale-z","1")]);e("scale-none",[["scale","none"]]);function p({negative:i}){return u=>{if(!u.value||u.modifier)return;let m;return u.value.kind==="arbitrary"?(m=u.value.value,[lib_l("scale",m)]):(m=t.resolve(u.value.value,["--scale"]),!m&&chunk_V2K3XTS4_p(u.value.value)&&(m=`${u.value.value}%`),m?(m=i?`calc(${m} * -1)`:m,[f(),lib_l("--tw-scale-x",m),lib_l("--tw-scale-y",m),lib_l("--tw-scale-z",m),lib_l("scale","var(--tw-scale-x) var(--tw-scale-y)")]):void 0)}}r.functional("-scale",p({negative:!0})),r.functional("scale",p({negative:!1})),n("scale",()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);for(let i of["x","y","z"])o(`scale-${i}`,{supportsNegative:!0,themeKeys:["--scale"],handleBareValue:({value:u})=>chunk_V2K3XTS4_p(u)?`${u}%`:null,handle:u=>[f(),lib_l(`--tw-scale-${i}`,u),lib_l("scale",`var(--tw-scale-x) var(--tw-scale-y)${i==="z"?" var(--tw-scale-z)":""}`)]}),n(`scale-${i}`,()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);e("scale-3d",[f,["scale","var(--tw-scale-x) var(--tw-scale-y) var(--tw-scale-z)"]]),e("rotate-none",[["rotate","none"]]);function g({negative:i}){return u=>{if(!u.value||u.modifier)return;let m;if(u.value.kind==="arbitrary"){m=u.value.value;let k=u.value.dataType??pe(m,["angle","vector"]);if(k==="vector")return[lib_l("rotate",`${m} var(--tw-rotate)`)];if(k!=="angle")return[lib_l("rotate",m)]}else if(m=t.resolve(u.value.value,["--rotate"]),!m&&chunk_V2K3XTS4_p(u.value.value)&&(m=`${u.value.value}deg`),!m)return;return[lib_l("rotate",i?`calc(${m} * -1)`:m)]}}r.functional("-rotate",g({negative:!0})),r.functional("rotate",g({negative:!1})),n("rotate",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);{let i=["var(--tw-rotate-x)","var(--tw-rotate-y)","var(--tw-rotate-z)","var(--tw-skew-x)","var(--tw-skew-y)"].join(" "),u=()=>lib_D([lib_$("--tw-rotate-x","rotateX(0)"),lib_$("--tw-rotate-y","rotateY(0)"),lib_$("--tw-rotate-z","rotateZ(0)"),lib_$("--tw-skew-x","skewX(0)"),lib_$("--tw-skew-y","skewY(0)")]);for(let m of["x","y","z"])o(`rotate-${m}`,{supportsNegative:!0,themeKeys:["--rotate"],handleBareValue:({value:k})=>chunk_V2K3XTS4_p(k)?`${k}deg`:null,handle:k=>[u(),lib_l(`--tw-rotate-${m}`,`rotate${m.toUpperCase()}(${k})`),lib_l("transform",i)]}),n(`rotate-${m}`,()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);o("skew",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}deg`:null,handle:m=>[u(),lib_l("--tw-skew-x",`skewX(${m})`),lib_l("--tw-skew-y",`skewY(${m})`),lib_l("transform",i)]}),o("skew-x",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}deg`:null,handle:m=>[u(),lib_l("--tw-skew-x",`skewX(${m})`),lib_l("transform",i)]}),o("skew-y",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}deg`:null,handle:m=>[u(),lib_l("--tw-skew-y",`skewY(${m})`),lib_l("transform",i)]}),n("skew",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),n("skew-x",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),n("skew-y",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),r.functional("transform",m=>{if(m.modifier)return;let k=null;if(m.value?m.value.kind==="arbitrary"&&(k=m.value.value):k=i,k!==null)return[u(),lib_l("transform",k)]}),n("transform",()=>[{hasDefaultValue:!0}]),e("transform-cpu",[["transform",i]]),e("transform-gpu",[["transform",`translateZ(0) ${i}`]]),e("transform-none",[["transform","none"]])}e("transform-flat",[["transform-style","flat"]]),e("transform-3d",[["transform-style","preserve-3d"]]),e("transform-content",[["transform-box","content-box"]]),e("transform-border",[["transform-box","border-box"]]),e("transform-fill",[["transform-box","fill-box"]]),e("transform-stroke",[["transform-box","stroke-box"]]),e("transform-view",[["transform-box","view-box"]]),e("backface-visible",[["backface-visibility","visible"]]),e("backface-hidden",[["backface-visibility","hidden"]]);for(let i of["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"])e(`cursor-${i}`,[["cursor",i]]);o("cursor",{themeKeys:["--cursor"],handle:i=>[lib_l("cursor",i)]});for(let i of["auto","none","manipulation"])e(`touch-${i}`,[["touch-action",i]]);let h=()=>lib_D([lib_$("--tw-pan-x"),lib_$("--tw-pan-y"),lib_$("--tw-pinch-zoom")]);for(let i of["x","left","right"])e(`touch-pan-${i}`,[h,["--tw-pan-x",`pan-${i}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let i of["y","up","down"])e(`touch-pan-${i}`,[h,["--tw-pan-y",`pan-${i}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);e("touch-pinch-zoom",[h,["--tw-pinch-zoom","pinch-zoom"],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let i of["none","text","all","auto"])e(`select-${i}`,[["-webkit-user-select",i],["user-select",i]]);e("resize-none",[["resize","none"]]),e("resize-x",[["resize","horizontal"]]),e("resize-y",[["resize","vertical"]]),e("resize",[["resize","both"]]),e("snap-none",[["scroll-snap-type","none"]]);let y=()=>lib_D([lib_$("--tw-scroll-snap-strictness","proximity","*")]);for(let i of["x","y","both"])e(`snap-${i}`,[y,["scroll-snap-type",`${i} var(--tw-scroll-snap-strictness)`]]);e("snap-mandatory",[y,["--tw-scroll-snap-strictness","mandatory"]]),e("snap-proximity",[y,["--tw-scroll-snap-strictness","proximity"]]),e("snap-align-none",[["scroll-snap-align","none"]]),e("snap-start",[["scroll-snap-align","start"]]),e("snap-end",[["scroll-snap-align","end"]]),e("snap-center",[["scroll-snap-align","center"]]),e("snap-normal",[["scroll-snap-stop","normal"]]),e("snap-always",[["scroll-snap-stop","always"]]);for(let[i,u]of[["scroll-m","scroll-margin"],["scroll-mx","scroll-margin-inline"],["scroll-my","scroll-margin-block"],["scroll-ms","scroll-margin-inline-start"],["scroll-me","scroll-margin-inline-end"],["scroll-mt","scroll-margin-top"],["scroll-mr","scroll-margin-right"],["scroll-mb","scroll-margin-bottom"],["scroll-ml","scroll-margin-left"]])a(i,["--scroll-margin","--spacing"],m=>[lib_l(u,m)],{supportsNegative:!0});for(let[i,u]of[["scroll-p","scroll-padding"],["scroll-px","scroll-padding-inline"],["scroll-py","scroll-padding-block"],["scroll-ps","scroll-padding-inline-start"],["scroll-pe","scroll-padding-inline-end"],["scroll-pt","scroll-padding-top"],["scroll-pr","scroll-padding-right"],["scroll-pb","scroll-padding-bottom"],["scroll-pl","scroll-padding-left"]])a(i,["--scroll-padding","--spacing"],m=>[lib_l(u,m)]);e("list-inside",[["list-style-position","inside"]]),e("list-outside",[["list-style-position","outside"]]),e("list-none",[["list-style-type","none"]]),e("list-disc",[["list-style-type","disc"]]),e("list-decimal",[["list-style-type","decimal"]]),o("list",{themeKeys:["--list-style-type"],handle:i=>[lib_l("list-style-type",i)]}),e("list-image-none",[["list-style-image","none"]]),o("list-image",{themeKeys:["--list-style-image"],handle:i=>[lib_l("list-style-image",i)]}),e("appearance-none",[["appearance","none"]]),e("appearance-auto",[["appearance","auto"]]),e("scheme-normal",[["color-scheme","normal"]]),e("scheme-dark",[["color-scheme","dark"]]),e("scheme-light",[["color-scheme","light"]]),e("scheme-light-dark",[["color-scheme","light dark"]]),e("scheme-only-dark",[["color-scheme","only dark"]]),e("scheme-only-light",[["color-scheme","only light"]]),e("columns-auto",[["columns","auto"]]),o("columns",{themeKeys:["--columns","--container"],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("columns",i)]}),n("columns",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--columns","--container"]}]);for(let i of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-before-${i}`,[["break-before",i]]);for(let i of["auto","avoid","avoid-page","avoid-column"])e(`break-inside-${i}`,[["break-inside",i]]);for(let i of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-after-${i}`,[["break-after",i]]);e("grid-flow-row",[["grid-auto-flow","row"]]),e("grid-flow-col",[["grid-auto-flow","column"]]),e("grid-flow-dense",[["grid-auto-flow","dense"]]),e("grid-flow-row-dense",[["grid-auto-flow","row dense"]]),e("grid-flow-col-dense",[["grid-auto-flow","column dense"]]),e("auto-cols-auto",[["grid-auto-columns","auto"]]),e("auto-cols-min",[["grid-auto-columns","min-content"]]),e("auto-cols-max",[["grid-auto-columns","max-content"]]),e("auto-cols-fr",[["grid-auto-columns","minmax(0, 1fr)"]]),o("auto-cols",{themeKeys:["--grid-auto-columns"],handle:i=>[lib_l("grid-auto-columns",i)]}),e("auto-rows-auto",[["grid-auto-rows","auto"]]),e("auto-rows-min",[["grid-auto-rows","min-content"]]),e("auto-rows-max",[["grid-auto-rows","max-content"]]),e("auto-rows-fr",[["grid-auto-rows","minmax(0, 1fr)"]]),o("auto-rows",{themeKeys:["--grid-auto-rows"],handle:i=>[lib_l("grid-auto-rows",i)]}),e("grid-cols-none",[["grid-template-columns","none"]]),e("grid-cols-subgrid",[["grid-template-columns","subgrid"]]),o("grid-cols",{themeKeys:["--grid-template-columns"],handleBareValue:({value:i})=>ge(i)?`repeat(${i}, minmax(0, 1fr))`:null,handle:i=>[lib_l("grid-template-columns",i)]}),e("grid-rows-none",[["grid-template-rows","none"]]),e("grid-rows-subgrid",[["grid-template-rows","subgrid"]]),o("grid-rows",{themeKeys:["--grid-template-rows"],handleBareValue:({value:i})=>ge(i)?`repeat(${i}, minmax(0, 1fr))`:null,handle:i=>[lib_l("grid-template-rows",i)]}),n("grid-cols",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-template-columns"]}]),n("grid-rows",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-template-rows"]}]),e("flex-row",[["flex-direction","row"]]),e("flex-row-reverse",[["flex-direction","row-reverse"]]),e("flex-col",[["flex-direction","column"]]),e("flex-col-reverse",[["flex-direction","column-reverse"]]),e("flex-wrap",[["flex-wrap","wrap"]]),e("flex-nowrap",[["flex-wrap","nowrap"]]),e("flex-wrap-reverse",[["flex-wrap","wrap-reverse"]]),e("place-content-center",[["place-content","center"]]),e("place-content-start",[["place-content","start"]]),e("place-content-end",[["place-content","end"]]),e("place-content-between",[["place-content","space-between"]]),e("place-content-around",[["place-content","space-around"]]),e("place-content-evenly",[["place-content","space-evenly"]]),e("place-content-baseline",[["place-content","baseline"]]),e("place-content-stretch",[["place-content","stretch"]]),e("place-items-center",[["place-items","center"]]),e("place-items-start",[["place-items","start"]]),e("place-items-end",[["place-items","end"]]),e("place-items-baseline",[["place-items","baseline"]]),e("place-items-stretch",[["place-items","stretch"]]),e("content-normal",[["align-content","normal"]]),e("content-center",[["align-content","center"]]),e("content-start",[["align-content","flex-start"]]),e("content-end",[["align-content","flex-end"]]),e("content-between",[["align-content","space-between"]]),e("content-around",[["align-content","space-around"]]),e("content-evenly",[["align-content","space-evenly"]]),e("content-baseline",[["align-content","baseline"]]),e("content-stretch",[["align-content","stretch"]]),e("items-center",[["align-items","center"]]),e("items-start",[["align-items","flex-start"]]),e("items-end",[["align-items","flex-end"]]),e("items-baseline",[["align-items","baseline"]]),e("items-stretch",[["align-items","stretch"]]),e("justify-normal",[["justify-content","normal"]]),e("justify-center",[["justify-content","center"]]),e("justify-start",[["justify-content","flex-start"]]),e("justify-end",[["justify-content","flex-end"]]),e("justify-between",[["justify-content","space-between"]]),e("justify-around",[["justify-content","space-around"]]),e("justify-evenly",[["justify-content","space-evenly"]]),e("justify-baseline",[["justify-content","baseline"]]),e("justify-stretch",[["justify-content","stretch"]]),e("justify-items-normal",[["justify-items","normal"]]),e("justify-items-center",[["justify-items","center"]]),e("justify-items-start",[["justify-items","start"]]),e("justify-items-end",[["justify-items","end"]]),e("justify-items-stretch",[["justify-items","stretch"]]),a("gap",["--gap","--spacing"],i=>[lib_l("gap",i)]),a("gap-x",["--gap","--spacing"],i=>[lib_l("column-gap",i)]),a("gap-y",["--gap","--spacing"],i=>[lib_l("row-gap",i)]),a("space-x",["--space","--spacing"],i=>[lib_D([lib_$("--tw-space-x-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","row-gap"),lib_l("--tw-space-x-reverse","0"),lib_l("margin-inline-start",`calc(${i} * var(--tw-space-x-reverse))`),lib_l("margin-inline-end",`calc(${i} * calc(1 - var(--tw-space-x-reverse)))`)])],{supportsNegative:!0}),a("space-y",["--space","--spacing"],i=>[lib_D([lib_$("--tw-space-y-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","column-gap"),lib_l("--tw-space-y-reverse","0"),lib_l("margin-block-start",`calc(${i} * var(--tw-space-y-reverse))`),lib_l("margin-block-end",`calc(${i} * calc(1 - var(--tw-space-y-reverse)))`)])],{supportsNegative:!0}),e("space-x-reverse",[()=>lib_D([lib_$("--tw-space-x-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","row-gap"),lib_l("--tw-space-x-reverse","1")])]),e("space-y-reverse",[()=>lib_D([lib_$("--tw-space-y-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","column-gap"),lib_l("--tw-space-y-reverse","1")])]),e("accent-auto",[["accent-color","auto"]]),s("accent",{themeKeys:["--accent-color","--color"],handle:i=>[lib_l("accent-color",i)]}),s("caret",{themeKeys:["--caret-color","--color"],handle:i=>[lib_l("caret-color",i)]}),s("divide",{themeKeys:["--divide-color","--color"],handle:i=>[lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-color"),lib_l("border-color",i)])]}),e("place-self-auto",[["place-self","auto"]]),e("place-self-start",[["place-self","start"]]),e("place-self-end",[["place-self","end"]]),e("place-self-center",[["place-self","center"]]),e("place-self-stretch",[["place-self","stretch"]]),e("self-auto",[["align-self","auto"]]),e("self-start",[["align-self","flex-start"]]),e("self-end",[["align-self","flex-end"]]),e("self-center",[["align-self","center"]]),e("self-stretch",[["align-self","stretch"]]),e("self-baseline",[["align-self","baseline"]]),e("justify-self-auto",[["justify-self","auto"]]),e("justify-self-start",[["justify-self","flex-start"]]),e("justify-self-end",[["justify-self","flex-end"]]),e("justify-self-center",[["justify-self","center"]]),e("justify-self-stretch",[["justify-self","stretch"]]);for(let i of["auto","hidden","clip","visible","scroll"])e(`overflow-${i}`,[["overflow",i]]),e(`overflow-x-${i}`,[["overflow-x",i]]),e(`overflow-y-${i}`,[["overflow-y",i]]);for(let i of["auto","contain","none"])e(`overscroll-${i}`,[["overscroll-behavior",i]]),e(`overscroll-x-${i}`,[["overscroll-behavior-x",i]]),e(`overscroll-y-${i}`,[["overscroll-behavior-y",i]]);e("scroll-auto",[["scroll-behavior","auto"]]),e("scroll-smooth",[["scroll-behavior","smooth"]]),e("truncate",[["overflow","hidden"],["text-overflow","ellipsis"],["white-space","nowrap"]]),e("text-ellipsis",[["text-overflow","ellipsis"]]),e("text-clip",[["text-overflow","clip"]]),e("hyphens-none",[["-webkit-hyphens","none"],["hyphens","none"]]),e("hyphens-manual",[["-webkit-hyphens","manual"],["hyphens","manual"]]),e("hyphens-auto",[["-webkit-hyphens","auto"],["hyphens","auto"]]),e("whitespace-normal",[["white-space","normal"]]),e("whitespace-nowrap",[["white-space","nowrap"]]),e("whitespace-pre",[["white-space","pre"]]),e("whitespace-pre-line",[["white-space","pre-line"]]),e("whitespace-pre-wrap",[["white-space","pre-wrap"]]),e("whitespace-break-spaces",[["white-space","break-spaces"]]),e("text-wrap",[["text-wrap","wrap"]]),e("text-nowrap",[["text-wrap","nowrap"]]),e("text-balance",[["text-wrap","balance"]]),e("text-pretty",[["text-wrap","pretty"]]),e("break-normal",[["overflow-wrap","normal"],["word-break","normal"]]),e("break-words",[["overflow-wrap","break-word"]]),e("break-all",[["word-break","break-all"]]),e("break-keep",[["word-break","keep-all"]]);for(let[i,u]of[["rounded",["border-radius"]],["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]],["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]])e(`${i}-none`,u.map(m=>[m,"0"])),e(`${i}-full`,u.map(m=>[m,"calc(infinity * 1px)"])),o(i,{themeKeys:["--radius"],handle:m=>u.map(k=>lib_l(k,m))});e("border-solid",[["--tw-border-style","solid"],["border-style","solid"]]),e("border-dashed",[["--tw-border-style","dashed"],["border-style","dashed"]]),e("border-dotted",[["--tw-border-style","dotted"],["border-style","dotted"]]),e("border-double",[["--tw-border-style","double"],["border-style","double"]]),e("border-hidden",[["--tw-border-style","hidden"],["border-style","hidden"]]),e("border-none",[["--tw-border-style","none"],["border-style","none"]]);{let u=function(m,k){r.functional(m,b=>{if(!b.value){if(b.modifier)return;let V=t.get(["--default-border-width"])??"1px",K=k.width(V);return K?[i(),...K]:void 0}if(b.value.kind==="arbitrary"){let V=b.value.value;switch(b.value.dataType??pe(V,["color","line-width","length"])){case"line-width":case"length":{if(b.modifier)return;let C=k.width(V);return C?[i(),...C]:void 0}default:return V=lib_B(V,b.modifier,t),V===null?void 0:k.color(V)}}{let V=lib_q(b,t,["--border-color","--color"]);if(V)return k.color(V)}{if(b.modifier)return;let V=t.resolve(b.value.value,["--border-width"]);if(V){let K=k.width(V);return K?[i(),...K]:void 0}if(chunk_V2K3XTS4_p(b.value.value)){let K=k.width(`${b.value.value}px`);return K?[i(),...K]:void 0}}}),n(m,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--border-color","--color"],modifiers:Array.from({length:21},(b,V)=>`${V*5}`),hasDefaultValue:!0},{values:["0","2","4","8"],valueThemeKeys:["--border-width"]}])};var x=u;let i=()=>lib_D([lib_$("--tw-border-style","solid")]);u("border",{width:m=>[lib_l("border-style","var(--tw-border-style)"),lib_l("border-width",m)],color:m=>[lib_l("border-color",m)]}),u("border-x",{width:m=>[lib_l("border-inline-style","var(--tw-border-style)"),lib_l("border-inline-width",m)],color:m=>[lib_l("border-inline-color",m)]}),u("border-y",{width:m=>[lib_l("border-block-style","var(--tw-border-style)"),lib_l("border-block-width",m)],color:m=>[lib_l("border-block-color",m)]}),u("border-s",{width:m=>[lib_l("border-inline-start-style","var(--tw-border-style)"),lib_l("border-inline-start-width",m)],color:m=>[lib_l("border-inline-start-color",m)]}),u("border-e",{width:m=>[lib_l("border-inline-end-style","var(--tw-border-style)"),lib_l("border-inline-end-width",m)],color:m=>[lib_l("border-inline-end-color",m)]}),u("border-t",{width:m=>[lib_l("border-top-style","var(--tw-border-style)"),lib_l("border-top-width",m)],color:m=>[lib_l("border-top-color",m)]}),u("border-r",{width:m=>[lib_l("border-right-style","var(--tw-border-style)"),lib_l("border-right-width",m)],color:m=>[lib_l("border-right-color",m)]}),u("border-b",{width:m=>[lib_l("border-bottom-style","var(--tw-border-style)"),lib_l("border-bottom-width",m)],color:m=>[lib_l("border-bottom-color",m)]}),u("border-l",{width:m=>[lib_l("border-left-style","var(--tw-border-style)"),lib_l("border-left-width",m)],color:m=>[lib_l("border-left-color",m)]}),o("divide-x",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}px`:null,handle:m=>[lib_D([lib_$("--tw-divide-x-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-x-width"),i(),lib_l("--tw-divide-x-reverse","0"),lib_l("border-inline-style","var(--tw-border-style)"),lib_l("border-inline-start-width",`calc(${m} * var(--tw-divide-x-reverse))`),lib_l("border-inline-end-width",`calc(${m} * calc(1 - var(--tw-divide-x-reverse)))`)])]}),o("divide-y",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}px`:null,handle:m=>[lib_D([lib_$("--tw-divide-y-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-y-width"),i(),lib_l("--tw-divide-y-reverse","0"),lib_l("border-bottom-style","var(--tw-border-style)"),lib_l("border-top-style","var(--tw-border-style)"),lib_l("border-top-width",`calc(${m} * var(--tw-divide-y-reverse))`),lib_l("border-bottom-width",`calc(${m} * calc(1 - var(--tw-divide-y-reverse)))`)])]}),n("divide-x",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),n("divide-y",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),e("divide-x-reverse",[()=>lib_D([lib_$("--tw-divide-x-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-divide-x-reverse","1")])]),e("divide-y-reverse",[()=>lib_D([lib_$("--tw-divide-y-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-divide-y-reverse","1")])]);for(let m of["solid","dashed","dotted","double","none"])e(`divide-${m}`,[()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-style"),lib_l("--tw-border-style",m),lib_l("border-style",m)])])}e("bg-auto",[["background-size","auto"]]),e("bg-cover",[["background-size","cover"]]),e("bg-contain",[["background-size","contain"]]),e("bg-fixed",[["background-attachment","fixed"]]),e("bg-local",[["background-attachment","local"]]),e("bg-scroll",[["background-attachment","scroll"]]),e("bg-center",[["background-position","center"]]),e("bg-top",[["background-position","top"]]),e("bg-right-top",[["background-position","right top"]]),e("bg-right",[["background-position","right"]]),e("bg-right-bottom",[["background-position","right bottom"]]),e("bg-bottom",[["background-position","bottom"]]),e("bg-left-bottom",[["background-position","left bottom"]]),e("bg-left",[["background-position","left"]]),e("bg-left-top",[["background-position","left top"]]),e("bg-repeat",[["background-repeat","repeat"]]),e("bg-no-repeat",[["background-repeat","no-repeat"]]),e("bg-repeat-x",[["background-repeat","repeat-x"]]),e("bg-repeat-y",[["background-repeat","repeat-y"]]),e("bg-repeat-round",[["background-repeat","round"]]),e("bg-repeat-space",[["background-repeat","space"]]),e("bg-none",[["background-image","none"]]);{let m=function(V){let K="in oklab";if(V?.kind==="named")switch(V.value){case"longer":case"shorter":case"increasing":case"decreasing":K=`in oklch ${V.value} hue`;break;default:K=`in ${V.value}`}else V?.kind==="arbitrary"&&(K=V.value);return K},k=function({negative:V}){return K=>{if(!K.value)return;if(K.value.kind==="arbitrary"){if(K.modifier)return;let U=K.value.value;switch(K.value.dataType??pe(U,["angle"])){case"angle":return U=V?`calc(${U} * -1)`:`${U}`,[lib_l("--tw-gradient-position",U),lib_l("background-image",`linear-gradient(var(--tw-gradient-stops,${U}))`)];default:return V?void 0:[lib_l("--tw-gradient-position",U),lib_l("background-image",`linear-gradient(var(--tw-gradient-stops,${U}))`)]}}let C=K.value.value;if(!V&&u.has(C))C=u.get(C);else if(chunk_V2K3XTS4_p(C))C=V?`calc(${C}deg * -1)`:`${C}deg`;else return;let A=m(K.modifier);return[lib_l("--tw-gradient-position",`${C} ${A}`),lib_l("background-image","linear-gradient(var(--tw-gradient-stops))")]}},b=function({negative:V}){return K=>{if(K.value?.kind==="arbitrary"){if(K.modifier)return;let U=K.value.value;return[lib_l("--tw-gradient-position",U),lib_l("background-image",`conic-gradient(var(--tw-gradient-stops,${U}))`)]}let C=m(K.modifier);if(!K.value)return[lib_l("--tw-gradient-position",C),lib_l("background-image","conic-gradient(var(--tw-gradient-stops))")];let A=K.value.value;if(chunk_V2K3XTS4_p(A))return A=V?`calc(${A} * -1)`:`${A}deg`,[lib_l("--tw-gradient-position",`from ${A} ${C}`),lib_l("background-image","conic-gradient(var(--tw-gradient-stops))")]}};var T=m,N=k,R=b;let i=["oklab","oklch","srgb","hsl","longer","shorter","increasing","decreasing"],u=new Map([["to-t","to top"],["to-tr","to top right"],["to-r","to right"],["to-br","to bottom right"],["to-b","to bottom"],["to-bl","to bottom left"],["to-l","to left"],["to-tl","to top left"]]);r.functional("-bg-linear",k({negative:!0})),r.functional("bg-linear",k({negative:!1})),n("bg-linear",()=>[{values:[...u.keys()],modifiers:i},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:i}]),r.functional("-bg-conic",b({negative:!0})),r.functional("bg-conic",b({negative:!1})),n("bg-conic",()=>[{hasDefaultValue:!0,modifiers:i},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:i}]),r.functional("bg-radial",V=>{if(!V.value){let K=m(V.modifier);return[lib_l("--tw-gradient-position",K),lib_l("background-image","radial-gradient(var(--tw-gradient-stops))")]}if(V.value.kind==="arbitrary"){if(V.modifier)return;let K=V.value.value;return[lib_l("--tw-gradient-position",K),lib_l("background-image",`radial-gradient(var(--tw-gradient-stops,${K}))`)]}}),n("bg-radial",()=>[{hasDefaultValue:!0,modifiers:i}])}r.functional("bg",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["image","color","percentage","position","bg-size","length","url"])){case"percentage":case"position":return i.modifier?void 0:[lib_l("background-position",u)];case"bg-size":case"length":case"size":return i.modifier?void 0:[lib_l("background-size",u)];case"image":case"url":return i.modifier?void 0:[lib_l("background-image",u)];default:return u=lib_B(u,i.modifier,t),u===null?void 0:[lib_l("background-color",u)]}}{let u=lib_q(i,t,["--background-color","--color"]);if(u)return[lib_l("background-color",u)]}{if(i.modifier)return;let u=t.resolve(i.value.value,["--background-image"]);if(u)return[lib_l("background-image",u)]}}}),n("bg",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:[],valueThemeKeys:["--background-image"]}]);let w=()=>lib_D([lib_$("--tw-gradient-position"),lib_$("--tw-gradient-from","#0000","<color>"),lib_$("--tw-gradient-via","#0000","<color>"),lib_$("--tw-gradient-to","#0000","<color>"),lib_$("--tw-gradient-stops"),lib_$("--tw-gradient-via-stops"),lib_$("--tw-gradient-from-position","0%","<length-percentage>"),lib_$("--tw-gradient-via-position","50%","<length-percentage>"),lib_$("--tw-gradient-to-position","100%","<length-percentage>")]);function v(i,u){r.functional(i,m=>{if(m.value){if(m.value.kind==="arbitrary"){let k=m.value.value;switch(m.value.dataType??pe(k,["color","length","percentage"])){case"length":case"percentage":return m.modifier?void 0:u.position(k);default:return k=lib_B(k,m.modifier,t),k===null?void 0:u.color(k)}}{let k=lib_q(m,t,["--background-color","--color"]);if(k)return u.color(k)}{if(m.modifier)return;let k=t.resolve(m.value.value,["--gradient-color-stop-positions"]);if(k)return u.position(k);if(m.value.value[m.value.value.length-1]==="%"&&chunk_V2K3XTS4_p(m.value.value.slice(0,-1)))return u.position(m.value.value)}}}),n(i,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(m,k)=>`${k*5}`)},{values:Array.from({length:21},(m,k)=>`${k*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}])}v("from",{color:i=>[w(),lib_l("--tw-sort","--tw-gradient-from"),lib_l("--tw-gradient-from",i),lib_l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:i=>[w(),lib_l("--tw-gradient-from-position",i)]}),e("via-none",[["--tw-gradient-via-stops","initial"]]),v("via",{color:i=>[w(),lib_l("--tw-sort","--tw-gradient-via"),lib_l("--tw-gradient-via",i),lib_l("--tw-gradient-via-stops","var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position)"),lib_l("--tw-gradient-stops","var(--tw-gradient-via-stops)")],position:i=>[w(),lib_l("--tw-gradient-via-position",i)]}),v("to",{color:i=>[w(),lib_l("--tw-sort","--tw-gradient-to"),lib_l("--tw-gradient-to",i),lib_l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:i=>[w(),lib_l("--tw-gradient-to-position",i)]}),e("box-decoration-slice",[["-webkit-box-decoration-break","slice"],["box-decoration-break","slice"]]),e("box-decoration-clone",[["-webkit-box-decoration-break","clone"],["box-decoration-break","clone"]]),e("bg-clip-text",[["background-clip","text"]]),e("bg-clip-border",[["background-clip","border-box"]]),e("bg-clip-padding",[["background-clip","padding-box"]]),e("bg-clip-content",[["background-clip","content-box"]]),e("bg-origin-border",[["background-origin","border-box"]]),e("bg-origin-padding",[["background-origin","padding-box"]]),e("bg-origin-content",[["background-origin","content-box"]]);for(let i of["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"])e(`bg-blend-${i}`,[["background-blend-mode",i]]),e(`mix-blend-${i}`,[["mix-blend-mode",i]]);e("mix-blend-plus-darker",[["mix-blend-mode","plus-darker"]]),e("mix-blend-plus-lighter",[["mix-blend-mode","plus-lighter"]]),e("fill-none",[["fill","none"]]),r.functional("fill",i=>{if(!i.value)return;if(i.value.kind==="arbitrary"){let m=lib_B(i.value.value,i.modifier,t);return m===null?void 0:[lib_l("fill",m)]}let u=lib_q(i,t,["--fill","--color"]);if(u)return[lib_l("fill",u)]}),n("fill",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--fill","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)}]),e("stroke-none",[["stroke","none"]]),r.functional("stroke",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["color","number","length","percentage"])){case"number":case"length":case"percentage":return i.modifier?void 0:[lib_l("stroke-width",u)];default:return u=lib_B(i.value.value,i.modifier,t),u===null?void 0:[lib_l("stroke",u)]}}{let u=lib_q(i,t,["--stroke","--color"]);if(u)return[lib_l("stroke",u)]}{let u=t.resolve(i.value.value,["--stroke-width"]);if(u)return[lib_l("stroke-width",u)];if(chunk_V2K3XTS4_p(i.value.value))return[lib_l("stroke-width",i.value.value)]}}}),n("stroke",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--stroke","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:["0","1","2","3"],valueThemeKeys:["--stroke-width"]}]),e("object-contain",[["object-fit","contain"]]),e("object-cover",[["object-fit","cover"]]),e("object-fill",[["object-fit","fill"]]),e("object-none",[["object-fit","none"]]),e("object-scale-down",[["object-fit","scale-down"]]),e("object-bottom",[["object-position","bottom"]]),e("object-center",[["object-position","center"]]),e("object-left",[["object-position","left"]]),e("object-left-bottom",[["object-position","left bottom"]]),e("object-left-top",[["object-position","left top"]]),e("object-right",[["object-position","right"]]),e("object-right-bottom",[["object-position","right bottom"]]),e("object-right-top",[["object-position","right top"]]),e("object-top",[["object-position","top"]]),o("object",{themeKeys:["--object-position"],handle:i=>[lib_l("object-position",i)]});for(let[i,u]of[["p","padding"],["px","padding-inline"],["py","padding-block"],["ps","padding-inline-start"],["pe","padding-inline-end"],["pt","padding-top"],["pr","padding-right"],["pb","padding-bottom"],["pl","padding-left"]])a(i,["--padding","--spacing"],m=>[lib_l(u,m)]);e("text-left",[["text-align","left"]]),e("text-center",[["text-align","center"]]),e("text-right",[["text-align","right"]]),e("text-justify",[["text-align","justify"]]),e("text-start",[["text-align","start"]]),e("text-end",[["text-align","end"]]),a("indent",["--text-indent","--spacing"],i=>[lib_l("text-indent",i)],{supportsNegative:!0}),e("align-baseline",[["vertical-align","baseline"]]),e("align-top",[["vertical-align","top"]]),e("align-middle",[["vertical-align","middle"]]),e("align-bottom",[["vertical-align","bottom"]]),e("align-text-top",[["vertical-align","text-top"]]),e("align-text-bottom",[["vertical-align","text-bottom"]]),e("align-sub",[["vertical-align","sub"]]),e("align-super",[["vertical-align","super"]]),o("align",{themeKeys:[],handle:i=>[lib_l("vertical-align",i)]}),r.functional("font",i=>{if(!(!i.value||i.modifier)){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["number","generic-name","family-name"])){case"generic-name":case"family-name":return[lib_l("font-family",u)];default:return[lib_D([lib_$("--tw-font-weight")]),lib_l("--tw-font-weight",u),lib_l("font-weight",u)]}}{let u=t.resolveWith(i.value.value,["--font"],["--font-feature-settings","--font-variation-settings"]);if(u){let[m,k={}]=u;return[lib_l("font-family",m),lib_l("font-feature-settings",k["--font-feature-settings"]),lib_l("font-variation-settings",k["--font-variation-settings"])]}}{let u=t.resolve(i.value.value,["--font-weight"]);if(u)return[lib_D([lib_$("--tw-font-weight")]),lib_l("--tw-font-weight",u),lib_l("font-weight",u)]}}}),n("font",()=>[{values:[],valueThemeKeys:["--font"]},{values:[],valueThemeKeys:["--font-weight"]}]),e("uppercase",[["text-transform","uppercase"]]),e("lowercase",[["text-transform","lowercase"]]),e("capitalize",[["text-transform","capitalize"]]),e("normal-case",[["text-transform","none"]]),e("italic",[["font-style","italic"]]),e("not-italic",[["font-style","normal"]]),e("underline",[["text-decoration-line","underline"]]),e("overline",[["text-decoration-line","overline"]]),e("line-through",[["text-decoration-line","line-through"]]),e("no-underline",[["text-decoration-line","none"]]),e("font-stretch-normal",[["font-stretch","normal"]]),e("font-stretch-ultra-condensed",[["font-stretch","ultra-condensed"]]),e("font-stretch-extra-condensed",[["font-stretch","extra-condensed"]]),e("font-stretch-condensed",[["font-stretch","condensed"]]),e("font-stretch-semi-condensed",[["font-stretch","semi-condensed"]]),e("font-stretch-semi-expanded",[["font-stretch","semi-expanded"]]),e("font-stretch-expanded",[["font-stretch","expanded"]]),e("font-stretch-extra-expanded",[["font-stretch","extra-expanded"]]),e("font-stretch-ultra-expanded",[["font-stretch","ultra-expanded"]]),o("font-stretch",{handleBareValue:({value:i})=>{if(!i.endsWith("%"))return null;let u=Number(i.slice(0,-1));return!chunk_V2K3XTS4_p(u)||Number.isNaN(u)||u<50||u>200?null:i},handle:i=>[lib_l("font-stretch",i)]}),n("font-stretch",()=>[{values:["50%","75%","90%","95%","100%","105%","110%","125%","150%","200%"]}]),s("placeholder",{themeKeys:["--background-color","--color"],handle:i=>[lib_F("&::placeholder",[lib_l("--tw-sort","placeholder-color"),lib_l("color",i)])]}),e("decoration-solid",[["text-decoration-style","solid"]]),e("decoration-double",[["text-decoration-style","double"]]),e("decoration-dotted",[["text-decoration-style","dotted"]]),e("decoration-dashed",[["text-decoration-style","dashed"]]),e("decoration-wavy",[["text-decoration-style","wavy"]]),e("decoration-auto",[["text-decoration-thickness","auto"]]),e("decoration-from-font",[["text-decoration-thickness","from-font"]]),r.functional("decoration",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["color","length","percentage"])){case"length":case"percentage":return i.modifier?void 0:[lib_l("text-decoration-thickness",u)];default:return u=lib_B(u,i.modifier,t),u===null?void 0:[lib_l("text-decoration-color",u)]}}{let u=t.resolve(i.value.value,["--text-decoration-thickness"]);if(u)return i.modifier?void 0:[lib_l("text-decoration-thickness",u)];if(chunk_V2K3XTS4_p(i.value.value))return i.modifier?void 0:[lib_l("text-decoration-thickness",`${i.value.value}px`)]}{let u=lib_q(i,t,["--text-decoration-color","--color"]);if(u)return[lib_l("text-decoration-color",u)]}}}),n("decoration",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-decoration-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:["0","1","2"],valueThemeKeys:["--text-decoration-thickness"]}]),e("animate-none",[["animation","none"]]),o("animate",{themeKeys:["--animate"],handle:i=>[lib_l("animation",i)]});{let i=["var(--tw-blur,)","var(--tw-brightness,)","var(--tw-contrast,)","var(--tw-grayscale,)","var(--tw-hue-rotate,)","var(--tw-invert,)","var(--tw-saturate,)","var(--tw-sepia,)","var(--tw-drop-shadow,)"].join(" "),u=["var(--tw-backdrop-blur,)","var(--tw-backdrop-brightness,)","var(--tw-backdrop-contrast,)","var(--tw-backdrop-grayscale,)","var(--tw-backdrop-hue-rotate,)","var(--tw-backdrop-invert,)","var(--tw-backdrop-opacity,)","var(--tw-backdrop-saturate,)","var(--tw-backdrop-sepia,)"].join(" "),m=()=>lib_D([lib_$("--tw-blur"),lib_$("--tw-brightness"),lib_$("--tw-contrast"),lib_$("--tw-grayscale"),lib_$("--tw-hue-rotate"),lib_$("--tw-invert"),lib_$("--tw-opacity"),lib_$("--tw-saturate"),lib_$("--tw-sepia")]),k=()=>lib_D([lib_$("--tw-backdrop-blur"),lib_$("--tw-backdrop-brightness"),lib_$("--tw-backdrop-contrast"),lib_$("--tw-backdrop-grayscale"),lib_$("--tw-backdrop-hue-rotate"),lib_$("--tw-backdrop-invert"),lib_$("--tw-backdrop-opacity"),lib_$("--tw-backdrop-saturate"),lib_$("--tw-backdrop-sepia")]);r.functional("filter",b=>{if(!b.modifier){if(b.value===null)return[m(),lib_l("filter",i)];if(b.value.kind==="arbitrary")return[lib_l("filter",b.value.value)];switch(b.value.value){case"none":return[lib_l("filter","none")]}}}),r.functional("backdrop-filter",b=>{if(!b.modifier){if(b.value===null)return[k(),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)];if(b.value.kind==="arbitrary")return[lib_l("-webkit-backdrop-filter",b.value.value),lib_l("backdrop-filter",b.value.value)];switch(b.value.value){case"none":return[lib_l("-webkit-backdrop-filter","none"),lib_l("backdrop-filter","none")]}}}),o("blur",{themeKeys:["--blur"],handle:b=>[m(),lib_l("--tw-blur",`blur(${b})`),lib_l("filter",i)]}),e("blur-none",[m,["--tw-blur"," "],["filter",i]]),o("backdrop-blur",{themeKeys:["--backdrop-blur","--blur"],handle:b=>[k(),lib_l("--tw-backdrop-blur",`blur(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),e("backdrop-blur-none",[k,["--tw-backdrop-blur"," "],["-webkit-backdrop-filter",u],["backdrop-filter",u]]),o("brightness",{themeKeys:["--brightness"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[m(),lib_l("--tw-brightness",`brightness(${b})`),lib_l("filter",i)]}),o("backdrop-brightness",{themeKeys:["--backdrop-brightness","--brightness"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-brightness",`brightness(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--brightness"]}]),n("backdrop-brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--backdrop-brightness","--brightness"]}]),o("contrast",{themeKeys:["--contrast"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[m(),lib_l("--tw-contrast",`contrast(${b})`),lib_l("filter",i)]}),o("backdrop-contrast",{themeKeys:["--backdrop-contrast","--contrast"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-contrast",`contrast(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--contrast"]}]),n("backdrop-contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--backdrop-contrast","--contrast"]}]),o("grayscale",{themeKeys:["--grayscale"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[m(),lib_l("--tw-grayscale",`grayscale(${b})`),lib_l("filter",i)]}),o("backdrop-grayscale",{themeKeys:["--backdrop-grayscale","--grayscale"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[k(),lib_l("--tw-backdrop-grayscale",`grayscale(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--grayscale"],hasDefaultValue:!0}]),n("backdrop-grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-grayscale","--grayscale"],hasDefaultValue:!0}]),o("hue-rotate",{supportsNegative:!0,themeKeys:["--hue-rotate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}deg`:null,handle:b=>[m(),lib_l("--tw-hue-rotate",`hue-rotate(${b})`),lib_l("filter",i)]}),o("backdrop-hue-rotate",{supportsNegative:!0,themeKeys:["--backdrop-hue-rotate","--hue-rotate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}deg`:null,handle:b=>[k(),lib_l("--tw-backdrop-hue-rotate",`hue-rotate(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--hue-rotate"]}]),n("backdrop-hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--backdrop-hue-rotate","--hue-rotate"]}]),o("invert",{themeKeys:["--invert"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[m(),lib_l("--tw-invert",`invert(${b})`),lib_l("filter",i)]}),o("backdrop-invert",{themeKeys:["--backdrop-invert","--invert"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[k(),lib_l("--tw-backdrop-invert",`invert(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--invert"],hasDefaultValue:!0}]),n("backdrop-invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-invert","--invert"],hasDefaultValue:!0}]),o("saturate",{themeKeys:["--saturate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[m(),lib_l("--tw-saturate",`saturate(${b})`),lib_l("filter",i)]}),o("backdrop-saturate",{themeKeys:["--backdrop-saturate","--saturate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-saturate",`saturate(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--saturate"]}]),n("backdrop-saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--backdrop-saturate","--saturate"]}]),o("sepia",{themeKeys:["--sepia"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[m(),lib_l("--tw-sepia",`sepia(${b})`),lib_l("filter",i)]}),o("backdrop-sepia",{themeKeys:["--backdrop-sepia","--sepia"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[k(),lib_l("--tw-backdrop-sepia",`sepia(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--sepia"],hasDefaultValue:!0}]),n("backdrop-sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--backdrop-sepia","--sepia"],hasDefaultValue:!0}]),e("drop-shadow-none",[m,["--tw-drop-shadow"," "],["filter",i]]),o("drop-shadow",{themeKeys:["--drop-shadow"],handle:b=>[m(),lib_l("--tw-drop-shadow",chunk_V2K3XTS4_u(b,",").map(V=>`drop-shadow(${V})`).join(" ")),lib_l("filter",i)]}),o("backdrop-opacity",{themeKeys:["--backdrop-opacity","--opacity"],handleBareValue:({value:b})=>de(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-opacity",`opacity(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("backdrop-opacity",()=>[{values:Array.from({length:21},(b,V)=>`${V*5}`),valueThemeKeys:["--backdrop-opacity","--opacity"]}])}{let i=`var(--tw-ease, ${t.resolve(null,["--default-transition-timing-function"])??"ease"})`,u=`var(--tw-duration, ${t.resolve(null,["--default-transition-duration"])??"0s"})`;e("transition-none",[["transition-property","none"]]),e("transition-all",[["transition-property","all"],["transition-timing-function",i],["transition-duration",u]]),e("transition-colors",[["transition-property","color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to"],["transition-timing-function",i],["transition-duration",u]]),e("transition-opacity",[["transition-property","opacity"],["transition-timing-function",i],["transition-duration",u]]),e("transition-shadow",[["transition-property","box-shadow"],["transition-timing-function",i],["transition-duration",u]]),e("transition-transform",[["transition-property","transform, translate, scale, rotate"],["transition-timing-function",i],["transition-duration",u]]),o("transition",{defaultValue:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter",themeKeys:["--transition-property"],handle:m=>[lib_l("transition-property",m),lib_l("transition-timing-function",i),lib_l("transition-duration",u)]}),e("transition-discrete",[["transition-behavior","allow-discrete"]]),e("transition-normal",[["transition-behavior","normal"]]),o("delay",{handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}ms`:null,themeKeys:["--transition-delay"],handle:m=>[lib_l("transition-delay",m)]});{let m=()=>lib_D([lib_$("--tw-duration")]);e("duration-initial",[m,["--tw-duration","initial"]]),r.functional("duration",k=>{if(k.modifier||!k.value)return;let b=null;if(k.value.kind==="arbitrary"?b=k.value.value:(b=t.resolve(k.value.fraction??k.value.value,["--transition-duration"]),b===null&&chunk_V2K3XTS4_p(k.value.value)&&(b=`${k.value.value}ms`)),b!==null)return[m(),lib_l("--tw-duration",b),lib_l("transition-duration",b)]})}n("delay",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-delay"]}]),n("duration",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-duration"]}])}{let i=()=>lib_D([lib_$("--tw-ease")]);e("ease-initial",[i,["--tw-ease","initial"]]),e("ease-linear",[i,["--tw-ease","linear"],["transition-timing-function","linear"]]),o("ease",{themeKeys:["--ease"],handle:u=>[i(),lib_l("--tw-ease",u),lib_l("transition-timing-function",u)]})}e("will-change-auto",[["will-change","auto"]]),e("will-change-scroll",[["will-change","scroll-position"]]),e("will-change-contents",[["will-change","contents"]]),e("will-change-transform",[["will-change","transform"]]),o("will-change",{themeKeys:[],handle:i=>[lib_l("will-change",i)]}),e("content-none",[["--tw-content","none"],["content","none"]]),o("content",{themeKeys:[],handle:i=>[lib_D([lib_$("--tw-content",'""')]),lib_l("--tw-content",i),lib_l("content","var(--tw-content)")]});{let i="var(--tw-contain-size,) var(--tw-contain-layout,) var(--tw-contain-paint,) var(--tw-contain-style,)",u=()=>lib_D([lib_$("--tw-contain-size"),lib_$("--tw-contain-layout"),lib_$("--tw-contain-paint"),lib_$("--tw-contain-style")]);e("contain-none",[["contain","none"]]),e("contain-content",[["contain","content"]]),e("contain-strict",[["contain","strict"]]),e("contain-size",[u,["--tw-contain-size","size"],["contain",i]]),e("contain-inline-size",[u,["--tw-contain-size","inline-size"],["contain",i]]),e("contain-layout",[u,["--tw-contain-layout","layout"],["contain",i]]),e("contain-paint",[u,["--tw-contain-paint","paint"],["contain",i]]),e("contain-style",[u,["--tw-contain-style","style"],["contain",i]]),o("contain",{themeKeys:[],handle:m=>[lib_l("contain",m)]})}e("forced-color-adjust-none",[["forced-color-adjust","none"]]),e("forced-color-adjust-auto",[["forced-color-adjust","auto"]]),e("leading-none",[()=>lib_D([lib_$("--tw-leading")]),["--tw-leading","1"],["line-height","1"]]),a("leading",["--leading","--spacing"],i=>[lib_D([lib_$("--tw-leading")]),lib_l("--tw-leading",i),lib_l("line-height",i)]),o("tracking",{supportsNegative:!0,themeKeys:["--tracking"],handle:i=>[lib_D([lib_$("--tw-tracking")]),lib_l("--tw-tracking",i),lib_l("letter-spacing",i)]}),e("antialiased",[["-webkit-font-smoothing","antialiased"],["-moz-osx-font-smoothing","grayscale"]]),e("subpixel-antialiased",[["-webkit-font-smoothing","auto"],["-moz-osx-font-smoothing","auto"]]);{let i="var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)",u=()=>lib_D([lib_$("--tw-ordinal"),lib_$("--tw-slashed-zero"),lib_$("--tw-numeric-figure"),lib_$("--tw-numeric-spacing"),lib_$("--tw-numeric-fraction")]);e("normal-nums",[["font-variant-numeric","normal"]]),e("ordinal",[u,["--tw-ordinal","ordinal"],["font-variant-numeric",i]]),e("slashed-zero",[u,["--tw-slashed-zero","slashed-zero"],["font-variant-numeric",i]]),e("lining-nums",[u,["--tw-numeric-figure","lining-nums"],["font-variant-numeric",i]]),e("oldstyle-nums",[u,["--tw-numeric-figure","oldstyle-nums"],["font-variant-numeric",i]]),e("proportional-nums",[u,["--tw-numeric-spacing","proportional-nums"],["font-variant-numeric",i]]),e("tabular-nums",[u,["--tw-numeric-spacing","tabular-nums"],["font-variant-numeric",i]]),e("diagonal-fractions",[u,["--tw-numeric-fraction","diagonal-fractions"],["font-variant-numeric",i]]),e("stacked-fractions",[u,["--tw-numeric-fraction","stacked-fractions"],["font-variant-numeric",i]])}{let i=()=>lib_D([lib_$("--tw-outline-style","solid")]);r.static("outline-hidden",()=>[lib_l("outline-style","none"),lib_O("@media","(forced-colors: active)",[lib_l("outline","2px solid transparent"),lib_l("outline-offset","2px")])]),e("outline-none",[["--tw-outline-style","none"],["outline-style","none"]]),e("outline-solid",[["--tw-outline-style","solid"],["outline-style","solid"]]),e("outline-dashed",[["--tw-outline-style","dashed"],["outline-style","dashed"]]),e("outline-dotted",[["--tw-outline-style","dotted"],["outline-style","dotted"]]),e("outline-double",[["--tw-outline-style","double"],["outline-style","double"]]),r.functional("outline",u=>{if(u.value===null)return u.modifier?void 0:[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width","1px")];if(u.value.kind==="arbitrary"){let m=u.value.value;switch(u.value.dataType??pe(m,["color","length","number","percentage"])){case"length":case"number":case"percentage":return u.modifier?void 0:[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width",m)];default:return m=lib_B(m,u.modifier,t),m===null?void 0:[lib_l("outline-color",m)]}}{let m=lib_q(u,t,["--outline-color","--color"]);if(m)return[lib_l("outline-color",m)]}{if(u.modifier)return;let m=t.resolve(u.value.value,["--outline-width"]);if(m)return[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width",m)];if(chunk_V2K3XTS4_p(u.value.value))return[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width",`${u.value.value}px`)]}}),n("outline",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--outline-color","--color"],modifiers:Array.from({length:21},(u,m)=>`${m*5}`),hasDefaultValue:!0},{values:["0","1","2","4","8"],valueThemeKeys:["--outline-width"]}]),o("outline-offset",{supportsNegative:!0,themeKeys:["--outline-offset"],handleBareValue:({value:u})=>chunk_V2K3XTS4_p(u)?`${u}px`:null,handle:u=>[lib_l("outline-offset",u)]}),n("outline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--outline-offset"]}])}o("opacity",{themeKeys:["--opacity"],handleBareValue:({value:i})=>de(i)?`${i}%`:null,handle:i=>[lib_l("opacity",i)]}),n("opacity",()=>[{values:Array.from({length:21},(i,u)=>`${u*5}`),valueThemeKeys:["--opacity"]}]),e("underline-offset-auto",[["text-underline-offset","auto"]]),o("underline-offset",{supportsNegative:!0,themeKeys:["--text-underline-offset"],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?`${i}px`:null,handle:i=>[lib_l("text-underline-offset",i)]}),n("underline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--text-underline-offset"]}]),r.functional("text",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["color","length","percentage","absolute-size","relative-size"])){case"size":case"length":case"percentage":case"absolute-size":case"relative-size":{if(i.modifier){let k=i.modifier.kind==="arbitrary"?i.modifier.value:t.resolve(i.modifier.value,["--leading"]);if(!k&&ue(i.modifier.value)){let b=t.resolve(null,["--spacing"]);if(!b)return null;k=`calc(${b} * ${i.modifier.value})`}return!k&&i.modifier.value==="none"&&(k="1"),k?[lib_l("font-size",u),lib_l("line-height",k)]:null}return[lib_l("font-size",u)]}default:return u=lib_B(u,i.modifier,t),u===null?void 0:[lib_l("color",u)]}}{let u=lib_q(i,t,["--text-color","--color"]);if(u)return[lib_l("color",u)]}{let u=t.resolveWith(i.value.value,["--text"],["--line-height","--letter-spacing","--font-weight"]);if(u){let[m,k={}]=Array.isArray(u)?u:[u];if(i.modifier){let b=i.modifier.kind==="arbitrary"?i.modifier.value:t.resolve(i.modifier.value,["--leading"]);if(!b&&ue(i.modifier.value)){let K=t.resolve(null,["--spacing"]);if(!K)return null;b=`calc(${K} * ${i.modifier.value})`}if(!b&&i.modifier.value==="none"&&(b="1"),!b)return null;let V=[lib_l("font-size",m)];return b&&V.push(lib_l("line-height",b)),V}return typeof k=="string"?[lib_l("font-size",m),lib_l("line-height",k)]:[lib_l("font-size",m),lib_l("line-height",k["--line-height"]?`var(--tw-leading, ${k["--line-height"]})`:void 0),lib_l("letter-spacing",k["--letter-spacing"]?`var(--tw-tracking, ${k["--letter-spacing"]})`:void 0),lib_l("font-weight",k["--font-weight"]?`var(--tw-font-weight, ${k["--font-weight"]})`:void 0)]}}}}),n("text",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:[],valueThemeKeys:["--text"],modifiers:[],modifierThemeKeys:["--leading"]}]);{let b=function(C){return`var(--tw-ring-inset,) 0 0 0 calc(${C} + var(--tw-ring-offset-width)) var(--tw-ring-color, ${k})`},V=function(C){return`inset 0 0 0 ${C} var(--tw-inset-ring-color, currentColor)`};var E=b,P=V;let i=["var(--tw-inset-shadow)","var(--tw-inset-ring-shadow)","var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow)"].join(", "),u="0 0 #0000",m=()=>lib_D([lib_$("--tw-shadow",u),lib_$("--tw-shadow-color"),lib_$("--tw-inset-shadow",u),lib_$("--tw-inset-shadow-color"),lib_$("--tw-ring-color"),lib_$("--tw-ring-shadow",u),lib_$("--tw-inset-ring-color"),lib_$("--tw-inset-ring-shadow",u),lib_$("--tw-ring-inset"),lib_$("--tw-ring-offset-width","0px","<length>"),lib_$("--tw-ring-offset-color","#fff"),lib_$("--tw-ring-offset-shadow",u)]);e("shadow-initial",[m,["--tw-shadow-color","initial"]]),r.functional("shadow",C=>{if(!C.value){let A=t.get(["--shadow"]);return A===null?void 0:[m(),lib_l("--tw-shadow",lib_ne(A,U=>`var(--tw-shadow-color, ${U})`)),lib_l("box-shadow",i)]}if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color"])){case"color":return A=lib_B(A,C.modifier,t),A===null?void 0:[m(),lib_l("--tw-shadow-color",A)];default:return[m(),lib_l("--tw-shadow",lib_ne(A,be=>`var(--tw-shadow-color, ${be})`)),lib_l("box-shadow",i)]}}switch(C.value.value){case"none":return C.modifier?void 0:[m(),lib_l("--tw-shadow",u),lib_l("box-shadow",i)]}{let A=t.get([`--shadow-${C.value.value}`]);if(A)return C.modifier?void 0:[m(),lib_l("--tw-shadow",lib_ne(A,U=>`var(--tw-shadow-color, ${U})`)),lib_l("box-shadow",i)]}{let A=lib_q(C,t,["--box-shadow-color","--color"]);if(A)return[m(),lib_l("--tw-shadow-color",A)]}}),n("shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:["none"],valueThemeKeys:["--shadow"],hasDefaultValue:!0}]),e("inset-shadow-initial",[m,["--tw-inset-shadow-color","initial"]]),r.functional("inset-shadow",C=>{if(!C.value){let A=t.get(["--inset-shadow"]);return A===null?void 0:[m(),lib_l("--tw-inset-shadow",lib_ne(A,U=>`var(--tw-inset-shadow-color, ${U})`)),lib_l("box-shadow",i)]}if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color"])){case"color":return A=lib_B(A,C.modifier,t),A===null?void 0:[m(),lib_l("--tw-inset-shadow-color",A)];default:return[m(),lib_l("--tw-inset-shadow",`inset ${lib_ne(A,be=>`var(--tw-inset-shadow-color, ${be})`)}`),lib_l("box-shadow",i)]}}switch(C.value.value){case"none":return C.modifier?void 0:[m(),lib_l("--tw-inset-shadow",u),lib_l("box-shadow",i)]}{let A=t.get([`--inset-shadow-${C.value.value}`]);if(A)return C.modifier?void 0:[m(),lib_l("--tw-inset-shadow",lib_ne(A,U=>`var(--tw-inset-shadow-color, ${U})`)),lib_l("box-shadow",i)]}{let A=lib_q(C,t,["--box-shadow-color","--color"]);if(A)return[m(),lib_l("--tw-inset-shadow-color",A)]}}),n("inset-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:[],valueThemeKeys:["--inset-shadow"],hasDefaultValue:!0}]),e("ring-inset",[m,["--tw-ring-inset","inset"]]);let k=t.get(["--default-ring-color"])??"currentColor";r.functional("ring",C=>{if(!C.value){if(C.modifier)return;let A=t.get(["--default-ring-width"])??"1px";return[m(),lib_l("--tw-ring-shadow",b(A)),lib_l("box-shadow",i)]}if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color","length"])){case"length":return C.modifier?void 0:[m(),lib_l("--tw-ring-shadow",b(A)),lib_l("box-shadow",i)];default:return A=lib_B(A,C.modifier,t),A===null?void 0:[lib_l("--tw-ring-color",A)]}}{let A=lib_q(C,t,["--ring-color","--color"]);if(A)return[lib_l("--tw-ring-color",A)]}{if(C.modifier)return;let A=t.resolve(C.value.value,["--ring-width"]);if(A===null&&chunk_V2K3XTS4_p(C.value.value)&&(A=`${C.value.value}px`),A)return[m(),lib_l("--tw-ring-shadow",b(A)),lib_l("box-shadow",i)]}}),n("ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]),r.functional("inset-ring",C=>{if(!C.value)return C.modifier?void 0:[m(),lib_l("--tw-inset-ring-shadow",V("1px")),lib_l("box-shadow",i)];if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color","length"])){case"length":return C.modifier?void 0:[m(),lib_l("--tw-inset-ring-shadow",V(A)),lib_l("box-shadow",i)];default:return A=lib_B(A,C.modifier,t),A===null?void 0:[lib_l("--tw-inset-ring-color",A)]}}{let A=lib_q(C,t,["--ring-color","--color"]);if(A)return[lib_l("--tw-inset-ring-color",A)]}{if(C.modifier)return;let A=t.resolve(C.value.value,["--ring-width"]);if(A===null&&chunk_V2K3XTS4_p(C.value.value)&&(A=`${C.value.value}px`),A)return[m(),lib_l("--tw-inset-ring-shadow",V(A)),lib_l("box-shadow",i)]}}),n("inset-ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]);let K="var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)";r.functional("ring-offset",C=>{if(C.value){if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color","length"])){case"length":return C.modifier?void 0:[lib_l("--tw-ring-offset-width",A),lib_l("--tw-ring-offset-shadow",K)];default:return A=lib_B(A,C.modifier,t),A===null?void 0:[lib_l("--tw-ring-offset-color",A)]}}{let A=t.resolve(C.value.value,["--ring-offset-width"]);if(A)return C.modifier?void 0:[lib_l("--tw-ring-offset-width",A),lib_l("--tw-ring-offset-shadow",K)];if(chunk_V2K3XTS4_p(C.value.value))return C.modifier?void 0:[lib_l("--tw-ring-offset-width",`${C.value.value}px`),lib_l("--tw-ring-offset-shadow",K)]}{let A=lib_q(C,t,["--ring-offset-color","--color"]);if(A)return[lib_l("--tw-ring-offset-color",A)]}}})}return n("ring-offset",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-offset-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-offset-width"]}]),r.functional("@container",i=>{let u=null;if(i.value===null?u="inline-size":i.value.kind==="arbitrary"?u=i.value.value:i.value.kind==="named"&&i.value.value==="normal"&&(u="normal"),u!==null)return i.modifier?[lib_l("container-type",u),lib_l("container-name",i.modifier.value)]:[lib_l("container-type",u)]}),n("@container",()=>[{values:["normal"],valueThemeKeys:[],hasDefaultValue:!0}]),r}function St(t){let r=t.params;return _r.test(r)?n=>{let e=new Set,o=new Set;lib_j(t.nodes,s=>{if(s.kind!=="declaration"||!s.value||!s.value.includes("--value(")&&!s.value.includes("--modifier("))return;let a=lib_L(s.value);le(a,c=>{if(c.kind!=="function"||c.value!=="--value"&&c.value!=="--modifier")return;let d=chunk_V2K3XTS4_u(lib_W(c.nodes),",");for(let[f,p]of d.entries())p=p.replace(/\\\*/g,"*"),p=p.replace(/--(.*?)\s--(.*?)/g,"--$1-*--$2"),p=p.replace(/\s+/g,""),p=p.replace(/(-\*){2,}/g,"-*"),p[0]==="-"&&p[1]==="-"&&!p.includes("-*")&&(p+="-*"),d[f]=p;c.nodes=lib_L(d.join(","));for(let f of c.nodes)if(f.kind==="word"&&f.value[0]==="-"&&f.value[1]==="-"){let p=f.value.replace(/-\*.*$/g,"");c.value==="--value"?e.add(p):c.value==="--modifier"&&o.add(p)}}),s.value=lib_W(a)}),n.utilities.functional(r.slice(0,-2),s=>{let a=structuredClone(t),c=s.value,d=s.modifier;if(c===null)return;let f=!1,p=!1,g=!1,h=!1,y=new Map,w=!1;if(lib_j([a],(v,{parent:x,replaceWith:T})=>{if(x?.kind!=="rule"&&x?.kind!=="at-rule"||v.kind!=="declaration"||!v.value)return;let N=lib_L(v.value);(le(N,(E,{replaceWith:P})=>{if(E.kind==="function"){if(E.value==="--value"){f=!0;let i=Nt(c,E,n);return i?(p=!0,i.ratio?w=!0:y.set(v,x),P(i.nodes),1):(f||=!1,T([]),2)}else if(E.value==="--modifier"){if(d===null)return T([]),1;g=!0;let i=Nt(d,E,n);return i?(h=!0,P(i.nodes),1):(g||=!1,T([]),2)}}})??0)===0&&(v.value=lib_W(N))}),f&&!p||g&&!h||w&&h||d&&!w&&!h)return null;if(w)for(let[v,x]of y){let T=x.nodes.indexOf(v);T!==-1&&x.nodes.splice(T,1)}return a.nodes}),n.utilities.suggest(r.slice(0,-2),()=>[{values:n.theme.keysInNamespaces(e).map(s=>s.replaceAll("_",".")),modifiers:n.theme.keysInNamespaces(o).map(s=>s.replaceAll("_","."))}])}:jr.test(r)?n=>{n.utilities.static(r,()=>structuredClone(t.nodes))}:null}function Nt(t,r,n){for(let e of r.nodes)if(t.kind==="named"&&e.kind==="word"&&e.value[0]==="-"&&e.value[1]==="-"){let o=e.value;if(o.endsWith("-*")){o=o.slice(0,-2);let s=n.theme.resolve(t.value,[o]);if(s)return{nodes:lib_L(s)}}else{let s=o.split("-*");if(s.length<=1)continue;let a=[s.shift()],c=n.theme.resolveWith(t.value,a,s);if(c){let[,d={}]=c;{let f=d[s.pop()];if(f)return{nodes:lib_L(f)}}}}}else if(t.kind==="named"&&e.kind==="word"){if(e.value!=="number"&&e.value!=="integer"&&e.value!=="ratio"&&e.value!=="percentage")continue;let o=e.value==="ratio"&&"fraction"in t?t.fraction:t.value;if(!o)continue;let s=pe(o,[e.value]);if(s===null)continue;if(s==="ratio"){let[a,c]=chunk_V2K3XTS4_u(o,"/");if(!chunk_V2K3XTS4_p(a)||!chunk_V2K3XTS4_p(c))continue}else{if(s==="number"&&!ue(o))continue;if(s==="percentage"&&!chunk_V2K3XTS4_p(o.slice(0,-1)))continue}return{nodes:lib_L(o),ratio:s==="ratio"}}else if(t.kind==="arbitrary"&&e.kind==="word"&&e.value[0]==="["&&e.value[e.value.length-1]==="]"){let o=e.value.slice(1,-1);if(o==="*")return{nodes:lib_L(t.value)};if("dataType"in t&&t.dataType&&t.dataType!==o)continue;if("dataType"in t&&t.dataType)return{nodes:lib_L(t.value)};if(pe(t.value,[o])!==null)return{nodes:lib_L(t.value)}}}var Ge={"--alpha":Dr,"--spacing":Fr,"--theme":Ur,theme:Kt};function Dr(t,r,...n){let[e,o]=chunk_V2K3XTS4_u(r,"/").map(s=>s.trim());if(!e||!o)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${e||"var(--my-color)"} / ${o||"50%"})\``);if(n.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${e||"var(--my-color)"} / ${o||"50%"})\``);return lib_G(e,o)}function Fr(t,r,...n){if(!r)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(n.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${n.length+1}.`);let e=t.theme.resolve(null,["--spacing"]);if(!e)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${e} * ${r})`}function Ur(t,r,...n){if(!r.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");return Kt(t,r,...n)}function Kt(t,r,...n){r=Ir(r);let e=t.resolveThemeValue(r);if(!e&&n.length>0)return n.join(", ");if(!e)throw new Error(`Could not resolve value for theme function: \`theme(${r})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return e}var Et=new RegExp(Object.keys(Ge).map(t=>`${t}\\(`).join("|"));function ae(t,r){let n=0;return lib_j(t,e=>{if(e.kind==="declaration"&&e.value&&Et.test(e.value)){n|=8,e.value=Rt(e.value,r);return}e.kind==="at-rule"&&(e.name==="@media"||e.name==="@custom-media"||e.name==="@container"||e.name==="@supports")&&Et.test(e.params)&&(n|=8,e.params=Rt(e.params,r))}),n}function Rt(t,r){let n=lib_L(t);return le(n,(e,{replaceWith:o})=>{if(e.kind==="function"&&e.value in Ge){let s=chunk_V2K3XTS4_u(lib_W(e.nodes).trim(),",").map(c=>c.trim()),a=Ge[e.value](r,...s);return o(lib_L(a))}}),lib_W(n)}function Ir(t){if(t[0]!=="'"&&t[0]!=='"')return t;let r="",n=t[0];for(let e=1;e<t.length-1;e++){let o=t[e],s=t[e+1];o==="\\"&&(s===n||s==="\\")?(r+=s,e++):r+=o}return r}function Re(t,r){let n=t.length,e=r.length,o=n<e?n:e;for(let s=0;s<o;s++){let a=t.charCodeAt(s),c=r.charCodeAt(s);if(a!==c){if(a>=48&&a<=57&&c>=48&&c<=57){let d=s,f=s+1,p=s,g=s+1;for(a=t.charCodeAt(f);a>=48&&a<=57;)a=t.charCodeAt(++f);for(c=r.charCodeAt(g);c>=48&&c<=57;)c=r.charCodeAt(++g);let h=t.slice(d,f),y=r.slice(p,g);return Number(h)-Number(y)||(h<y?-1:1)}return a-c}}return t.length-r.length}function Pt(t){let r=[];for(let n of t.utilities.keys("static"))r.push([n,{modifiers:[]}]);for(let n of t.utilities.keys("functional")){let e=t.utilities.getCompletions(n);for(let o of e)for(let s of o.values){let a=s===null?n:`${n}-${s}`;r.push([a,{modifiers:o.modifiers}]),o.supportsNegative&&r.push([`-${a}`,{modifiers:o.modifiers}])}}return r.sort((n,e)=>Re(n[0],e[0])),r}function Ot(t){let r=[];for(let[e,o]of t.variants.entries()){let c=function({value:d,modifier:f}={}){let p=e;d&&(p+=s?`-${d}`:d),f&&(p+=`/${f}`);let g=t.parseVariant(p);if(!g)return[];let h=lib_F(".__placeholder__",[]);if(se(h,g,t.variants)===null)return[];let y=[];return Se(h.nodes,(w,{path:v})=>{if(w.kind!=="rule"&&w.kind!=="at-rule"||w.nodes.length>0)return;v.sort((N,R)=>{let E=N.kind==="at-rule",P=R.kind==="at-rule";return E&&!P?-1:!E&&P?1:0});let x=v.flatMap(N=>N.kind==="rule"?N.selector==="&"?[]:[N.selector]:N.kind==="at-rule"?[`${N.name} ${N.params}`]:[]),T="";for(let N=x.length-1;N>=0;N--)T=T===""?x[N]:`${x[N]} { ${T} }`;y.push(T)}),y};var n=c;if(o.kind==="arbitrary")continue;let s=e!=="@",a=t.variants.getCompletions(e);switch(o.kind){case"static":{r.push({name:e,values:a,isArbitrary:!1,hasDash:s,selectors:c});break}case"functional":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}case"compound":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}}}return r}function jt(t,r){let{astNodes:n,nodeSorting:e}=lib_Z(Array.from(r),t),o=new Map(r.map(a=>[a,null])),s=0n;for(let a of n){let c=e.get(a)?.candidate;c&&o.set(c,o.get(c)??s++)}return r.map(a=>[a,o.get(a)??null])}var Ke=/^@?[a-zA-Z0-9_-]*$/;var He=class{compareFns=new Map;variants=new Map;completions=new Map;groupOrder=null;lastOrder=0;static(r,n,{compounds:e,order:o}={}){this.set(r,{kind:"static",applyFn:n,compoundsWith:0,compounds:e??2,order:o})}fromAst(r,n){let e=[];lib_j(n,o=>{o.kind==="rule"?e.push(o.selector):o.kind==="at-rule"&&o.name!=="@slot"&&e.push(`${o.name} ${o.params}`)}),this.static(r,o=>{let s=structuredClone(n);Ye(s,o.nodes),o.nodes=s},{compounds:lib_ie(e)})}functional(r,n,{compounds:e,order:o}={}){this.set(r,{kind:"functional",applyFn:n,compoundsWith:0,compounds:e??2,order:o})}compound(r,n,e,{compounds:o,order:s}={}){this.set(r,{kind:"compound",applyFn:e,compoundsWith:n,compounds:o??2,order:s})}group(r,n){this.groupOrder=this.nextOrder(),n&&this.compareFns.set(this.groupOrder,n),r(),this.groupOrder=null}has(r){return this.variants.has(r)}get(r){return this.variants.get(r)}kind(r){return this.variants.get(r)?.kind}compoundsWith(r,n){let e=this.variants.get(r),o=typeof n=="string"?this.variants.get(n):n.kind==="arbitrary"?{compounds:lib_ie([n.selector])}:this.variants.get(n.root);return!(!e||!o||e.kind!=="compound"||o.compounds===0||e.compoundsWith===0||!(e.compoundsWith&o.compounds))}suggest(r,n){this.completions.set(r,n)}getCompletions(r){return this.completions.get(r)?.()??[]}compare(r,n){if(r===n)return 0;if(r===null)return-1;if(n===null)return 1;if(r.kind==="arbitrary"&&n.kind==="arbitrary")return r.selector<n.selector?-1:1;if(r.kind==="arbitrary")return 1;if(n.kind==="arbitrary")return-1;let e=this.variants.get(r.root).order,o=this.variants.get(n.root).order,s=e-o;if(s!==0)return s;if(r.kind==="compound"&&n.kind==="compound"){let f=this.compare(r.variant,n.variant);return f!==0?f:r.modifier&&n.modifier?r.modifier.value<n.modifier.value?-1:1:r.modifier?1:n.modifier?-1:0}let a=this.compareFns.get(e);if(a!==void 0)return a(r,n);if(r.root!==n.root)return r.root<n.root?-1:1;let c=r.value,d=n.value;return c===null?-1:d===null||c.kind==="arbitrary"&&d.kind!=="arbitrary"?1:c.kind!=="arbitrary"&&d.kind==="arbitrary"||c.value<d.value?-1:1}keys(){return this.variants.keys()}entries(){return this.variants.entries()}set(r,{kind:n,applyFn:e,compounds:o,compoundsWith:s,order:a}){let c=this.variants.get(r);c?Object.assign(c,{kind:n,applyFn:e,compounds:o}):(a===void 0&&(this.lastOrder=this.nextOrder(),a=this.lastOrder),this.variants.set(r,{kind:n,applyFn:e,order:a,compoundsWith:s,compounds:o}))}nextOrder(){return this.groupOrder??this.lastOrder+1}};function lib_ie(t){let r=0;for(let n of t){if(n[0]==="@"){if(!n.startsWith("@media")&&!n.startsWith("@supports")&&!n.startsWith("@container"))return 0;r|=1;continue}if(n.includes("::"))return 0;r|=2}return r}function Dt(t){let r=new He;function n(f,p,{compounds:g}={}){g=g??lib_ie(p),r.static(f,h=>{h.nodes=p.map(y=>lib_M(y,h.nodes))},{compounds:g})}n("*",[":is(& > *)"],{compounds:0}),n("**",[":is(& *)"],{compounds:0});function e(f,p){return p.map(g=>{g=g.trim();let h=chunk_V2K3XTS4_u(g," ");return h[0]==="not"?h.slice(1).join(" "):f==="@container"?h[0][0]==="("?`not ${g}`:h[1]==="not"?`${h[0]} ${h.slice(2).join(" ")}`:`${h[0]} not ${h.slice(1).join(" ")}`:`not ${g}`})}let o=["@media","@supports","@container"];function s(f){for(let p of o){if(p!==f.name)continue;let g=chunk_V2K3XTS4_u(f.params,",");return g.length>1?null:(g=e(f.name,g),lib_O(f.name,g.join(", ")))}return null}function a(f){return f.includes("::")?null:`&:not(${chunk_V2K3XTS4_u(f,",").map(g=>(g.startsWith("&:is(")&&g.endsWith(")")&&(g=g.slice(5,-1)),g=g.replaceAll("&","*"),g)).join(", ")})`}r.compound("not",3,(f,p)=>{if(p.variant.kind==="arbitrary"&&p.variant.relative||p.modifier)return null;let g=!1;if(lib_j([f],(h,{path:y})=>{if(h.kind!=="rule"&&h.kind!=="at-rule")return 0;if(h.nodes.length>0)return 0;let w=[],v=[];for(let T of y)T.kind==="at-rule"?w.push(T):T.kind==="rule"&&v.push(T);if(w.length>1)return 2;if(v.length>1)return 2;let x=[];for(let T of v){let N=a(T.selector);if(!N)return g=!1,2;x.push(lib_F(N,[]))}for(let T of w){let N=s(T);if(!N)return g=!1,2;x.push(N)}return Object.assign(f,lib_F("&",x)),g=!0,1}),f.kind==="rule"&&f.selector==="&"&&f.nodes.length===1&&Object.assign(f,f.nodes[0]),!g)return null}),r.suggest("not",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("not",f))),r.compound("group",2,(f,p)=>{if(p.variant.kind==="arbitrary"&&p.variant.relative)return null;let g=p.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}group\\/${p.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}group)`,h=!1;if(lib_j([f],(y,{path:w})=>{if(y.kind!=="rule")return 0;for(let x of w.slice(0,-1))if(x.kind==="rule")return h=!1,2;let v=y.selector.replaceAll("&",g);chunk_V2K3XTS4_u(v,",").length>1&&(v=`:is(${v})`),y.selector=`&:is(${v} *)`,h=!0}),!h)return null}),r.suggest("group",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("group",f))),r.compound("peer",2,(f,p)=>{if(p.variant.kind==="arbitrary"&&p.variant.relative)return null;let g=p.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}peer\\/${p.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}peer)`,h=!1;if(lib_j([f],(y,{path:w})=>{if(y.kind!=="rule")return 0;for(let x of w.slice(0,-1))if(x.kind==="rule")return h=!1,2;let v=y.selector.replaceAll("&",g);chunk_V2K3XTS4_u(v,",").length>1&&(v=`:is(${v})`),y.selector=`&:is(${v} ~ *)`,h=!0}),!h)return null}),r.suggest("peer",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("peer",f))),n("first-letter",["&::first-letter"]),n("first-line",["&::first-line"]),n("marker",["& *::marker","&::marker"]),n("selection",["& *::selection","&::selection"]),n("file",["&::file-selector-button"]),n("placeholder",["&::placeholder"]),n("backdrop",["&::backdrop"]);{let f=function(){return lib_D([lib_O("@property","--tw-content",[lib_l("syntax",'"*"'),lib_l("initial-value",'""'),lib_l("inherits","false")])])};var c=f;r.static("before",p=>{p.nodes=[lib_F("&::before",[f(),lib_l("content","var(--tw-content)"),...p.nodes])]},{compounds:0}),r.static("after",p=>{p.nodes=[lib_F("&::after",[f(),lib_l("content","var(--tw-content)"),...p.nodes])]},{compounds:0})}n("first",["&:first-child"]),n("last",["&:last-child"]),n("only",["&:only-child"]),n("odd",["&:nth-child(odd)"]),n("even",["&:nth-child(even)"]),n("first-of-type",["&:first-of-type"]),n("last-of-type",["&:last-of-type"]),n("only-of-type",["&:only-of-type"]),n("visited",["&:visited"]),n("target",["&:target"]),n("open",["&:is([open], :popover-open, :open)"]),n("default",["&:default"]),n("checked",["&:checked"]),n("indeterminate",["&:indeterminate"]),n("placeholder-shown",["&:placeholder-shown"]),n("autofill",["&:autofill"]),n("optional",["&:optional"]),n("required",["&:required"]),n("valid",["&:valid"]),n("invalid",["&:invalid"]),n("in-range",["&:in-range"]),n("out-of-range",["&:out-of-range"]),n("read-only",["&:read-only"]),n("empty",["&:empty"]),n("focus-within",["&:focus-within"]),r.static("hover",f=>{f.nodes=[lib_F("&:hover",[lib_O("@media","(hover: hover)",f.nodes)])]}),n("focus",["&:focus"]),n("focus-visible",["&:focus-visible"]),n("active",["&:active"]),n("enabled",["&:enabled"]),n("disabled",["&:disabled"]),n("inert",["&:is([inert], [inert] *)"]),r.compound("in",2,(f,p)=>{if(p.modifier)return null;let g=!1;if(lib_j([f],(h,{path:y})=>{if(h.kind!=="rule")return 0;for(let w of y.slice(0,-1))if(w.kind==="rule")return g=!1,2;h.selector=`:where(${h.selector.replaceAll("&","*")}) &`,g=!0}),!g)return null}),r.suggest("in",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("in",f))),r.compound("has",2,(f,p)=>{if(p.modifier)return null;let g=!1;if(lib_j([f],(h,{path:y})=>{if(h.kind!=="rule")return 0;for(let w of y.slice(0,-1))if(w.kind==="rule")return g=!1,2;h.selector=`&:has(${h.selector.replaceAll("&","*")})`,g=!0}),!g)return null}),r.suggest("has",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("has",f))),r.functional("aria",(f,p)=>{if(!p.value||p.modifier)return null;p.value.kind==="arbitrary"?f.nodes=[lib_F(`&[aria-${_t(p.value.value)}]`,f.nodes)]:f.nodes=[lib_F(`&[aria-${p.value.value}="true"]`,f.nodes)]}),r.suggest("aria",()=>["busy","checked","disabled","expanded","hidden","pressed","readonly","required","selected"]),r.functional("data",(f,p)=>{if(!p.value||p.modifier)return null;f.nodes=[lib_F(`&[data-${_t(p.value.value)}]`,f.nodes)]}),r.functional("nth",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-child(${p.value.value})`,f.nodes)]}),r.functional("nth-last",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-last-child(${p.value.value})`,f.nodes)]}),r.functional("nth-of-type",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-of-type(${p.value.value})`,f.nodes)]}),r.functional("nth-last-of-type",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-last-of-type(${p.value.value})`,f.nodes)]}),r.functional("supports",(f,p)=>{if(!p.value||p.modifier)return null;let g=p.value.value;if(g===null)return null;if(/^[\w-]*\s*\(/.test(g)){let h=g.replace(/\b(and|or|not)\b/g," $1 ");f.nodes=[lib_O("@supports",h,f.nodes)];return}g.includes(":")||(g=`${g}: var(--tw)`),(g[0]!=="("||g[g.length-1]!==")")&&(g=`(${g})`),f.nodes=[lib_O("@supports",g,f.nodes)]},{compounds:1}),n("motion-safe",["@media (prefers-reduced-motion: no-preference)"]),n("motion-reduce",["@media (prefers-reduced-motion: reduce)"]),n("contrast-more",["@media (prefers-contrast: more)"]),n("contrast-less",["@media (prefers-contrast: less)"]);{let f=function(p,g,h,y){if(p===g)return 0;let w=y.get(p);if(w===null)return h==="asc"?-1:1;let v=y.get(g);return v===null?h==="asc"?1:-1:lib_re(w,v,h)};var d=f;{let p=t.namespace("--breakpoint"),g=new lib_z(h=>{switch(h.kind){case"static":return t.resolveValue(h.root,["--breakpoint"])??null;case"functional":{if(!h.value||h.modifier)return null;let y=null;return h.value.kind==="arbitrary"?y=h.value.value:h.value.kind==="named"&&(y=t.resolveValue(h.value.value,["--breakpoint"])),!y||y.includes("var(")?null:y}case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("max",(h,y)=>{if(y.modifier)return null;let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@media",`(width < ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"desc",g)),r.suggest("max",()=>Array.from(p.keys()).filter(h=>h!==null)),r.group(()=>{for(let[h,y]of t.namespace("--breakpoint"))h!==null&&r.static(h,w=>{w.nodes=[lib_O("@media",`(width >= ${y})`,w.nodes)]},{compounds:1});r.functional("min",(h,y)=>{if(y.modifier)return null;let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@media",`(width >= ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"asc",g)),r.suggest("min",()=>Array.from(p.keys()).filter(h=>h!==null))}{let p=t.namespace("--container"),g=new lib_z(h=>{switch(h.kind){case"functional":{if(h.value===null)return null;let y=null;return h.value.kind==="arbitrary"?y=h.value.value:h.value.kind==="named"&&(y=t.resolveValue(h.value.value,["--container"])),!y||y.includes("var(")?null:y}case"static":case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("@max",(h,y)=>{let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@container",y.modifier?`${y.modifier.value} (width < ${w})`:`(width < ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"desc",g)),r.suggest("@max",()=>Array.from(p.keys()).filter(h=>h!==null)),r.group(()=>{r.functional("@",(h,y)=>{let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@container",y.modifier?`${y.modifier.value} (width >= ${w})`:`(width >= ${w})`,h.nodes)]},{compounds:1}),r.functional("@min",(h,y)=>{let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@container",y.modifier?`${y.modifier.value} (width >= ${w})`:`(width >= ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"asc",g)),r.suggest("@min",()=>Array.from(p.keys()).filter(h=>h!==null)),r.suggest("@",()=>Array.from(p.keys()).filter(h=>h!==null))}}return n("portrait",["@media (orientation: portrait)"]),n("landscape",["@media (orientation: landscape)"]),n("ltr",['&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *)']),n("rtl",['&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *)']),n("dark",["@media (prefers-color-scheme: dark)"]),n("starting",["@starting-style"]),n("print",["@media print"]),n("forced-colors",["@media (forced-colors: active)"]),r}function _t(t){if(t.includes("=")){let[r,...n]=chunk_V2K3XTS4_u(t,"="),e=n.join("=").trim();if(e[0]==="'"||e[0]==='"')return t;if(e.length>1){let o=e[e.length-1];if(e[e.length-2]===" "&&(o==="i"||o==="I"||o==="s"||o==="S"))return`${r}="${e.slice(0,-2)}" ${o}`}return`${r}="${e}"`}return t}function Ye(t,r){lib_j(t,(n,{replaceWith:e})=>{if(n.kind==="at-rule"&&n.name==="@slot")e(r);else if(n.kind==="at-rule"&&(n.name==="@keyframes"||n.name==="@property"))return Object.assign(n,lib_D([lib_O(n.name,n.params,n.nodes)])),1})}function Ft(t){let r=Tt(t),n=Dt(t),e=new lib_z(c=>Ct(c,a)),o=new lib_z(c=>Array.from(At(c,a))),s=new lib_z(c=>Ut(c,a)),a={theme:t,utilities:r,variants:n,invalidCandidates:new Set,important:!1,candidatesToCss(c){let d=[];for(let f of c){let p=!1,{astNodes:g}=lib_Z([f],this,{onInvalidCandidate(){p=!0}});g=lib_te(g),g.length===0||p?d.push(null):d.push(lib_J(g))}return d},getClassOrder(c){return jt(this,c)},getClassList(){return Pt(this)},getVariants(){return Ot(this)},parseCandidate(c){return o.get(c)},parseVariant(c){return e.get(c)},compileAstNodes(c){return s.get(c)},getVariantOrder(){let c=Array.from(e.values());c.sort((g,h)=>this.variants.compare(g,h));let d=new Map,f,p=0;for(let g of c)g!==null&&(f!==void 0&&this.variants.compare(f,g)!==0&&p++,d.set(g,p),f=g);return d},resolveThemeValue(c){let d=c.lastIndexOf("/"),f=null;d!==-1&&(f=c.slice(d+1).trim(),c=c.slice(0,d).trim());let p=t.get([c])??void 0;return f&&p?lib_G(p,f):p}};return a}var Ze=["container-type","pointer-events","visibility","position","inset","inset-inline","inset-block","inset-inline-start","inset-inline-end","top","right","bottom","left","isolation","z-index","order","grid-column","grid-column-start","grid-column-end","grid-row","grid-row-start","grid-row-end","float","clear","--tw-container-component","margin","margin-inline","margin-block","margin-inline-start","margin-inline-end","margin-top","margin-right","margin-bottom","margin-left","box-sizing","display","field-sizing","aspect-ratio","height","max-height","min-height","width","max-width","min-width","flex","flex-shrink","flex-grow","flex-basis","table-layout","caption-side","border-collapse","border-spacing","transform-origin","translate","--tw-translate-x","--tw-translate-y","scale","--tw-scale-x","--tw-scale-y","--tw-scale-z","rotate","--tw-rotate-x","--tw-rotate-y","--tw-rotate-z","--tw-skew-x","--tw-skew-y","transform","animation","cursor","touch-action","--tw-pan-x","--tw-pan-y","--tw-pinch-zoom","resize","scroll-snap-type","--tw-scroll-snap-strictness","scroll-snap-align","scroll-snap-stop","scroll-margin","scroll-margin-inline","scroll-margin-block","scroll-margin-inline-start","scroll-margin-inline-end","scroll-margin-top","scroll-margin-right","scroll-margin-bottom","scroll-margin-left","scroll-padding","scroll-padding-inline","scroll-padding-block","scroll-padding-inline-start","scroll-padding-inline-end","scroll-padding-top","scroll-padding-right","scroll-padding-bottom","scroll-padding-left","list-style-position","list-style-type","list-style-image","appearance","columns","break-before","break-inside","break-after","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-template-columns","grid-template-rows","flex-direction","flex-wrap","place-content","place-items","align-content","align-items","justify-content","justify-items","gap","column-gap","row-gap","--tw-space-x-reverse","--tw-space-y-reverse","divide-x-width","divide-y-width","--tw-divide-y-reverse","divide-style","divide-color","place-self","align-self","justify-self","overflow","overflow-x","overflow-y","overscroll-behavior","overscroll-behavior-x","overscroll-behavior-y","scroll-behavior","border-radius","border-start-radius","border-end-radius","border-top-radius","border-right-radius","border-bottom-radius","border-left-radius","border-start-start-radius","border-start-end-radius","border-end-end-radius","border-end-start-radius","border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius","border-width","border-inline-width","border-block-width","border-inline-start-width","border-inline-end-width","border-top-width","border-right-width","border-bottom-width","border-left-width","border-style","border-inline-style","border-block-style","border-inline-start-style","border-inline-end-style","border-top-style","border-right-style","border-bottom-style","border-left-style","border-color","border-inline-color","border-block-color","border-inline-start-color","border-inline-end-color","border-top-color","border-right-color","border-bottom-color","border-left-color","background-color","background-image","--tw-gradient-position","--tw-gradient-stops","--tw-gradient-via-stops","--tw-gradient-from","--tw-gradient-from-position","--tw-gradient-via","--tw-gradient-via-position","--tw-gradient-to","--tw-gradient-to-position","box-decoration-break","background-size","background-attachment","background-clip","background-position","background-repeat","background-origin","fill","stroke","stroke-width","object-fit","object-position","padding","padding-inline","padding-block","padding-inline-start","padding-inline-end","padding-top","padding-right","padding-bottom","padding-left","text-align","text-indent","vertical-align","font-family","font-size","line-height","font-weight","letter-spacing","text-wrap","overflow-wrap","word-break","text-overflow","hyphens","white-space","color","text-transform","font-style","font-stretch","font-variant-numeric","text-decoration-line","text-decoration-color","text-decoration-style","text-decoration-thickness","text-underline-offset","-webkit-font-smoothing","placeholder-color","caret-color","accent-color","color-scheme","opacity","background-blend-mode","mix-blend-mode","box-shadow","--tw-shadow","--tw-shadow-color","--tw-ring-shadow","--tw-ring-color","--tw-inset-shadow","--tw-inset-shadow-color","--tw-inset-ring-shadow","--tw-inset-ring-color","--tw-ring-offset-width","--tw-ring-offset-color","outline","outline-width","outline-offset","outline-color","--tw-blur","--tw-brightness","--tw-contrast","--tw-drop-shadow","--tw-grayscale","--tw-hue-rotate","--tw-invert","--tw-saturate","--tw-sepia","filter","--tw-backdrop-blur","--tw-backdrop-brightness","--tw-backdrop-contrast","--tw-backdrop-grayscale","--tw-backdrop-hue-rotate","--tw-backdrop-invert","--tw-backdrop-opacity","--tw-backdrop-saturate","--tw-backdrop-sepia","backdrop-filter","transition-property","transition-behavior","transition-delay","transition-duration","transition-timing-function","will-change","contain","content","forced-color-adjust"];function lib_Z(t,r,{onInvalidCandidate:n}={}){let e=new Map,o=[],s=new Map;for(let c of t){if(r.invalidCandidates.has(c)){n?.(c);continue}let d=r.parseCandidate(c);if(d.length===0){n?.(c);continue}s.set(c,d)}let a=r.getVariantOrder();for(let[c,d]of s){let f=!1;for(let p of d){let g=r.compileAstNodes(p);if(g.length!==0){try{ae(g.map(({node:h})=>h),r)}catch{continue}f=!0;for(let{node:h,propertySort:y}of g){let w=0n;for(let v of p.variants)w|=1n<<BigInt(a.get(v));e.set(h,{properties:y,variants:w,candidate:c}),o.push(h)}}}f||n?.(c)}return o.sort((c,d)=>{let f=e.get(c),p=e.get(d);if(f.variants-p.variants!==0n)return Number(f.variants-p.variants);let g=0;for(;f.properties.length<g&&p.properties.length<g&&f.properties[g]===p.properties[g];)g+=1;return(f.properties[g]??1/0)-(p.properties[g]??1/0)||p.properties.length-f.properties.length||Re(f.candidate,p.candidate)}),{astNodes:o,nodeSorting:e}}function Ut(t,r){let n=zr(t,r);if(n.length===0)return[];let e=[],o=`.${chunk_WZA4AHDT_f(t.raw)}`;for(let s of n){let a=Mr(s);(t.important||r.important)&&zt(s);let c={kind:"rule",selector:o,nodes:s};for(let d of t.variants)if(se(c,d,r.variants)===null)return[];e.push({node:c,propertySort:a})}return e}function se(t,r,n,e=0){if(r.kind==="arbitrary"){if(r.relative&&e===0)return null;t.nodes=[lib_M(r.selector,t.nodes)];return}let{applyFn:o}=n.get(r.root);if(r.kind==="compound"){let a=lib_O("@slot");if(se(a,r.variant,n,e+1)===null||r.root==="not"&&a.nodes.length>1)return null;for(let d of a.nodes)if(d.kind!=="rule"&&d.kind!=="at-rule"||o(d,r)===null)return null;lib_j(a.nodes,d=>{if((d.kind==="rule"||d.kind==="at-rule")&&d.nodes.length<=0)return d.nodes=t.nodes,1}),t.nodes=a.nodes;return}if(o(t,r)===null)return null}function It(t){let r=t.options?.types??[];return r.length>1&&r.includes("any")}function zr(t,r){if(t.kind==="arbitrary"){let a=t.value;return t.modifier&&(a=lib_B(a,t.modifier,r.theme)),a===null?[]:[[lib_l(t.property,a)]]}let n=r.utilities.get(t.root)??[],e=[],o=n.filter(a=>!It(a));for(let a of o){if(a.kind!==t.kind)continue;let c=a.compileFn(t);if(c!==void 0){if(c===null)return e;e.push(c)}}if(e.length>0)return e;let s=n.filter(a=>It(a));for(let a of s){if(a.kind!==t.kind)continue;let c=a.compileFn(t);if(c!==void 0){if(c===null)return e;e.push(c)}}return e}function zt(t){for(let r of t)r.kind!=="at-root"&&(r.kind==="declaration"?r.important=!0:(r.kind==="rule"||r.kind==="at-rule")&&zt(r.nodes))}function Mr(t){let r=new Set,n=t.slice();for(;n.length>0;){let e=n.shift();if(e.kind==="declaration"){if(e.property==="--tw-sort"){let s=Ze.indexOf(e.value??"");if(s!==-1){r.add(s);break}}let o=Ze.indexOf(e.property);o!==-1&&r.add(o)}else if(e.kind==="rule"||e.kind==="at-rule")for(let o of e.nodes)n.push(o)}return Array.from(r).sort((e,o)=>e-o)}function ve(t,r){let n=0,e=lib_M("&",t),o=new Set,s=new lib_z(()=>new Set),a=new lib_z(()=>new Set);lib_j([e],(g,{parent:h})=>{if(g.kind==="at-rule"){if(g.name==="@keyframes")return lib_j(g.nodes,y=>{if(y.kind==="at-rule"&&y.name==="@apply")throw new Error("You cannot use `@apply` inside `@keyframes`.")}),1;if(g.name==="@utility"){let y=g.params.replace(/-\*$/,"");a.get(y).add(g),lib_j(g.nodes,w=>{if(!(w.kind!=="at-rule"||w.name!=="@apply")){o.add(g);for(let v of Mt(w,r))s.get(g).add(v)}});return}if(g.name==="@apply"){if(h===null)return;n|=1,o.add(h);for(let y of Mt(g,r))s.get(h).add(y)}}});let c=new Set,d=[],f=new Set;function p(g,h=[]){if(!c.has(g)){if(f.has(g)){let y=h[(h.indexOf(g)+1)%h.length];throw g.kind==="at-rule"&&g.name==="@utility"&&y.kind==="at-rule"&&y.name==="@utility"&&lib_j(g.nodes,w=>{if(w.kind!=="at-rule"||w.name!=="@apply")return;let v=w.params.split(/\s+/g);for(let x of v)for(let T of r.parseCandidate(x))switch(T.kind){case"arbitrary":break;case"static":case"functional":if(y.params.replace(/-\*$/,"")===T.root)throw new Error(`You cannot \`@apply\` the \`${x}\` utility here because it creates a circular dependency.`);break;default:}}),new Error(`Circular dependency detected:
|
|
18654
|
+
|
|
18655
|
+
${lib_J([g])}
|
|
18656
|
+
Relies on:
|
|
18657
|
+
|
|
18658
|
+
${lib_J([y])}`)}f.add(g);for(let y of s.get(g))for(let w of a.get(y))h.push(g),p(w,h),h.pop();c.add(g),f.delete(g),d.push(g)}}for(let g of o)p(g);return lib_j(d,(g,{replaceWith:h})=>{if(g.kind!=="at-rule"||g.name!=="@apply")return;let y=g.params.split(/\s+/g);{let w=lib_Z(y,r,{onInvalidCandidate:x=>{throw new Error(`Cannot apply unknown utility class: ${x}`)}}).astNodes,v=[];for(let x of w)if(x.kind==="rule")for(let T of x.nodes)v.push(T);else v.push(x);h(v)}}),n}function*Mt(t,r){for(let n of t.params.split(/\s+/g))for(let e of r.parseCandidate(n))switch(e.kind){case"arbitrary":break;case"static":case"functional":yield e.root;break;default:}}async function Qe(t,r,n,e=0){let o=0,s=[];return lib_j(t,(a,{replaceWith:c})=>{if(a.kind==="at-rule"&&(a.name==="@import"||a.name==="@reference")){let d=Lr(lib_L(a.params));if(d===null)return;a.name==="@reference"&&(d.media="reference"),o|=2;let{uri:f,layer:p,media:g,supports:h}=d;if(f.startsWith("data:")||f.startsWith("http://")||f.startsWith("https://"))return;let y=lib_ee({},[]);return s.push((async()=>{if(e>100)throw new Error(`Exceeded maximum recursion depth while resolving \`${f}\` in \`${r}\`)`);let w=await n(f,r),v=lib_X(w.content);await Qe(v,w.base,n,e+1),y.nodes=Br([lib_ee({base:w.base},v)],p,g,h)})()),c(y),1}}),s.length>0&&await Promise.all(s),o}function Lr(t){let r,n=null,e=null,o=null;for(let s=0;s<t.length;s++){let a=t[s];if(a.kind!=="separator"){if(a.kind==="word"&&!r){if(!a.value||a.value[0]!=='"'&&a.value[0]!=="'")return null;r=a.value.slice(1,-1);continue}if(a.kind==="function"&&a.value.toLowerCase()==="url"||!r)return null;if((a.kind==="word"||a.kind==="function")&&a.value.toLowerCase()==="layer"){if(n)return null;if(o)throw new Error("`layer(\u2026)` in an `@import` should come before any other functions or conditions");"nodes"in a?n=lib_W(a.nodes):n="";continue}if(a.kind==="function"&&a.value.toLowerCase()==="supports"){if(o)return null;o=lib_W(a.nodes);continue}e=lib_W(t.slice(s));break}}return r?{uri:r,layer:n,media:e,supports:o}:null}function Br(t,r,n,e){let o=t;return r!==null&&(o=[lib_O("@layer",r,o)]),n!==null&&(o=[lib_O("@media",n,o)]),e!==null&&(o=[lib_O("@supports",e[0]==="("?e:`(${e})`,o)]),o}function lib_ue(t,r=null){return Array.isArray(t)&&t.length===2&&typeof t[1]=="object"&&typeof t[1]!==null?r?t[1][r]??null:t[0]:Array.isArray(t)&&r===null?t.join(", "):typeof t=="string"&&r===null?t:null}function Bt(t,{theme:r},n){for(let e of n){let o=Pe([e]);o&&t.theme.clearNamespace(`--${o}`,4)}for(let[e,o]of Wr(r)){if(typeof o!="string"&&typeof o!="number")continue;if(typeof o=="string"&&(o=o.replace(/<alpha-value>/g,"1")),e[0]==="opacity"&&(typeof o=="number"||typeof o=="string")){let a=typeof o=="string"?parseFloat(o):o;a>=0&&a<=1&&(o=a*100+"%")}let s=Pe(e);s&&t.theme.add(`--${s}`,""+o,7)}if(Object.hasOwn(r,"fontFamily")){let e=5;{let o=lib_ue(r.fontFamily.sans);o&&t.theme.hasDefault("--font-sans")&&(t.theme.add("--default-font-family",o,e),t.theme.add("--default-font-feature-settings",lib_ue(r.fontFamily.sans,"fontFeatureSettings")??"normal",e),t.theme.add("--default-font-variation-settings",lib_ue(r.fontFamily.sans,"fontVariationSettings")??"normal",e))}{let o=lib_ue(r.fontFamily.mono);o&&t.theme.hasDefault("--font-mono")&&(t.theme.add("--default-mono-font-family",o,e),t.theme.add("--default-mono-font-feature-settings",lib_ue(r.fontFamily.mono,"fontFeatureSettings")??"normal",e),t.theme.add("--default-mono-font-variation-settings",lib_ue(r.fontFamily.mono,"fontVariationSettings")??"normal",e))}}return r}function Wr(t){let r=[];return Wt(t,[],(n,e)=>{if(Jr(n))return r.push([e,n]),1;if(Gr(n)){r.push([e,n[0]]);for(let o of Reflect.ownKeys(n[1]))r.push([[...e,`-${o}`],n[1][o]]);return 1}if(Array.isArray(n)&&n.every(o=>typeof o=="string"))return r.push([e,n.join(", ")]),1}),r}var qr=/^[a-zA-Z0-9-_%/\.]+$/;function Pe(t){if(t[0]==="container")return null;t=structuredClone(t),t[0]==="animation"&&(t[0]="animate"),t[0]==="aspectRatio"&&(t[0]="aspect"),t[0]==="borderRadius"&&(t[0]="radius"),t[0]==="boxShadow"&&(t[0]="shadow"),t[0]==="colors"&&(t[0]="color"),t[0]==="fontFamily"&&(t[0]="font"),t[0]==="fontSize"&&(t[0]="text"),t[0]==="letterSpacing"&&(t[0]="tracking"),t[0]==="lineHeight"&&(t[0]="leading"),t[0]==="maxWidth"&&(t[0]="container"),t[0]==="screens"&&(t[0]="breakpoint"),t[0]==="transitionTimingFunction"&&(t[0]="ease");for(let r of t)if(!qr.test(r))return null;return t.map((r,n,e)=>r==="1"&&n!==e.length-1?"":r).map(r=>r.replaceAll(".","_").replace(/([a-z])([A-Z])/g,(n,e,o)=>`${e}-${o.toLowerCase()}`)).filter((r,n)=>r!=="DEFAULT"||n!==t.length-1).join("-")}function Jr(t){return typeof t=="number"||typeof t=="string"}function Gr(t){if(!Array.isArray(t)||t.length!==2||typeof t[0]!="string"&&typeof t[0]!="number"||t[1]===void 0||t[1]===null||typeof t[1]!="object")return!1;for(let r of Reflect.ownKeys(t[1]))if(typeof r!="string"||typeof t[1][r]!="string"&&typeof t[1][r]!="number")return!1;return!0}function Wt(t,r=[],n){for(let e of Reflect.ownKeys(t)){let o=t[e];if(o==null)continue;let s=[...r,e],a=n(o,s)??0;if(a!==1){if(a===2)return 2;if(!(!Array.isArray(o)&&typeof o!="object")&&Wt(o,s,n)===2)return 2}}}function Oe(t){let r=[];for(let n of chunk_V2K3XTS4_u(t,".")){if(!n.includes("[")){r.push(n);continue}let e=0;for(;;){let o=n.indexOf("[",e),s=n.indexOf("]",o);if(o===-1||s===-1)break;o>e&&r.push(n.slice(e,o)),r.push(n.slice(o+1,s)),e=s+1}e<=n.length-1&&r.push(n.slice(e))}return r}function fe(t){if(Object.prototype.toString.call(t)!=="[object Object]")return!1;let r=Object.getPrototypeOf(t);return r===null||Object.getPrototypeOf(r)===null}function lib_ye(t,r,n,e=[]){for(let o of r)if(o!=null)for(let s of Reflect.ownKeys(o)){e.push(s);let a=n(t[s],o[s],e);a!==void 0?t[s]=a:!fe(t[s])||!fe(o[s])?t[s]=o[s]:t[s]=lib_ye({},[t[s],o[s]],n,e),e.pop()}return t}function je(t,r,n){return function(o,s){let a=o.lastIndexOf("/"),c=null;a!==-1&&(c=o.slice(a+1).trim(),o=o.slice(0,a).trim());let d=(()=>{let f=Oe(o),[p,g]=Hr(t.theme,f),h=n(qt(r()??{},f)??null);if(typeof h=="string"&&(h=h.replace("<alpha-value>","1")),typeof p!="object")return typeof g!="object"&&g&4?h??p:p;if(h!==null&&typeof h=="object"&&!Array.isArray(h)){let y=lib_ye({},[h],(w,v)=>v);if(p===null&&Object.hasOwn(h,"__CSS_VALUES__")){let w={};for(let v in h.__CSS_VALUES__)w[v]=h[v],delete y[v];p=w}for(let w in p)w!=="__CSS_VALUES__"&&(h?.__CSS_VALUES__?.[w]&4&&qt(y,w.split("-"))!==void 0||(y[chunk_WZA4AHDT_v(w)]=p[w]));return y}if(Array.isArray(p)&&Array.isArray(g)&&Array.isArray(h)){let y=p[0],w=p[1];g[0]&4&&(y=h[0]??y);for(let v of Object.keys(w))g[1][v]&4&&(w[v]=h[1][v]??w[v]);return[y,w]}return p??h})();return c&&typeof d=="string"&&(d=lib_G(d,c)),d??s}}function Hr(t,r){if(r.length===1&&r[0].startsWith("--"))return[t.get([r[0]]),t.getOptions(r[0])];let n=Pe(r),e=new Map,o=new lib_z(()=>new Map),s=t.namespace(`--${n}`);if(s.size===0)return[null,0];let a=new Map;for(let[p,g]of s){if(!p||!p.includes("--")){e.set(p,g),a.set(p,t.getOptions(p?`--${n}-${p}`:`--${n}`));continue}let h=p.indexOf("--"),y=p.slice(0,h),w=p.slice(h+2);w=w.replace(/-([a-z])/g,(v,x)=>x.toUpperCase()),o.get(y===""?null:y).set(w,[g,t.getOptions(`--${n}${p}`)])}let c=t.getOptions(`--${n}`);for(let[p,g]of o){let h=e.get(p);if(typeof h!="string")continue;let y={},w={};for(let[v,[x,T]]of g)y[v]=x,w[v]=T;e.set(p,[h,y]),a.set(p,[c,w])}let d={},f={};for(let[p,g]of e)Jt(d,[p??"DEFAULT"],g);for(let[p,g]of a)Jt(f,[p??"DEFAULT"],g);return r[r.length-1]==="DEFAULT"?[d?.DEFAULT??null,f.DEFAULT??0]:"DEFAULT"in d&&Object.keys(d).length===1?[d.DEFAULT,f.DEFAULT??0]:(d.__CSS_VALUES__=f,[d,f])}function qt(t,r){for(let n=0;n<r.length;++n){let e=r[n];if(t[e]===void 0){if(r[n+1]===void 0)return;r[n+1]=`${e}-${r[n+1]}`;continue}t=t[e]}return t}function Jt(t,r,n){for(let e of r.slice(0,-1))t[e]===void 0&&(t[e]={}),t=t[e];t[r[r.length-1]]=n}function Yr(t){return{kind:"combinator",value:t}}function Zr(t,r){return{kind:"function",value:t,nodes:r}}function we(t){return{kind:"selector",value:t}}function Qr(t){return{kind:"separator",value:t}}function Xr(t){return{kind:"value",value:t}}function _e(t,r,n=null){for(let e=0;e<t.length;e++){let o=t[e],s=r(o,{parent:n,replaceWith(a){Array.isArray(a)?a.length===0?t.splice(e,1):a.length===1?t[e]=a[0]:t.splice(e,1,...a):t[e]=a,e--}})??0;if(s===2)return 2;if(s!==1&&o.kind==="function"&&_e(o.nodes,r,o)===2)return 2}}function De(t){let r="";for(let n of t)switch(n.kind){case"combinator":case"selector":case"separator":case"value":{r+=n.value;break}case"function":r+=n.value+"("+De(n.nodes)+")"}return r}var Gt=92,en=93,Ht=41,tn=58,Yt=44,rn=34,nn=46,Zt=62,Qt=10,on=35,Xt=91,er=40,tr=43,ln=39,rr=32,nr=9,ir=126;function Xe(t){t=t.replaceAll(`\r
|
|
18659
|
+
`,`
|
|
18660
|
+
`);let r=[],n=[],e=null,o="",s;for(let a=0;a<t.length;a++){let c=t.charCodeAt(a);switch(c){case Yt:case Zt:case Qt:case rr:case tr:case nr:case ir:{if(o.length>0){let h=we(o);e?e.nodes.push(h):r.push(h),o=""}let d=a,f=a+1;for(;f<t.length&&(s=t.charCodeAt(f),!(s!==Yt&&s!==Zt&&s!==Qt&&s!==rr&&s!==tr&&s!==nr&&s!==ir));f++);a=f-1;let p=t.slice(d,f),g=p.trim()===","?Qr(p):Yr(p);e?e.nodes.push(g):r.push(g);break}case er:{let d=Zr(o,[]);if(o="",d.value!==":not"&&d.value!==":where"&&d.value!==":has"&&d.value!==":is"){let f=a+1,p=0;for(let h=a+1;h<t.length;h++){if(s=t.charCodeAt(h),s===er){p++;continue}if(s===Ht){if(p===0){a=h;break}p--}}let g=a;d.nodes.push(Xr(t.slice(f,g))),o="",a=g,r.push(d);break}e?e.nodes.push(d):r.push(d),n.push(d),e=d;break}case Ht:{let d=n.pop();if(o.length>0){let f=we(o);d.nodes.push(f),o=""}n.length>0?e=n[n.length-1]:e=null;break}case nn:case tn:case on:{if(o.length>0){let d=we(o);e?e.nodes.push(d):r.push(d)}o=String.fromCharCode(c);break}case Xt:{if(o.length>0){let p=we(o);e?e.nodes.push(p):r.push(p)}o="";let d=a,f=0;for(let p=a+1;p<t.length;p++){if(s=t.charCodeAt(p),s===Xt){f++;continue}if(s===en){if(f===0){a=p;break}f--}}o+=t.slice(d,a+1);break}case ln:case rn:{let d=a;for(let f=a+1;f<t.length;f++)if(s=t.charCodeAt(f),s===Gt)f+=1;else if(s===c){a=f;break}o+=t.slice(d,a+1);break}case Gt:{let d=t.charCodeAt(a+1);o+=String.fromCharCode(c)+String.fromCharCode(d),a+=1;break}default:o+=String.fromCharCode(c)}}return o.length>0&&r.push(we(o)),r}var or=/^[a-z@][a-zA-Z0-9/%._-]*$/;function et({designSystem:t,ast:r,resolvedConfig:n,featuresRef:e,referenceMode:o}){let s={addBase(a){if(o)return;let c=lib_H(a);e.current|=ae(c,t),r.push(lib_O("@layer","base",c))},addVariant(a,c){if(!Ke.test(a))throw new Error(`\`addVariant('${a}')\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);typeof c=="string"||Array.isArray(c)?t.variants.static(a,d=>{d.nodes=lr(c,d.nodes)},{compounds:lib_ie(typeof c=="string"?[c]:c)}):typeof c=="object"&&t.variants.fromAst(a,lib_H(c))},matchVariant(a,c,d){function f(g,h,y){let w=c(g,{modifier:h?.value??null});return lr(w,y)}let p=Object.keys(d?.values??{});t.variants.group(()=>{t.variants.functional(a,(g,h)=>{if(!h.value){if(d?.values&&"DEFAULT"in d.values){g.nodes=f(d.values.DEFAULT,h.modifier,g.nodes);return}return null}if(h.value.kind==="arbitrary")g.nodes=f(h.value.value,h.modifier,g.nodes);else if(h.value.kind==="named"&&d?.values){let y=d.values[h.value.value];if(typeof y!="string")return;g.nodes=f(y,h.modifier,g.nodes)}})},(g,h)=>{if(g.kind!=="functional"||h.kind!=="functional")return 0;let y=g.value?g.value.value:"DEFAULT",w=h.value?h.value.value:"DEFAULT",v=d?.values?.[y]??y,x=d?.values?.[w]??w;if(d&&typeof d.sort=="function")return d.sort({value:v,modifier:g.modifier?.value??null},{value:x,modifier:h.modifier?.value??null});let T=p.indexOf(y),N=p.indexOf(w);return T=T===-1?p.length:T,N=N===-1?p.length:N,T!==N?T-N:v<x?-1:1})},addUtilities(a){a=Array.isArray(a)?a:[a];let c=a.flatMap(f=>Object.entries(f));c=c.flatMap(([f,p])=>chunk_V2K3XTS4_u(f,",").map(g=>[g.trim(),p]));let d=new lib_z(()=>[]);for(let[f,p]of c){if(f.startsWith("@keyframes ")){o||r.push(lib_M(f,lib_H(p)));continue}let g=Xe(f),h=!1;if(_e(g,y=>{if(y.kind==="selector"&&y.value[0]==="."&&or.test(y.value.slice(1))){let w=y.value;y.value="&";let v=De(g),x=w.slice(1),T=v==="&"?lib_H(p):[lib_M(v,lib_H(p))];d.get(x).push(...T),h=!0,y.value=w;return}if(y.kind==="function"&&y.value===":not")return 1}),!h)throw new Error(`\`addUtilities({ '${f}' : \u2026 })\` defines an invalid utility selector. Utilities must be a single class name and start with a lowercase letter, eg. \`.scrollbar-none\`.`)}for(let[f,p]of d)t.theme.prefix&&lib_j(p,g=>{if(g.kind==="rule"){let h=Xe(g.selector);_e(h,y=>{y.kind==="selector"&&y.value[0]==="."&&(y.value=`.${t.theme.prefix}\\:${y.value.slice(1)}`)}),g.selector=De(h)}}),t.utilities.static(f,()=>{let g=structuredClone(p);return e.current|=ve(g,t),g})},matchUtilities(a,c){let d=c?.type?Array.isArray(c?.type)?c.type:[c.type]:["any"];for(let[p,g]of Object.entries(a)){let h=function({negative:y}){return w=>{if(w.value?.kind==="arbitrary"&&d.length>0&&!d.includes("any")&&(w.value.dataType&&!d.includes(w.value.dataType)||!w.value.dataType&&!pe(w.value.value,d)))return;let v=d.includes("color"),x=null,T=!1;{let E=c?.values??{};v&&(E=Object.assign({inherit:"inherit",transparent:"transparent",current:"currentColor"},E)),w.value?w.value.kind==="arbitrary"?x=w.value.value:w.value.fraction&&E[w.value.fraction]?(x=E[w.value.fraction],T=!0):E[w.value.value]?x=E[w.value.value]:E.__BARE_VALUE__&&(x=E.__BARE_VALUE__(w.value)??null,T=(w.value.fraction!==null&&x?.includes("/"))??!1):x=E.DEFAULT??null}if(x===null)return;let N;{let E=c?.modifiers??null;w.modifier?E==="any"||w.modifier.kind==="arbitrary"?N=w.modifier.value:E?.[w.modifier.value]?N=E[w.modifier.value]:v&&!Number.isNaN(Number(w.modifier.value))?N=`${w.modifier.value}%`:N=null:N=null}if(w.modifier&&N===null&&!T)return w.value?.kind==="arbitrary"?null:void 0;v&&N!==null&&(x=lib_G(x,N)),y&&(x=`calc(${x} * -1)`);let R=lib_H(g(x,{modifier:N}));return e.current|=ve(R,t),R}};var f=h;if(!or.test(p))throw new Error(`\`matchUtilities({ '${p}' : \u2026 })\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter, eg. \`scrollbar\`.`);c?.supportsNegativeValues&&t.utilities.functional(`-${p}`,h({negative:!0}),{types:d}),t.utilities.functional(p,h({negative:!1}),{types:d}),t.utilities.suggest(p,()=>{let y=c?.values??{},w=new Set(Object.keys(y));w.delete("__BARE_VALUE__"),w.has("DEFAULT")&&(w.delete("DEFAULT"),w.add(null));let v=c?.modifiers??{},x=v==="any"?[]:Object.keys(v);return[{supportsNegative:c?.supportsNegativeValues??!1,values:Array.from(w),modifiers:x}]})}},addComponents(a,c){this.addUtilities(a,c)},matchComponents(a,c){this.matchUtilities(a,c)},theme:je(t,()=>n.theme??{},a=>a),prefix(a){return a},config(a,c){let d=n;if(!a)return d;let f=Oe(a);for(let p=0;p<f.length;++p){let g=f[p];if(d[g]===void 0)return c;d=d[g]}return d??c}};return s.addComponents=s.addComponents.bind(s),s.matchComponents=s.matchComponents.bind(s),s}function lib_H(t){let r=[];t=Array.isArray(t)?t:[t];let n=t.flatMap(e=>Object.entries(e));for(let[e,o]of n)if(typeof o!="object"){if(!e.startsWith("--")){if(o==="@slot"){r.push(lib_M(e,[lib_O("@slot")]));continue}e=e.replace(/([A-Z])/g,"-$1").toLowerCase()}r.push(lib_l(e,String(o)))}else if(Array.isArray(o))for(let s of o)typeof s=="string"?r.push(lib_l(e,s)):r.push(lib_M(e,lib_H(s)));else o!==null&&r.push(lib_M(e,lib_H(o)));return r}function lr(t,r){return(typeof t=="string"?[t]:t).flatMap(e=>{if(e.trim().endsWith("}")){let o=e.replace("}","{@slot}}"),s=lib_X(o);return Ye(s,r),s}else return lib_M(e,r)})}function ar(t,r,n){for(let e of sn(r))t.theme.addKeyframes(e)}function sn(t){let r=[];if("keyframes"in t.theme)for(let[n,e]of Object.entries(t.theme.keyframes))r.push(lib_O("@keyframes",n,lib_H(e)));return r}function sr(t){return{theme:{...ye,colors:({theme:r})=>r("color",{}),extend:{fontSize:({theme:r})=>({...r("text",{})}),boxShadow:({theme:r})=>({...r("shadow",{})}),animation:({theme:r})=>({...r("animate",{})}),aspectRatio:({theme:r})=>({...r("aspect",{})}),borderRadius:({theme:r})=>({...r("radius",{})}),screens:({theme:r})=>({...r("breakpoint",{})}),letterSpacing:({theme:r})=>({...r("tracking",{})}),lineHeight:({theme:r})=>({...r("leading",{})}),transitionDuration:{DEFAULT:t.get(["--default-transition-duration"])??null},transitionTimingFunction:{DEFAULT:t.get(["--default-transition-timing-function"])??null},maxWidth:({theme:r})=>({...r("container",{})})}}}}var un={blocklist:[],future:{},prefix:"",important:!1,darkMode:null,theme:{},plugins:[],content:{files:[]}};function rt(t,r){let n={design:t,configs:[],plugins:[],content:{files:[]},theme:{},extend:{},result:structuredClone(un)};for(let o of r)tt(n,o);for(let o of n.configs)"darkMode"in o&&o.darkMode!==void 0&&(n.result.darkMode=o.darkMode??null),"prefix"in o&&o.prefix!==void 0&&(n.result.prefix=o.prefix??""),"blocklist"in o&&o.blocklist!==void 0&&(n.result.blocklist=o.blocklist??[]),"important"in o&&o.important!==void 0&&(n.result.important=o.important??!1);let e=cn(n);return{resolvedConfig:{...n.result,content:n.content,theme:n.theme,plugins:n.plugins},replacedThemeKeys:e}}function fn(t,r){if(Array.isArray(t)&&fe(t[0]))return t.concat(r);if(Array.isArray(r)&&fe(r[0])&&fe(t))return[t,...r];if(Array.isArray(r))return r}function tt(t,{config:r,base:n,path:e,reference:o}){let s=[];for(let d of r.plugins??[])"__isOptionsFunction"in d?s.push({...d(),reference:o}):"handler"in d?s.push({...d,reference:o}):s.push({handler:d,reference:o});if(Array.isArray(r.presets)&&r.presets.length===0)throw new Error("Error in the config file/plugin/preset. An empty preset (`preset: []`) is not currently supported.");for(let d of r.presets??[])tt(t,{path:e,base:n,config:d,reference:o});for(let d of s)t.plugins.push(d),d.config&&tt(t,{path:e,base:n,config:d.config,reference:!!d.reference});let a=r.content??[],c=Array.isArray(a)?a:a.files;for(let d of c)t.content.files.push(typeof d=="object"?d:{base:n,pattern:d});t.configs.push(r)}function cn(t){let r=new Set,n=je(t.design,()=>t.theme,o),e=Object.assign(n,{theme:n,colors:l});function o(s){return typeof s=="function"?s(e)??null:s??null}for(let s of t.configs){let a=s.theme??{},c=a.extend??{};for(let d in a)d!=="extend"&&r.add(d);Object.assign(t.theme,a);for(let d in c)t.extend[d]??=[],t.extend[d].push(c[d])}delete t.theme.extend;for(let s in t.extend){let a=[t.theme[s],...t.extend[s]];t.theme[s]=()=>{let c=a.map(o);return lib_ye({},c,fn)}}for(let s in t.theme)t.theme[s]=o(t.theme[s]);if(t.theme.screens&&typeof t.theme.screens=="object")for(let s of Object.keys(t.theme.screens)){let a=t.theme.screens[s];a&&typeof a=="object"&&("raw"in a||"max"in a||"min"in a&&(t.theme.screens[s]=a.min))}return r}function ur(t,r){let n=t.theme.container||{};if(typeof n!="object"||n===null)return;let e=dn(n,r);e.length!==0&&r.utilities.static("container",()=>structuredClone(e))}function dn({center:t,padding:r,screens:n},e){let o=[],s=null;if(t&&o.push(lib_l("margin-inline","auto")),(typeof r=="string"||typeof r=="object"&&r!==null&&"DEFAULT"in r)&&o.push(lib_l("padding-inline",typeof r=="string"?r:r.DEFAULT)),typeof n=="object"&&n!==null){s=new Map;let a=Array.from(e.theme.namespace("--breakpoint").entries());if(a.sort((c,d)=>lib_re(c[1],d[1],"asc")),a.length>0){let[c]=a[0];o.push(lib_O("@media",`(width >= --theme(--breakpoint-${c}))`,[lib_l("max-width","none")]))}for(let[c,d]of Object.entries(n)){if(typeof d=="object")if("min"in d)d=d.min;else continue;s.set(c,lib_O("@media",`(width >= ${d})`,[lib_l("max-width",d)]))}}if(typeof r=="object"&&r!==null){let a=Object.entries(r).filter(([c])=>c!=="DEFAULT").map(([c,d])=>[c,e.theme.resolveValue(c,["--breakpoint"]),d]).filter(Boolean);a.sort((c,d)=>lib_re(c[1],d[1],"asc"));for(let[c,,d]of a)if(s&&s.has(c))s.get(c).nodes.push(lib_l("padding-inline",d));else{if(s)continue;o.push(lib_O("@media",`(width >= theme(--breakpoint-${c}))`,[lib_l("padding-inline",d)]))}}if(s)for(let[,a]of s)o.push(a);return o}function fr({addVariant:t,config:r}){let n=r("darkMode",null),[e,o=".dark"]=Array.isArray(n)?n:[n];if(e==="variant"){let s;if(Array.isArray(o)||typeof o=="function"?s=o:typeof o=="string"&&(s=[o]),Array.isArray(s))for(let a of s)a===".dark"?(e=!1,console.warn('When using `variant` for `darkMode`, you must provide a selector.\nExample: `darkMode: ["variant", ".your-selector &"]`')):a.includes("&")||(e=!1,console.warn('When using `variant` for `darkMode`, your selector must contain `&`.\nExample `darkMode: ["variant", ".your-selector &"]`'));o=s}e===null||(e==="selector"?t("dark",`&:where(${o}, ${o} *)`):e==="media"?t("dark","@media (prefers-color-scheme: dark)"):e==="variant"?t("dark",o):e==="class"&&t("dark",`&:is(${o} *)`))}function cr(t){for(let[r,n]of[["t","top"],["tr","top right"],["r","right"],["br","bottom right"],["b","bottom"],["bl","bottom left"],["l","left"],["tl","top left"]])t.utilities.static(`bg-gradient-to-${r}`,()=>[lib_l("--tw-gradient-position",`to ${n} in oklab`),lib_l("background-image","linear-gradient(var(--tw-gradient-stops))")]);t.utilities.functional("max-w-screen",r=>{if(!r.value||r.value.kind==="arbitrary")return;let n=t.theme.resolve(r.value.value,["--breakpoint"]);if(n)return[lib_l("max-width",n)]}),t.utilities.static("overflow-ellipsis",()=>[lib_l("text-overflow","ellipsis")]),t.utilities.static("decoration-slice",()=>[lib_l("-webkit-box-decoration-break","slice"),lib_l("box-decoration-break","slice")]),t.utilities.static("decoration-clone",()=>[lib_l("-webkit-box-decoration-break","clone"),lib_l("box-decoration-break","clone")]),t.utilities.functional("flex-shrink",r=>{if(!r.modifier){if(!r.value)return[lib_l("flex-shrink","1")];if(r.value.kind==="arbitrary")return[lib_l("flex-shrink",r.value.value)];if(chunk_V2K3XTS4_p(r.value.value))return[lib_l("flex-shrink",r.value.value)]}}),t.utilities.functional("flex-grow",r=>{if(!r.modifier){if(!r.value)return[lib_l("flex-grow","1")];if(r.value.kind==="arbitrary")return[lib_l("flex-grow",r.value.value)];if(chunk_V2K3XTS4_p(r.value.value))return[lib_l("flex-grow",r.value.value)]}})}function dr(t,r){let n=t.theme.screens||{},e=r.variants.get("min")?.order??0,o=[];for(let[a,c]of Object.entries(n)){let h=function(y){r.variants.static(a,w=>{w.nodes=[lib_O("@media",g,w.nodes)]},{order:y})};var s=h;let d=r.variants.get(a),f=r.theme.resolveValue(a,["--breakpoint"]);if(d&&f&&!r.theme.hasDefault(`--breakpoint-${a}`))continue;let p=!0;typeof c=="string"&&(p=!1);let g=pn(c);p?o.push(h):h(e)}if(o.length!==0){for(let[,a]of r.variants.variants)a.order>e&&(a.order+=o.length);r.variants.compareFns=new Map(Array.from(r.variants.compareFns).map(([a,c])=>(a>e&&(a+=o.length),[a,c])));for(let[a,c]of o.entries())c(e+a+1)}}function pn(t){return(Array.isArray(t)?t:[t]).map(n=>typeof n=="string"?{min:n}:n&&typeof n=="object"?n:null).map(n=>{if(n===null)return null;if("raw"in n)return n.raw;let e="";return n.max!==void 0&&(e+=`${n.max} >= `),e+="width",n.min!==void 0&&(e+=` >= ${n.min}`),`(${e})`}).filter(Boolean).join(", ")}function pr(t,r){let n=t.theme.aria||{},e=t.theme.supports||{},o=t.theme.data||{};if(Object.keys(n).length>0){let s=r.variants.get("aria"),a=s?.applyFn,c=s?.compounds;r.variants.functional("aria",(d,f)=>{let p=f.value;return p&&p.kind==="named"&&p.value in n?a?.(d,{...f,value:{kind:"arbitrary",value:n[p.value]}}):a?.(d,f)},{compounds:c})}if(Object.keys(e).length>0){let s=r.variants.get("supports"),a=s?.applyFn,c=s?.compounds;r.variants.functional("supports",(d,f)=>{let p=f.value;return p&&p.kind==="named"&&p.value in e?a?.(d,{...f,value:{kind:"arbitrary",value:e[p.value]}}):a?.(d,f)},{compounds:c})}if(Object.keys(o).length>0){let s=r.variants.get("data"),a=s?.applyFn,c=s?.compounds;r.variants.functional("data",(d,f)=>{let p=f.value;return p&&p.kind==="named"&&p.value in o?a?.(d,{...f,value:{kind:"arbitrary",value:o[p.value]}}):a?.(d,f)},{compounds:c})}}var gn=/^[a-z]+$/;async function mr({designSystem:t,base:r,ast:n,loadModule:e,globs:o}){let s=0,a=[],c=[];lib_j(n,(g,{parent:h,replaceWith:y,context:w})=>{if(g.kind==="at-rule"){if(g.name==="@plugin"){if(h!==null)throw new Error("`@plugin` cannot be nested.");let v=g.params.slice(1,-1);if(v.length===0)throw new Error("`@plugin` must have a path.");let x={};for(let T of g.nodes??[]){if(T.kind!=="declaration")throw new Error(`Unexpected \`@plugin\` option:
|
|
18661
|
+
|
|
18662
|
+
${lib_J([T])}
|
|
18663
|
+
|
|
18664
|
+
\`@plugin\` options must be a flat list of declarations.`);if(T.value===void 0)continue;let N=T.value,R=chunk_V2K3XTS4_u(N,",").map(E=>{if(E=E.trim(),E==="null")return null;if(E==="true")return!0;if(E==="false")return!1;if(Number.isNaN(Number(E))){if(E[0]==='"'&&E[E.length-1]==='"'||E[0]==="'"&&E[E.length-1]==="'")return E.slice(1,-1);if(E[0]==="{"&&E[E.length-1]==="}")throw new Error(`Unexpected \`@plugin\` option: Value of declaration \`${lib_J([T]).trim()}\` is not supported.
|
|
18665
|
+
|
|
18666
|
+
Using an object as a plugin option is currently only supported in JavaScript configuration files.`)}else return Number(E);return E});x[T.property]=R.length===1?R[0]:R}a.push([{id:v,base:w.base,reference:!!w.reference},Object.keys(x).length>0?x:null]),y([]),s|=4;return}if(g.name==="@config"){if(g.nodes.length>0)throw new Error("`@config` cannot have a body.");if(h!==null)throw new Error("`@config` cannot be nested.");c.push({id:g.params.slice(1,-1),base:w.base,reference:!!w.reference}),y([]),s|=4;return}}}),cr(t);let d=t.resolveThemeValue;if(t.resolveThemeValue=function(h){return h.startsWith("--")?d(h):(s|=gr({designSystem:t,base:r,ast:n,globs:o,configs:[],pluginDetails:[]}),t.resolveThemeValue(h))},!a.length&&!c.length)return 0;let[f,p]=await Promise.all([Promise.all(c.map(async({id:g,base:h,reference:y})=>{let w=await e(g,h,"config");return{path:g,base:w.base,config:w.module,reference:y}})),Promise.all(a.map(async([{id:g,base:h,reference:y},w])=>{let v=await e(g,h,"plugin");return{path:g,base:v.base,plugin:v.module,options:w,reference:y}}))]);return s|=gr({designSystem:t,base:r,ast:n,globs:o,configs:f,pluginDetails:p}),s}function gr({designSystem:t,base:r,ast:n,globs:e,configs:o,pluginDetails:s}){let a=0,d=[...s.map(v=>{if(!v.options)return{config:{plugins:[v.plugin]},base:v.base,reference:v.reference};if("__isOptionsFunction"in v.plugin)return{config:{plugins:[v.plugin(v.options)]},base:v.base,reference:v.reference};throw new Error(`The plugin "${v.path}" does not accept options`)}),...o],{resolvedConfig:f}=rt(t,[{config:sr(t.theme),base:r,reference:!0},...d,{config:{plugins:[fr]},base:r,reference:!0}]),{resolvedConfig:p,replacedThemeKeys:g}=rt(t,d);t.resolveThemeValue=function(x,T){let N=y.theme(x,T);if(Array.isArray(N)&&N.length===2)return N[0];if(Array.isArray(N))return N.join(", ");if(typeof N=="string")return N};let h={designSystem:t,ast:n,resolvedConfig:f,featuresRef:{set current(v){a|=v}}},y=et({...h,referenceMode:!1}),w;for(let{handler:v,reference:x}of f.plugins)x?(w||=et({...h,referenceMode:!0}),v(w)):v(y);if(Bt(t,p,g),ar(t,p,g),pr(p,t),dr(p,t),ur(p,t),!t.theme.prefix&&f.prefix){if(f.prefix.endsWith("-")&&(f.prefix=f.prefix.slice(0,-1),console.warn(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only and is written as a variant before all utilities. We have fixed up the prefix for you. Remove the trailing \`-\` to silence this warning.`)),!gn.test(f.prefix))throw new Error(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);t.theme.prefix=f.prefix}if(!t.important&&f.important===!0&&(t.important=!0),typeof f.important=="string"){let v=f.important;lib_j(n,(x,{replaceWith:T,parent:N})=>{if(x.kind==="at-rule"&&!(x.name!=="@tailwind"||x.params!=="utilities"))return N?.kind==="rule"&&N.selector===v?2:(T(lib_F(v,[x])),2)})}for(let v of f.blocklist)t.invalidCandidates.add(v);for(let v of f.content.files){if("raw"in v)throw new Error(`Error in the config file/plugin/preset. The \`content\` key contains a \`raw\` entry:
|
|
18667
|
+
|
|
18668
|
+
${JSON.stringify(v,null,2)}
|
|
18669
|
+
|
|
18670
|
+
This feature is not currently supported.`);e.push(v)}return a}var mn=/^[a-z]+$/;function hn(){throw new Error("No `loadModule` function provided to `compile`")}function vn(){throw new Error("No `loadStylesheet` function provided to `compile`")}function yn(t){let r=0,n=null;for(let e of chunk_V2K3XTS4_u(t," "))e==="reference"?r|=2:e==="inline"?r|=1:e==="default"?r|=4:e.startsWith("prefix(")&&e.endsWith(")")&&(n=e.slice(7,-1));return[r,n]}var me=(c=>(c[c.None=0]="None",c[c.AtApply=1]="AtApply",c[c.AtImport=2]="AtImport",c[c.JsPluginCompat=4]="JsPluginCompat",c[c.ThemeFunction=8]="ThemeFunction",c[c.Utilities=16]="Utilities",c[c.Variants=32]="Variants",c))(me||{});async function hr(t,{base:r="",loadModule:n=hn,loadStylesheet:e=vn}={}){let o=0;t=[lib_ee({base:r},t)],o|=await Qe(t,r,e);let s=null,a=new chunk_WZA4AHDT_g,c=[],d=[],f=null,p=null,g=[],h=[],y=null;lib_j(t,(v,{parent:x,replaceWith:T,context:N})=>{if(v.kind==="at-rule"){if(v.name==="@tailwind"&&(v.params==="utilities"||v.params.startsWith("utilities"))){if(p!==null){T([]);return}let R=chunk_V2K3XTS4_u(v.params," ");for(let E of R)if(E.startsWith("source(")){let P=E.slice(7,-1);if(P==="none"){y=P;continue}if(P[0]==='"'&&P[P.length-1]!=='"'||P[0]==="'"&&P[P.length-1]!=="'"||P[0]!=="'"&&P[0]!=='"')throw new Error("`source(\u2026)` paths must be quoted.");y={base:N.sourceBase??N.base,pattern:P.slice(1,-1)}}p=v,o|=16}if(v.name==="@utility"){if(x!==null)throw new Error("`@utility` cannot be nested.");if(v.nodes.length===0)throw new Error(`\`@utility ${v.params}\` is empty. Utilities should include at least one property.`);let R=St(v);if(R===null)throw new Error(`\`@utility ${v.params}\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter.`);d.push(R)}if(v.name==="@source"){if(v.nodes.length>0)throw new Error("`@source` cannot have a body.");if(x!==null)throw new Error("`@source` cannot be nested.");let R=v.params;if(R[0]==='"'&&R[R.length-1]!=='"'||R[0]==="'"&&R[R.length-1]!=="'"||R[0]!=="'"&&R[0]!=='"')throw new Error("`@source` paths must be quoted.");h.push({base:N.base,pattern:R.slice(1,-1)}),T([]);return}if(v.name==="@variant"&&(x===null?v.nodes.length===0?v.name="@custom-variant":(lib_j(v.nodes,R=>{if(R.kind==="at-rule"&&R.name==="@slot")return v.name="@custom-variant",2}),v.name==="@variant"&&g.push(v)):g.push(v)),v.name==="@custom-variant"){if(x!==null)throw new Error("`@custom-variant` cannot be nested.");T([]);let[R,E]=chunk_V2K3XTS4_u(v.params," ");if(!Ke.test(R))throw new Error(`\`@custom-variant ${R}\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);if(v.nodes.length>0&&E)throw new Error(`\`@custom-variant ${R}\` cannot have both a selector and a body.`);if(v.nodes.length===0){if(!E)throw new Error(`\`@custom-variant ${R}\` has no selector or body.`);let P=chunk_V2K3XTS4_u(E.slice(1,-1),",");if(P.length===0||P.some(m=>m.trim()===""))throw new Error(`\`@custom-variant ${R} (${P.join(",")})\` selector is invalid.`);let i=[],u=[];for(let m of P)m=m.trim(),m[0]==="@"?i.push(m):u.push(m);c.push(m=>{m.variants.static(R,k=>{let b=[];u.length>0&&b.push(lib_F(u.join(", "),k.nodes));for(let V of i)b.push(lib_M(V,k.nodes));k.nodes=b},{compounds:lib_ie([...u,...i])})});return}else{c.push(P=>{P.variants.fromAst(R,v.nodes)});return}}if(v.name==="@media"){let R=chunk_V2K3XTS4_u(v.params," "),E=[];for(let P of R)if(P.startsWith("source(")){let i=P.slice(7,-1);lib_j(v.nodes,(u,{replaceWith:m})=>{if(u.kind==="at-rule"&&u.name==="@tailwind"&&u.params==="utilities")return u.params+=` source(${i})`,m([lib_ee({sourceBase:N.base},[u])]),2})}else if(P.startsWith("theme(")){let i=P.slice(6,-1);lib_j(v.nodes,u=>{if(u.kind!=="at-rule")throw new Error('Files imported with `@import "\u2026" theme(\u2026)` must only contain `@theme` blocks.');if(u.name==="@theme")return u.params+=" "+i,1})}else if(P.startsWith("prefix(")){let i=P.slice(7,-1);lib_j(v.nodes,u=>{if(u.kind==="at-rule"&&u.name==="@theme")return u.params+=` prefix(${i})`,1})}else P==="important"?s=!0:P==="reference"?v.nodes=[lib_ee({reference:!0},v.nodes)]:E.push(P);return E.length>0?v.params=E.join(" "):R.length>0&&T(v.nodes),lib_j(v.nodes,P=>{P.kind==="at-rule"&&P.name==="@variant"&&g.push(P)}),1}if(v.name==="@theme"){let[R,E]=yn(v.params);if(N.reference&&(R|=2),E){if(!mn.test(E))throw new Error(`The prefix "${E}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);a.prefix=E}return lib_j(v.nodes,(P,{replaceWith:i})=>{if(P.kind==="at-rule"&&P.name==="@keyframes")return R&2?(i([]),1):(a.addKeyframes(P),i([]),1);if(P.kind==="comment")return;if(P.kind==="declaration"&&P.property.startsWith("--")){a.add(chunk_WZA4AHDT_v(P.property),P.value??"",R);return}let u=lib_J([lib_O(v.name,v.params,[P])]).split(`
|
|
18671
|
+
`).map((m,k,b)=>`${k===0||k>=b.length-2?" ":">"} ${m}`).join(`
|
|
18672
|
+
`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`.
|
|
18673
|
+
|
|
18674
|
+
${u}`)}),!f&&!(R&2)?(f=lib_F(":root, :host",v.nodes),T([f])):T([]),1}}});let w=Ft(a);s&&(w.important=s),o|=await mr({designSystem:w,base:r,ast:t,loadModule:n,globs:h});for(let v of c)v(w);for(let v of d)v(w);if(f){let v=[];for(let[T,N]of a.entries())N.options&2||v.push(lib_l(chunk_WZA4AHDT_f(T),N.value));let x=a.getKeyframes();if(x.length>0){let T=[...a.namespace("--animate").values()].flatMap(N=>N.split(" "));for(let N of x){let R=N.params;T.includes(R)&&v.push(lib_D([N]))}}f.nodes=v}if(p){let v=p;v.kind="context",v.context={}}if(g.length>0){for(let v of g){let x=lib_F("&",v.nodes),T=v.params,N=w.parseVariant(T);if(N===null)throw new Error(`Cannot use \`@variant\` with unknown variant: ${T}`);if(se(x,N,w.variants)===null)throw new Error(`Cannot use \`@variant\` with variant: ${T}`);Object.assign(v,x)}o|=32}return o|=ae(t,w),o|=ve(t,w),lib_j(t,(v,{replaceWith:x})=>{if(v.kind==="at-rule")return v.name==="@utility"&&x([]),1}),{designSystem:w,ast:t,globs:h,root:y,utilitiesNode:p,features:o}}async function wn(t,r={}){let{designSystem:n,ast:e,globs:o,root:s,utilitiesNode:a,features:c}=await hr(t,r);e.unshift(Te(`! tailwindcss v${at} | MIT License | https://tailwindcss.com `));function d(h){n.invalidCandidates.add(h)}let f=new Set,p=null,g=0;return{globs:o,root:s,features:c,build(h){if(c===0)return t;if(!a)return p??=lib_te(e),p;let y=!1,w=f.size;for(let x of h)n.invalidCandidates.has(x)||(f.add(x),y||=f.size!==w);if(!y)return p??=lib_te(e),p;let v=lib_Z(f,n,{onInvalidCandidate:d}).astNodes;return g===v.length?(p??=lib_te(e),p):(g=v.length,a.nodes=v,p=lib_te(e),p)}}}async function tl(t,r={}){let n=lib_X(t),e=await wn(n,r),o=n,s=t;return{...e,build(a){let c=e.build(a);return c===o||(s=lib_J(c),o=c),s}}}async function rl(t,r={}){return(await hr(lib_X(t),r)).designSystem}function bn(){throw new Error("It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration.")}
|
|
18675
|
+
|
|
18676
|
+
;// ./node_modules/tailwindcss/index.css
|
|
18677
|
+
const tailwindcss_namespaceObject = "@layer theme, base, components, utilities;\n\n@layer theme {\n @theme default {\n --font-sans: ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\",\n \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-serif: ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif;\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,\n \"Liberation Mono\", \"Courier New\", monospace;\n\n --color-red-50: oklch(0.971 0.013 17.38);\n --color-red-100: oklch(0.936 0.032 17.717);\n --color-red-200: oklch(0.885 0.062 18.334);\n --color-red-300: oklch(0.808 0.114 19.571);\n --color-red-400: oklch(0.704 0.191 22.216);\n --color-red-500: oklch(0.637 0.237 25.331);\n --color-red-600: oklch(0.577 0.245 27.325);\n --color-red-700: oklch(0.505 0.213 27.518);\n --color-red-800: oklch(0.444 0.177 26.899);\n --color-red-900: oklch(0.396 0.141 25.723);\n --color-red-950: oklch(0.258 0.092 26.042);\n\n --color-orange-50: oklch(0.98 0.016 73.684);\n --color-orange-100: oklch(0.954 0.038 75.164);\n --color-orange-200: oklch(0.901 0.076 70.697);\n --color-orange-300: oklch(0.837 0.128 66.29);\n --color-orange-400: oklch(0.75 0.183 55.934);\n --color-orange-500: oklch(0.705 0.213 47.604);\n --color-orange-600: oklch(0.646 0.222 41.116);\n --color-orange-700: oklch(0.553 0.195 38.402);\n --color-orange-800: oklch(0.47 0.157 37.304);\n --color-orange-900: oklch(0.408 0.123 38.172);\n --color-orange-950: oklch(0.266 0.079 36.259);\n\n --color-amber-50: oklch(0.987 0.022 95.277);\n --color-amber-100: oklch(0.962 0.059 95.617);\n --color-amber-200: oklch(0.924 0.12 95.746);\n --color-amber-300: oklch(0.879 0.169 91.605);\n --color-amber-400: oklch(0.828 0.189 84.429);\n --color-amber-500: oklch(0.769 0.188 70.08);\n --color-amber-600: oklch(0.666 0.179 58.318);\n --color-amber-700: oklch(0.555 0.163 48.998);\n --color-amber-800: oklch(0.473 0.137 46.201);\n --color-amber-900: oklch(0.414 0.112 45.904);\n --color-amber-950: oklch(0.279 0.077 45.635);\n\n --color-yellow-50: oklch(0.987 0.026 102.212);\n --color-yellow-100: oklch(0.973 0.071 103.193);\n --color-yellow-200: oklch(0.945 0.129 101.54);\n --color-yellow-300: oklch(0.905 0.182 98.111);\n --color-yellow-400: oklch(0.852 0.199 91.936);\n --color-yellow-500: oklch(0.795 0.184 86.047);\n --color-yellow-600: oklch(0.681 0.162 75.834);\n --color-yellow-700: oklch(0.554 0.135 66.442);\n --color-yellow-800: oklch(0.476 0.114 61.907);\n --color-yellow-900: oklch(0.421 0.095 57.708);\n --color-yellow-950: oklch(0.286 0.066 53.813);\n\n --color-lime-50: oklch(0.986 0.031 120.757);\n --color-lime-100: oklch(0.967 0.067 122.328);\n --color-lime-200: oklch(0.938 0.127 124.321);\n --color-lime-300: oklch(0.897 0.196 126.665);\n --color-lime-400: oklch(0.841 0.238 128.85);\n --color-lime-500: oklch(0.768 0.233 130.85);\n --color-lime-600: oklch(0.648 0.2 131.684);\n --color-lime-700: oklch(0.532 0.157 131.589);\n --color-lime-800: oklch(0.453 0.124 130.933);\n --color-lime-900: oklch(0.405 0.101 131.063);\n --color-lime-950: oklch(0.274 0.072 132.109);\n\n --color-green-50: oklch(0.982 0.018 155.826);\n --color-green-100: oklch(0.962 0.044 156.743);\n --color-green-200: oklch(0.925 0.084 155.995);\n --color-green-300: oklch(0.871 0.15 154.449);\n --color-green-400: oklch(0.792 0.209 151.711);\n --color-green-500: oklch(0.723 0.219 149.579);\n --color-green-600: oklch(0.627 0.194 149.214);\n --color-green-700: oklch(0.527 0.154 150.069);\n --color-green-800: oklch(0.448 0.119 151.328);\n --color-green-900: oklch(0.393 0.095 152.535);\n --color-green-950: oklch(0.266 0.065 152.934);\n\n --color-emerald-50: oklch(0.979 0.021 166.113);\n --color-emerald-100: oklch(0.95 0.052 163.051);\n --color-emerald-200: oklch(0.905 0.093 164.15);\n --color-emerald-300: oklch(0.845 0.143 164.978);\n --color-emerald-400: oklch(0.765 0.177 163.223);\n --color-emerald-500: oklch(0.696 0.17 162.48);\n --color-emerald-600: oklch(0.596 0.145 163.225);\n --color-emerald-700: oklch(0.508 0.118 165.612);\n --color-emerald-800: oklch(0.432 0.095 166.913);\n --color-emerald-900: oklch(0.378 0.077 168.94);\n --color-emerald-950: oklch(0.262 0.051 172.552);\n\n --color-teal-50: oklch(0.984 0.014 180.72);\n --color-teal-100: oklch(0.953 0.051 180.801);\n --color-teal-200: oklch(0.91 0.096 180.426);\n --color-teal-300: oklch(0.855 0.138 181.071);\n --color-teal-400: oklch(0.777 0.152 181.912);\n --color-teal-500: oklch(0.704 0.14 182.503);\n --color-teal-600: oklch(0.6 0.118 184.704);\n --color-teal-700: oklch(0.511 0.096 186.391);\n --color-teal-800: oklch(0.437 0.078 188.216);\n --color-teal-900: oklch(0.386 0.063 188.416);\n --color-teal-950: oklch(0.277 0.046 192.524);\n\n --color-cyan-50: oklch(0.984 0.019 200.873);\n --color-cyan-100: oklch(0.956 0.045 203.388);\n --color-cyan-200: oklch(0.917 0.08 205.041);\n --color-cyan-300: oklch(0.865 0.127 207.078);\n --color-cyan-400: oklch(0.789 0.154 211.53);\n --color-cyan-500: oklch(0.715 0.143 215.221);\n --color-cyan-600: oklch(0.609 0.126 221.723);\n --color-cyan-700: oklch(0.52 0.105 223.128);\n --color-cyan-800: oklch(0.45 0.085 224.283);\n --color-cyan-900: oklch(0.398 0.07 227.392);\n --color-cyan-950: oklch(0.302 0.056 229.695);\n\n --color-sky-50: oklch(0.977 0.013 236.62);\n --color-sky-100: oklch(0.951 0.026 236.824);\n --color-sky-200: oklch(0.901 0.058 230.902);\n --color-sky-300: oklch(0.828 0.111 230.318);\n --color-sky-400: oklch(0.746 0.16 232.661);\n --color-sky-500: oklch(0.685 0.169 237.323);\n --color-sky-600: oklch(0.588 0.158 241.966);\n --color-sky-700: oklch(0.5 0.134 242.749);\n --color-sky-800: oklch(0.443 0.11 240.79);\n --color-sky-900: oklch(0.391 0.09 240.876);\n --color-sky-950: oklch(0.293 0.066 243.157);\n\n --color-blue-50: oklch(0.97 0.014 254.604);\n --color-blue-100: oklch(0.932 0.032 255.585);\n --color-blue-200: oklch(0.882 0.059 254.128);\n --color-blue-300: oklch(0.809 0.105 251.813);\n --color-blue-400: oklch(0.707 0.165 254.624);\n --color-blue-500: oklch(0.623 0.214 259.815);\n --color-blue-600: oklch(0.546 0.245 262.881);\n --color-blue-700: oklch(0.488 0.243 264.376);\n --color-blue-800: oklch(0.424 0.199 265.638);\n --color-blue-900: oklch(0.379 0.146 265.522);\n --color-blue-950: oklch(0.282 0.091 267.935);\n\n --color-indigo-50: oklch(0.962 0.018 272.314);\n --color-indigo-100: oklch(0.93 0.034 272.788);\n --color-indigo-200: oklch(0.87 0.065 274.039);\n --color-indigo-300: oklch(0.785 0.115 274.713);\n --color-indigo-400: oklch(0.673 0.182 276.935);\n --color-indigo-500: oklch(0.585 0.233 277.117);\n --color-indigo-600: oklch(0.511 0.262 276.966);\n --color-indigo-700: oklch(0.457 0.24 277.023);\n --color-indigo-800: oklch(0.398 0.195 277.366);\n --color-indigo-900: oklch(0.359 0.144 278.697);\n --color-indigo-950: oklch(0.257 0.09 281.288);\n\n --color-violet-50: oklch(0.969 0.016 293.756);\n --color-violet-100: oklch(0.943 0.029 294.588);\n --color-violet-200: oklch(0.894 0.057 293.283);\n --color-violet-300: oklch(0.811 0.111 293.571);\n --color-violet-400: oklch(0.702 0.183 293.541);\n --color-violet-500: oklch(0.606 0.25 292.717);\n --color-violet-600: oklch(0.541 0.281 293.009);\n --color-violet-700: oklch(0.491 0.27 292.581);\n --color-violet-800: oklch(0.432 0.232 292.759);\n --color-violet-900: oklch(0.38 0.189 293.745);\n --color-violet-950: oklch(0.283 0.141 291.089);\n\n --color-purple-50: oklch(0.977 0.014 308.299);\n --color-purple-100: oklch(0.946 0.033 307.174);\n --color-purple-200: oklch(0.902 0.063 306.703);\n --color-purple-300: oklch(0.827 0.119 306.383);\n --color-purple-400: oklch(0.714 0.203 305.504);\n --color-purple-500: oklch(0.627 0.265 303.9);\n --color-purple-600: oklch(0.558 0.288 302.321);\n --color-purple-700: oklch(0.496 0.265 301.924);\n --color-purple-800: oklch(0.438 0.218 303.724);\n --color-purple-900: oklch(0.381 0.176 304.987);\n --color-purple-950: oklch(0.291 0.149 302.717);\n\n --color-fuchsia-50: oklch(0.977 0.017 320.058);\n --color-fuchsia-100: oklch(0.952 0.037 318.852);\n --color-fuchsia-200: oklch(0.903 0.076 319.62);\n --color-fuchsia-300: oklch(0.833 0.145 321.434);\n --color-fuchsia-400: oklch(0.74 0.238 322.16);\n --color-fuchsia-500: oklch(0.667 0.295 322.15);\n --color-fuchsia-600: oklch(0.591 0.293 322.896);\n --color-fuchsia-700: oklch(0.518 0.253 323.949);\n --color-fuchsia-800: oklch(0.452 0.211 324.591);\n --color-fuchsia-900: oklch(0.401 0.17 325.612);\n --color-fuchsia-950: oklch(0.293 0.136 325.661);\n\n --color-pink-50: oklch(0.971 0.014 343.198);\n --color-pink-100: oklch(0.948 0.028 342.258);\n --color-pink-200: oklch(0.899 0.061 343.231);\n --color-pink-300: oklch(0.823 0.12 346.018);\n --color-pink-400: oklch(0.718 0.202 349.761);\n --color-pink-500: oklch(0.656 0.241 354.308);\n --color-pink-600: oklch(0.592 0.249 0.584);\n --color-pink-700: oklch(0.525 0.223 3.958);\n --color-pink-800: oklch(0.459 0.187 3.815);\n --color-pink-900: oklch(0.408 0.153 2.432);\n --color-pink-950: oklch(0.284 0.109 3.907);\n\n --color-rose-50: oklch(0.969 0.015 12.422);\n --color-rose-100: oklch(0.941 0.03 12.58);\n --color-rose-200: oklch(0.892 0.058 10.001);\n --color-rose-300: oklch(0.81 0.117 11.638);\n --color-rose-400: oklch(0.712 0.194 13.428);\n --color-rose-500: oklch(0.645 0.246 16.439);\n --color-rose-600: oklch(0.586 0.253 17.585);\n --color-rose-700: oklch(0.514 0.222 16.935);\n --color-rose-800: oklch(0.455 0.188 13.697);\n --color-rose-900: oklch(0.41 0.159 10.272);\n --color-rose-950: oklch(0.271 0.105 12.094);\n\n --color-slate-50: oklch(0.984 0.003 247.858);\n --color-slate-100: oklch(0.968 0.007 247.896);\n --color-slate-200: oklch(0.929 0.013 255.508);\n --color-slate-300: oklch(0.869 0.022 252.894);\n --color-slate-400: oklch(0.704 0.04 256.788);\n --color-slate-500: oklch(0.554 0.046 257.417);\n --color-slate-600: oklch(0.446 0.043 257.281);\n --color-slate-700: oklch(0.372 0.044 257.287);\n --color-slate-800: oklch(0.279 0.041 260.031);\n --color-slate-900: oklch(0.208 0.042 265.755);\n --color-slate-950: oklch(0.129 0.042 264.695);\n\n --color-gray-50: oklch(0.985 0.002 247.839);\n --color-gray-100: oklch(0.967 0.003 264.542);\n --color-gray-200: oklch(0.928 0.006 264.531);\n --color-gray-300: oklch(0.872 0.01 258.338);\n --color-gray-400: oklch(0.707 0.022 261.325);\n --color-gray-500: oklch(0.551 0.027 264.364);\n --color-gray-600: oklch(0.446 0.03 256.802);\n --color-gray-700: oklch(0.373 0.034 259.733);\n --color-gray-800: oklch(0.278 0.033 256.848);\n --color-gray-900: oklch(0.21 0.034 264.665);\n --color-gray-950: oklch(0.13 0.028 261.692);\n\n --color-zinc-50: oklch(0.985 0 0);\n --color-zinc-100: oklch(0.967 0.001 286.375);\n --color-zinc-200: oklch(0.92 0.004 286.32);\n --color-zinc-300: oklch(0.871 0.006 286.286);\n --color-zinc-400: oklch(0.705 0.015 286.067);\n --color-zinc-500: oklch(0.552 0.016 285.938);\n --color-zinc-600: oklch(0.442 0.017 285.786);\n --color-zinc-700: oklch(0.37 0.013 285.805);\n --color-zinc-800: oklch(0.274 0.006 286.033);\n --color-zinc-900: oklch(0.21 0.006 285.885);\n --color-zinc-950: oklch(0.141 0.005 285.823);\n\n --color-neutral-50: oklch(0.985 0 0);\n --color-neutral-100: oklch(0.97 0 0);\n --color-neutral-200: oklch(0.922 0 0);\n --color-neutral-300: oklch(0.87 0 0);\n --color-neutral-400: oklch(0.708 0 0);\n --color-neutral-500: oklch(0.556 0 0);\n --color-neutral-600: oklch(0.439 0 0);\n --color-neutral-700: oklch(0.371 0 0);\n --color-neutral-800: oklch(0.269 0 0);\n --color-neutral-900: oklch(0.205 0 0);\n --color-neutral-950: oklch(0.145 0 0);\n\n --color-stone-50: oklch(0.985 0.001 106.423);\n --color-stone-100: oklch(0.97 0.001 106.424);\n --color-stone-200: oklch(0.923 0.003 48.717);\n --color-stone-300: oklch(0.869 0.005 56.366);\n --color-stone-400: oklch(0.709 0.01 56.259);\n --color-stone-500: oklch(0.553 0.013 58.071);\n --color-stone-600: oklch(0.444 0.011 73.639);\n --color-stone-700: oklch(0.374 0.01 67.558);\n --color-stone-800: oklch(0.268 0.007 34.298);\n --color-stone-900: oklch(0.216 0.006 56.043);\n --color-stone-950: oklch(0.147 0.004 49.25);\n\n --color-black: #000;\n --color-white: #fff;\n\n --spacing: 0.25rem;\n\n --breakpoint-sm: 40rem;\n --breakpoint-md: 48rem;\n --breakpoint-lg: 64rem;\n --breakpoint-xl: 80rem;\n --breakpoint-2xl: 96rem;\n\n --container-3xs: 16rem;\n --container-2xs: 18rem;\n --container-xs: 20rem;\n --container-sm: 24rem;\n --container-md: 28rem;\n --container-lg: 32rem;\n --container-xl: 36rem;\n --container-2xl: 42rem;\n --container-3xl: 48rem;\n --container-4xl: 56rem;\n --container-5xl: 64rem;\n --container-6xl: 72rem;\n --container-7xl: 80rem;\n\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --text-lg: 1.125rem;\n --text-lg--line-height: calc(1.75 / 1.125);\n --text-xl: 1.25rem;\n --text-xl--line-height: calc(1.75 / 1.25);\n --text-2xl: 1.5rem;\n --text-2xl--line-height: calc(2 / 1.5);\n --text-3xl: 1.875rem;\n --text-3xl--line-height: calc(2.25 / 1.875);\n --text-4xl: 2.25rem;\n --text-4xl--line-height: calc(2.5 / 2.25);\n --text-5xl: 3rem;\n --text-5xl--line-height: 1;\n --text-6xl: 3.75rem;\n --text-6xl--line-height: 1;\n --text-7xl: 4.5rem;\n --text-7xl--line-height: 1;\n --text-8xl: 6rem;\n --text-8xl--line-height: 1;\n --text-9xl: 8rem;\n --text-9xl--line-height: 1;\n\n --font-weight-thin: 100;\n --font-weight-extralight: 200;\n --font-weight-light: 300;\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n --font-weight-extrabold: 800;\n --font-weight-black: 900;\n\n --tracking-tighter: -0.05em;\n --tracking-tight: -0.025em;\n --tracking-normal: 0em;\n --tracking-wide: 0.025em;\n --tracking-wider: 0.05em;\n --tracking-widest: 0.1em;\n\n --leading-tight: 1.25;\n --leading-snug: 1.375;\n --leading-normal: 1.5;\n --leading-relaxed: 1.625;\n --leading-loose: 2;\n\n --radius-xs: 0.125rem;\n --radius-sm: 0.25rem;\n --radius-md: 0.375rem;\n --radius-lg: 0.5rem;\n --radius-xl: 0.75rem;\n --radius-2xl: 1rem;\n --radius-3xl: 1.5rem;\n --radius-4xl: 2rem;\n\n --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);\n --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),\n 0 2px 4px -2px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),\n 0 4px 6px -4px rgb(0 0 0 / 0.1);\n --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),\n 0 8px 10px -6px rgb(0 0 0 / 0.1);\n --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);\n\n --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);\n --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);\n --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);\n\n --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);\n --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);\n --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);\n --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);\n --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);\n --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);\n\n --ease-in: cubic-bezier(0.4, 0, 1, 1);\n --ease-out: cubic-bezier(0, 0, 0.2, 1);\n --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);\n\n --animate-spin: spin 1s linear infinite;\n --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;\n --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n --animate-bounce: bounce 1s infinite;\n\n @keyframes spin {\n to {\n transform: rotate(360deg);\n }\n }\n\n @keyframes ping {\n 75%,\n 100% {\n transform: scale(2);\n opacity: 0;\n }\n }\n\n @keyframes pulse {\n 50% {\n opacity: 0.5;\n }\n }\n\n @keyframes bounce {\n 0%,\n 100% {\n transform: translateY(-25%);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n\n 50% {\n transform: none;\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n }\n\n --blur-xs: 4px;\n --blur-sm: 8px;\n --blur-md: 12px;\n --blur-lg: 16px;\n --blur-xl: 24px;\n --blur-2xl: 40px;\n --blur-3xl: 64px;\n\n --perspective-dramatic: 100px;\n --perspective-near: 300px;\n --perspective-normal: 500px;\n --perspective-midrange: 800px;\n --perspective-distant: 1200px;\n\n --aspect-video: 16 / 9;\n\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-font-feature-settings: var(--font-sans--font-feature-settings);\n --default-font-variation-settings: var(\n --font-sans--font-variation-settings\n );\n --default-mono-font-family: var(--font-mono);\n --default-mono-font-feature-settings: var(\n --font-mono--font-feature-settings\n );\n --default-mono-font-variation-settings: var(\n --font-mono--font-variation-settings\n );\n }\n\n /* Deprecated */\n @theme default inline reference {\n --blur: 8px;\n --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);\n --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);\n --radius: 0.25rem;\n --max-width-prose: 65ch;\n }\n}\n\n@layer base {\n /*\n 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)\n 2. Remove default margins and padding\n 3. Reset all borders.\n*/\n\n *,\n ::after,\n ::before,\n ::backdrop,\n ::file-selector-button {\n box-sizing: border-box; /* 1 */\n margin: 0; /* 2 */\n padding: 0; /* 2 */\n border: 0 solid; /* 3 */\n }\n\n /*\n 1. Use a consistent sensible line-height in all browsers.\n 2. Prevent adjustments of font size after orientation changes in iOS.\n 3. Use a more readable tab size.\n 4. Use the user's configured `sans` font-family by default.\n 5. Use the user's configured `sans` font-feature-settings by default.\n 6. Use the user's configured `sans` font-variation-settings by default.\n 7. Disable tap highlights on iOS.\n*/\n\n html,\n :host {\n line-height: 1.5; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n tab-size: 4; /* 3 */\n font-family: var(\n --default-font-family,\n ui-sans-serif,\n system-ui,\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\"\n ); /* 4 */\n font-feature-settings: var(--default-font-feature-settings, normal); /* 5 */\n font-variation-settings: var(\n --default-font-variation-settings,\n normal\n ); /* 6 */\n -webkit-tap-highlight-color: transparent; /* 7 */\n }\n\n /*\n Inherit line-height from `html` so users can set them as a class directly on the `html` element.\n*/\n\n body {\n line-height: inherit;\n }\n\n /*\n 1. Add the correct height in Firefox.\n 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n 3. Reset the default border style to a 1px solid border.\n*/\n\n hr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n border-top-width: 1px; /* 3 */\n }\n\n /*\n Add the correct text decoration in Chrome, Edge, and Safari.\n*/\n\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n /*\n Remove the default font size and weight for headings.\n*/\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n\n /*\n Reset links to optimize for opt-in styling instead of opt-out.\n*/\n\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n\n /*\n Add the correct font weight in Edge and Safari.\n*/\n\n b,\n strong {\n font-weight: bolder;\n }\n\n /*\n 1. Use the user's configured `mono` font-family by default.\n 2. Use the user's configured `mono` font-feature-settings by default.\n 3. Use the user's configured `mono` font-variation-settings by default.\n 4. Correct the odd `em` font sizing in all browsers.\n*/\n\n code,\n kbd,\n samp,\n pre {\n font-family: var(\n --default-mono-font-family,\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n \"Liberation Mono\",\n \"Courier New\",\n monospace\n ); /* 4 */\n font-feature-settings: var(\n --default-mono-font-feature-settings,\n normal\n ); /* 5 */\n font-variation-settings: var(\n --default-mono-font-variation-settings,\n normal\n ); /* 6 */\n font-size: 1em; /* 4 */\n }\n\n /*\n Add the correct font size in all browsers.\n*/\n\n small {\n font-size: 80%;\n }\n\n /*\n Prevent `sub` and `sup` elements from affecting the line height in all browsers.\n*/\n\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n /*\n 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n 3. Remove gaps between table borders by default.\n*/\n\n table {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n border-collapse: collapse; /* 3 */\n }\n\n /*\n Use the modern Firefox focus style for all focusable elements.\n*/\n\n :-moz-focusring {\n outline: auto;\n }\n\n /*\n Add the correct vertical alignment in Chrome and Firefox.\n*/\n\n progress {\n vertical-align: baseline;\n }\n\n /*\n Add the correct display in Chrome and Safari.\n*/\n\n summary {\n display: list-item;\n }\n\n /*\n Make lists unstyled by default.\n*/\n\n ol,\n ul,\n menu {\n list-style: none;\n }\n\n /*\n 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)\n 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)\n This can trigger a poorly considered lint error in some tools but is included by design.\n*/\n\n img,\n svg,\n video,\n canvas,\n audio,\n iframe,\n embed,\n object {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n }\n\n /*\n Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)\n*/\n\n img,\n video {\n max-width: 100%;\n height: auto;\n }\n\n /*\n 1. Inherit font styles in all browsers.\n 2. Remove border radius in all browsers.\n 3. Remove background color in all browsers.\n 4. Ensure consistent opacity for disabled states in all browsers.\n*/\n\n button,\n input,\n select,\n optgroup,\n textarea,\n ::file-selector-button {\n font: inherit; /* 1 */\n font-feature-settings: inherit; /* 1 */\n font-variation-settings: inherit; /* 1 */\n letter-spacing: inherit; /* 1 */\n color: inherit; /* 1 */\n border-radius: 0; /* 2 */\n background-color: transparent; /* 3 */\n opacity: 1; /* 4 */\n }\n\n /*\n Restore default font weight.\n*/\n\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n\n /*\n Restore indentation.\n*/\n\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n\n /*\n Restore space after button.\n*/\n\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n\n /*\n 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)\n 2. Set the default placeholder color to a semi-transparent version of the current text color.\n*/\n\n ::placeholder {\n opacity: 1; /* 1 */\n color: color-mix(in oklab, currentColor 50%, transparent); /* 2 */\n }\n\n /*\n Prevent resizing textareas horizontally by default.\n*/\n\n textarea {\n resize: vertical;\n }\n\n /*\n Remove the inner padding in Chrome and Safari on macOS.\n*/\n\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n\n /*\n 1. Ensure date/time inputs have the same height when empty in iOS Safari.\n 2. Ensure text alignment can be changed on date/time inputs in iOS Safari.\n*/\n\n ::-webkit-date-and-time-value {\n min-height: 1lh; /* 1 */\n text-align: inherit; /* 2 */\n }\n\n /*\n Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.\n*/\n\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n\n /*\n Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.\n*/\n\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n\n ::-webkit-datetime-edit,\n ::-webkit-datetime-edit-year-field,\n ::-webkit-datetime-edit-month-field,\n ::-webkit-datetime-edit-day-field,\n ::-webkit-datetime-edit-hour-field,\n ::-webkit-datetime-edit-minute-field,\n ::-webkit-datetime-edit-second-field,\n ::-webkit-datetime-edit-millisecond-field,\n ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n\n /*\n Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)\n*/\n\n :-moz-ui-invalid {\n box-shadow: none;\n }\n\n /*\n Correct the inability to style the border radius in iOS Safari.\n*/\n\n button,\n input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]),\n ::file-selector-button {\n appearance: button;\n }\n\n /*\n Correct the cursor style of increment and decrement buttons in Safari.\n*/\n\n ::-webkit-inner-spin-button,\n ::-webkit-outer-spin-button {\n height: auto;\n }\n\n /*\n Make elements with the HTML hidden attribute stay hidden by default.\n*/\n\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n\n@layer utilities {\n @tailwind utilities;\n}\n";
|
|
18678
|
+
;// ./node_modules/tailwindcss/preflight.css
|
|
18679
|
+
const preflight_namespaceObject = "/*\n 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)\n 2. Remove default margins and padding\n 3. Reset all borders.\n*/\n\n*,\n::after,\n::before,\n::backdrop,\n::file-selector-button {\n box-sizing: border-box; /* 1 */\n margin: 0; /* 2 */\n padding: 0; /* 2 */\n border: 0 solid; /* 3 */\n}\n\n/*\n 1. Use a consistent sensible line-height in all browsers.\n 2. Prevent adjustments of font size after orientation changes in iOS.\n 3. Use a more readable tab size.\n 4. Use the user's configured `sans` font-family by default.\n 5. Use the user's configured `sans` font-feature-settings by default.\n 6. Use the user's configured `sans` font-variation-settings by default.\n 7. Disable tap highlights on iOS.\n*/\n\nhtml,\n:host {\n line-height: 1.5; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n tab-size: 4; /* 3 */\n font-family: var(\n --default-font-family,\n ui-sans-serif,\n system-ui,\n sans-serif,\n 'Apple Color Emoji',\n 'Segoe UI Emoji',\n 'Segoe UI Symbol',\n 'Noto Color Emoji'\n ); /* 4 */\n font-feature-settings: var(--default-font-feature-settings, normal); /* 5 */\n font-variation-settings: var(--default-font-variation-settings, normal); /* 6 */\n -webkit-tap-highlight-color: transparent; /* 7 */\n}\n\n/*\n Inherit line-height from `html` so users can set them as a class directly on the `html` element.\n*/\n\nbody {\n line-height: inherit;\n}\n\n/*\n 1. Add the correct height in Firefox.\n 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n 3. Reset the default border style to a 1px solid border.\n*/\n\nhr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n border-top-width: 1px; /* 3 */\n}\n\n/*\n Add the correct text decoration in Chrome, Edge, and Safari.\n*/\n\nabbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n}\n\n/*\n Remove the default font size and weight for headings.\n*/\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}\n\n/*\n Reset links to optimize for opt-in styling instead of opt-out.\n*/\n\na {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n}\n\n/*\n Add the correct font weight in Edge and Safari.\n*/\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/*\n 1. Use the user's configured `mono` font-family by default.\n 2. Use the user's configured `mono` font-feature-settings by default.\n 3. Use the user's configured `mono` font-variation-settings by default.\n 4. Correct the odd `em` font sizing in all browsers.\n*/\n\ncode,\nkbd,\nsamp,\npre {\n font-family: var(\n --default-mono-font-family,\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n 'Liberation Mono',\n 'Courier New',\n monospace\n ); /* 4 */\n font-feature-settings: var(--default-mono-font-feature-settings, normal); /* 5 */\n font-variation-settings: var(--default-mono-font-variation-settings, normal); /* 6 */\n font-size: 1em; /* 4 */\n}\n\n/*\n Add the correct font size in all browsers.\n*/\n\nsmall {\n font-size: 80%;\n}\n\n/*\n Prevent `sub` and `sup` elements from affecting the line height in all browsers.\n*/\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/*\n 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n 3. Remove gaps between table borders by default.\n*/\n\ntable {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n border-collapse: collapse; /* 3 */\n}\n\n/*\n Use the modern Firefox focus style for all focusable elements.\n*/\n\n:-moz-focusring {\n outline: auto;\n}\n\n/*\n Add the correct vertical alignment in Chrome and Firefox.\n*/\n\nprogress {\n vertical-align: baseline;\n}\n\n/*\n Add the correct display in Chrome and Safari.\n*/\n\nsummary {\n display: list-item;\n}\n\n/*\n Make lists unstyled by default.\n*/\n\nol,\nul,\nmenu {\n list-style: none;\n}\n\n/*\n 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)\n 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)\n This can trigger a poorly considered lint error in some tools but is included by design.\n*/\n\nimg,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n}\n\n/*\n Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)\n*/\n\nimg,\nvideo {\n max-width: 100%;\n height: auto;\n}\n\n/*\n 1. Inherit font styles in all browsers.\n 2. Remove border radius in all browsers.\n 3. Remove background color in all browsers.\n 4. Ensure consistent opacity for disabled states in all browsers.\n*/\n\nbutton,\ninput,\nselect,\noptgroup,\ntextarea,\n::file-selector-button {\n font: inherit; /* 1 */\n font-feature-settings: inherit; /* 1 */\n font-variation-settings: inherit; /* 1 */\n letter-spacing: inherit; /* 1 */\n color: inherit; /* 1 */\n border-radius: 0; /* 2 */\n background-color: transparent; /* 3 */\n opacity: 1; /* 4 */\n}\n\n/*\n Restore default font weight.\n*/\n\n:where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n}\n\n/*\n Restore indentation.\n*/\n\n:where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n}\n\n/*\n Restore space after button.\n*/\n\n::file-selector-button {\n margin-inline-end: 4px;\n}\n\n/*\n 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)\n 2. Set the default placeholder color to a semi-transparent version of the current text color.\n*/\n\n::placeholder {\n opacity: 1; /* 1 */\n color: color-mix(in oklab, currentColor 50%, transparent); /* 2 */\n}\n\n/*\n Prevent resizing textareas horizontally by default.\n*/\n\ntextarea {\n resize: vertical;\n}\n\n/*\n Remove the inner padding in Chrome and Safari on macOS.\n*/\n\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/*\n 1. Ensure date/time inputs have the same height when empty in iOS Safari.\n 2. Ensure text alignment can be changed on date/time inputs in iOS Safari.\n*/\n\n::-webkit-date-and-time-value {\n min-height: 1lh; /* 1 */\n text-align: inherit; /* 2 */\n}\n\n/*\n Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.\n*/\n\n::-webkit-datetime-edit {\n display: inline-flex;\n}\n\n/*\n Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.\n*/\n\n::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n}\n\n::-webkit-datetime-edit,\n::-webkit-datetime-edit-year-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-minute-field,\n::-webkit-datetime-edit-second-field,\n::-webkit-datetime-edit-millisecond-field,\n::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n}\n\n/*\n Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)\n*/\n\n:-moz-ui-invalid {\n box-shadow: none;\n}\n\n/*\n Correct the inability to style the border radius in iOS Safari.\n*/\n\nbutton,\ninput:where([type='button'], [type='reset'], [type='submit']),\n::file-selector-button {\n appearance: button;\n}\n\n/*\n Correct the cursor style of increment and decrement buttons in Safari.\n*/\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n height: auto;\n}\n\n/*\n Make elements with the HTML hidden attribute stay hidden by default.\n*/\n\n[hidden]:where(:not([hidden='until-found'])) {\n display: none !important;\n}\n";
|
|
18680
|
+
;// ./node_modules/tailwindcss/theme.css
|
|
18681
|
+
const theme_namespaceObject = "@theme default {\n --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n 'Segoe UI Symbol', 'Noto Color Emoji';\n --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',\n 'Courier New', monospace;\n\n --color-red-50: oklch(0.971 0.013 17.38);\n --color-red-100: oklch(0.936 0.032 17.717);\n --color-red-200: oklch(0.885 0.062 18.334);\n --color-red-300: oklch(0.808 0.114 19.571);\n --color-red-400: oklch(0.704 0.191 22.216);\n --color-red-500: oklch(0.637 0.237 25.331);\n --color-red-600: oklch(0.577 0.245 27.325);\n --color-red-700: oklch(0.505 0.213 27.518);\n --color-red-800: oklch(0.444 0.177 26.899);\n --color-red-900: oklch(0.396 0.141 25.723);\n --color-red-950: oklch(0.258 0.092 26.042);\n\n --color-orange-50: oklch(0.98 0.016 73.684);\n --color-orange-100: oklch(0.954 0.038 75.164);\n --color-orange-200: oklch(0.901 0.076 70.697);\n --color-orange-300: oklch(0.837 0.128 66.29);\n --color-orange-400: oklch(0.75 0.183 55.934);\n --color-orange-500: oklch(0.705 0.213 47.604);\n --color-orange-600: oklch(0.646 0.222 41.116);\n --color-orange-700: oklch(0.553 0.195 38.402);\n --color-orange-800: oklch(0.47 0.157 37.304);\n --color-orange-900: oklch(0.408 0.123 38.172);\n --color-orange-950: oklch(0.266 0.079 36.259);\n\n --color-amber-50: oklch(0.987 0.022 95.277);\n --color-amber-100: oklch(0.962 0.059 95.617);\n --color-amber-200: oklch(0.924 0.12 95.746);\n --color-amber-300: oklch(0.879 0.169 91.605);\n --color-amber-400: oklch(0.828 0.189 84.429);\n --color-amber-500: oklch(0.769 0.188 70.08);\n --color-amber-600: oklch(0.666 0.179 58.318);\n --color-amber-700: oklch(0.555 0.163 48.998);\n --color-amber-800: oklch(0.473 0.137 46.201);\n --color-amber-900: oklch(0.414 0.112 45.904);\n --color-amber-950: oklch(0.279 0.077 45.635);\n\n --color-yellow-50: oklch(0.987 0.026 102.212);\n --color-yellow-100: oklch(0.973 0.071 103.193);\n --color-yellow-200: oklch(0.945 0.129 101.54);\n --color-yellow-300: oklch(0.905 0.182 98.111);\n --color-yellow-400: oklch(0.852 0.199 91.936);\n --color-yellow-500: oklch(0.795 0.184 86.047);\n --color-yellow-600: oklch(0.681 0.162 75.834);\n --color-yellow-700: oklch(0.554 0.135 66.442);\n --color-yellow-800: oklch(0.476 0.114 61.907);\n --color-yellow-900: oklch(0.421 0.095 57.708);\n --color-yellow-950: oklch(0.286 0.066 53.813);\n\n --color-lime-50: oklch(0.986 0.031 120.757);\n --color-lime-100: oklch(0.967 0.067 122.328);\n --color-lime-200: oklch(0.938 0.127 124.321);\n --color-lime-300: oklch(0.897 0.196 126.665);\n --color-lime-400: oklch(0.841 0.238 128.85);\n --color-lime-500: oklch(0.768 0.233 130.85);\n --color-lime-600: oklch(0.648 0.2 131.684);\n --color-lime-700: oklch(0.532 0.157 131.589);\n --color-lime-800: oklch(0.453 0.124 130.933);\n --color-lime-900: oklch(0.405 0.101 131.063);\n --color-lime-950: oklch(0.274 0.072 132.109);\n\n --color-green-50: oklch(0.982 0.018 155.826);\n --color-green-100: oklch(0.962 0.044 156.743);\n --color-green-200: oklch(0.925 0.084 155.995);\n --color-green-300: oklch(0.871 0.15 154.449);\n --color-green-400: oklch(0.792 0.209 151.711);\n --color-green-500: oklch(0.723 0.219 149.579);\n --color-green-600: oklch(0.627 0.194 149.214);\n --color-green-700: oklch(0.527 0.154 150.069);\n --color-green-800: oklch(0.448 0.119 151.328);\n --color-green-900: oklch(0.393 0.095 152.535);\n --color-green-950: oklch(0.266 0.065 152.934);\n\n --color-emerald-50: oklch(0.979 0.021 166.113);\n --color-emerald-100: oklch(0.95 0.052 163.051);\n --color-emerald-200: oklch(0.905 0.093 164.15);\n --color-emerald-300: oklch(0.845 0.143 164.978);\n --color-emerald-400: oklch(0.765 0.177 163.223);\n --color-emerald-500: oklch(0.696 0.17 162.48);\n --color-emerald-600: oklch(0.596 0.145 163.225);\n --color-emerald-700: oklch(0.508 0.118 165.612);\n --color-emerald-800: oklch(0.432 0.095 166.913);\n --color-emerald-900: oklch(0.378 0.077 168.94);\n --color-emerald-950: oklch(0.262 0.051 172.552);\n\n --color-teal-50: oklch(0.984 0.014 180.72);\n --color-teal-100: oklch(0.953 0.051 180.801);\n --color-teal-200: oklch(0.91 0.096 180.426);\n --color-teal-300: oklch(0.855 0.138 181.071);\n --color-teal-400: oklch(0.777 0.152 181.912);\n --color-teal-500: oklch(0.704 0.14 182.503);\n --color-teal-600: oklch(0.6 0.118 184.704);\n --color-teal-700: oklch(0.511 0.096 186.391);\n --color-teal-800: oklch(0.437 0.078 188.216);\n --color-teal-900: oklch(0.386 0.063 188.416);\n --color-teal-950: oklch(0.277 0.046 192.524);\n\n --color-cyan-50: oklch(0.984 0.019 200.873);\n --color-cyan-100: oklch(0.956 0.045 203.388);\n --color-cyan-200: oklch(0.917 0.08 205.041);\n --color-cyan-300: oklch(0.865 0.127 207.078);\n --color-cyan-400: oklch(0.789 0.154 211.53);\n --color-cyan-500: oklch(0.715 0.143 215.221);\n --color-cyan-600: oklch(0.609 0.126 221.723);\n --color-cyan-700: oklch(0.52 0.105 223.128);\n --color-cyan-800: oklch(0.45 0.085 224.283);\n --color-cyan-900: oklch(0.398 0.07 227.392);\n --color-cyan-950: oklch(0.302 0.056 229.695);\n\n --color-sky-50: oklch(0.977 0.013 236.62);\n --color-sky-100: oklch(0.951 0.026 236.824);\n --color-sky-200: oklch(0.901 0.058 230.902);\n --color-sky-300: oklch(0.828 0.111 230.318);\n --color-sky-400: oklch(0.746 0.16 232.661);\n --color-sky-500: oklch(0.685 0.169 237.323);\n --color-sky-600: oklch(0.588 0.158 241.966);\n --color-sky-700: oklch(0.5 0.134 242.749);\n --color-sky-800: oklch(0.443 0.11 240.79);\n --color-sky-900: oklch(0.391 0.09 240.876);\n --color-sky-950: oklch(0.293 0.066 243.157);\n\n --color-blue-50: oklch(0.97 0.014 254.604);\n --color-blue-100: oklch(0.932 0.032 255.585);\n --color-blue-200: oklch(0.882 0.059 254.128);\n --color-blue-300: oklch(0.809 0.105 251.813);\n --color-blue-400: oklch(0.707 0.165 254.624);\n --color-blue-500: oklch(0.623 0.214 259.815);\n --color-blue-600: oklch(0.546 0.245 262.881);\n --color-blue-700: oklch(0.488 0.243 264.376);\n --color-blue-800: oklch(0.424 0.199 265.638);\n --color-blue-900: oklch(0.379 0.146 265.522);\n --color-blue-950: oklch(0.282 0.091 267.935);\n\n --color-indigo-50: oklch(0.962 0.018 272.314);\n --color-indigo-100: oklch(0.93 0.034 272.788);\n --color-indigo-200: oklch(0.87 0.065 274.039);\n --color-indigo-300: oklch(0.785 0.115 274.713);\n --color-indigo-400: oklch(0.673 0.182 276.935);\n --color-indigo-500: oklch(0.585 0.233 277.117);\n --color-indigo-600: oklch(0.511 0.262 276.966);\n --color-indigo-700: oklch(0.457 0.24 277.023);\n --color-indigo-800: oklch(0.398 0.195 277.366);\n --color-indigo-900: oklch(0.359 0.144 278.697);\n --color-indigo-950: oklch(0.257 0.09 281.288);\n\n --color-violet-50: oklch(0.969 0.016 293.756);\n --color-violet-100: oklch(0.943 0.029 294.588);\n --color-violet-200: oklch(0.894 0.057 293.283);\n --color-violet-300: oklch(0.811 0.111 293.571);\n --color-violet-400: oklch(0.702 0.183 293.541);\n --color-violet-500: oklch(0.606 0.25 292.717);\n --color-violet-600: oklch(0.541 0.281 293.009);\n --color-violet-700: oklch(0.491 0.27 292.581);\n --color-violet-800: oklch(0.432 0.232 292.759);\n --color-violet-900: oklch(0.38 0.189 293.745);\n --color-violet-950: oklch(0.283 0.141 291.089);\n\n --color-purple-50: oklch(0.977 0.014 308.299);\n --color-purple-100: oklch(0.946 0.033 307.174);\n --color-purple-200: oklch(0.902 0.063 306.703);\n --color-purple-300: oklch(0.827 0.119 306.383);\n --color-purple-400: oklch(0.714 0.203 305.504);\n --color-purple-500: oklch(0.627 0.265 303.9);\n --color-purple-600: oklch(0.558 0.288 302.321);\n --color-purple-700: oklch(0.496 0.265 301.924);\n --color-purple-800: oklch(0.438 0.218 303.724);\n --color-purple-900: oklch(0.381 0.176 304.987);\n --color-purple-950: oklch(0.291 0.149 302.717);\n\n --color-fuchsia-50: oklch(0.977 0.017 320.058);\n --color-fuchsia-100: oklch(0.952 0.037 318.852);\n --color-fuchsia-200: oklch(0.903 0.076 319.62);\n --color-fuchsia-300: oklch(0.833 0.145 321.434);\n --color-fuchsia-400: oklch(0.74 0.238 322.16);\n --color-fuchsia-500: oklch(0.667 0.295 322.15);\n --color-fuchsia-600: oklch(0.591 0.293 322.896);\n --color-fuchsia-700: oklch(0.518 0.253 323.949);\n --color-fuchsia-800: oklch(0.452 0.211 324.591);\n --color-fuchsia-900: oklch(0.401 0.17 325.612);\n --color-fuchsia-950: oklch(0.293 0.136 325.661);\n\n --color-pink-50: oklch(0.971 0.014 343.198);\n --color-pink-100: oklch(0.948 0.028 342.258);\n --color-pink-200: oklch(0.899 0.061 343.231);\n --color-pink-300: oklch(0.823 0.12 346.018);\n --color-pink-400: oklch(0.718 0.202 349.761);\n --color-pink-500: oklch(0.656 0.241 354.308);\n --color-pink-600: oklch(0.592 0.249 0.584);\n --color-pink-700: oklch(0.525 0.223 3.958);\n --color-pink-800: oklch(0.459 0.187 3.815);\n --color-pink-900: oklch(0.408 0.153 2.432);\n --color-pink-950: oklch(0.284 0.109 3.907);\n\n --color-rose-50: oklch(0.969 0.015 12.422);\n --color-rose-100: oklch(0.941 0.03 12.58);\n --color-rose-200: oklch(0.892 0.058 10.001);\n --color-rose-300: oklch(0.81 0.117 11.638);\n --color-rose-400: oklch(0.712 0.194 13.428);\n --color-rose-500: oklch(0.645 0.246 16.439);\n --color-rose-600: oklch(0.586 0.253 17.585);\n --color-rose-700: oklch(0.514 0.222 16.935);\n --color-rose-800: oklch(0.455 0.188 13.697);\n --color-rose-900: oklch(0.41 0.159 10.272);\n --color-rose-950: oklch(0.271 0.105 12.094);\n\n --color-slate-50: oklch(0.984 0.003 247.858);\n --color-slate-100: oklch(0.968 0.007 247.896);\n --color-slate-200: oklch(0.929 0.013 255.508);\n --color-slate-300: oklch(0.869 0.022 252.894);\n --color-slate-400: oklch(0.704 0.04 256.788);\n --color-slate-500: oklch(0.554 0.046 257.417);\n --color-slate-600: oklch(0.446 0.043 257.281);\n --color-slate-700: oklch(0.372 0.044 257.287);\n --color-slate-800: oklch(0.279 0.041 260.031);\n --color-slate-900: oklch(0.208 0.042 265.755);\n --color-slate-950: oklch(0.129 0.042 264.695);\n\n --color-gray-50: oklch(0.985 0.002 247.839);\n --color-gray-100: oklch(0.967 0.003 264.542);\n --color-gray-200: oklch(0.928 0.006 264.531);\n --color-gray-300: oklch(0.872 0.01 258.338);\n --color-gray-400: oklch(0.707 0.022 261.325);\n --color-gray-500: oklch(0.551 0.027 264.364);\n --color-gray-600: oklch(0.446 0.03 256.802);\n --color-gray-700: oklch(0.373 0.034 259.733);\n --color-gray-800: oklch(0.278 0.033 256.848);\n --color-gray-900: oklch(0.21 0.034 264.665);\n --color-gray-950: oklch(0.13 0.028 261.692);\n\n --color-zinc-50: oklch(0.985 0 0);\n --color-zinc-100: oklch(0.967 0.001 286.375);\n --color-zinc-200: oklch(0.92 0.004 286.32);\n --color-zinc-300: oklch(0.871 0.006 286.286);\n --color-zinc-400: oklch(0.705 0.015 286.067);\n --color-zinc-500: oklch(0.552 0.016 285.938);\n --color-zinc-600: oklch(0.442 0.017 285.786);\n --color-zinc-700: oklch(0.37 0.013 285.805);\n --color-zinc-800: oklch(0.274 0.006 286.033);\n --color-zinc-900: oklch(0.21 0.006 285.885);\n --color-zinc-950: oklch(0.141 0.005 285.823);\n\n --color-neutral-50: oklch(0.985 0 0);\n --color-neutral-100: oklch(0.97 0 0);\n --color-neutral-200: oklch(0.922 0 0);\n --color-neutral-300: oklch(0.87 0 0);\n --color-neutral-400: oklch(0.708 0 0);\n --color-neutral-500: oklch(0.556 0 0);\n --color-neutral-600: oklch(0.439 0 0);\n --color-neutral-700: oklch(0.371 0 0);\n --color-neutral-800: oklch(0.269 0 0);\n --color-neutral-900: oklch(0.205 0 0);\n --color-neutral-950: oklch(0.145 0 0);\n\n --color-stone-50: oklch(0.985 0.001 106.423);\n --color-stone-100: oklch(0.97 0.001 106.424);\n --color-stone-200: oklch(0.923 0.003 48.717);\n --color-stone-300: oklch(0.869 0.005 56.366);\n --color-stone-400: oklch(0.709 0.01 56.259);\n --color-stone-500: oklch(0.553 0.013 58.071);\n --color-stone-600: oklch(0.444 0.011 73.639);\n --color-stone-700: oklch(0.374 0.01 67.558);\n --color-stone-800: oklch(0.268 0.007 34.298);\n --color-stone-900: oklch(0.216 0.006 56.043);\n --color-stone-950: oklch(0.147 0.004 49.25);\n\n --color-black: #000;\n --color-white: #fff;\n\n --spacing: 0.25rem;\n\n --breakpoint-sm: 40rem;\n --breakpoint-md: 48rem;\n --breakpoint-lg: 64rem;\n --breakpoint-xl: 80rem;\n --breakpoint-2xl: 96rem;\n\n --container-3xs: 16rem;\n --container-2xs: 18rem;\n --container-xs: 20rem;\n --container-sm: 24rem;\n --container-md: 28rem;\n --container-lg: 32rem;\n --container-xl: 36rem;\n --container-2xl: 42rem;\n --container-3xl: 48rem;\n --container-4xl: 56rem;\n --container-5xl: 64rem;\n --container-6xl: 72rem;\n --container-7xl: 80rem;\n\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --text-lg: 1.125rem;\n --text-lg--line-height: calc(1.75 / 1.125);\n --text-xl: 1.25rem;\n --text-xl--line-height: calc(1.75 / 1.25);\n --text-2xl: 1.5rem;\n --text-2xl--line-height: calc(2 / 1.5);\n --text-3xl: 1.875rem;\n --text-3xl--line-height: calc(2.25 / 1.875);\n --text-4xl: 2.25rem;\n --text-4xl--line-height: calc(2.5 / 2.25);\n --text-5xl: 3rem;\n --text-5xl--line-height: 1;\n --text-6xl: 3.75rem;\n --text-6xl--line-height: 1;\n --text-7xl: 4.5rem;\n --text-7xl--line-height: 1;\n --text-8xl: 6rem;\n --text-8xl--line-height: 1;\n --text-9xl: 8rem;\n --text-9xl--line-height: 1;\n\n --font-weight-thin: 100;\n --font-weight-extralight: 200;\n --font-weight-light: 300;\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n --font-weight-extrabold: 800;\n --font-weight-black: 900;\n\n --tracking-tighter: -0.05em;\n --tracking-tight: -0.025em;\n --tracking-normal: 0em;\n --tracking-wide: 0.025em;\n --tracking-wider: 0.05em;\n --tracking-widest: 0.1em;\n\n --leading-tight: 1.25;\n --leading-snug: 1.375;\n --leading-normal: 1.5;\n --leading-relaxed: 1.625;\n --leading-loose: 2;\n\n --radius-xs: 0.125rem;\n --radius-sm: 0.25rem;\n --radius-md: 0.375rem;\n --radius-lg: 0.5rem;\n --radius-xl: 0.75rem;\n --radius-2xl: 1rem;\n --radius-3xl: 1.5rem;\n --radius-4xl: 2rem;\n\n --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);\n --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);\n --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);\n --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);\n\n --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);\n --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);\n --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);\n\n --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);\n --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);\n --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);\n --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);\n --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);\n --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);\n\n --ease-in: cubic-bezier(0.4, 0, 1, 1);\n --ease-out: cubic-bezier(0, 0, 0.2, 1);\n --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);\n\n --animate-spin: spin 1s linear infinite;\n --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;\n --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n --animate-bounce: bounce 1s infinite;\n\n @keyframes spin {\n to {\n transform: rotate(360deg);\n }\n }\n\n @keyframes ping {\n 75%,\n 100% {\n transform: scale(2);\n opacity: 0;\n }\n }\n\n @keyframes pulse {\n 50% {\n opacity: 0.5;\n }\n }\n\n @keyframes bounce {\n 0%,\n 100% {\n transform: translateY(-25%);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n\n 50% {\n transform: none;\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n }\n\n --blur-xs: 4px;\n --blur-sm: 8px;\n --blur-md: 12px;\n --blur-lg: 16px;\n --blur-xl: 24px;\n --blur-2xl: 40px;\n --blur-3xl: 64px;\n\n --perspective-dramatic: 100px;\n --perspective-near: 300px;\n --perspective-normal: 500px;\n --perspective-midrange: 800px;\n --perspective-distant: 1200px;\n\n --aspect-video: 16 / 9;\n\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-font-feature-settings: var(--font-sans--font-feature-settings);\n --default-font-variation-settings: var(--font-sans--font-variation-settings);\n --default-mono-font-family: var(--font-mono);\n --default-mono-font-feature-settings: var(--font-mono--font-feature-settings);\n --default-mono-font-variation-settings: var(--font-mono--font-variation-settings);\n}\n\n/* Deprecated */\n@theme default inline reference {\n --blur: 8px;\n --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);\n --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);\n --radius: 0.25rem;\n --max-width-prose: 65ch;\n}\n";
|
|
18682
|
+
;// ./node_modules/tailwindcss/utilities.css
|
|
18683
|
+
const utilities_namespaceObject = "@tailwind utilities;\n";
|
|
18684
|
+
;// ./utils/tailwind-compiler.ts
|
|
18685
|
+
|
|
18686
|
+
|
|
18687
|
+
|
|
18688
|
+
// @ts-expect-error - these are being imported as strings
|
|
18689
|
+
|
|
18690
|
+
// @ts-expect-error - these are being imported as strings
|
|
18691
|
+
|
|
18692
|
+
// @ts-expect-error - these are being imported as strings
|
|
18693
|
+
|
|
18694
|
+
// @ts-expect-error - these are being imported as strings
|
|
18695
|
+
|
|
18696
|
+
/*
|
|
18697
|
+
* @note: This is mostly copied from @tailwindcss/browser
|
|
18698
|
+
*/
|
|
18699
|
+
async function loadStylesheet(id, base) {
|
|
18700
|
+
function load() {
|
|
18701
|
+
if (id === 'tailwindcss') {
|
|
18702
|
+
return {
|
|
18703
|
+
base,
|
|
18704
|
+
content: tailwindcss_namespaceObject,
|
|
18705
|
+
};
|
|
18706
|
+
}
|
|
18707
|
+
else if (id === 'tailwindcss/preflight' || id === 'tailwindcss/preflight.css' || id === './preflight.css') {
|
|
18708
|
+
return {
|
|
18709
|
+
base,
|
|
18710
|
+
content: preflight_namespaceObject,
|
|
18711
|
+
};
|
|
18712
|
+
}
|
|
18713
|
+
else if (id === 'tailwindcss/theme' || id === 'tailwindcss/theme.css' || id === './theme.css') {
|
|
18714
|
+
return {
|
|
18715
|
+
base,
|
|
18716
|
+
content: theme_namespaceObject,
|
|
18717
|
+
};
|
|
18718
|
+
}
|
|
18719
|
+
else if (id === 'tailwindcss/utilities' || id === 'tailwindcss/utilities.css' || id === './utilities.css') {
|
|
18720
|
+
return {
|
|
18721
|
+
base,
|
|
18722
|
+
content: utilities_namespaceObject,
|
|
18723
|
+
};
|
|
18724
|
+
}
|
|
18725
|
+
throw new Error(`The browser build does not support @import for "${id}"`);
|
|
18726
|
+
}
|
|
18727
|
+
const sheet = load();
|
|
18728
|
+
return sheet;
|
|
18729
|
+
}
|
|
18730
|
+
async function loadModule() {
|
|
18731
|
+
throw new Error('The browser build does not support plugins or config files.');
|
|
18732
|
+
}
|
|
18733
|
+
async function createCompiler() {
|
|
18734
|
+
const css = `
|
|
18735
|
+
@layer theme, base, components, utilities;
|
|
18736
|
+
|
|
18737
|
+
@import "tailwindcss/theme.css" layer(theme);
|
|
18738
|
+
@import "tailwindcss/utilities.css" layer(utilities);
|
|
18739
|
+
`;
|
|
18740
|
+
return tl(css, {
|
|
18741
|
+
base: '/',
|
|
18742
|
+
loadStylesheet,
|
|
18743
|
+
loadModule,
|
|
18744
|
+
});
|
|
18745
|
+
}
|
|
18746
|
+
async function tailwindCompiler(classes, { prefix }) {
|
|
18747
|
+
const compiler = await createCompiler();
|
|
18748
|
+
const css = compiler.build(Array.from(classes));
|
|
18749
|
+
return lib_postcss([postcss_prefix_selector_default()({ prefix })]).process(css, { from: undefined });
|
|
18750
|
+
}
|
|
18751
|
+
|
|
18752
|
+
;// ./components/TailwindStyle/index.tsx
|
|
18753
|
+
|
|
18754
|
+
|
|
18755
|
+
|
|
18756
|
+
|
|
18757
|
+
const traverse = (node, callback) => {
|
|
18758
|
+
callback(node);
|
|
18759
|
+
node.childNodes.forEach(child => {
|
|
18760
|
+
traverse(child, callback);
|
|
18761
|
+
});
|
|
18762
|
+
};
|
|
18763
|
+
const TailwindStyle = () => {
|
|
18764
|
+
const [stylesheet, setStylesheet] = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useState)('');
|
|
18765
|
+
const hasDom = typeof document !== 'undefined';
|
|
18766
|
+
const classes = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useRef)(new Set());
|
|
18767
|
+
const addClasses = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useCallback)((element) => {
|
|
18768
|
+
if (!(element instanceof HTMLElement))
|
|
18769
|
+
return;
|
|
18770
|
+
element.classList.forEach(className => {
|
|
18771
|
+
classes.current.add(className);
|
|
18772
|
+
});
|
|
18773
|
+
}, []);
|
|
18774
|
+
const updateStylesheet = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useCallback)(async () => {
|
|
18775
|
+
const sheet = await tailwindCompiler(Array.from(classes.current), { prefix: `.${tailwindPrefix}` });
|
|
18776
|
+
setStylesheet(sheet.css);
|
|
18777
|
+
}, []);
|
|
18778
|
+
// Set up mutation observer to update classes
|
|
18779
|
+
(0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useEffect)(() => {
|
|
18780
|
+
if (!hasDom)
|
|
18781
|
+
return;
|
|
18782
|
+
const observer = new MutationObserver((records) => {
|
|
18783
|
+
let shouldUpdate = false;
|
|
18784
|
+
records.forEach(record => {
|
|
18785
|
+
if (record.type === 'childList') {
|
|
18786
|
+
record.addedNodes.forEach(node => {
|
|
18787
|
+
if (!(node instanceof HTMLElement) || !node.classList.contains(tailwindPrefix))
|
|
18788
|
+
return;
|
|
18789
|
+
traverse(node, addClasses);
|
|
18790
|
+
shouldUpdate = true;
|
|
18791
|
+
});
|
|
18792
|
+
}
|
|
18793
|
+
else if (record.type === 'attributes') {
|
|
18794
|
+
if (record.attributeName !== 'class' || !(record.target instanceof HTMLElement))
|
|
18795
|
+
return;
|
|
18796
|
+
addClasses(record.target);
|
|
18797
|
+
shouldUpdate = true;
|
|
18798
|
+
}
|
|
18799
|
+
if (shouldUpdate) {
|
|
18800
|
+
updateStylesheet();
|
|
18801
|
+
}
|
|
18802
|
+
});
|
|
18803
|
+
});
|
|
18804
|
+
observer.observe(document.body, {
|
|
18805
|
+
subtree: true,
|
|
18806
|
+
childList: true,
|
|
18807
|
+
attributes: true,
|
|
18808
|
+
attributeFilter: ['class'],
|
|
18809
|
+
});
|
|
18810
|
+
// eslint-disable-next-line consistent-return
|
|
18811
|
+
return () => observer.disconnect();
|
|
18812
|
+
}, [addClasses, hasDom, updateStylesheet]);
|
|
18813
|
+
return hasDom ? ((0,external_amd_react_dom_commonjs2_react_dom_commonjs_react_dom_root_ReactDOM_umd_react_dom_.createPortal)(external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("style", { "data-tailwind-stylesheet": true }, stylesheet), document.head)) : (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("style", { "data-tailwind-stylesheet": true }, stylesheet));
|
|
18814
|
+
};
|
|
18815
|
+
/* harmony default export */ const components_TailwindStyle = (TailwindStyle);
|
|
18816
|
+
|
|
18605
18817
|
;// ./components/index.ts
|
|
18606
18818
|
|
|
18607
18819
|
|
|
@@ -22587,7 +22799,7 @@ function tokenizeThematicBreak(effects, ok, nok) {
|
|
|
22587
22799
|
|
|
22588
22800
|
|
|
22589
22801
|
/** @type {Construct} */
|
|
22590
|
-
const
|
|
22802
|
+
const list_list = {
|
|
22591
22803
|
name: 'list',
|
|
22592
22804
|
tokenize: tokenizeListStart,
|
|
22593
22805
|
continuation: {
|
|
@@ -22770,7 +22982,7 @@ function tokenizeListContinuation(effects, ok, nok) {
|
|
|
22770
22982
|
|
|
22771
22983
|
return factorySpace(
|
|
22772
22984
|
effects,
|
|
22773
|
-
effects.attempt(
|
|
22985
|
+
effects.attempt(list_list, ok, nok),
|
|
22774
22986
|
'linePrefix',
|
|
22775
22987
|
self.parser.constructs.disable.null.includes('codeIndented')
|
|
22776
22988
|
? undefined
|
|
@@ -28574,19 +28786,19 @@ function tokenizeCodeText(effects, ok, nok) {
|
|
|
28574
28786
|
|
|
28575
28787
|
/** @satisfies {Extension['document']} */
|
|
28576
28788
|
const constructs_document = {
|
|
28577
|
-
[42]:
|
|
28578
|
-
[43]:
|
|
28579
|
-
[45]:
|
|
28580
|
-
[48]:
|
|
28581
|
-
[49]:
|
|
28582
|
-
[50]:
|
|
28583
|
-
[51]:
|
|
28584
|
-
[52]:
|
|
28585
|
-
[53]:
|
|
28586
|
-
[54]:
|
|
28587
|
-
[55]:
|
|
28588
|
-
[56]:
|
|
28589
|
-
[57]:
|
|
28789
|
+
[42]: list_list,
|
|
28790
|
+
[43]: list_list,
|
|
28791
|
+
[45]: list_list,
|
|
28792
|
+
[48]: list_list,
|
|
28793
|
+
[49]: list_list,
|
|
28794
|
+
[50]: list_list,
|
|
28795
|
+
[51]: list_list,
|
|
28796
|
+
[52]: list_list,
|
|
28797
|
+
[53]: list_list,
|
|
28798
|
+
[54]: list_list,
|
|
28799
|
+
[55]: list_list,
|
|
28800
|
+
[56]: list_list,
|
|
28801
|
+
[57]: list_list,
|
|
28590
28802
|
[62]: blockQuote
|
|
28591
28803
|
}
|
|
28592
28804
|
|
|
@@ -28672,7 +28884,7 @@ const disable = {
|
|
|
28672
28884
|
* @param {ParseOptions | null | undefined} [options]
|
|
28673
28885
|
* @returns {ParseContext}
|
|
28674
28886
|
*/
|
|
28675
|
-
function
|
|
28887
|
+
function parse_parse(options) {
|
|
28676
28888
|
const settings = options || {}
|
|
28677
28889
|
const constructs =
|
|
28678
28890
|
/** @type {FullNormalizedExtension} */
|
|
@@ -29156,7 +29368,7 @@ function fromMarkdown(value, encoding, options) {
|
|
|
29156
29368
|
}
|
|
29157
29369
|
return compiler(options)(
|
|
29158
29370
|
postprocess(
|
|
29159
|
-
|
|
29371
|
+
parse_parse(options).document().write(preprocess()(value, encoding, true))
|
|
29160
29372
|
)
|
|
29161
29373
|
)
|
|
29162
29374
|
}
|
|
@@ -31847,7 +32059,7 @@ function checkRule(state) {
|
|
|
31847
32059
|
* @param {Info} info
|
|
31848
32060
|
* @returns {string}
|
|
31849
32061
|
*/
|
|
31850
|
-
function
|
|
32062
|
+
function handle_list_list(node, parent, state, info) {
|
|
31851
32063
|
const exit = state.enter('list')
|
|
31852
32064
|
const bulletCurrent = state.bulletCurrent
|
|
31853
32065
|
/** @type {string} */
|
|
@@ -32102,7 +32314,7 @@ const phrasing =
|
|
|
32102
32314
|
* @param {Info} info
|
|
32103
32315
|
* @returns {string}
|
|
32104
32316
|
*/
|
|
32105
|
-
function
|
|
32317
|
+
function root_root(node, _, state, info) {
|
|
32106
32318
|
// Note: `html` nodes are ambiguous.
|
|
32107
32319
|
const hasPhrasing = node.children.some(function (d) {
|
|
32108
32320
|
return phrasing(d)
|
|
@@ -32307,10 +32519,10 @@ const handle = {
|
|
|
32307
32519
|
inlineCode: inlineCode,
|
|
32308
32520
|
link: link_link,
|
|
32309
32521
|
linkReference: linkReference,
|
|
32310
|
-
list:
|
|
32522
|
+
list: handle_list_list,
|
|
32311
32523
|
listItem: listItem,
|
|
32312
32524
|
paragraph: paragraph,
|
|
32313
|
-
root:
|
|
32525
|
+
root: root_root,
|
|
32314
32526
|
strong: strong,
|
|
32315
32527
|
text: handle_text_text,
|
|
32316
32528
|
thematicBreak: thematic_break_thematicBreak
|
|
@@ -35517,7 +35729,7 @@ const unified_lib_own = {}.hasOwnProperty
|
|
|
35517
35729
|
* Output of `stringify` (optional).
|
|
35518
35730
|
* @extends {CallableInstance<[], Processor<ParseTree, HeadTree, TailTree, CompileTree, CompileResult>>}
|
|
35519
35731
|
*/
|
|
35520
|
-
class
|
|
35732
|
+
class lib_Processor extends CallableInstance {
|
|
35521
35733
|
/**
|
|
35522
35734
|
* Create a processor.
|
|
35523
35735
|
*/
|
|
@@ -35640,7 +35852,7 @@ class Processor extends CallableInstance {
|
|
|
35640
35852
|
// Cast as the type parameters will be the same after attaching.
|
|
35641
35853
|
const destination =
|
|
35642
35854
|
/** @type {Processor<ParseTree, HeadTree, TailTree, CompileTree, CompileResult>} */ (
|
|
35643
|
-
new
|
|
35855
|
+
new lib_Processor()
|
|
35644
35856
|
)
|
|
35645
35857
|
let index = -1
|
|
35646
35858
|
|
|
@@ -36342,7 +36554,7 @@ class Processor extends CallableInstance {
|
|
|
36342
36554
|
* When the descendant processor is configured in the future it does not
|
|
36343
36555
|
* affect the ancestral processor.
|
|
36344
36556
|
*/
|
|
36345
|
-
const unified = new
|
|
36557
|
+
const unified = new lib_Processor().freeze()
|
|
36346
36558
|
|
|
36347
36559
|
/**
|
|
36348
36560
|
* Assert a parser is available.
|
|
@@ -47693,7 +47905,7 @@ pp$3.currentThisScope = function() {
|
|
|
47693
47905
|
}
|
|
47694
47906
|
};
|
|
47695
47907
|
|
|
47696
|
-
var
|
|
47908
|
+
var acorn_Node = function Node(parser, pos, loc) {
|
|
47697
47909
|
this.type = "";
|
|
47698
47910
|
this.start = pos;
|
|
47699
47911
|
this.end = 0;
|
|
@@ -47710,11 +47922,11 @@ var Node = function Node(parser, pos, loc) {
|
|
|
47710
47922
|
var pp$2 = Parser.prototype;
|
|
47711
47923
|
|
|
47712
47924
|
pp$2.startNode = function() {
|
|
47713
|
-
return new
|
|
47925
|
+
return new acorn_Node(this, this.start, this.startLoc)
|
|
47714
47926
|
};
|
|
47715
47927
|
|
|
47716
47928
|
pp$2.startNodeAt = function(pos, loc) {
|
|
47717
|
-
return new
|
|
47929
|
+
return new acorn_Node(this, pos, loc)
|
|
47718
47930
|
};
|
|
47719
47931
|
|
|
47720
47932
|
// Finish an AST node, adding `type` and `end` properties.
|
|
@@ -47740,7 +47952,7 @@ pp$2.finishNodeAt = function(node, type, pos, loc) {
|
|
|
47740
47952
|
};
|
|
47741
47953
|
|
|
47742
47954
|
pp$2.copyNode = function(node) {
|
|
47743
|
-
var newNode = new
|
|
47955
|
+
var newNode = new acorn_Node(this, node.start, this.startLoc);
|
|
47744
47956
|
for (var prop in node) { newNode[prop] = node[prop]; }
|
|
47745
47957
|
return newNode
|
|
47746
47958
|
};
|
|
@@ -50003,7 +50215,7 @@ Parser.acorn = {
|
|
|
50003
50215
|
Position: Position,
|
|
50004
50216
|
SourceLocation: SourceLocation,
|
|
50005
50217
|
getLineInfo: getLineInfo,
|
|
50006
|
-
Node:
|
|
50218
|
+
Node: acorn_Node,
|
|
50007
50219
|
TokenType: TokenType,
|
|
50008
50220
|
tokTypes: types$1,
|
|
50009
50221
|
keywordTypes: keywords,
|
|
@@ -70841,1040 +71053,220 @@ const tablesToJsx = () => tree => {
|
|
|
70841
71053
|
};
|
|
70842
71054
|
/* harmony default export */ const tables_to_jsx = (tablesToJsx);
|
|
70843
71055
|
|
|
70844
|
-
;// ./
|
|
70845
|
-
|
|
70846
|
-
|
|
70847
|
-
|
|
70848
|
-
|
|
70849
|
-
|
|
70850
|
-
|
|
70851
|
-
|
|
70852
|
-
|
|
70853
|
-
|
|
70854
|
-
|
|
70855
|
-
|
|
70856
|
-
/**
|
|
70857
|
-
* Create an ESTree literal node for a given value.
|
|
70858
|
-
*
|
|
70859
|
-
* @param value
|
|
70860
|
-
* The value for which to create a literal.
|
|
70861
|
-
* @returns
|
|
70862
|
-
* The literal node.
|
|
70863
|
-
*/
|
|
70864
|
-
function estree_util_value_to_estree_literal(value) {
|
|
70865
|
-
return { type: 'Literal', value };
|
|
70866
|
-
}
|
|
70867
|
-
/**
|
|
70868
|
-
* Create an ESTree call expression on an object member.
|
|
70869
|
-
*
|
|
70870
|
-
* @param object
|
|
70871
|
-
* The object to call the method on.
|
|
70872
|
-
* @param name
|
|
70873
|
-
* The name of the method to call.
|
|
70874
|
-
* @param args
|
|
70875
|
-
* Arguments to pass to the function call
|
|
70876
|
-
* @returns
|
|
70877
|
-
* The call expression node.
|
|
70878
|
-
*/
|
|
70879
|
-
function methodCall(object, name, args) {
|
|
70880
|
-
return {
|
|
70881
|
-
type: 'CallExpression',
|
|
70882
|
-
optional: false,
|
|
70883
|
-
callee: {
|
|
70884
|
-
type: 'MemberExpression',
|
|
70885
|
-
computed: false,
|
|
70886
|
-
optional: false,
|
|
70887
|
-
object,
|
|
70888
|
-
property: identifier(name)
|
|
70889
|
-
},
|
|
70890
|
-
arguments: args
|
|
71056
|
+
;// ./processor/transform/tailwind.tsx
|
|
71057
|
+
|
|
71058
|
+
|
|
71059
|
+
const injectTailwindRoot = ({ components = {} }) => (node, index, parent) => {
|
|
71060
|
+
if (!('name' in node))
|
|
71061
|
+
return;
|
|
71062
|
+
if (!(node.name in components))
|
|
71063
|
+
return;
|
|
71064
|
+
if (!('children' in parent))
|
|
71065
|
+
return;
|
|
71066
|
+
const attrs = {
|
|
71067
|
+
flow: node.type === 'mdxJsxFlowElement',
|
|
70891
71068
|
};
|
|
70892
|
-
|
|
71069
|
+
const wrapper = {
|
|
71070
|
+
type: node.type,
|
|
71071
|
+
name: 'TailwindRoot',
|
|
71072
|
+
attributes: toAttributes(attrs),
|
|
71073
|
+
children: [node],
|
|
71074
|
+
};
|
|
71075
|
+
parent.children.splice(index, 1, wrapper);
|
|
71076
|
+
// eslint-disable-next-line consistent-return
|
|
71077
|
+
return SKIP;
|
|
71078
|
+
};
|
|
71079
|
+
const tailwind = ({ components }) => (tree, vfile) => {
|
|
71080
|
+
const localComponents = getExports(tree).reduce((acc, name) => {
|
|
71081
|
+
acc[name] = String(vfile);
|
|
71082
|
+
return acc;
|
|
71083
|
+
}, {});
|
|
71084
|
+
visit(tree, isMDXElement, injectTailwindRoot({ components: { ...components, ...localComponents } }));
|
|
71085
|
+
return tree;
|
|
71086
|
+
};
|
|
71087
|
+
/* harmony default export */ const transform_tailwind = (tailwind);
|
|
71088
|
+
|
|
71089
|
+
;// ./processor/transform/variables.ts
|
|
71090
|
+
|
|
71091
|
+
|
|
71092
|
+
const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
71093
|
+
visit(tree, (node, index, parent) => {
|
|
71094
|
+
if (!['mdxFlowExpression', 'mdxTextExpression'].includes(node.type) || !('value' in node))
|
|
71095
|
+
return;
|
|
71096
|
+
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
71097
|
+
if (node.data.estree.type !== 'Program')
|
|
71098
|
+
return;
|
|
71099
|
+
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
71100
|
+
const [expression] = node.data.estree.body;
|
|
71101
|
+
if (!expression ||
|
|
71102
|
+
expression.type !== 'ExpressionStatement' ||
|
|
71103
|
+
expression.expression.object?.name !== 'user' ||
|
|
71104
|
+
!['Literal', 'Identifier'].includes(expression.expression.property?.type))
|
|
71105
|
+
return;
|
|
71106
|
+
const name = expression.expression.property.type === 'Identifier'
|
|
71107
|
+
? expression.expression.property.name
|
|
71108
|
+
: expression.expression.property.value;
|
|
71109
|
+
const variable = asMdx
|
|
71110
|
+
? {
|
|
71111
|
+
type: 'mdxJsxTextElement',
|
|
71112
|
+
name: 'Variable',
|
|
71113
|
+
attributes: [
|
|
71114
|
+
{
|
|
71115
|
+
type: 'mdxJsxAttribute',
|
|
71116
|
+
name: 'name',
|
|
71117
|
+
value: name,
|
|
71118
|
+
},
|
|
71119
|
+
],
|
|
71120
|
+
children: [],
|
|
71121
|
+
position: node.position,
|
|
71122
|
+
}
|
|
71123
|
+
: {
|
|
71124
|
+
type: NodeTypes.variable,
|
|
71125
|
+
data: {
|
|
71126
|
+
hName: 'Variable',
|
|
71127
|
+
hProperties: {
|
|
71128
|
+
name,
|
|
71129
|
+
},
|
|
71130
|
+
},
|
|
71131
|
+
value: `{${node.value}}`,
|
|
71132
|
+
position: node.position,
|
|
71133
|
+
};
|
|
71134
|
+
parent.children.splice(index, 1, variable);
|
|
71135
|
+
});
|
|
71136
|
+
return tree;
|
|
71137
|
+
};
|
|
71138
|
+
/* harmony default export */ const transform_variables = (variables);
|
|
71139
|
+
|
|
71140
|
+
;// ./processor/transform/index.ts
|
|
71141
|
+
|
|
71142
|
+
|
|
71143
|
+
|
|
71144
|
+
|
|
71145
|
+
|
|
71146
|
+
|
|
71147
|
+
|
|
71148
|
+
|
|
71149
|
+
|
|
71150
|
+
|
|
71151
|
+
|
|
71152
|
+
|
|
71153
|
+
|
|
71154
|
+
|
|
71155
|
+
|
|
71156
|
+
|
|
71157
|
+
const defaultTransforms = {
|
|
71158
|
+
calloutTransformer: callouts,
|
|
71159
|
+
codeTabsTransformer: code_tabs,
|
|
71160
|
+
embedTransformer: transform_embeds,
|
|
71161
|
+
imageTransformer: transform_images,
|
|
71162
|
+
gemojiTransformer: gemoji_,
|
|
71163
|
+
};
|
|
71164
|
+
/* harmony default export */ const transform = (Object.values(defaultTransforms));
|
|
71165
|
+
|
|
71166
|
+
;// ./lib/ast-processor.ts
|
|
71167
|
+
|
|
71168
|
+
|
|
71169
|
+
|
|
71170
|
+
|
|
71171
|
+
|
|
71172
|
+
|
|
71173
|
+
const remarkPlugins = [remarkFrontmatter, remarkGfm, ...transform];
|
|
71174
|
+
const rehypePlugins = [rehypeSlug, transform_mermaid];
|
|
71175
|
+
const astProcessor = (opts = { components: {} }) => remark()
|
|
71176
|
+
.use(remarkMdx)
|
|
71177
|
+
.use(remarkPlugins)
|
|
71178
|
+
.use(opts.remarkPlugins)
|
|
71179
|
+
.use(transform_variables, { asMdx: false })
|
|
71180
|
+
.use(readme_components({ components: opts.components }));
|
|
71181
|
+
/* harmony default export */ const ast_processor = (astProcessor);
|
|
71182
|
+
|
|
71183
|
+
;// ./node_modules/markdown-extensions/index.js
|
|
71184
|
+
// TODO: Load the JSON file when Node.js supports that.
|
|
71185
|
+
|
|
71186
|
+
const markdownExtension = [
|
|
71187
|
+
'md',
|
|
71188
|
+
'markdown',
|
|
71189
|
+
'mdown',
|
|
71190
|
+
'mkdn',
|
|
71191
|
+
'mkd',
|
|
71192
|
+
'mdwn',
|
|
71193
|
+
'mkdown',
|
|
71194
|
+
'ron',
|
|
71195
|
+
];
|
|
71196
|
+
|
|
71197
|
+
/* harmony default export */ const markdown_extensions = (markdownExtension);
|
|
71198
|
+
|
|
71199
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/extnames.js
|
|
71200
|
+
|
|
71201
|
+
|
|
71202
|
+
const md = markdown_extensions.map(function (d) {
|
|
71203
|
+
return '.' + d
|
|
71204
|
+
})
|
|
71205
|
+
const mdx = (/* unused pure expression or super */ null && (['.mdx']))
|
|
71206
|
+
|
|
71207
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
|
|
70893
71208
|
/**
|
|
70894
|
-
*
|
|
70895
|
-
*
|
|
70896
|
-
*
|
|
70897
|
-
* @param number
|
|
70898
|
-
* The value to turn into an ESTree expression.
|
|
70899
|
-
* @returns
|
|
70900
|
-
* An expression that represents the given value.
|
|
71209
|
+
* @import {Compatible} from 'vfile'
|
|
71210
|
+
* @import {CompileOptions} from '../compile.js'
|
|
71211
|
+
* @import {ProcessorOptions} from '../core.js'
|
|
70901
71212
|
*/
|
|
70902
|
-
|
|
70903
|
-
|
|
70904
|
-
|
|
70905
|
-
|
|
70906
|
-
operator: '-',
|
|
70907
|
-
prefix: true,
|
|
70908
|
-
argument: processNumber(-number)
|
|
70909
|
-
};
|
|
70910
|
-
}
|
|
70911
|
-
if (typeof number === 'bigint') {
|
|
70912
|
-
return { type: 'Literal', bigint: String(number) };
|
|
70913
|
-
}
|
|
70914
|
-
if (number === Number.POSITIVE_INFINITY || Number.isNaN(number)) {
|
|
70915
|
-
return identifier(String(number));
|
|
70916
|
-
}
|
|
70917
|
-
return estree_util_value_to_estree_literal(number);
|
|
70918
|
-
}
|
|
71213
|
+
|
|
71214
|
+
|
|
71215
|
+
|
|
71216
|
+
|
|
70919
71217
|
/**
|
|
70920
|
-
*
|
|
70921
|
-
*
|
|
71218
|
+
* Create a file and options from a given `vfileCompatible` and options that
|
|
71219
|
+
* might contain `format: 'detect'`.
|
|
70922
71220
|
*
|
|
70923
|
-
* @param
|
|
70924
|
-
*
|
|
70925
|
-
* @
|
|
70926
|
-
*
|
|
71221
|
+
* @param {Readonly<Compatible>} vfileCompatible
|
|
71222
|
+
* File.
|
|
71223
|
+
* @param {Readonly<CompileOptions> | null | undefined} [options]
|
|
71224
|
+
* Configuration (optional).
|
|
71225
|
+
* @returns {{file: VFile, options: ProcessorOptions}}
|
|
71226
|
+
* File and options.
|
|
70927
71227
|
*/
|
|
70928
|
-
function
|
|
70929
|
-
|
|
70930
|
-
|
|
70931
|
-
|
|
71228
|
+
function resolve_file_and_options_resolveFileAndOptions(vfileCompatible, options) {
|
|
71229
|
+
const file = resolve_file_and_options_looksLikeAVFile(vfileCompatible)
|
|
71230
|
+
? vfileCompatible
|
|
71231
|
+
: new VFile(vfileCompatible)
|
|
71232
|
+
const {format, ...rest} = options || {}
|
|
71233
|
+
return {
|
|
71234
|
+
file,
|
|
71235
|
+
options: {
|
|
71236
|
+
format:
|
|
71237
|
+
format === 'md' || format === 'mdx'
|
|
71238
|
+
? format
|
|
71239
|
+
: file.extname && (rest.mdExtensions || md).includes(file.extname)
|
|
71240
|
+
? 'md'
|
|
71241
|
+
: 'mdx',
|
|
71242
|
+
...rest
|
|
70932
71243
|
}
|
|
70933
|
-
|
|
71244
|
+
}
|
|
70934
71245
|
}
|
|
71246
|
+
|
|
70935
71247
|
/**
|
|
70936
|
-
*
|
|
70937
|
-
*
|
|
70938
|
-
* @
|
|
70939
|
-
*
|
|
70940
|
-
* @returns
|
|
70941
|
-
* Whether or not the value can be constructed from its string representation.
|
|
71248
|
+
* @param {Readonly<Compatible> | null | undefined} [value]
|
|
71249
|
+
* Thing.
|
|
71250
|
+
* @returns {value is VFile}
|
|
71251
|
+
* Check.
|
|
70942
71252
|
*/
|
|
70943
|
-
function
|
|
70944
|
-
|
|
71253
|
+
function resolve_file_and_options_looksLikeAVFile(value) {
|
|
71254
|
+
return Boolean(
|
|
71255
|
+
value &&
|
|
71256
|
+
typeof value === 'object' &&
|
|
71257
|
+
'message' in value &&
|
|
71258
|
+
'messages' in value
|
|
71259
|
+
)
|
|
70945
71260
|
}
|
|
71261
|
+
|
|
71262
|
+
;// ./node_modules/estree-walker/src/walker.js
|
|
70946
71263
|
/**
|
|
70947
|
-
*
|
|
70948
|
-
*
|
|
70949
|
-
*
|
|
70950
|
-
*
|
|
70951
|
-
*
|
|
70952
|
-
*
|
|
70953
|
-
*/
|
|
70954
|
-
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
70955
|
-
function isValueReconstructable(value) {
|
|
70956
|
-
return (value instanceof Boolean ||
|
|
70957
|
-
value instanceof Date ||
|
|
70958
|
-
value instanceof Number ||
|
|
70959
|
-
value instanceof String);
|
|
70960
|
-
}
|
|
70961
|
-
const wellKnownSymbols = new Map();
|
|
70962
|
-
for (const name of Reflect.ownKeys(Symbol)) {
|
|
70963
|
-
const value = Symbol[name];
|
|
70964
|
-
if (typeof value === 'symbol') {
|
|
70965
|
-
wellKnownSymbols.set(value, name);
|
|
70966
|
-
}
|
|
70967
|
-
}
|
|
70968
|
-
/**
|
|
70969
|
-
* Check whether a value is a typed array.
|
|
70970
|
-
*
|
|
70971
|
-
* @param value
|
|
70972
|
-
* The value to check
|
|
70973
|
-
* @returns
|
|
70974
|
-
* Whether or not the value is a typed array.
|
|
70975
|
-
*/
|
|
70976
|
-
function isTypedArray(value) {
|
|
70977
|
-
return (value instanceof BigInt64Array ||
|
|
70978
|
-
value instanceof BigUint64Array ||
|
|
70979
|
-
value instanceof Float32Array ||
|
|
70980
|
-
value instanceof Float64Array ||
|
|
70981
|
-
value instanceof Int8Array ||
|
|
70982
|
-
value instanceof Int16Array ||
|
|
70983
|
-
value instanceof Int32Array ||
|
|
70984
|
-
value instanceof Uint8Array ||
|
|
70985
|
-
value instanceof Uint8ClampedArray ||
|
|
70986
|
-
value instanceof Uint16Array ||
|
|
70987
|
-
value instanceof Uint32Array);
|
|
70988
|
-
}
|
|
70989
|
-
/**
|
|
70990
|
-
* Compare two value contexts for sorting them based on reference count.
|
|
70991
|
-
*
|
|
70992
|
-
* @param a
|
|
70993
|
-
* The first context to compare.
|
|
70994
|
-
* @param b
|
|
70995
|
-
* The second context to compare.
|
|
70996
|
-
* @returns
|
|
70997
|
-
* The count of context a minus the count of context b.
|
|
70998
|
-
*/
|
|
70999
|
-
function compareContexts(a, b) {
|
|
71000
|
-
const aReferencedByB = a.referencedBy.has(b.value);
|
|
71001
|
-
const bReferencedByA = b.referencedBy.has(a.value);
|
|
71002
|
-
if (aReferencedByB) {
|
|
71003
|
-
if (bReferencedByA) {
|
|
71004
|
-
return a.count - b.count;
|
|
71005
|
-
}
|
|
71006
|
-
return -1;
|
|
71007
|
-
}
|
|
71008
|
-
if (bReferencedByA) {
|
|
71009
|
-
return 1;
|
|
71010
|
-
}
|
|
71011
|
-
return a.count - b.count;
|
|
71012
|
-
}
|
|
71013
|
-
/**
|
|
71014
|
-
* Replace the assigned right hand expression with the new expression.
|
|
71015
|
-
*
|
|
71016
|
-
* If there is no assignment expression, the original expression is returned. Otherwise the
|
|
71017
|
-
* assignment is modified and returned,
|
|
71018
|
-
*
|
|
71019
|
-
* @param expression
|
|
71020
|
-
* The expression to use for the assignment.
|
|
71021
|
-
* @param assignment
|
|
71022
|
-
* The existing assignmentexpression
|
|
71023
|
-
* @returns
|
|
71024
|
-
* The new expression.
|
|
71025
|
-
*/
|
|
71026
|
-
function replaceAssignment(expression, assignment) {
|
|
71027
|
-
if (!assignment || assignment.type !== 'AssignmentExpression') {
|
|
71028
|
-
return expression;
|
|
71029
|
-
}
|
|
71030
|
-
let node = assignment;
|
|
71031
|
-
while (node.right.type === 'AssignmentExpression') {
|
|
71032
|
-
node = node.right;
|
|
71033
|
-
}
|
|
71034
|
-
node.right = expression;
|
|
71035
|
-
return assignment;
|
|
71036
|
-
}
|
|
71037
|
-
/**
|
|
71038
|
-
* Create an ESTree epxression to represent a symbol. Global and well-known symbols are supported.
|
|
71039
|
-
*
|
|
71040
|
-
* @param symbol
|
|
71041
|
-
* THe symbol to represent.
|
|
71042
|
-
* @returns
|
|
71043
|
-
* An ESTree expression to represent the symbol.
|
|
71044
|
-
*/
|
|
71045
|
-
function symbolToEstree(symbol) {
|
|
71046
|
-
const name = wellKnownSymbols.get(symbol);
|
|
71047
|
-
if (name) {
|
|
71048
|
-
return {
|
|
71049
|
-
type: 'MemberExpression',
|
|
71050
|
-
computed: false,
|
|
71051
|
-
optional: false,
|
|
71052
|
-
object: identifier('Symbol'),
|
|
71053
|
-
property: identifier(name)
|
|
71054
|
-
};
|
|
71055
|
-
}
|
|
71056
|
-
if (symbol.description && symbol === Symbol.for(symbol.description)) {
|
|
71057
|
-
return methodCall(identifier('Symbol'), 'for', [estree_util_value_to_estree_literal(symbol.description)]);
|
|
71058
|
-
}
|
|
71059
|
-
throw new TypeError(`Only global symbols are supported, got: ${String(symbol)}`, {
|
|
71060
|
-
cause: symbol
|
|
71061
|
-
});
|
|
71062
|
-
}
|
|
71063
|
-
/**
|
|
71064
|
-
* Create an ESTree property from a key and a value expression.
|
|
71065
|
-
*
|
|
71066
|
-
* @param key
|
|
71067
|
-
* The property key value
|
|
71068
|
-
* @param value
|
|
71069
|
-
* The property value as an ESTree expression.
|
|
71070
|
-
* @returns
|
|
71071
|
-
* The ESTree properry node.
|
|
71072
|
-
*/
|
|
71073
|
-
function property(key, value) {
|
|
71074
|
-
const computed = typeof key !== 'string';
|
|
71075
|
-
return {
|
|
71076
|
-
type: 'Property',
|
|
71077
|
-
method: false,
|
|
71078
|
-
shorthand: false,
|
|
71079
|
-
computed,
|
|
71080
|
-
kind: 'init',
|
|
71081
|
-
key: computed ? symbolToEstree(key) : estree_util_value_to_estree_literal(key),
|
|
71082
|
-
value
|
|
71083
|
-
};
|
|
71084
|
-
}
|
|
71085
|
-
/**
|
|
71086
|
-
* Convert a value to an ESTree node.
|
|
71087
|
-
*
|
|
71088
|
-
* @param value
|
|
71089
|
-
* The value to convert.
|
|
71090
|
-
* @param options
|
|
71091
|
-
* Additional options to configure the output.
|
|
71092
|
-
* @returns
|
|
71093
|
-
* The ESTree node.
|
|
71094
|
-
*/
|
|
71095
|
-
function valueToEstree(value, options = {}) {
|
|
71096
|
-
const stack = [];
|
|
71097
|
-
const collectedContexts = new Map();
|
|
71098
|
-
const namedContexts = [];
|
|
71099
|
-
/**
|
|
71100
|
-
* Analyze a value and collect all reference contexts.
|
|
71101
|
-
*
|
|
71102
|
-
* @param val
|
|
71103
|
-
* The value to analyze.
|
|
71104
|
-
*/
|
|
71105
|
-
function analyze(val) {
|
|
71106
|
-
if (typeof val === 'function') {
|
|
71107
|
-
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
71108
|
-
}
|
|
71109
|
-
if (typeof val !== 'object') {
|
|
71110
|
-
return;
|
|
71111
|
-
}
|
|
71112
|
-
if (val == null) {
|
|
71113
|
-
return;
|
|
71114
|
-
}
|
|
71115
|
-
const context = collectedContexts.get(val);
|
|
71116
|
-
if (context) {
|
|
71117
|
-
if (options.preserveReferences) {
|
|
71118
|
-
context.count += 1;
|
|
71119
|
-
}
|
|
71120
|
-
for (const ancestor of stack) {
|
|
71121
|
-
context.referencedBy.add(ancestor);
|
|
71122
|
-
}
|
|
71123
|
-
if (stack.includes(val)) {
|
|
71124
|
-
if (!options.preserveReferences) {
|
|
71125
|
-
throw new Error(`Found circular reference: ${val}`, { cause: val });
|
|
71126
|
-
}
|
|
71127
|
-
const parent = stack.at(-1);
|
|
71128
|
-
const parentContext = collectedContexts.get(parent);
|
|
71129
|
-
parentContext.recursive = true;
|
|
71130
|
-
context.recursive = true;
|
|
71131
|
-
}
|
|
71132
|
-
return;
|
|
71133
|
-
}
|
|
71134
|
-
collectedContexts.set(val, {
|
|
71135
|
-
count: 1,
|
|
71136
|
-
recursive: false,
|
|
71137
|
-
referencedBy: new Set(stack),
|
|
71138
|
-
value: val
|
|
71139
|
-
});
|
|
71140
|
-
if (isTypedArray(val)) {
|
|
71141
|
-
return;
|
|
71142
|
-
}
|
|
71143
|
-
if (isStringReconstructable(val)) {
|
|
71144
|
-
return;
|
|
71145
|
-
}
|
|
71146
|
-
if (isValueReconstructable(val)) {
|
|
71147
|
-
return;
|
|
71148
|
-
}
|
|
71149
|
-
if (value instanceof RegExp) {
|
|
71150
|
-
return;
|
|
71151
|
-
}
|
|
71152
|
-
stack.push(val);
|
|
71153
|
-
if (val instanceof Map) {
|
|
71154
|
-
for (const pair of val) {
|
|
71155
|
-
analyze(pair[0]);
|
|
71156
|
-
analyze(pair[1]);
|
|
71157
|
-
}
|
|
71158
|
-
}
|
|
71159
|
-
else if (Array.isArray(val) || val instanceof Set) {
|
|
71160
|
-
for (const entry of val) {
|
|
71161
|
-
analyze(entry);
|
|
71162
|
-
}
|
|
71163
|
-
}
|
|
71164
|
-
else {
|
|
71165
|
-
const proto = Object.getPrototypeOf(val);
|
|
71166
|
-
if (proto != null && proto !== Object.prototype && !options.instanceAsObject) {
|
|
71167
|
-
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
71168
|
-
}
|
|
71169
|
-
for (const key of Reflect.ownKeys(val)) {
|
|
71170
|
-
analyze(val[key]);
|
|
71171
|
-
}
|
|
71172
|
-
}
|
|
71173
|
-
stack.pop();
|
|
71174
|
-
}
|
|
71175
|
-
/**
|
|
71176
|
-
* Recursively generate the ESTree expression needed to reconstruct the value.
|
|
71177
|
-
*
|
|
71178
|
-
* @param val
|
|
71179
|
-
* The value to process.
|
|
71180
|
-
* @param isDeclaration
|
|
71181
|
-
* Whether or not this is for a variable declaration.
|
|
71182
|
-
* @returns
|
|
71183
|
-
* The ESTree expression to reconstruct the value.
|
|
71184
|
-
*/
|
|
71185
|
-
function generate(val, isDeclaration) {
|
|
71186
|
-
if (val === undefined) {
|
|
71187
|
-
return identifier(String(val));
|
|
71188
|
-
}
|
|
71189
|
-
if (val == null || typeof val === 'string' || typeof val === 'boolean') {
|
|
71190
|
-
return estree_util_value_to_estree_literal(val);
|
|
71191
|
-
}
|
|
71192
|
-
if (typeof val === 'bigint' || typeof val === 'number') {
|
|
71193
|
-
return processNumber(val);
|
|
71194
|
-
}
|
|
71195
|
-
if (typeof val === 'symbol') {
|
|
71196
|
-
return symbolToEstree(val);
|
|
71197
|
-
}
|
|
71198
|
-
const context = collectedContexts.get(val);
|
|
71199
|
-
if (!isDeclaration && context?.name) {
|
|
71200
|
-
return identifier(context.name);
|
|
71201
|
-
}
|
|
71202
|
-
if (isValueReconstructable(val)) {
|
|
71203
|
-
return {
|
|
71204
|
-
type: 'NewExpression',
|
|
71205
|
-
callee: identifier(val.constructor.name),
|
|
71206
|
-
arguments: [generate(val.valueOf())]
|
|
71207
|
-
};
|
|
71208
|
-
}
|
|
71209
|
-
if (val instanceof RegExp) {
|
|
71210
|
-
return {
|
|
71211
|
-
type: 'Literal',
|
|
71212
|
-
regex: { pattern: val.source, flags: val.flags }
|
|
71213
|
-
};
|
|
71214
|
-
}
|
|
71215
|
-
if (typeof Buffer !== 'undefined' && Buffer.isBuffer(val)) {
|
|
71216
|
-
return methodCall(identifier('Buffer'), 'from', [processNumberArray(val)]);
|
|
71217
|
-
}
|
|
71218
|
-
if (isTypedArray(val)) {
|
|
71219
|
-
return {
|
|
71220
|
-
type: 'NewExpression',
|
|
71221
|
-
callee: identifier(val.constructor.name),
|
|
71222
|
-
arguments: [processNumberArray(val)]
|
|
71223
|
-
};
|
|
71224
|
-
}
|
|
71225
|
-
if (isStringReconstructable(val)) {
|
|
71226
|
-
return {
|
|
71227
|
-
type: 'NewExpression',
|
|
71228
|
-
callee: identifier(val.constructor.name),
|
|
71229
|
-
arguments: [estree_util_value_to_estree_literal(String(val))]
|
|
71230
|
-
};
|
|
71231
|
-
}
|
|
71232
|
-
if (Array.isArray(val)) {
|
|
71233
|
-
const elements = Array.from({ length: val.length });
|
|
71234
|
-
let trimmable;
|
|
71235
|
-
for (let index = 0; index < val.length; index += 1) {
|
|
71236
|
-
if (!(index in val)) {
|
|
71237
|
-
elements[index] = null;
|
|
71238
|
-
trimmable = undefined;
|
|
71239
|
-
continue;
|
|
71240
|
-
}
|
|
71241
|
-
const child = val[index];
|
|
71242
|
-
const childContext = collectedContexts.get(child);
|
|
71243
|
-
if (context &&
|
|
71244
|
-
childContext &&
|
|
71245
|
-
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
71246
|
-
elements[index] = null;
|
|
71247
|
-
trimmable ||= index;
|
|
71248
|
-
childContext.assignment = {
|
|
71249
|
-
type: 'AssignmentExpression',
|
|
71250
|
-
operator: '=',
|
|
71251
|
-
left: {
|
|
71252
|
-
type: 'MemberExpression',
|
|
71253
|
-
computed: true,
|
|
71254
|
-
optional: false,
|
|
71255
|
-
object: identifier(context.name),
|
|
71256
|
-
property: estree_util_value_to_estree_literal(index)
|
|
71257
|
-
},
|
|
71258
|
-
right: childContext.assignment || identifier(childContext.name)
|
|
71259
|
-
};
|
|
71260
|
-
}
|
|
71261
|
-
else {
|
|
71262
|
-
elements[index] = generate(child);
|
|
71263
|
-
trimmable = undefined;
|
|
71264
|
-
}
|
|
71265
|
-
}
|
|
71266
|
-
if (trimmable != null) {
|
|
71267
|
-
elements.splice(trimmable);
|
|
71268
|
-
}
|
|
71269
|
-
return {
|
|
71270
|
-
type: 'ArrayExpression',
|
|
71271
|
-
elements
|
|
71272
|
-
};
|
|
71273
|
-
}
|
|
71274
|
-
if (val instanceof Set) {
|
|
71275
|
-
const elements = [];
|
|
71276
|
-
let finalizer;
|
|
71277
|
-
for (const child of val) {
|
|
71278
|
-
if (finalizer) {
|
|
71279
|
-
finalizer = methodCall(finalizer, 'add', [generate(child)]);
|
|
71280
|
-
}
|
|
71281
|
-
else {
|
|
71282
|
-
const childContext = collectedContexts.get(child);
|
|
71283
|
-
if (context &&
|
|
71284
|
-
childContext &&
|
|
71285
|
-
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
71286
|
-
finalizer = methodCall(identifier(context.name), 'add', [generate(child)]);
|
|
71287
|
-
}
|
|
71288
|
-
else {
|
|
71289
|
-
elements.push(generate(child));
|
|
71290
|
-
}
|
|
71291
|
-
}
|
|
71292
|
-
}
|
|
71293
|
-
if (context && finalizer) {
|
|
71294
|
-
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
71295
|
-
}
|
|
71296
|
-
return {
|
|
71297
|
-
type: 'NewExpression',
|
|
71298
|
-
callee: identifier('Set'),
|
|
71299
|
-
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
71300
|
-
};
|
|
71301
|
-
}
|
|
71302
|
-
if (val instanceof Map) {
|
|
71303
|
-
const elements = [];
|
|
71304
|
-
let finalizer;
|
|
71305
|
-
for (const [key, item] of val) {
|
|
71306
|
-
if (finalizer) {
|
|
71307
|
-
finalizer = methodCall(finalizer, 'set', [generate(key), generate(item)]);
|
|
71308
|
-
}
|
|
71309
|
-
else {
|
|
71310
|
-
const keyContext = collectedContexts.get(key);
|
|
71311
|
-
const itemContext = collectedContexts.get(item);
|
|
71312
|
-
if (context &&
|
|
71313
|
-
((keyContext && namedContexts.indexOf(keyContext) >= namedContexts.indexOf(context)) ||
|
|
71314
|
-
(itemContext && namedContexts.indexOf(itemContext) >= namedContexts.indexOf(context)))) {
|
|
71315
|
-
finalizer = methodCall(identifier(context.name), 'set', [
|
|
71316
|
-
generate(key),
|
|
71317
|
-
generate(item)
|
|
71318
|
-
]);
|
|
71319
|
-
}
|
|
71320
|
-
else {
|
|
71321
|
-
elements.push({
|
|
71322
|
-
type: 'ArrayExpression',
|
|
71323
|
-
elements: [generate(key), generate(item)]
|
|
71324
|
-
});
|
|
71325
|
-
}
|
|
71326
|
-
}
|
|
71327
|
-
}
|
|
71328
|
-
if (context && finalizer) {
|
|
71329
|
-
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
71330
|
-
}
|
|
71331
|
-
return {
|
|
71332
|
-
type: 'NewExpression',
|
|
71333
|
-
callee: identifier('Map'),
|
|
71334
|
-
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
71335
|
-
};
|
|
71336
|
-
}
|
|
71337
|
-
const properties = [];
|
|
71338
|
-
if (Object.getPrototypeOf(val) == null) {
|
|
71339
|
-
properties.push(property('__proto__', estree_util_value_to_estree_literal(null)));
|
|
71340
|
-
}
|
|
71341
|
-
const object = val;
|
|
71342
|
-
const propertyDescriptors = [];
|
|
71343
|
-
for (const key of Reflect.ownKeys(val)) {
|
|
71344
|
-
// TODO [>=4] Throw an error for getters.
|
|
71345
|
-
const child = object[key];
|
|
71346
|
-
const { configurable, enumerable, writable } = Object.getOwnPropertyDescriptor(val, key);
|
|
71347
|
-
const childContext = collectedContexts.get(child);
|
|
71348
|
-
if (!configurable || !enumerable || !writable) {
|
|
71349
|
-
const propertyDescriptor = [property('value', generate(child))];
|
|
71350
|
-
if (configurable) {
|
|
71351
|
-
propertyDescriptor.push(property('configurable', estree_util_value_to_estree_literal(true)));
|
|
71352
|
-
}
|
|
71353
|
-
if (enumerable) {
|
|
71354
|
-
propertyDescriptor.push(property('enumerable', estree_util_value_to_estree_literal(true)));
|
|
71355
|
-
}
|
|
71356
|
-
if (writable) {
|
|
71357
|
-
propertyDescriptor.push(property('writable', estree_util_value_to_estree_literal(true)));
|
|
71358
|
-
}
|
|
71359
|
-
propertyDescriptors.push(property(key, {
|
|
71360
|
-
type: 'ObjectExpression',
|
|
71361
|
-
properties: propertyDescriptor
|
|
71362
|
-
}));
|
|
71363
|
-
}
|
|
71364
|
-
else if (context &&
|
|
71365
|
-
childContext &&
|
|
71366
|
-
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
71367
|
-
childContext.assignment = {
|
|
71368
|
-
type: 'AssignmentExpression',
|
|
71369
|
-
operator: '=',
|
|
71370
|
-
left: {
|
|
71371
|
-
type: 'MemberExpression',
|
|
71372
|
-
computed: true,
|
|
71373
|
-
optional: false,
|
|
71374
|
-
object: identifier(context.name),
|
|
71375
|
-
property: generate(key)
|
|
71376
|
-
},
|
|
71377
|
-
right: childContext.assignment || generate(child)
|
|
71378
|
-
};
|
|
71379
|
-
}
|
|
71380
|
-
else {
|
|
71381
|
-
properties.push(property(key, generate(child)));
|
|
71382
|
-
}
|
|
71383
|
-
}
|
|
71384
|
-
const objectExpression = {
|
|
71385
|
-
type: 'ObjectExpression',
|
|
71386
|
-
properties
|
|
71387
|
-
};
|
|
71388
|
-
if (propertyDescriptors.length) {
|
|
71389
|
-
if (!context) {
|
|
71390
|
-
return methodCall(identifier('Object'), 'defineProperties', [
|
|
71391
|
-
objectExpression,
|
|
71392
|
-
{
|
|
71393
|
-
type: 'ObjectExpression',
|
|
71394
|
-
properties: propertyDescriptors
|
|
71395
|
-
}
|
|
71396
|
-
]);
|
|
71397
|
-
}
|
|
71398
|
-
context.assignment = replaceAssignment(methodCall(identifier('Object'), 'defineProperties', [
|
|
71399
|
-
identifier(context.name),
|
|
71400
|
-
{
|
|
71401
|
-
type: 'ObjectExpression',
|
|
71402
|
-
properties: propertyDescriptors
|
|
71403
|
-
}
|
|
71404
|
-
]), context.assignment);
|
|
71405
|
-
}
|
|
71406
|
-
return objectExpression;
|
|
71407
|
-
}
|
|
71408
|
-
analyze(value);
|
|
71409
|
-
for (const [val, context] of collectedContexts) {
|
|
71410
|
-
if (context.recursive || context.count > 1) {
|
|
71411
|
-
// Assign reused or recursive references to a variable.
|
|
71412
|
-
context.name = `$${namedContexts.length}`;
|
|
71413
|
-
namedContexts.push(context);
|
|
71414
|
-
}
|
|
71415
|
-
else {
|
|
71416
|
-
// Otherwise don’t treat it as a reference.
|
|
71417
|
-
collectedContexts.delete(val);
|
|
71418
|
-
}
|
|
71419
|
-
}
|
|
71420
|
-
if (!namedContexts.length) {
|
|
71421
|
-
return generate(value);
|
|
71422
|
-
}
|
|
71423
|
-
const declarations = namedContexts.sort(compareContexts).map((context) => ({
|
|
71424
|
-
type: 'VariableDeclarator',
|
|
71425
|
-
id: identifier(context.name),
|
|
71426
|
-
init: generate(context.value, true)
|
|
71427
|
-
}));
|
|
71428
|
-
const rootContext = collectedContexts.get(value);
|
|
71429
|
-
const finalizers = [];
|
|
71430
|
-
for (const context of collectedContexts.values()) {
|
|
71431
|
-
if (context !== rootContext && context.assignment) {
|
|
71432
|
-
finalizers.push(context.assignment);
|
|
71433
|
-
}
|
|
71434
|
-
}
|
|
71435
|
-
finalizers.push(rootContext ? rootContext.assignment || identifier(rootContext.name) : generate(value));
|
|
71436
|
-
return {
|
|
71437
|
-
type: 'CallExpression',
|
|
71438
|
-
optional: false,
|
|
71439
|
-
arguments: [],
|
|
71440
|
-
callee: {
|
|
71441
|
-
type: 'ArrowFunctionExpression',
|
|
71442
|
-
expression: false,
|
|
71443
|
-
params: [],
|
|
71444
|
-
body: {
|
|
71445
|
-
type: 'BlockStatement',
|
|
71446
|
-
body: [
|
|
71447
|
-
{
|
|
71448
|
-
type: 'VariableDeclaration',
|
|
71449
|
-
kind: 'const',
|
|
71450
|
-
declarations
|
|
71451
|
-
},
|
|
71452
|
-
{
|
|
71453
|
-
type: 'ReturnStatement',
|
|
71454
|
-
argument: {
|
|
71455
|
-
type: 'SequenceExpression',
|
|
71456
|
-
expressions: finalizers
|
|
71457
|
-
}
|
|
71458
|
-
}
|
|
71459
|
-
]
|
|
71460
|
-
}
|
|
71461
|
-
}
|
|
71462
|
-
};
|
|
71463
|
-
}
|
|
71464
|
-
//# sourceMappingURL=estree-util-value-to-estree.js.map
|
|
71465
|
-
// EXTERNAL MODULE: ./node_modules/postcss/lib/postcss.js
|
|
71466
|
-
var postcss = __webpack_require__(2895);
|
|
71467
|
-
var postcss_default = /*#__PURE__*/__webpack_require__.n(postcss);
|
|
71468
|
-
;// ./node_modules/postcss/lib/postcss.mjs
|
|
71469
|
-
|
|
71470
|
-
|
|
71471
|
-
/* harmony default export */ const lib_postcss = ((postcss_default()));
|
|
71472
|
-
|
|
71473
|
-
const stringify = (postcss_default()).stringify
|
|
71474
|
-
const fromJSON = (postcss_default()).fromJSON
|
|
71475
|
-
const postcss_plugin = (postcss_default()).plugin
|
|
71476
|
-
const postcss_parse = (postcss_default()).parse
|
|
71477
|
-
const postcss_list = (postcss_default()).list
|
|
71478
|
-
|
|
71479
|
-
const postcss_document = (postcss_default()).document
|
|
71480
|
-
const comment = (postcss_default()).comment
|
|
71481
|
-
const atRule = (postcss_default()).atRule
|
|
71482
|
-
const rule = (postcss_default()).rule
|
|
71483
|
-
const decl = (postcss_default()).decl
|
|
71484
|
-
const postcss_root = (postcss_default()).root
|
|
71485
|
-
|
|
71486
|
-
const CssSyntaxError = (postcss_default()).CssSyntaxError
|
|
71487
|
-
const Declaration = (postcss_default()).Declaration
|
|
71488
|
-
const Container = (postcss_default()).Container
|
|
71489
|
-
const postcss_Processor = (postcss_default()).Processor
|
|
71490
|
-
const Document = (postcss_default()).Document
|
|
71491
|
-
const Comment = (postcss_default()).Comment
|
|
71492
|
-
const Warning = (postcss_default()).Warning
|
|
71493
|
-
const AtRule = (postcss_default()).AtRule
|
|
71494
|
-
const Result = (postcss_default()).Result
|
|
71495
|
-
const Input = (postcss_default()).Input
|
|
71496
|
-
const Rule = (postcss_default()).Rule
|
|
71497
|
-
const Root = (postcss_default()).Root
|
|
71498
|
-
const postcss_Node = (postcss_default()).Node
|
|
71499
|
-
|
|
71500
|
-
// EXTERNAL MODULE: ./node_modules/postcss-prefix-selector/index.js
|
|
71501
|
-
var postcss_prefix_selector = __webpack_require__(9193);
|
|
71502
|
-
var postcss_prefix_selector_default = /*#__PURE__*/__webpack_require__.n(postcss_prefix_selector);
|
|
71503
|
-
;// ./node_modules/tailwindcss/dist/chunk-AZANAYY2.mjs
|
|
71504
|
-
var l={inherit:"inherit",current:"currentColor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(0.984 0.003 247.858)",100:"oklch(0.968 0.007 247.896)",200:"oklch(0.929 0.013 255.508)",300:"oklch(0.869 0.022 252.894)",400:"oklch(0.704 0.04 256.788)",500:"oklch(0.554 0.046 257.417)",600:"oklch(0.446 0.043 257.281)",700:"oklch(0.372 0.044 257.287)",800:"oklch(0.279 0.041 260.031)",900:"oklch(0.208 0.042 265.755)",950:"oklch(0.129 0.042 264.695)"},gray:{50:"oklch(0.985 0.002 247.839)",100:"oklch(0.967 0.003 264.542)",200:"oklch(0.928 0.006 264.531)",300:"oklch(0.872 0.01 258.338)",400:"oklch(0.707 0.022 261.325)",500:"oklch(0.551 0.027 264.364)",600:"oklch(0.446 0.03 256.802)",700:"oklch(0.373 0.034 259.733)",800:"oklch(0.278 0.033 256.848)",900:"oklch(0.21 0.034 264.665)",950:"oklch(0.13 0.028 261.692)"},zinc:{50:"oklch(0.985 0 0)",100:"oklch(0.967 0.001 286.375)",200:"oklch(0.92 0.004 286.32)",300:"oklch(0.871 0.006 286.286)",400:"oklch(0.705 0.015 286.067)",500:"oklch(0.552 0.016 285.938)",600:"oklch(0.442 0.017 285.786)",700:"oklch(0.37 0.013 285.805)",800:"oklch(0.274 0.006 286.033)",900:"oklch(0.21 0.006 285.885)",950:"oklch(0.141 0.005 285.823)"},neutral:{50:"oklch(0.985 0 0)",100:"oklch(0.97 0 0)",200:"oklch(0.922 0 0)",300:"oklch(0.87 0 0)",400:"oklch(0.708 0 0)",500:"oklch(0.556 0 0)",600:"oklch(0.439 0 0)",700:"oklch(0.371 0 0)",800:"oklch(0.269 0 0)",900:"oklch(0.205 0 0)",950:"oklch(0.145 0 0)"},stone:{50:"oklch(0.985 0.001 106.423)",100:"oklch(0.97 0.001 106.424)",200:"oklch(0.923 0.003 48.717)",300:"oklch(0.869 0.005 56.366)",400:"oklch(0.709 0.01 56.259)",500:"oklch(0.553 0.013 58.071)",600:"oklch(0.444 0.011 73.639)",700:"oklch(0.374 0.01 67.558)",800:"oklch(0.268 0.007 34.298)",900:"oklch(0.216 0.006 56.043)",950:"oklch(0.147 0.004 49.25)"},red:{50:"oklch(0.971 0.013 17.38)",100:"oklch(0.936 0.032 17.717)",200:"oklch(0.885 0.062 18.334)",300:"oklch(0.808 0.114 19.571)",400:"oklch(0.704 0.191 22.216)",500:"oklch(0.637 0.237 25.331)",600:"oklch(0.577 0.245 27.325)",700:"oklch(0.505 0.213 27.518)",800:"oklch(0.444 0.177 26.899)",900:"oklch(0.396 0.141 25.723)",950:"oklch(0.258 0.092 26.042)"},orange:{50:"oklch(0.98 0.016 73.684)",100:"oklch(0.954 0.038 75.164)",200:"oklch(0.901 0.076 70.697)",300:"oklch(0.837 0.128 66.29)",400:"oklch(0.75 0.183 55.934)",500:"oklch(0.705 0.213 47.604)",600:"oklch(0.646 0.222 41.116)",700:"oklch(0.553 0.195 38.402)",800:"oklch(0.47 0.157 37.304)",900:"oklch(0.408 0.123 38.172)",950:"oklch(0.266 0.079 36.259)"},amber:{50:"oklch(0.987 0.022 95.277)",100:"oklch(0.962 0.059 95.617)",200:"oklch(0.924 0.12 95.746)",300:"oklch(0.879 0.169 91.605)",400:"oklch(0.828 0.189 84.429)",500:"oklch(0.769 0.188 70.08)",600:"oklch(0.666 0.179 58.318)",700:"oklch(0.555 0.163 48.998)",800:"oklch(0.473 0.137 46.201)",900:"oklch(0.414 0.112 45.904)",950:"oklch(0.279 0.077 45.635)"},yellow:{50:"oklch(0.987 0.026 102.212)",100:"oklch(0.973 0.071 103.193)",200:"oklch(0.945 0.129 101.54)",300:"oklch(0.905 0.182 98.111)",400:"oklch(0.852 0.199 91.936)",500:"oklch(0.795 0.184 86.047)",600:"oklch(0.681 0.162 75.834)",700:"oklch(0.554 0.135 66.442)",800:"oklch(0.476 0.114 61.907)",900:"oklch(0.421 0.095 57.708)",950:"oklch(0.286 0.066 53.813)"},lime:{50:"oklch(0.986 0.031 120.757)",100:"oklch(0.967 0.067 122.328)",200:"oklch(0.938 0.127 124.321)",300:"oklch(0.897 0.196 126.665)",400:"oklch(0.841 0.238 128.85)",500:"oklch(0.768 0.233 130.85)",600:"oklch(0.648 0.2 131.684)",700:"oklch(0.532 0.157 131.589)",800:"oklch(0.453 0.124 130.933)",900:"oklch(0.405 0.101 131.063)",950:"oklch(0.274 0.072 132.109)"},green:{50:"oklch(0.982 0.018 155.826)",100:"oklch(0.962 0.044 156.743)",200:"oklch(0.925 0.084 155.995)",300:"oklch(0.871 0.15 154.449)",400:"oklch(0.792 0.209 151.711)",500:"oklch(0.723 0.219 149.579)",600:"oklch(0.627 0.194 149.214)",700:"oklch(0.527 0.154 150.069)",800:"oklch(0.448 0.119 151.328)",900:"oklch(0.393 0.095 152.535)",950:"oklch(0.266 0.065 152.934)"},emerald:{50:"oklch(0.979 0.021 166.113)",100:"oklch(0.95 0.052 163.051)",200:"oklch(0.905 0.093 164.15)",300:"oklch(0.845 0.143 164.978)",400:"oklch(0.765 0.177 163.223)",500:"oklch(0.696 0.17 162.48)",600:"oklch(0.596 0.145 163.225)",700:"oklch(0.508 0.118 165.612)",800:"oklch(0.432 0.095 166.913)",900:"oklch(0.378 0.077 168.94)",950:"oklch(0.262 0.051 172.552)"},teal:{50:"oklch(0.984 0.014 180.72)",100:"oklch(0.953 0.051 180.801)",200:"oklch(0.91 0.096 180.426)",300:"oklch(0.855 0.138 181.071)",400:"oklch(0.777 0.152 181.912)",500:"oklch(0.704 0.14 182.503)",600:"oklch(0.6 0.118 184.704)",700:"oklch(0.511 0.096 186.391)",800:"oklch(0.437 0.078 188.216)",900:"oklch(0.386 0.063 188.416)",950:"oklch(0.277 0.046 192.524)"},cyan:{50:"oklch(0.984 0.019 200.873)",100:"oklch(0.956 0.045 203.388)",200:"oklch(0.917 0.08 205.041)",300:"oklch(0.865 0.127 207.078)",400:"oklch(0.789 0.154 211.53)",500:"oklch(0.715 0.143 215.221)",600:"oklch(0.609 0.126 221.723)",700:"oklch(0.52 0.105 223.128)",800:"oklch(0.45 0.085 224.283)",900:"oklch(0.398 0.07 227.392)",950:"oklch(0.302 0.056 229.695)"},sky:{50:"oklch(0.977 0.013 236.62)",100:"oklch(0.951 0.026 236.824)",200:"oklch(0.901 0.058 230.902)",300:"oklch(0.828 0.111 230.318)",400:"oklch(0.746 0.16 232.661)",500:"oklch(0.685 0.169 237.323)",600:"oklch(0.588 0.158 241.966)",700:"oklch(0.5 0.134 242.749)",800:"oklch(0.443 0.11 240.79)",900:"oklch(0.391 0.09 240.876)",950:"oklch(0.293 0.066 243.157)"},blue:{50:"oklch(0.97 0.014 254.604)",100:"oklch(0.932 0.032 255.585)",200:"oklch(0.882 0.059 254.128)",300:"oklch(0.809 0.105 251.813)",400:"oklch(0.707 0.165 254.624)",500:"oklch(0.623 0.214 259.815)",600:"oklch(0.546 0.245 262.881)",700:"oklch(0.488 0.243 264.376)",800:"oklch(0.424 0.199 265.638)",900:"oklch(0.379 0.146 265.522)",950:"oklch(0.282 0.091 267.935)"},indigo:{50:"oklch(0.962 0.018 272.314)",100:"oklch(0.93 0.034 272.788)",200:"oklch(0.87 0.065 274.039)",300:"oklch(0.785 0.115 274.713)",400:"oklch(0.673 0.182 276.935)",500:"oklch(0.585 0.233 277.117)",600:"oklch(0.511 0.262 276.966)",700:"oklch(0.457 0.24 277.023)",800:"oklch(0.398 0.195 277.366)",900:"oklch(0.359 0.144 278.697)",950:"oklch(0.257 0.09 281.288)"},violet:{50:"oklch(0.969 0.016 293.756)",100:"oklch(0.943 0.029 294.588)",200:"oklch(0.894 0.057 293.283)",300:"oklch(0.811 0.111 293.571)",400:"oklch(0.702 0.183 293.541)",500:"oklch(0.606 0.25 292.717)",600:"oklch(0.541 0.281 293.009)",700:"oklch(0.491 0.27 292.581)",800:"oklch(0.432 0.232 292.759)",900:"oklch(0.38 0.189 293.745)",950:"oklch(0.283 0.141 291.089)"},purple:{50:"oklch(0.977 0.014 308.299)",100:"oklch(0.946 0.033 307.174)",200:"oklch(0.902 0.063 306.703)",300:"oklch(0.827 0.119 306.383)",400:"oklch(0.714 0.203 305.504)",500:"oklch(0.627 0.265 303.9)",600:"oklch(0.558 0.288 302.321)",700:"oklch(0.496 0.265 301.924)",800:"oklch(0.438 0.218 303.724)",900:"oklch(0.381 0.176 304.987)",950:"oklch(0.291 0.149 302.717)"},fuchsia:{50:"oklch(0.977 0.017 320.058)",100:"oklch(0.952 0.037 318.852)",200:"oklch(0.903 0.076 319.62)",300:"oklch(0.833 0.145 321.434)",400:"oklch(0.74 0.238 322.16)",500:"oklch(0.667 0.295 322.15)",600:"oklch(0.591 0.293 322.896)",700:"oklch(0.518 0.253 323.949)",800:"oklch(0.452 0.211 324.591)",900:"oklch(0.401 0.17 325.612)",950:"oklch(0.293 0.136 325.661)"},pink:{50:"oklch(0.971 0.014 343.198)",100:"oklch(0.948 0.028 342.258)",200:"oklch(0.899 0.061 343.231)",300:"oklch(0.823 0.12 346.018)",400:"oklch(0.718 0.202 349.761)",500:"oklch(0.656 0.241 354.308)",600:"oklch(0.592 0.249 0.584)",700:"oklch(0.525 0.223 3.958)",800:"oklch(0.459 0.187 3.815)",900:"oklch(0.408 0.153 2.432)",950:"oklch(0.284 0.109 3.907)"},rose:{50:"oklch(0.969 0.015 12.422)",100:"oklch(0.941 0.03 12.58)",200:"oklch(0.892 0.058 10.001)",300:"oklch(0.81 0.117 11.638)",400:"oklch(0.712 0.194 13.428)",500:"oklch(0.645 0.246 16.439)",600:"oklch(0.586 0.253 17.585)",700:"oklch(0.514 0.222 16.935)",800:"oklch(0.455 0.188 13.697)",900:"oklch(0.41 0.159 10.272)",950:"oklch(0.271 0.105 12.094)"}};
|
|
71505
|
-
|
|
71506
|
-
;// ./node_modules/tailwindcss/dist/chunk-V2K3XTS4.mjs
|
|
71507
|
-
var U=new Set(["black","silver","gray","white","maroon","red","purple","fuchsia","green","lime","olive","yellow","navy","blue","teal","aqua","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","transparent","currentcolor","canvas","canvastext","linktext","visitedtext","activetext","buttonface","buttontext","buttonborder","field","fieldtext","highlight","highlighttext","selecteditem","selecteditemtext","mark","marktext","graytext","accentcolor","accentcolortext"]),O=/^(rgba?|hsla?|hwb|color|(ok)?(lab|lch)|light-dark|color-mix)\(/i;function S(e){return e.charCodeAt(0)===35||O.test(e)||U.has(e.toLowerCase())}var k=["calc","min","max","clamp","mod","rem","sin","cos","tan","asin","acos","atan","atan2","pow","sqrt","hypot","log","exp","round"],h=["anchor-size"],A=new RegExp(`(${h.join("|")})\\(`,"g");function b(e){return e.indexOf("(")!==-1&&k.some(r=>e.includes(`${r}(`))}function ie(e){if(!k.some(n=>e.includes(n)))return e;let r=!1;h.some(n=>e.includes(n))&&(A.lastIndex=0,e=e.replace(A,(n,o)=>(r=!0,`$${h.indexOf(o)}$(`)));let t="",i=[];for(let n=0;n<e.length;n++){let o=e[n];if(o==="("){t+=o;let m=n;for(let c=n-1;c>=0;c--){let x=e.charCodeAt(c);if(x>=48&&x<=57)m=c;else if(x>=97&&x<=122)m=c;else break}let a=e.slice(m,n);if(k.includes(a)){i.unshift(!0);continue}else if(i[0]&&a===""){i.unshift(!0);continue}i.unshift(!1);continue}else if(o===")")t+=o,i.shift();else if(o===","&&i[0]){t+=", ";continue}else{if(o===" "&&i[0]&&t[t.length-1]===" ")continue;if((o==="+"||o==="*"||o==="/"||o==="-")&&i[0]){let m=t.trimEnd(),a=m[m.length-1];if(a==="+"||a==="*"||a==="/"||a==="-"){t+=o;continue}else if(a==="("||a===","){t+=o;continue}else e[n-1]===" "?t+=`${o} `:t+=` ${o} `}else if(i[0]&&e.startsWith("to-zero",n)){let m=n;n+=7,t+=e.slice(m,n+1)}else t+=o}}return r?t.replace(/\$(\d+)\$/g,(n,o)=>h[o]??n):t}var y=new Uint8Array(256);function chunk_V2K3XTS4_u(e,r){let t=0,i=[],n=0,o=e.length,m=r.charCodeAt(0);for(let a=0;a<o;a++){let c=e.charCodeAt(a);if(t===0&&c===m){i.push(e.slice(n,a)),n=a+1;continue}switch(c){case 92:a+=1;break;case 39:case 34:for(;++a<o;){let x=e.charCodeAt(a);if(x===92){a+=1;continue}if(x===c)break}break;case 40:y[t]=41,t++;break;case 91:y[t]=93,t++;break;case 123:y[t]=125,t++;break;case 93:case 125:case 41:t>0&&c===y[t-1]&&t--;break}}return i.push(e.slice(n)),i}var R={color:S,length:C,percentage:E,ratio:j,number:M,integer:chunk_V2K3XTS4_p,url:z,position:Q,"bg-size":X,"line-width":D,image:$,"family-name":P,"generic-name":H,"absolute-size":q,"relative-size":B,angle:ee,vector:re};function pe(e,r){if(e.startsWith("var("))return null;for(let t of r)if(R[t]?.(e))return t;return null}var _=/^url\(.*\)$/;function z(e){return _.test(e)}function D(e){return e==="thin"||e==="medium"||e==="thick"}var I=/^(?:element|image|cross-fade|image-set)\(/,F=/^(repeating-)?(conic|linear|radial)-gradient\(/;function $(e){let r=0;for(let t of chunk_V2K3XTS4_u(e,","))if(!t.startsWith("var(")){if(z(t)){r+=1;continue}if(F.test(t)){r+=1;continue}if(I.test(t)){r+=1;continue}return!1}return r>0}function H(e){return e==="serif"||e==="sans-serif"||e==="monospace"||e==="cursive"||e==="fantasy"||e==="system-ui"||e==="ui-serif"||e==="ui-sans-serif"||e==="ui-monospace"||e==="ui-rounded"||e==="math"||e==="emoji"||e==="fangsong"}function P(e){let r=0;for(let t of chunk_V2K3XTS4_u(e,",")){let i=t.charCodeAt(0);if(i>=48&&i<=57)return!1;t.startsWith("var(")||(r+=1)}return r>0}function q(e){return e==="xx-small"||e==="x-small"||e==="small"||e==="medium"||e==="large"||e==="x-large"||e==="xx-large"||e==="xxx-large"}function B(e){return e==="larger"||e==="smaller"}var g=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,W=new RegExp(`^${g.source}$`);function M(e){return W.test(e)||b(e)}var G=new RegExp(`^${g.source}%$`);function E(e){return G.test(e)||b(e)}var V=new RegExp(`^${g.source}s*/s*${g.source}$`);function j(e){return V.test(e)||b(e)}var K=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],Y=new RegExp(`^${g.source}(${K.join("|")})$`);function C(e){return Y.test(e)||b(e)}function Q(e){let r=0;for(let t of chunk_V2K3XTS4_u(e," ")){if(t==="center"||t==="top"||t==="right"||t==="bottom"||t==="left"){r+=1;continue}if(!t.startsWith("var(")){if(C(t)||E(t)){r+=1;continue}return!1}}return r>0}function X(e){let r=0;for(let t of chunk_V2K3XTS4_u(e,",")){if(t==="cover"||t==="contain"){r+=1;continue}let i=chunk_V2K3XTS4_u(t," ");if(i.length!==1&&i.length!==2)return!1;if(i.every(n=>n==="auto"||C(n)||E(n))){r+=1;continue}}return r>0}var J=["deg","rad","grad","turn"],Z=new RegExp(`^${g.source}(${J.join("|")})$`);function ee(e){return Z.test(e)}var te=new RegExp(`^${g.source} +${g.source} +${g.source}$`);function re(e){return te.test(e)}function chunk_V2K3XTS4_p(e){let r=Number(e);return Number.isInteger(r)&&r>=0&&String(r)===String(e)}function ge(e){let r=Number(e);return Number.isInteger(r)&&r>0&&String(r)===String(e)}function ue(e){return N(e,.25)}function de(e){return N(e,.25)}function N(e,r){let t=Number(e);return t>=0&&t%r===0&&String(t)===String(e)}function f(e){return{__BARE_VALUE__:e}}var chunk_V2K3XTS4_l=f(e=>{if(chunk_V2K3XTS4_p(e.value))return e.value}),s=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}%`}),d=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}px`}),T=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}ms`}),w=f(e=>{if(chunk_V2K3XTS4_p(e.value))return`${e.value}deg`}),ne=f(e=>{if(e.fraction===null)return;let[r,t]=chunk_V2K3XTS4_u(e.fraction,"/");if(!(!chunk_V2K3XTS4_p(r)||!chunk_V2K3XTS4_p(t)))return e.fraction}),L=f(e=>{if(chunk_V2K3XTS4_p(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),ye={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...ne},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...s}),backdropContrast:({theme:e})=>({...e("contrast"),...s}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...s}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...w}),backdropInvert:({theme:e})=>({...e("invert"),...s}),backdropOpacity:({theme:e})=>({...e("opacity"),...s}),backdropSaturate:({theme:e})=>({...e("saturate"),...s}),backdropSepia:({theme:e})=>({...e("sepia"),...s}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentColor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...d},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...s},caretColor:({theme:e})=>e("colors"),colors:()=>({...l}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...chunk_V2K3XTS4_l},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...s},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...d}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...chunk_V2K3XTS4_l},flexShrink:{0:"0",DEFAULT:"1",...chunk_V2K3XTS4_l},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...s},grayscale:{0:"0",DEFAULT:"100%",...s},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...chunk_V2K3XTS4_l},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...w},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...s},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...chunk_V2K3XTS4_l},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...s},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...chunk_V2K3XTS4_l},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentColor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...w},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...s},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...s},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...s},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...w},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...chunk_V2K3XTS4_l},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...T},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...T},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...chunk_V2K3XTS4_l}};
|
|
71508
|
-
|
|
71509
|
-
;// ./node_modules/tailwindcss/dist/chunk-WZA4AHDT.mjs
|
|
71510
|
-
function chunk_WZA4AHDT_f(n){if(arguments.length==0)throw new TypeError("`CSS.escape` requires an argument.");var e=String(n),r=e.length,i=-1,t,s="",l=e.charCodeAt(0);if(r==1&&l==45)return"\\"+e;for(;++i<r;){if(t=e.charCodeAt(i),t==0){s+="\uFFFD";continue}if(t>=1&&t<=31||t==127||i==0&&t>=48&&t<=57||i==1&&t>=48&&t<=57&&l==45){s+="\\"+t.toString(16)+" ";continue}if(t>=128||t==45||t==95||t>=48&&t<=57||t>=65&&t<=90||t>=97&&t<=122){s+=e.charAt(i);continue}s+="\\"+e.charAt(i)}return s}function chunk_WZA4AHDT_v(n){return n.replace(/\\([\dA-Fa-f]{1,6}[\t\n\f\r ]?|[\S\s])/g,e=>e.length>2?String.fromCodePoint(Number.parseInt(e.slice(1).trim(),16)):e[1])}var p=new Map([["--font",["--font-weight","--font-size"]],["--inset",["--inset-shadow","--inset-ring"]],["--text",["--text-color","--text-underline-offset","--text-indent","--text-decoration-thickness","--text-decoration-color"]]]);function chunk_WZA4AHDT_h(n,e){return(p.get(e)??[]).some(r=>n===r||n.startsWith(`${r}-`))}var chunk_WZA4AHDT_g=class{constructor(e=new Map,r=new Set([])){this.values=e;this.keyframes=r}prefix=null;add(e,r,i=0){if(e.endsWith("-*")){if(r!=="initial")throw new Error(`Invalid theme value \`${r}\` for namespace \`${e}\``);e==="--*"?this.values.clear():this.clearNamespace(e.slice(0,-2),0)}if(i&4){let t=this.values.get(e);if(t&&!(t.options&4))return}r==="initial"?this.values.delete(e):this.values.set(e,{value:r,options:i})}keysInNamespaces(e){let r=[];for(let i of e){let t=`${i}-`;for(let s of this.values.keys())s.startsWith(t)&&s.indexOf("--",2)===-1&&(chunk_WZA4AHDT_h(s,i)||r.push(s.slice(t.length)))}return r}get(e){for(let r of e){let i=this.values.get(r);if(i)return i.value}return null}hasDefault(e){return(this.getOptions(e)&4)===4}getOptions(e){return this.values.get(e)?.options??0}entries(){return this.prefix?Array.from(this.values,e=>(e[0]=this.#i(e[0]),e)):this.values.entries()}#i(e){return this.prefix?`--${this.prefix}-${e.slice(2)}`:e}clearNamespace(e,r){let i=p.get(e)??[];e:for(let t of this.values.keys())if(t.startsWith(e)){if(r!==0&&(this.getOptions(t)&r)!==r)continue;for(let s of i)if(t.startsWith(s))continue e;this.values.delete(t)}}#e(e,r){for(let i of r){let t=e!==null?`${i}-${e}`:i;if(!this.values.has(t))if(e!==null&&e.includes(".")){if(t=`${i}-${e.replaceAll(".","_")}`,!this.values.has(t))continue}else continue;if(!chunk_WZA4AHDT_h(t,i))return t}return null}#t(e){return this.values.has(e)?`var(${chunk_WZA4AHDT_f(this.#i(e))})`:null}resolve(e,r){let i=this.#e(e,r);if(!i)return null;let t=this.values.get(i);return t.options&1?t.value:this.#t(i)}resolveValue(e,r){let i=this.#e(e,r);return i?this.values.get(i).value:null}resolveWith(e,r,i=[]){let t=this.#e(e,r);if(!t)return null;let s={};for(let u of i){let a=`${t}${u}`,o=this.values.get(a);o&&(o.options&1?s[u]=o.value:s[u]=this.#t(a))}let l=this.values.get(t);return l.options&1?[l.value,s]:[this.#t(t),s]}namespace(e){let r=new Map,i=`${e}-`;for(let[t,s]of this.values)t===e?r.set(null,s.value):t.startsWith(`${i}-`)?r.set(t.slice(e.length),s.value):t.startsWith(i)&&r.set(t.slice(i.length),s.value);return r}addKeyframes(e){this.keyframes.add(e)}getKeyframes(){return Array.from(this.keyframes)}};
|
|
71511
|
-
|
|
71512
|
-
;// ./node_modules/tailwindcss/dist/lib.mjs
|
|
71513
|
-
var at="4.0.3";var ce=92,Ce=47,$e=42,yr=34,wr=39,br=58,Ve=59,lib_Q=10,lib_de=32,Ne=9,st=123,Ue=125,Me=40,ut=41,kr=91,xr=93,ft=45,Ie=64,Ar=33;function lib_X(t){t=t.replaceAll(`\r
|
|
71514
|
-
`,`
|
|
71515
|
-
`);let r=[],n=[],e=[],o=null,s=null,a="",c="",d;for(let f=0;f<t.length;f++){let p=t.charCodeAt(f);if(p===ce)a+=t.slice(f,f+2),f+=1;else if(p===Ce&&t.charCodeAt(f+1)===$e){let g=f;for(let y=f+2;y<t.length;y++)if(d=t.charCodeAt(y),d===ce)y+=1;else if(d===$e&&t.charCodeAt(y+1)===Ce){f=y+1;break}let h=t.slice(g,f+1);h.charCodeAt(2)===Ar&&n.push(Te(h.slice(2,-2)))}else if(p===wr||p===yr){let g=f;for(let h=f+1;h<t.length;h++)if(d=t.charCodeAt(h),d===ce)h+=1;else if(d===p){f=h;break}else{if(d===Ve&&t.charCodeAt(h+1)===lib_Q)throw new Error(`Unterminated string: ${t.slice(g,h+1)+String.fromCharCode(p)}`);if(d===lib_Q)throw new Error(`Unterminated string: ${t.slice(g,h)+String.fromCharCode(p)}`)}a+=t.slice(g,f+1)}else{if((p===lib_de||p===lib_Q||p===Ne)&&(d=t.charCodeAt(f+1))&&(d===lib_de||d===lib_Q||d===Ne))continue;if(p===lib_Q){if(a.length===0)continue;d=a.charCodeAt(a.length-1),d!==lib_de&&d!==lib_Q&&d!==Ne&&(a+=" ")}else if(p===ft&&t.charCodeAt(f+1)===ft&&a.length===0){let g="",h=f,y=-1;for(let v=f+2;v<t.length;v++)if(d=t.charCodeAt(v),d===ce)v+=1;else if(d===Ce&&t.charCodeAt(v+1)===$e){for(let x=v+2;x<t.length;x++)if(d=t.charCodeAt(x),d===ce)x+=1;else if(d===$e&&t.charCodeAt(x+1)===Ce){v=x+1;break}}else if(y===-1&&d===br)y=a.length+v-h;else if(d===Ve&&g.length===0){a+=t.slice(h,v),f=v;break}else if(d===Me)g+=")";else if(d===kr)g+="]";else if(d===st)g+="}";else if((d===Ue||t.length-1===v)&&g.length===0){f=v-1,a+=t.slice(h,v);break}else(d===ut||d===xr||d===Ue)&&g.length>0&&t[v]===g[g.length-1]&&(g=g.slice(0,-1));let w=ze(a,y);if(!w)throw new Error("Invalid custom property, expected a value");o?o.nodes.push(w):r.push(w),a=""}else if(p===Ve&&a.charCodeAt(0)===Ie)s=lib_pe(a),o?o.nodes.push(s):r.push(s),a="",s=null;else if(p===Ve&&c[c.length-1]!==")"){let g=ze(a);if(!g)throw a.length===0?new Error("Unexpected semicolon"):new Error(`Invalid declaration: \`${a.trim()}\``);o?o.nodes.push(g):r.push(g),a=""}else if(p===st&&c[c.length-1]!==")")c+="}",s=lib_M(a.trim()),o&&o.nodes.push(s),e.push(o),o=s,a="",s=null;else if(p===Ue&&c[c.length-1]!==")"){if(c==="")throw new Error("Missing opening {");if(c=c.slice(0,-1),a.length>0)if(a.charCodeAt(0)===Ie)s=lib_pe(a),o?o.nodes.push(s):r.push(s),a="",s=null;else{let h=a.indexOf(":");if(o){let y=ze(a,h);if(!y)throw new Error(`Invalid declaration: \`${a.trim()}\``);o.nodes.push(y)}}let g=e.pop()??null;g===null&&o&&r.push(o),o=g,a="",s=null}else if(p===Me)c+=")",a+="(";else if(p===ut){if(c[c.length-1]!==")")throw new Error("Missing opening (");c=c.slice(0,-1),a+=")"}else{if(a.length===0&&(p===lib_de||p===lib_Q||p===Ne))continue;a+=String.fromCharCode(p)}}}if(a.charCodeAt(0)===Ie&&r.push(lib_pe(a)),c.length>0&&o){if(o.kind==="rule")throw new Error(`Missing closing } at ${o.selector}`);if(o.kind==="at-rule")throw new Error(`Missing closing } at ${o.name} ${o.params}`)}return n.length>0?n.concat(r):r}function lib_pe(t,r=[]){for(let n=5;n<t.length;n++){let e=t.charCodeAt(n);if(e===lib_de||e===Me){let o=t.slice(0,n).trim(),s=t.slice(n).trim();return lib_O(o,s,r)}}return lib_O(t.trim(),"",r)}function ze(t,r=t.indexOf(":")){if(r===-1)return null;let n=t.indexOf("!important",r+1);return lib_l(t.slice(0,r).trim(),t.slice(r+1,n===-1?t.length:n).trim(),n!==-1)}var Cr=64;function lib_F(t,r=[]){return{kind:"rule",selector:t,nodes:r}}function lib_O(t,r="",n=[]){return{kind:"at-rule",name:t,params:r,nodes:n}}function lib_M(t,r=[]){return t.charCodeAt(0)===Cr?lib_pe(t,r):lib_F(t,r)}function lib_l(t,r,n=!1){return{kind:"declaration",property:t,value:r,important:n}}function Te(t){return{kind:"comment",value:t}}function lib_ee(t,r){return{kind:"context",context:t,nodes:r}}function lib_D(t){return{kind:"at-root",nodes:t}}function lib_j(t,r,n=[],e={}){for(let o=0;o<t.length;o++){let s=t[o],a=n[n.length-1]??null;if(s.kind==="context"){if(lib_j(s.nodes,r,n,{...e,...s.context})===2)return 2;continue}n.push(s);let c=r(s,{parent:a,context:e,path:n,replaceWith(d){Array.isArray(d)?d.length===0?t.splice(o,1):d.length===1?t[o]=d[0]:t.splice(o,1,...d):t[o]=d,o--}})??0;if(n.pop(),c===2)return 2;if(c!==1&&(s.kind==="rule"||s.kind==="at-rule")){n.push(s);let d=lib_j(s.nodes,r,n,e);if(n.pop(),d===2)return 2}}}function Se(t,r,n=[],e={}){for(let o=0;o<t.length;o++){let s=t[o],a=n[n.length-1]??null;if(s.kind==="rule"||s.kind==="at-rule")n.push(s),Se(s.nodes,r,n,e),n.pop();else if(s.kind==="context"){Se(s.nodes,r,n,{...e,...s.context});continue}n.push(s),r(s,{parent:a,context:e,path:n,replaceWith(c){Array.isArray(c)?c.length===0?t.splice(o,1):c.length===1?t[o]=c[0]:t.splice(o,1,...c):t[o]=c,o+=c.length-1}}),n.pop()}}function lib_te(t){let r=[],n=new Set;function e(s,a,c=0){if(s.kind==="declaration"){if(s.property==="--tw-sort"||s.value===void 0||s.value===null)return;a.push(s)}else if(s.kind==="rule")if(s.selector==="&")for(let d of s.nodes){let f=[];e(d,f,c+1),f.length>0&&a.push(...f)}else{let d={...s,nodes:[]};for(let f of s.nodes)e(f,d.nodes,c+1);d.nodes.length>0&&a.push(d)}else if(s.kind==="at-rule"&&s.name==="@property"&&c===0){if(n.has(s.params))return;n.add(s.params);let d={...s,nodes:[]};for(let f of s.nodes)e(f,d.nodes,c+1);a.push(d)}else if(s.kind==="at-rule"){let d={...s,nodes:[]};for(let f of s.nodes)e(f,d.nodes,c+1);(d.nodes.length>0||d.name==="@layer"||d.name==="@charset"||d.name==="@custom-media"||d.name==="@namespace"||d.name==="@import")&&a.push(d)}else if(s.kind==="at-root")for(let d of s.nodes){let f=[];e(d,f,0);for(let p of f)r.push(p)}else if(s.kind==="context"){if(s.context.reference)return;for(let d of s.nodes)e(d,a,c)}else s.kind==="comment"&&a.push(s)}let o=[];for(let s of t)e(s,o,0);return o.concat(r)}function lib_J(t){function r(e,o=0){let s="",a=" ".repeat(o);if(e.kind==="declaration")s+=`${a}${e.property}: ${e.value}${e.important?" !important":""};
|
|
71516
|
-
`;else if(e.kind==="rule"){s+=`${a}${e.selector} {
|
|
71517
|
-
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
71518
|
-
`}else if(e.kind==="at-rule"){if(e.nodes.length===0)return`${a}${e.name} ${e.params};
|
|
71519
|
-
`;s+=`${a}${e.name}${e.params?` ${e.params} `:" "}{
|
|
71520
|
-
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
71521
|
-
`}else if(e.kind==="comment")s+=`${a}/*${e.value}*/
|
|
71522
|
-
`;else if(e.kind==="context"||e.kind==="at-root")return"";return s}let n="";for(let e of t){let o=r(e);o!==""&&(n+=o)}return n}function Be(t){return{kind:"word",value:t}}function $r(t,r){return{kind:"function",value:t,nodes:r}}function Vr(t){return{kind:"separator",value:t}}function le(t,r,n=null){for(let e=0;e<t.length;e++){let o=t[e],s=r(o,{parent:n,replaceWith(a){Array.isArray(a)?a.length===0?t.splice(e,1):a.length===1?t[e]=a[0]:t.splice(e,1,...a):t[e]=a,e--}})??0;if(s===2)return 2;if(s!==1&&o.kind==="function"&&le(o.nodes,r,o)===2)return 2}}function lib_W(t){let r="";for(let n of t)switch(n.kind){case"word":case"separator":{r+=n.value;break}case"function":r+=n.value+"("+lib_W(n.nodes)+")"}return r}var Nr=92,Tr=41,ct=58,dt=44,Sr=34,pt=61,gt=62,mt=60,ht=10,Er=40,Rr=39,vt=47,yt=32,wt=9;function lib_L(t){t=t.replaceAll(`\r
|
|
71523
|
-
`,`
|
|
71524
|
-
`);let r=[],n=[],e=null,o="",s;for(let a=0;a<t.length;a++){let c=t.charCodeAt(a);switch(c){case ct:case dt:case pt:case gt:case mt:case ht:case vt:case yt:case wt:{if(o.length>0){let g=Be(o);e?e.nodes.push(g):r.push(g),o=""}let d=a,f=a+1;for(;f<t.length&&(s=t.charCodeAt(f),!(s!==ct&&s!==dt&&s!==pt&&s!==gt&&s!==mt&&s!==ht&&s!==vt&&s!==yt&&s!==wt));f++);a=f-1;let p=Vr(t.slice(d,f));e?e.nodes.push(p):r.push(p);break}case Rr:case Sr:{let d=a;for(let f=a+1;f<t.length;f++)if(s=t.charCodeAt(f),s===Nr)f+=1;else if(s===c){a=f;break}o+=t.slice(d,a+1);break}case Er:{let d=$r(o,[]);o="",e?e.nodes.push(d):r.push(d),n.push(d),e=d;break}case Tr:{let d=n.pop();if(o.length>0){let f=Be(o);d.nodes.push(f),o=""}n.length>0?e=n[n.length-1]:e=null;break}default:o+=String.fromCharCode(c)}}return o.length>0&&r.push(Be(o)),r}function lib_Y(t){if(t.indexOf("(")===-1)return lib_ge(t);let r=lib_L(t);return We(r),t=lib_W(r),t=ie(t),t}function lib_ge(t){let r="";for(let n=0;n<t.length;n++){let e=t[n];e==="\\"&&t[n+1]==="_"?(r+="_",n+=1):e==="_"?r+=" ":r+=e}return r}function We(t){for(let r of t)switch(r.kind){case"function":{if(r.value==="url"||r.value.endsWith("_url")){r.value=lib_ge(r.value);break}if(r.value==="var"||r.value.endsWith("_var")||r.value==="theme"||r.value.endsWith("_theme")){r.value=lib_ge(r.value);for(let n=0;n<r.nodes.length;n++)n==0&&r.nodes[n].kind==="word"||We([r.nodes[n]]);break}r.value=lib_ge(r.value),We(r.nodes);break}case"separator":case"word":{r.value=lib_ge(r.value);break}default:Kr(r)}}function Kr(t){throw new Error(`Unexpected value: ${t}`)}var Pr=58,bt=45,kt=97,xt=122;function*At(t,r){let n=chunk_V2K3XTS4_u(t,":");if(r.theme.prefix){if(n.length===1||n[0]!==r.theme.prefix)return null;n.shift()}let e=n.pop(),o=[];for(let g=n.length-1;g>=0;--g){let h=r.parseVariant(n[g]);if(h===null)return;o.push(h)}let s=!1;e[e.length-1]==="!"?(s=!0,e=e.slice(0,-1)):e[0]==="!"&&(s=!0,e=e.slice(1)),r.utilities.has(e,"static")&&!e.includes("[")&&(yield{kind:"static",root:e,variants:o,important:s,raw:t});let[a,c=null,d]=chunk_V2K3XTS4_u(e,"/");if(d)return;let f=c===null?null:qe(c);if(c!==null&&f===null)return;if(a[0]==="["){if(a[a.length-1]!=="]")return;let g=a.charCodeAt(1);if(g!==bt&&!(g>=kt&&g<=xt))return;a=a.slice(1,-1);let h=a.indexOf(":");if(h===-1||h===0||h===a.length-1)return;let y=a.slice(0,h),w=lib_Y(a.slice(h+1));yield{kind:"arbitrary",property:y,value:w,modifier:f,variants:o,important:s,raw:t};return}let p;if(a[a.length-1]==="]"){let g=a.indexOf("-[");if(g===-1)return;let h=a.slice(0,g);if(!r.utilities.has(h,"functional"))return;let y=a.slice(g+1);p=[[h,y]]}else if(a[a.length-1]===")"){let g=a.indexOf("-(");if(g===-1)return;let h=a.slice(0,g);if(!r.utilities.has(h,"functional"))return;let y=a.slice(g+2,-1),w=chunk_V2K3XTS4_u(y,":"),v=null;if(w.length===2&&(v=w[0],y=w[1]),y[0]!=="-"&&y[1]!=="-")return;p=[[h,v===null?`[var(${y})]`:`[${v}:var(${y})]`]]}else p=$t(a,g=>r.utilities.has(g,"functional"));for(let[g,h]of p){let y={kind:"functional",root:g,modifier:f,value:null,variants:o,important:s,raw:t};if(h===null){yield y;continue}{let w=h.indexOf("[");if(w!==-1){if(h[h.length-1]!=="]")return;let x=lib_Y(h.slice(w+1,-1)),T="";for(let N=0;N<x.length;N++){let R=x.charCodeAt(N);if(R===Pr){T=x.slice(0,N),x=x.slice(N+1);break}if(!(R===bt||R>=kt&&R<=xt))break}if(x.length===0||x.trim().length===0)continue;y.value={kind:"arbitrary",dataType:T||null,value:x}}else{let x=c===null||y.modifier?.kind==="arbitrary"?null:`${h}/${c}`;y.value={kind:"named",value:h,fraction:x}}}yield y}}function qe(t){if(t[0]==="["&&t[t.length-1]==="]"){let r=lib_Y(t.slice(1,-1));return r.length===0||r.trim().length===0?null:{kind:"arbitrary",value:r}}if(t[0]==="("&&t[t.length-1]===")"){let r=lib_Y(t.slice(1,-1));return r.length===0||r.trim().length===0||r[0]!=="-"&&r[1]!=="-"?null:{kind:"arbitrary",value:`var(${r})`}}return{kind:"named",value:t}}function Ct(t,r){if(t[0]==="["&&t[t.length-1]==="]"){if(t[1]==="@"&&t.includes("&"))return null;let n=lib_Y(t.slice(1,-1));if(n.length===0||n.trim().length===0)return null;let e=n[0]===">"||n[0]==="+"||n[0]==="~";return!e&&n[0]!=="@"&&!n.includes("&")&&(n=`&:is(${n})`),{kind:"arbitrary",selector:n,relative:e}}{let[n,e=null,o]=chunk_V2K3XTS4_u(t,"/");if(o)return null;let s=$t(n,a=>r.variants.has(a));for(let[a,c]of s)switch(r.variants.kind(a)){case"static":return c!==null||e!==null?null:{kind:"static",root:a};case"functional":{let d=e===null?null:qe(e);if(e!==null&&d===null)return null;if(c===null)return{kind:"functional",root:a,modifier:d,value:null};if(c[c.length-1]==="]"){if(c[0]!=="[")continue;let f=lib_Y(c.slice(1,-1));return f.length===0||f.trim().length===0?null:{kind:"functional",root:a,modifier:d,value:{kind:"arbitrary",value:f}}}if(c[c.length-1]===")"){if(c[0]!=="(")continue;let f=lib_Y(c.slice(1,-1));return f.length===0||f.trim().length===0||f[0]!=="-"&&f[1]!=="-"?null:{kind:"functional",root:a,modifier:d,value:{kind:"arbitrary",value:`var(${f})`}}}return{kind:"functional",root:a,modifier:d,value:{kind:"named",value:c}}}case"compound":{if(c===null)return null;let d=r.parseVariant(c);if(d===null||!r.variants.compoundsWith(a,d))return null;let f=e===null?null:qe(e);return e!==null&&f===null?null:{kind:"compound",root:a,modifier:f,variant:d}}}}return null}function*$t(t,r){r(t)&&(yield[t,null]);let n=t.lastIndexOf("-");if(n===-1){t[0]==="@"&&r("@")&&(yield["@",t.slice(1)]);return}do{let e=t.slice(0,n);if(r(e)){let o=[e,t.slice(n+1)];if(o[1]==="")break;yield o}n=t.lastIndexOf("-",n-1)}while(n>0)}function lib_re(t,r,n){if(t===r)return 0;let e=t.indexOf("("),o=r.indexOf("("),s=e===-1?t.replace(/[\d.]+/g,""):t.slice(0,e),a=o===-1?r.replace(/[\d.]+/g,""):r.slice(0,o),c=(s===a?0:s<a?-1:1)||(n==="asc"?parseInt(t)-parseInt(r):parseInt(r)-parseInt(t));return Number.isNaN(c)?t<r?-1:1:c}var lib_z=class extends Map{constructor(n){super();this.factory=n}get(n){let e=super.get(n);return e===void 0&&(e=this.factory(n,this),this.set(n,e)),e}};var Or=new Set(["inset","inherit","initial","revert","unset"]),Vt=/^-?(\d+|\.\d+)(.*?)$/g;function lib_ne(t,r){return chunk_V2K3XTS4_u(t,",").map(e=>{e=e.trim();let o=chunk_V2K3XTS4_u(e," ").filter(f=>f.trim()!==""),s=null,a=null,c=null;for(let f of o)Or.has(f)||(Vt.test(f)?(a===null?a=f:c===null&&(c=f),Vt.lastIndex=0):s===null&&(s=f));if(a===null||c===null)return e;let d=r(s??"currentcolor");return s!==null?e.replace(s,d):`${e} ${d}`}).join(", ")}var jr=/^-?[a-z][a-zA-Z0-9/%._-]*$/,_r=/^-?[a-z][a-zA-Z0-9/%._-]*-\*$/,Je=class{utilities=new lib_z(()=>[]);completions=new Map;static(r,n){this.utilities.get(r).push({kind:"static",compileFn:n})}functional(r,n,e){this.utilities.get(r).push({kind:"functional",compileFn:n,options:e})}has(r,n){return this.utilities.has(r)&&this.utilities.get(r).some(e=>e.kind===n)}get(r){return this.utilities.has(r)?this.utilities.get(r):[]}getCompletions(r){return this.completions.get(r)?.()??[]}suggest(r,n){this.completions.set(r,n)}keys(r){let n=[];for(let[e,o]of this.utilities.entries())for(let s of o)if(s.kind===r){n.push(e);break}return n}};function lib_$(t,r,n){return lib_O("@property",t,[lib_l("syntax",n?`"${n}"`:'"*"'),lib_l("inherits","false"),...r?[lib_l("initial-value",r)]:[]])}function lib_G(t,r){if(r===null)return t;let n=Number(r);return Number.isNaN(n)||(r=`${n*100}%`),`color-mix(in oklab, ${t} ${r}, transparent)`}function lib_B(t,r,n){if(!r)return t;if(r.kind==="arbitrary")return lib_G(t,r.value);let e=n.resolve(r.value,["--opacity"]);return e?lib_G(t,e):de(r.value)?lib_G(t,`${r.value}%`):null}function lib_q(t,r,n){let e=null;switch(t.value.value){case"inherit":{e="inherit";break}case"transparent":{e="transparent";break}case"current":{e="currentColor";break}default:{e=r.resolve(t.value.value,n);break}}return e?lib_B(e,t.modifier,r):null}function Tt(t){let r=new Je;function n(i,u){function*m(k){for(let b of t.keysInNamespaces(k))yield b.replaceAll("_",".")}r.suggest(i,()=>{let k=[];for(let b of u()){if(typeof b=="string"){k.push({values:[b],modifiers:[]});continue}let V=[...b.values??[],...m(b.valueThemeKeys??[])],K=[...b.modifiers??[],...m(b.modifierThemeKeys??[])];b.hasDefaultValue&&V.unshift(null),k.push({supportsNegative:b.supportsNegative,values:V,modifiers:K})}return k})}function e(i,u){r.static(i,()=>u.map(m=>typeof m=="function"?m():lib_l(m[0],m[1])))}function o(i,u){function m({negative:k}){return b=>{let V=null;if(b.value)if(b.value.kind==="arbitrary"){if(b.modifier)return;V=b.value.value}else{if(V=t.resolve(b.value.fraction??b.value.value,u.themeKeys??[]),V===null&&u.supportsFractions&&b.value.fraction){let[K,C]=chunk_V2K3XTS4_u(b.value.fraction,"/");if(!chunk_V2K3XTS4_p(K)||!chunk_V2K3XTS4_p(C))return;V=`calc(${b.value.fraction} * 100%)`}if(V===null&&k&&u.handleNegativeBareValue){if(V=u.handleNegativeBareValue(b.value),!V?.includes("/")&&b.modifier)return;if(V!==null)return u.handle(V)}if(V===null&&u.handleBareValue&&(V=u.handleBareValue(b.value),!V?.includes("/")&&b.modifier))return}else{if(b.modifier)return;V=u.defaultValue!==void 0?u.defaultValue:t.resolve(null,u.themeKeys??[])}if(V!==null)return u.handle(k?`calc(${V} * -1)`:V)}}u.supportsNegative&&r.functional(`-${i}`,m({negative:!0})),r.functional(i,m({negative:!1})),n(i,()=>[{supportsNegative:u.supportsNegative,valueThemeKeys:u.themeKeys??[],hasDefaultValue:u.defaultValue!==void 0&&u.defaultValue!==null}])}function s(i,u){r.functional(i,m=>{if(!m.value)return;let k=null;if(m.value.kind==="arbitrary"?(k=m.value.value,k=lib_B(k,m.modifier,t)):k=lib_q(m,t,u.themeKeys),k!==null)return u.handle(k)}),n(i,()=>[{values:["current","inherit","transparent"],valueThemeKeys:u.themeKeys,modifiers:Array.from({length:21},(m,k)=>`${k*5}`)}])}function a(i,u,m,{supportsNegative:k=!1,supportsFractions:b=!1}={}){k&&r.static(`-${i}-px`,()=>m("-1px")),r.static(`${i}-px`,()=>m("1px")),o(i,{themeKeys:u,supportsFractions:b,supportsNegative:k,defaultValue:null,handleBareValue:({value:V})=>{let K=t.resolve(null,["--spacing"]);return!K||!ue(V)?null:`calc(${K} * ${V})`},handleNegativeBareValue:({value:V})=>{let K=t.resolve(null,["--spacing"]);return!K||!ue(V)?null:`calc(${K} * -${V})`},handle:m}),n(i,()=>[{values:t.get(["--spacing"])?["0","0.5","1","1.5","2","2.5","3","3.5","4","5","6","7","8","9","10","11","12","14","16","20","24","28","32","36","40","44","48","52","56","60","64","72","80","96"]:[],supportsNegative:k,valueThemeKeys:u}])}e("sr-only",[["position","absolute"],["width","1px"],["height","1px"],["padding","0"],["margin","-1px"],["overflow","hidden"],["clip","rect(0, 0, 0, 0)"],["white-space","nowrap"],["border-width","0"]]),e("not-sr-only",[["position","static"],["width","auto"],["height","auto"],["padding","0"],["margin","0"],["overflow","visible"],["clip","auto"],["white-space","normal"]]),e("pointer-events-none",[["pointer-events","none"]]),e("pointer-events-auto",[["pointer-events","auto"]]),e("visible",[["visibility","visible"]]),e("invisible",[["visibility","hidden"]]),e("collapse",[["visibility","collapse"]]),e("static",[["position","static"]]),e("fixed",[["position","fixed"]]),e("absolute",[["position","absolute"]]),e("relative",[["position","relative"]]),e("sticky",[["position","sticky"]]);for(let[i,u]of[["inset","inset"],["inset-x","inset-inline"],["inset-y","inset-block"],["start","inset-inline-start"],["end","inset-inline-end"],["top","top"],["right","right"],["bottom","bottom"],["left","left"]])e(`${i}-auto`,[[u,"auto"]]),e(`${i}-full`,[[u,"100%"]]),e(`-${i}-full`,[[u,"-100%"]]),a(i,["--inset","--spacing"],m=>[lib_l(u,m)],{supportsNegative:!0,supportsFractions:!0});e("isolate",[["isolation","isolate"]]),e("isolation-auto",[["isolation","auto"]]),e("z-auto",[["z-index","auto"]]),o("z",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--z-index"],handle:i=>[lib_l("z-index",i)]}),n("z",()=>[{supportsNegative:!0,values:["0","10","20","30","40","50"],valueThemeKeys:["--z-index"]}]),e("order-first",[["order","calc(-infinity)"]]),e("order-last",[["order","calc(infinity)"]]),e("order-none",[["order","0"]]),o("order",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--order"],handle:i=>[lib_l("order",i)]}),n("order",()=>[{supportsNegative:!0,values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--order"]}]),e("col-auto",[["grid-column","auto"]]),o("col",{themeKeys:["--grid-column"],handle:i=>[lib_l("grid-column",i)]}),e("col-span-full",[["grid-column","1 / -1"]]),o("col-span",{handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("grid-column",`span ${i} / span ${i}`)]}),e("col-start-auto",[["grid-column-start","auto"]]),o("col-start",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-column-start"],handle:i=>[lib_l("grid-column-start",i)]}),e("col-end-auto",[["grid-column-end","auto"]]),o("col-end",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-column-end"],handle:i=>[lib_l("grid-column-end",i)]}),n("col-span",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:[]}]),n("col-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-column-start"]}]),n("col-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-column-end"]}]),e("row-auto",[["grid-row","auto"]]),o("row",{themeKeys:["--grid-row"],handle:i=>[lib_l("grid-row",i)]}),e("row-span-full",[["grid-row","1 / -1"]]),o("row-span",{themeKeys:[],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("grid-row",`span ${i} / span ${i}`)]}),e("row-start-auto",[["grid-row-start","auto"]]),o("row-start",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-row-start"],handle:i=>[lib_l("grid-row-start",i)]}),e("row-end-auto",[["grid-row-end","auto"]]),o("row-end",{supportsNegative:!0,handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,themeKeys:["--grid-row-end"],handle:i=>[lib_l("grid-row-end",i)]}),n("row-span",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:[]}]),n("row-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-row-start"]}]),n("row-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-row-end"]}]),e("float-start",[["float","inline-start"]]),e("float-end",[["float","inline-end"]]),e("float-right",[["float","right"]]),e("float-left",[["float","left"]]),e("float-none",[["float","none"]]),e("clear-start",[["clear","inline-start"]]),e("clear-end",[["clear","inline-end"]]),e("clear-right",[["clear","right"]]),e("clear-left",[["clear","left"]]),e("clear-both",[["clear","both"]]),e("clear-none",[["clear","none"]]);for(let[i,u]of[["m","margin"],["mx","margin-inline"],["my","margin-block"],["ms","margin-inline-start"],["me","margin-inline-end"],["mt","margin-top"],["mr","margin-right"],["mb","margin-bottom"],["ml","margin-left"]])e(`${i}-auto`,[[u,"auto"]]),a(i,["--margin","--spacing"],m=>[lib_l(u,m)],{supportsNegative:!0});e("box-border",[["box-sizing","border-box"]]),e("box-content",[["box-sizing","content-box"]]),e("line-clamp-none",[["overflow","visible"],["display","block"],["-webkit-box-orient","horizontal"],["-webkit-line-clamp","unset"]]),o("line-clamp",{themeKeys:["--line-clamp"],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("overflow","hidden"),lib_l("display","-webkit-box"),lib_l("-webkit-box-orient","vertical"),lib_l("-webkit-line-clamp",i)]}),n("line-clamp",()=>[{values:["1","2","3","4","5","6"],valueThemeKeys:["--line-clamp"]}]),e("block",[["display","block"]]),e("inline-block",[["display","inline-block"]]),e("inline",[["display","inline"]]),e("hidden",[["display","none"]]),e("inline-flex",[["display","inline-flex"]]),e("table",[["display","table"]]),e("inline-table",[["display","inline-table"]]),e("table-caption",[["display","table-caption"]]),e("table-cell",[["display","table-cell"]]),e("table-column",[["display","table-column"]]),e("table-column-group",[["display","table-column-group"]]),e("table-footer-group",[["display","table-footer-group"]]),e("table-header-group",[["display","table-header-group"]]),e("table-row-group",[["display","table-row-group"]]),e("table-row",[["display","table-row"]]),e("flow-root",[["display","flow-root"]]),e("flex",[["display","flex"]]),e("grid",[["display","grid"]]),e("inline-grid",[["display","inline-grid"]]),e("contents",[["display","contents"]]),e("list-item",[["display","list-item"]]),e("field-sizing-content",[["field-sizing","content"]]),e("field-sizing-fixed",[["field-sizing","fixed"]]),e("aspect-auto",[["aspect-ratio","auto"]]),e("aspect-square",[["aspect-ratio","1 / 1"]]),o("aspect",{themeKeys:["--aspect"],handleBareValue:({fraction:i})=>{if(i===null)return null;let[u,m]=chunk_V2K3XTS4_u(i,"/");return!chunk_V2K3XTS4_p(u)||!chunk_V2K3XTS4_p(m)?null:i},handle:i=>[lib_l("aspect-ratio",i)]});for(let[i,u]of[["auto","auto"],["full","100%"],["svw","100svw"],["lvw","100lvw"],["dvw","100dvw"],["svh","100svh"],["lvh","100lvh"],["dvh","100dvh"],["min","min-content"],["max","max-content"],["fit","fit-content"]])e(`size-${i}`,[["--tw-sort","size"],["width",u],["height",u]]),e(`w-${i}`,[["width",u]]),e(`min-w-${i}`,[["min-width",u]]),e(`max-w-${i}`,[["max-width",u]]),e(`h-${i}`,[["height",u]]),e(`min-h-${i}`,[["min-height",u]]),e(`max-h-${i}`,[["max-height",u]]);e("w-screen",[["width","100vw"]]),e("min-w-screen",[["min-width","100vw"]]),e("max-w-screen",[["max-width","100vw"]]),e("h-screen",[["height","100vh"]]),e("min-h-screen",[["min-height","100vh"]]),e("max-h-screen",[["max-height","100vh"]]),e("max-w-none",[["max-width","none"]]),e("max-h-none",[["max-height","none"]]),a("size",["--size","--spacing"],i=>[lib_l("--tw-sort","size"),lib_l("width",i),lib_l("height",i)],{supportsFractions:!0});for(let[i,u,m]of[["w",["--width","--spacing","--container"],"width"],["min-w",["--min-width","--spacing","--container"],"min-width"],["max-w",["--max-width","--spacing","--container"],"max-width"],["h",["--height","--spacing"],"height"],["min-h",["--min-height","--height","--spacing"],"min-height"],["max-h",["--max-height","--height","--spacing"],"max-height"]])a(i,u,k=>[lib_l(m,k)],{supportsFractions:!0});r.static("container",()=>{let i=[...t.namespace("--breakpoint").values()];i.sort((m,k)=>lib_re(m,k,"asc"));let u=[lib_l("--tw-sort","--tw-container-component"),lib_l("width","100%")];for(let m of i)u.push(lib_O("@media",`(width >= ${m})`,[lib_l("max-width",m)]));return u}),e("flex-auto",[["flex","auto"]]),e("flex-initial",[["flex","0 auto"]]),e("flex-none",[["flex","none"]]),r.functional("flex",i=>{if(i.value){if(i.value.kind==="arbitrary")return i.modifier?void 0:[lib_l("flex",i.value.value)];if(i.value.fraction){let[u,m]=chunk_V2K3XTS4_u(i.value.fraction,"/");return!chunk_V2K3XTS4_p(u)||!chunk_V2K3XTS4_p(m)?void 0:[lib_l("flex",`calc(${i.value.fraction} * 100%)`)]}if(chunk_V2K3XTS4_p(i.value.value))return i.modifier?void 0:[lib_l("flex",i.value.value)]}}),o("shrink",{defaultValue:"1",handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("flex-shrink",i)]}),o("grow",{defaultValue:"1",handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("flex-grow",i)]}),n("shrink",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),n("grow",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),e("basis-auto",[["flex-basis","auto"]]),e("basis-full",[["flex-basis","100%"]]),a("basis",["--flex-basis","--spacing","--container"],i=>[lib_l("flex-basis",i)],{supportsFractions:!0}),e("table-auto",[["table-layout","auto"]]),e("table-fixed",[["table-layout","fixed"]]),e("caption-top",[["caption-side","top"]]),e("caption-bottom",[["caption-side","bottom"]]),e("border-collapse",[["border-collapse","collapse"]]),e("border-separate",[["border-collapse","separate"]]);let c=()=>lib_D([lib_$("--tw-border-spacing-x","0","<length>"),lib_$("--tw-border-spacing-y","0","<length>")]);a("border-spacing",["--border-spacing","--spacing"],i=>[c(),lib_l("--tw-border-spacing-x",i),lib_l("--tw-border-spacing-y",i),lib_l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-x",["--border-spacing","--spacing"],i=>[c(),lib_l("--tw-border-spacing-x",i),lib_l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-y",["--border-spacing","--spacing"],i=>[c(),lib_l("--tw-border-spacing-y",i),lib_l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),e("origin-center",[["transform-origin","center"]]),e("origin-top",[["transform-origin","top"]]),e("origin-top-right",[["transform-origin","top right"]]),e("origin-right",[["transform-origin","right"]]),e("origin-bottom-right",[["transform-origin","bottom right"]]),e("origin-bottom",[["transform-origin","bottom"]]),e("origin-bottom-left",[["transform-origin","bottom left"]]),e("origin-left",[["transform-origin","left"]]),e("origin-top-left",[["transform-origin","top left"]]),o("origin",{themeKeys:["--transform-origin"],handle:i=>[lib_l("transform-origin",i)]}),e("perspective-origin-center",[["perspective-origin","center"]]),e("perspective-origin-top",[["perspective-origin","top"]]),e("perspective-origin-top-right",[["perspective-origin","top right"]]),e("perspective-origin-right",[["perspective-origin","right"]]),e("perspective-origin-bottom-right",[["perspective-origin","bottom right"]]),e("perspective-origin-bottom",[["perspective-origin","bottom"]]),e("perspective-origin-bottom-left",[["perspective-origin","bottom left"]]),e("perspective-origin-left",[["perspective-origin","left"]]),e("perspective-origin-top-left",[["perspective-origin","top left"]]),o("perspective-origin",{themeKeys:["--perspective-origin"],handle:i=>[lib_l("perspective-origin",i)]}),e("perspective-none",[["perspective","none"]]),o("perspective",{themeKeys:["--perspective"],handle:i=>[lib_l("perspective",i)]});let d=()=>lib_D([lib_$("--tw-translate-x","0"),lib_$("--tw-translate-y","0"),lib_$("--tw-translate-z","0")]);e("translate-none",[["translate","none"]]),e("-translate-full",[d,["--tw-translate-x","-100%"],["--tw-translate-y","-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e("translate-full",[d,["--tw-translate-x","100%"],["--tw-translate-y","100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a("translate",["--translate","--spacing"],i=>[d(),lib_l("--tw-translate-x",i),lib_l("--tw-translate-y",i),lib_l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});for(let i of["x","y"])e(`-translate-${i}-full`,[d,[`--tw-translate-${i}`,"-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e(`translate-${i}-full`,[d,[`--tw-translate-${i}`,"100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a(`translate-${i}`,["--translate","--spacing"],u=>[d(),lib_l(`--tw-translate-${i}`,u),lib_l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});a("translate-z",["--translate","--spacing"],i=>[d(),lib_l("--tw-translate-z",i),lib_l("translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)")],{supportsNegative:!0}),e("-translate-z-px",[d,["--tw-translate-z","-1px"],["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]),e("translate-z-px",[d,["--tw-translate-z","1px"],["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]),e("translate-3d",[d,["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]);let f=()=>lib_D([lib_$("--tw-scale-x","1"),lib_$("--tw-scale-y","1"),lib_$("--tw-scale-z","1")]);e("scale-none",[["scale","none"]]);function p({negative:i}){return u=>{if(!u.value||u.modifier)return;let m;return u.value.kind==="arbitrary"?(m=u.value.value,[lib_l("scale",m)]):(m=t.resolve(u.value.value,["--scale"]),!m&&chunk_V2K3XTS4_p(u.value.value)&&(m=`${u.value.value}%`),m?(m=i?`calc(${m} * -1)`:m,[f(),lib_l("--tw-scale-x",m),lib_l("--tw-scale-y",m),lib_l("--tw-scale-z",m),lib_l("scale","var(--tw-scale-x) var(--tw-scale-y)")]):void 0)}}r.functional("-scale",p({negative:!0})),r.functional("scale",p({negative:!1})),n("scale",()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);for(let i of["x","y","z"])o(`scale-${i}`,{supportsNegative:!0,themeKeys:["--scale"],handleBareValue:({value:u})=>chunk_V2K3XTS4_p(u)?`${u}%`:null,handle:u=>[f(),lib_l(`--tw-scale-${i}`,u),lib_l("scale",`var(--tw-scale-x) var(--tw-scale-y)${i==="z"?" var(--tw-scale-z)":""}`)]}),n(`scale-${i}`,()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);e("scale-3d",[f,["scale","var(--tw-scale-x) var(--tw-scale-y) var(--tw-scale-z)"]]),e("rotate-none",[["rotate","none"]]);function g({negative:i}){return u=>{if(!u.value||u.modifier)return;let m;if(u.value.kind==="arbitrary"){m=u.value.value;let k=u.value.dataType??pe(m,["angle","vector"]);if(k==="vector")return[lib_l("rotate",`${m} var(--tw-rotate)`)];if(k!=="angle")return[lib_l("rotate",m)]}else if(m=t.resolve(u.value.value,["--rotate"]),!m&&chunk_V2K3XTS4_p(u.value.value)&&(m=`${u.value.value}deg`),!m)return;return[lib_l("rotate",i?`calc(${m} * -1)`:m)]}}r.functional("-rotate",g({negative:!0})),r.functional("rotate",g({negative:!1})),n("rotate",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);{let i=["var(--tw-rotate-x)","var(--tw-rotate-y)","var(--tw-rotate-z)","var(--tw-skew-x)","var(--tw-skew-y)"].join(" "),u=()=>lib_D([lib_$("--tw-rotate-x","rotateX(0)"),lib_$("--tw-rotate-y","rotateY(0)"),lib_$("--tw-rotate-z","rotateZ(0)"),lib_$("--tw-skew-x","skewX(0)"),lib_$("--tw-skew-y","skewY(0)")]);for(let m of["x","y","z"])o(`rotate-${m}`,{supportsNegative:!0,themeKeys:["--rotate"],handleBareValue:({value:k})=>chunk_V2K3XTS4_p(k)?`${k}deg`:null,handle:k=>[u(),lib_l(`--tw-rotate-${m}`,`rotate${m.toUpperCase()}(${k})`),lib_l("transform",i)]}),n(`rotate-${m}`,()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);o("skew",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}deg`:null,handle:m=>[u(),lib_l("--tw-skew-x",`skewX(${m})`),lib_l("--tw-skew-y",`skewY(${m})`),lib_l("transform",i)]}),o("skew-x",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}deg`:null,handle:m=>[u(),lib_l("--tw-skew-x",`skewX(${m})`),lib_l("transform",i)]}),o("skew-y",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}deg`:null,handle:m=>[u(),lib_l("--tw-skew-y",`skewY(${m})`),lib_l("transform",i)]}),n("skew",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),n("skew-x",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),n("skew-y",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),r.functional("transform",m=>{if(m.modifier)return;let k=null;if(m.value?m.value.kind==="arbitrary"&&(k=m.value.value):k=i,k!==null)return[u(),lib_l("transform",k)]}),n("transform",()=>[{hasDefaultValue:!0}]),e("transform-cpu",[["transform",i]]),e("transform-gpu",[["transform",`translateZ(0) ${i}`]]),e("transform-none",[["transform","none"]])}e("transform-flat",[["transform-style","flat"]]),e("transform-3d",[["transform-style","preserve-3d"]]),e("transform-content",[["transform-box","content-box"]]),e("transform-border",[["transform-box","border-box"]]),e("transform-fill",[["transform-box","fill-box"]]),e("transform-stroke",[["transform-box","stroke-box"]]),e("transform-view",[["transform-box","view-box"]]),e("backface-visible",[["backface-visibility","visible"]]),e("backface-hidden",[["backface-visibility","hidden"]]);for(let i of["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"])e(`cursor-${i}`,[["cursor",i]]);o("cursor",{themeKeys:["--cursor"],handle:i=>[lib_l("cursor",i)]});for(let i of["auto","none","manipulation"])e(`touch-${i}`,[["touch-action",i]]);let h=()=>lib_D([lib_$("--tw-pan-x"),lib_$("--tw-pan-y"),lib_$("--tw-pinch-zoom")]);for(let i of["x","left","right"])e(`touch-pan-${i}`,[h,["--tw-pan-x",`pan-${i}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let i of["y","up","down"])e(`touch-pan-${i}`,[h,["--tw-pan-y",`pan-${i}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);e("touch-pinch-zoom",[h,["--tw-pinch-zoom","pinch-zoom"],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let i of["none","text","all","auto"])e(`select-${i}`,[["-webkit-user-select",i],["user-select",i]]);e("resize-none",[["resize","none"]]),e("resize-x",[["resize","horizontal"]]),e("resize-y",[["resize","vertical"]]),e("resize",[["resize","both"]]),e("snap-none",[["scroll-snap-type","none"]]);let y=()=>lib_D([lib_$("--tw-scroll-snap-strictness","proximity","*")]);for(let i of["x","y","both"])e(`snap-${i}`,[y,["scroll-snap-type",`${i} var(--tw-scroll-snap-strictness)`]]);e("snap-mandatory",[y,["--tw-scroll-snap-strictness","mandatory"]]),e("snap-proximity",[y,["--tw-scroll-snap-strictness","proximity"]]),e("snap-align-none",[["scroll-snap-align","none"]]),e("snap-start",[["scroll-snap-align","start"]]),e("snap-end",[["scroll-snap-align","end"]]),e("snap-center",[["scroll-snap-align","center"]]),e("snap-normal",[["scroll-snap-stop","normal"]]),e("snap-always",[["scroll-snap-stop","always"]]);for(let[i,u]of[["scroll-m","scroll-margin"],["scroll-mx","scroll-margin-inline"],["scroll-my","scroll-margin-block"],["scroll-ms","scroll-margin-inline-start"],["scroll-me","scroll-margin-inline-end"],["scroll-mt","scroll-margin-top"],["scroll-mr","scroll-margin-right"],["scroll-mb","scroll-margin-bottom"],["scroll-ml","scroll-margin-left"]])a(i,["--scroll-margin","--spacing"],m=>[lib_l(u,m)],{supportsNegative:!0});for(let[i,u]of[["scroll-p","scroll-padding"],["scroll-px","scroll-padding-inline"],["scroll-py","scroll-padding-block"],["scroll-ps","scroll-padding-inline-start"],["scroll-pe","scroll-padding-inline-end"],["scroll-pt","scroll-padding-top"],["scroll-pr","scroll-padding-right"],["scroll-pb","scroll-padding-bottom"],["scroll-pl","scroll-padding-left"]])a(i,["--scroll-padding","--spacing"],m=>[lib_l(u,m)]);e("list-inside",[["list-style-position","inside"]]),e("list-outside",[["list-style-position","outside"]]),e("list-none",[["list-style-type","none"]]),e("list-disc",[["list-style-type","disc"]]),e("list-decimal",[["list-style-type","decimal"]]),o("list",{themeKeys:["--list-style-type"],handle:i=>[lib_l("list-style-type",i)]}),e("list-image-none",[["list-style-image","none"]]),o("list-image",{themeKeys:["--list-style-image"],handle:i=>[lib_l("list-style-image",i)]}),e("appearance-none",[["appearance","none"]]),e("appearance-auto",[["appearance","auto"]]),e("scheme-normal",[["color-scheme","normal"]]),e("scheme-dark",[["color-scheme","dark"]]),e("scheme-light",[["color-scheme","light"]]),e("scheme-light-dark",[["color-scheme","light dark"]]),e("scheme-only-dark",[["color-scheme","only dark"]]),e("scheme-only-light",[["color-scheme","only light"]]),e("columns-auto",[["columns","auto"]]),o("columns",{themeKeys:["--columns","--container"],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?i:null,handle:i=>[lib_l("columns",i)]}),n("columns",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--columns","--container"]}]);for(let i of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-before-${i}`,[["break-before",i]]);for(let i of["auto","avoid","avoid-page","avoid-column"])e(`break-inside-${i}`,[["break-inside",i]]);for(let i of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-after-${i}`,[["break-after",i]]);e("grid-flow-row",[["grid-auto-flow","row"]]),e("grid-flow-col",[["grid-auto-flow","column"]]),e("grid-flow-dense",[["grid-auto-flow","dense"]]),e("grid-flow-row-dense",[["grid-auto-flow","row dense"]]),e("grid-flow-col-dense",[["grid-auto-flow","column dense"]]),e("auto-cols-auto",[["grid-auto-columns","auto"]]),e("auto-cols-min",[["grid-auto-columns","min-content"]]),e("auto-cols-max",[["grid-auto-columns","max-content"]]),e("auto-cols-fr",[["grid-auto-columns","minmax(0, 1fr)"]]),o("auto-cols",{themeKeys:["--grid-auto-columns"],handle:i=>[lib_l("grid-auto-columns",i)]}),e("auto-rows-auto",[["grid-auto-rows","auto"]]),e("auto-rows-min",[["grid-auto-rows","min-content"]]),e("auto-rows-max",[["grid-auto-rows","max-content"]]),e("auto-rows-fr",[["grid-auto-rows","minmax(0, 1fr)"]]),o("auto-rows",{themeKeys:["--grid-auto-rows"],handle:i=>[lib_l("grid-auto-rows",i)]}),e("grid-cols-none",[["grid-template-columns","none"]]),e("grid-cols-subgrid",[["grid-template-columns","subgrid"]]),o("grid-cols",{themeKeys:["--grid-template-columns"],handleBareValue:({value:i})=>ge(i)?`repeat(${i}, minmax(0, 1fr))`:null,handle:i=>[lib_l("grid-template-columns",i)]}),e("grid-rows-none",[["grid-template-rows","none"]]),e("grid-rows-subgrid",[["grid-template-rows","subgrid"]]),o("grid-rows",{themeKeys:["--grid-template-rows"],handleBareValue:({value:i})=>ge(i)?`repeat(${i}, minmax(0, 1fr))`:null,handle:i=>[lib_l("grid-template-rows",i)]}),n("grid-cols",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-template-columns"]}]),n("grid-rows",()=>[{values:Array.from({length:12},(i,u)=>`${u+1}`),valueThemeKeys:["--grid-template-rows"]}]),e("flex-row",[["flex-direction","row"]]),e("flex-row-reverse",[["flex-direction","row-reverse"]]),e("flex-col",[["flex-direction","column"]]),e("flex-col-reverse",[["flex-direction","column-reverse"]]),e("flex-wrap",[["flex-wrap","wrap"]]),e("flex-nowrap",[["flex-wrap","nowrap"]]),e("flex-wrap-reverse",[["flex-wrap","wrap-reverse"]]),e("place-content-center",[["place-content","center"]]),e("place-content-start",[["place-content","start"]]),e("place-content-end",[["place-content","end"]]),e("place-content-between",[["place-content","space-between"]]),e("place-content-around",[["place-content","space-around"]]),e("place-content-evenly",[["place-content","space-evenly"]]),e("place-content-baseline",[["place-content","baseline"]]),e("place-content-stretch",[["place-content","stretch"]]),e("place-items-center",[["place-items","center"]]),e("place-items-start",[["place-items","start"]]),e("place-items-end",[["place-items","end"]]),e("place-items-baseline",[["place-items","baseline"]]),e("place-items-stretch",[["place-items","stretch"]]),e("content-normal",[["align-content","normal"]]),e("content-center",[["align-content","center"]]),e("content-start",[["align-content","flex-start"]]),e("content-end",[["align-content","flex-end"]]),e("content-between",[["align-content","space-between"]]),e("content-around",[["align-content","space-around"]]),e("content-evenly",[["align-content","space-evenly"]]),e("content-baseline",[["align-content","baseline"]]),e("content-stretch",[["align-content","stretch"]]),e("items-center",[["align-items","center"]]),e("items-start",[["align-items","flex-start"]]),e("items-end",[["align-items","flex-end"]]),e("items-baseline",[["align-items","baseline"]]),e("items-stretch",[["align-items","stretch"]]),e("justify-normal",[["justify-content","normal"]]),e("justify-center",[["justify-content","center"]]),e("justify-start",[["justify-content","flex-start"]]),e("justify-end",[["justify-content","flex-end"]]),e("justify-between",[["justify-content","space-between"]]),e("justify-around",[["justify-content","space-around"]]),e("justify-evenly",[["justify-content","space-evenly"]]),e("justify-baseline",[["justify-content","baseline"]]),e("justify-stretch",[["justify-content","stretch"]]),e("justify-items-normal",[["justify-items","normal"]]),e("justify-items-center",[["justify-items","center"]]),e("justify-items-start",[["justify-items","start"]]),e("justify-items-end",[["justify-items","end"]]),e("justify-items-stretch",[["justify-items","stretch"]]),a("gap",["--gap","--spacing"],i=>[lib_l("gap",i)]),a("gap-x",["--gap","--spacing"],i=>[lib_l("column-gap",i)]),a("gap-y",["--gap","--spacing"],i=>[lib_l("row-gap",i)]),a("space-x",["--space","--spacing"],i=>[lib_D([lib_$("--tw-space-x-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","row-gap"),lib_l("--tw-space-x-reverse","0"),lib_l("margin-inline-start",`calc(${i} * var(--tw-space-x-reverse))`),lib_l("margin-inline-end",`calc(${i} * calc(1 - var(--tw-space-x-reverse)))`)])],{supportsNegative:!0}),a("space-y",["--space","--spacing"],i=>[lib_D([lib_$("--tw-space-y-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","column-gap"),lib_l("--tw-space-y-reverse","0"),lib_l("margin-block-start",`calc(${i} * var(--tw-space-y-reverse))`),lib_l("margin-block-end",`calc(${i} * calc(1 - var(--tw-space-y-reverse)))`)])],{supportsNegative:!0}),e("space-x-reverse",[()=>lib_D([lib_$("--tw-space-x-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","row-gap"),lib_l("--tw-space-x-reverse","1")])]),e("space-y-reverse",[()=>lib_D([lib_$("--tw-space-y-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","column-gap"),lib_l("--tw-space-y-reverse","1")])]),e("accent-auto",[["accent-color","auto"]]),s("accent",{themeKeys:["--accent-color","--color"],handle:i=>[lib_l("accent-color",i)]}),s("caret",{themeKeys:["--caret-color","--color"],handle:i=>[lib_l("caret-color",i)]}),s("divide",{themeKeys:["--divide-color","--color"],handle:i=>[lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-color"),lib_l("border-color",i)])]}),e("place-self-auto",[["place-self","auto"]]),e("place-self-start",[["place-self","start"]]),e("place-self-end",[["place-self","end"]]),e("place-self-center",[["place-self","center"]]),e("place-self-stretch",[["place-self","stretch"]]),e("self-auto",[["align-self","auto"]]),e("self-start",[["align-self","flex-start"]]),e("self-end",[["align-self","flex-end"]]),e("self-center",[["align-self","center"]]),e("self-stretch",[["align-self","stretch"]]),e("self-baseline",[["align-self","baseline"]]),e("justify-self-auto",[["justify-self","auto"]]),e("justify-self-start",[["justify-self","flex-start"]]),e("justify-self-end",[["justify-self","flex-end"]]),e("justify-self-center",[["justify-self","center"]]),e("justify-self-stretch",[["justify-self","stretch"]]);for(let i of["auto","hidden","clip","visible","scroll"])e(`overflow-${i}`,[["overflow",i]]),e(`overflow-x-${i}`,[["overflow-x",i]]),e(`overflow-y-${i}`,[["overflow-y",i]]);for(let i of["auto","contain","none"])e(`overscroll-${i}`,[["overscroll-behavior",i]]),e(`overscroll-x-${i}`,[["overscroll-behavior-x",i]]),e(`overscroll-y-${i}`,[["overscroll-behavior-y",i]]);e("scroll-auto",[["scroll-behavior","auto"]]),e("scroll-smooth",[["scroll-behavior","smooth"]]),e("truncate",[["overflow","hidden"],["text-overflow","ellipsis"],["white-space","nowrap"]]),e("text-ellipsis",[["text-overflow","ellipsis"]]),e("text-clip",[["text-overflow","clip"]]),e("hyphens-none",[["-webkit-hyphens","none"],["hyphens","none"]]),e("hyphens-manual",[["-webkit-hyphens","manual"],["hyphens","manual"]]),e("hyphens-auto",[["-webkit-hyphens","auto"],["hyphens","auto"]]),e("whitespace-normal",[["white-space","normal"]]),e("whitespace-nowrap",[["white-space","nowrap"]]),e("whitespace-pre",[["white-space","pre"]]),e("whitespace-pre-line",[["white-space","pre-line"]]),e("whitespace-pre-wrap",[["white-space","pre-wrap"]]),e("whitespace-break-spaces",[["white-space","break-spaces"]]),e("text-wrap",[["text-wrap","wrap"]]),e("text-nowrap",[["text-wrap","nowrap"]]),e("text-balance",[["text-wrap","balance"]]),e("text-pretty",[["text-wrap","pretty"]]),e("break-normal",[["overflow-wrap","normal"],["word-break","normal"]]),e("break-words",[["overflow-wrap","break-word"]]),e("break-all",[["word-break","break-all"]]),e("break-keep",[["word-break","keep-all"]]);for(let[i,u]of[["rounded",["border-radius"]],["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]],["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]])e(`${i}-none`,u.map(m=>[m,"0"])),e(`${i}-full`,u.map(m=>[m,"calc(infinity * 1px)"])),o(i,{themeKeys:["--radius"],handle:m=>u.map(k=>lib_l(k,m))});e("border-solid",[["--tw-border-style","solid"],["border-style","solid"]]),e("border-dashed",[["--tw-border-style","dashed"],["border-style","dashed"]]),e("border-dotted",[["--tw-border-style","dotted"],["border-style","dotted"]]),e("border-double",[["--tw-border-style","double"],["border-style","double"]]),e("border-hidden",[["--tw-border-style","hidden"],["border-style","hidden"]]),e("border-none",[["--tw-border-style","none"],["border-style","none"]]);{let u=function(m,k){r.functional(m,b=>{if(!b.value){if(b.modifier)return;let V=t.get(["--default-border-width"])??"1px",K=k.width(V);return K?[i(),...K]:void 0}if(b.value.kind==="arbitrary"){let V=b.value.value;switch(b.value.dataType??pe(V,["color","line-width","length"])){case"line-width":case"length":{if(b.modifier)return;let C=k.width(V);return C?[i(),...C]:void 0}default:return V=lib_B(V,b.modifier,t),V===null?void 0:k.color(V)}}{let V=lib_q(b,t,["--border-color","--color"]);if(V)return k.color(V)}{if(b.modifier)return;let V=t.resolve(b.value.value,["--border-width"]);if(V){let K=k.width(V);return K?[i(),...K]:void 0}if(chunk_V2K3XTS4_p(b.value.value)){let K=k.width(`${b.value.value}px`);return K?[i(),...K]:void 0}}}),n(m,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--border-color","--color"],modifiers:Array.from({length:21},(b,V)=>`${V*5}`),hasDefaultValue:!0},{values:["0","2","4","8"],valueThemeKeys:["--border-width"]}])};var x=u;let i=()=>lib_D([lib_$("--tw-border-style","solid")]);u("border",{width:m=>[lib_l("border-style","var(--tw-border-style)"),lib_l("border-width",m)],color:m=>[lib_l("border-color",m)]}),u("border-x",{width:m=>[lib_l("border-inline-style","var(--tw-border-style)"),lib_l("border-inline-width",m)],color:m=>[lib_l("border-inline-color",m)]}),u("border-y",{width:m=>[lib_l("border-block-style","var(--tw-border-style)"),lib_l("border-block-width",m)],color:m=>[lib_l("border-block-color",m)]}),u("border-s",{width:m=>[lib_l("border-inline-start-style","var(--tw-border-style)"),lib_l("border-inline-start-width",m)],color:m=>[lib_l("border-inline-start-color",m)]}),u("border-e",{width:m=>[lib_l("border-inline-end-style","var(--tw-border-style)"),lib_l("border-inline-end-width",m)],color:m=>[lib_l("border-inline-end-color",m)]}),u("border-t",{width:m=>[lib_l("border-top-style","var(--tw-border-style)"),lib_l("border-top-width",m)],color:m=>[lib_l("border-top-color",m)]}),u("border-r",{width:m=>[lib_l("border-right-style","var(--tw-border-style)"),lib_l("border-right-width",m)],color:m=>[lib_l("border-right-color",m)]}),u("border-b",{width:m=>[lib_l("border-bottom-style","var(--tw-border-style)"),lib_l("border-bottom-width",m)],color:m=>[lib_l("border-bottom-color",m)]}),u("border-l",{width:m=>[lib_l("border-left-style","var(--tw-border-style)"),lib_l("border-left-width",m)],color:m=>[lib_l("border-left-color",m)]}),o("divide-x",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}px`:null,handle:m=>[lib_D([lib_$("--tw-divide-x-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-x-width"),i(),lib_l("--tw-divide-x-reverse","0"),lib_l("border-inline-style","var(--tw-border-style)"),lib_l("border-inline-start-width",`calc(${m} * var(--tw-divide-x-reverse))`),lib_l("border-inline-end-width",`calc(${m} * calc(1 - var(--tw-divide-x-reverse)))`)])]}),o("divide-y",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}px`:null,handle:m=>[lib_D([lib_$("--tw-divide-y-reverse","0")]),lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-y-width"),i(),lib_l("--tw-divide-y-reverse","0"),lib_l("border-bottom-style","var(--tw-border-style)"),lib_l("border-top-style","var(--tw-border-style)"),lib_l("border-top-width",`calc(${m} * var(--tw-divide-y-reverse))`),lib_l("border-bottom-width",`calc(${m} * calc(1 - var(--tw-divide-y-reverse)))`)])]}),n("divide-x",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),n("divide-y",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),e("divide-x-reverse",[()=>lib_D([lib_$("--tw-divide-x-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-divide-x-reverse","1")])]),e("divide-y-reverse",[()=>lib_D([lib_$("--tw-divide-y-reverse","0")]),()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-divide-y-reverse","1")])]);for(let m of["solid","dashed","dotted","double","none"])e(`divide-${m}`,[()=>lib_F(":where(& > :not(:last-child))",[lib_l("--tw-sort","divide-style"),lib_l("--tw-border-style",m),lib_l("border-style",m)])])}e("bg-auto",[["background-size","auto"]]),e("bg-cover",[["background-size","cover"]]),e("bg-contain",[["background-size","contain"]]),e("bg-fixed",[["background-attachment","fixed"]]),e("bg-local",[["background-attachment","local"]]),e("bg-scroll",[["background-attachment","scroll"]]),e("bg-center",[["background-position","center"]]),e("bg-top",[["background-position","top"]]),e("bg-right-top",[["background-position","right top"]]),e("bg-right",[["background-position","right"]]),e("bg-right-bottom",[["background-position","right bottom"]]),e("bg-bottom",[["background-position","bottom"]]),e("bg-left-bottom",[["background-position","left bottom"]]),e("bg-left",[["background-position","left"]]),e("bg-left-top",[["background-position","left top"]]),e("bg-repeat",[["background-repeat","repeat"]]),e("bg-no-repeat",[["background-repeat","no-repeat"]]),e("bg-repeat-x",[["background-repeat","repeat-x"]]),e("bg-repeat-y",[["background-repeat","repeat-y"]]),e("bg-repeat-round",[["background-repeat","round"]]),e("bg-repeat-space",[["background-repeat","space"]]),e("bg-none",[["background-image","none"]]);{let m=function(V){let K="in oklab";if(V?.kind==="named")switch(V.value){case"longer":case"shorter":case"increasing":case"decreasing":K=`in oklch ${V.value} hue`;break;default:K=`in ${V.value}`}else V?.kind==="arbitrary"&&(K=V.value);return K},k=function({negative:V}){return K=>{if(!K.value)return;if(K.value.kind==="arbitrary"){if(K.modifier)return;let U=K.value.value;switch(K.value.dataType??pe(U,["angle"])){case"angle":return U=V?`calc(${U} * -1)`:`${U}`,[lib_l("--tw-gradient-position",U),lib_l("background-image",`linear-gradient(var(--tw-gradient-stops,${U}))`)];default:return V?void 0:[lib_l("--tw-gradient-position",U),lib_l("background-image",`linear-gradient(var(--tw-gradient-stops,${U}))`)]}}let C=K.value.value;if(!V&&u.has(C))C=u.get(C);else if(chunk_V2K3XTS4_p(C))C=V?`calc(${C}deg * -1)`:`${C}deg`;else return;let A=m(K.modifier);return[lib_l("--tw-gradient-position",`${C} ${A}`),lib_l("background-image","linear-gradient(var(--tw-gradient-stops))")]}},b=function({negative:V}){return K=>{if(K.value?.kind==="arbitrary"){if(K.modifier)return;let U=K.value.value;return[lib_l("--tw-gradient-position",U),lib_l("background-image",`conic-gradient(var(--tw-gradient-stops,${U}))`)]}let C=m(K.modifier);if(!K.value)return[lib_l("--tw-gradient-position",C),lib_l("background-image","conic-gradient(var(--tw-gradient-stops))")];let A=K.value.value;if(chunk_V2K3XTS4_p(A))return A=V?`calc(${A} * -1)`:`${A}deg`,[lib_l("--tw-gradient-position",`from ${A} ${C}`),lib_l("background-image","conic-gradient(var(--tw-gradient-stops))")]}};var T=m,N=k,R=b;let i=["oklab","oklch","srgb","hsl","longer","shorter","increasing","decreasing"],u=new Map([["to-t","to top"],["to-tr","to top right"],["to-r","to right"],["to-br","to bottom right"],["to-b","to bottom"],["to-bl","to bottom left"],["to-l","to left"],["to-tl","to top left"]]);r.functional("-bg-linear",k({negative:!0})),r.functional("bg-linear",k({negative:!1})),n("bg-linear",()=>[{values:[...u.keys()],modifiers:i},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:i}]),r.functional("-bg-conic",b({negative:!0})),r.functional("bg-conic",b({negative:!1})),n("bg-conic",()=>[{hasDefaultValue:!0,modifiers:i},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:i}]),r.functional("bg-radial",V=>{if(!V.value){let K=m(V.modifier);return[lib_l("--tw-gradient-position",K),lib_l("background-image","radial-gradient(var(--tw-gradient-stops))")]}if(V.value.kind==="arbitrary"){if(V.modifier)return;let K=V.value.value;return[lib_l("--tw-gradient-position",K),lib_l("background-image",`radial-gradient(var(--tw-gradient-stops,${K}))`)]}}),n("bg-radial",()=>[{hasDefaultValue:!0,modifiers:i}])}r.functional("bg",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["image","color","percentage","position","bg-size","length","url"])){case"percentage":case"position":return i.modifier?void 0:[lib_l("background-position",u)];case"bg-size":case"length":case"size":return i.modifier?void 0:[lib_l("background-size",u)];case"image":case"url":return i.modifier?void 0:[lib_l("background-image",u)];default:return u=lib_B(u,i.modifier,t),u===null?void 0:[lib_l("background-color",u)]}}{let u=lib_q(i,t,["--background-color","--color"]);if(u)return[lib_l("background-color",u)]}{if(i.modifier)return;let u=t.resolve(i.value.value,["--background-image"]);if(u)return[lib_l("background-image",u)]}}}),n("bg",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:[],valueThemeKeys:["--background-image"]}]);let w=()=>lib_D([lib_$("--tw-gradient-position"),lib_$("--tw-gradient-from","#0000","<color>"),lib_$("--tw-gradient-via","#0000","<color>"),lib_$("--tw-gradient-to","#0000","<color>"),lib_$("--tw-gradient-stops"),lib_$("--tw-gradient-via-stops"),lib_$("--tw-gradient-from-position","0%","<length-percentage>"),lib_$("--tw-gradient-via-position","50%","<length-percentage>"),lib_$("--tw-gradient-to-position","100%","<length-percentage>")]);function v(i,u){r.functional(i,m=>{if(m.value){if(m.value.kind==="arbitrary"){let k=m.value.value;switch(m.value.dataType??pe(k,["color","length","percentage"])){case"length":case"percentage":return m.modifier?void 0:u.position(k);default:return k=lib_B(k,m.modifier,t),k===null?void 0:u.color(k)}}{let k=lib_q(m,t,["--background-color","--color"]);if(k)return u.color(k)}{if(m.modifier)return;let k=t.resolve(m.value.value,["--gradient-color-stop-positions"]);if(k)return u.position(k);if(m.value.value[m.value.value.length-1]==="%"&&chunk_V2K3XTS4_p(m.value.value.slice(0,-1)))return u.position(m.value.value)}}}),n(i,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(m,k)=>`${k*5}`)},{values:Array.from({length:21},(m,k)=>`${k*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}])}v("from",{color:i=>[w(),lib_l("--tw-sort","--tw-gradient-from"),lib_l("--tw-gradient-from",i),lib_l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:i=>[w(),lib_l("--tw-gradient-from-position",i)]}),e("via-none",[["--tw-gradient-via-stops","initial"]]),v("via",{color:i=>[w(),lib_l("--tw-sort","--tw-gradient-via"),lib_l("--tw-gradient-via",i),lib_l("--tw-gradient-via-stops","var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position)"),lib_l("--tw-gradient-stops","var(--tw-gradient-via-stops)")],position:i=>[w(),lib_l("--tw-gradient-via-position",i)]}),v("to",{color:i=>[w(),lib_l("--tw-sort","--tw-gradient-to"),lib_l("--tw-gradient-to",i),lib_l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:i=>[w(),lib_l("--tw-gradient-to-position",i)]}),e("box-decoration-slice",[["-webkit-box-decoration-break","slice"],["box-decoration-break","slice"]]),e("box-decoration-clone",[["-webkit-box-decoration-break","clone"],["box-decoration-break","clone"]]),e("bg-clip-text",[["background-clip","text"]]),e("bg-clip-border",[["background-clip","border-box"]]),e("bg-clip-padding",[["background-clip","padding-box"]]),e("bg-clip-content",[["background-clip","content-box"]]),e("bg-origin-border",[["background-origin","border-box"]]),e("bg-origin-padding",[["background-origin","padding-box"]]),e("bg-origin-content",[["background-origin","content-box"]]);for(let i of["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"])e(`bg-blend-${i}`,[["background-blend-mode",i]]),e(`mix-blend-${i}`,[["mix-blend-mode",i]]);e("mix-blend-plus-darker",[["mix-blend-mode","plus-darker"]]),e("mix-blend-plus-lighter",[["mix-blend-mode","plus-lighter"]]),e("fill-none",[["fill","none"]]),r.functional("fill",i=>{if(!i.value)return;if(i.value.kind==="arbitrary"){let m=lib_B(i.value.value,i.modifier,t);return m===null?void 0:[lib_l("fill",m)]}let u=lib_q(i,t,["--fill","--color"]);if(u)return[lib_l("fill",u)]}),n("fill",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--fill","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)}]),e("stroke-none",[["stroke","none"]]),r.functional("stroke",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["color","number","length","percentage"])){case"number":case"length":case"percentage":return i.modifier?void 0:[lib_l("stroke-width",u)];default:return u=lib_B(i.value.value,i.modifier,t),u===null?void 0:[lib_l("stroke",u)]}}{let u=lib_q(i,t,["--stroke","--color"]);if(u)return[lib_l("stroke",u)]}{let u=t.resolve(i.value.value,["--stroke-width"]);if(u)return[lib_l("stroke-width",u)];if(chunk_V2K3XTS4_p(i.value.value))return[lib_l("stroke-width",i.value.value)]}}}),n("stroke",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--stroke","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:["0","1","2","3"],valueThemeKeys:["--stroke-width"]}]),e("object-contain",[["object-fit","contain"]]),e("object-cover",[["object-fit","cover"]]),e("object-fill",[["object-fit","fill"]]),e("object-none",[["object-fit","none"]]),e("object-scale-down",[["object-fit","scale-down"]]),e("object-bottom",[["object-position","bottom"]]),e("object-center",[["object-position","center"]]),e("object-left",[["object-position","left"]]),e("object-left-bottom",[["object-position","left bottom"]]),e("object-left-top",[["object-position","left top"]]),e("object-right",[["object-position","right"]]),e("object-right-bottom",[["object-position","right bottom"]]),e("object-right-top",[["object-position","right top"]]),e("object-top",[["object-position","top"]]),o("object",{themeKeys:["--object-position"],handle:i=>[lib_l("object-position",i)]});for(let[i,u]of[["p","padding"],["px","padding-inline"],["py","padding-block"],["ps","padding-inline-start"],["pe","padding-inline-end"],["pt","padding-top"],["pr","padding-right"],["pb","padding-bottom"],["pl","padding-left"]])a(i,["--padding","--spacing"],m=>[lib_l(u,m)]);e("text-left",[["text-align","left"]]),e("text-center",[["text-align","center"]]),e("text-right",[["text-align","right"]]),e("text-justify",[["text-align","justify"]]),e("text-start",[["text-align","start"]]),e("text-end",[["text-align","end"]]),a("indent",["--text-indent","--spacing"],i=>[lib_l("text-indent",i)],{supportsNegative:!0}),e("align-baseline",[["vertical-align","baseline"]]),e("align-top",[["vertical-align","top"]]),e("align-middle",[["vertical-align","middle"]]),e("align-bottom",[["vertical-align","bottom"]]),e("align-text-top",[["vertical-align","text-top"]]),e("align-text-bottom",[["vertical-align","text-bottom"]]),e("align-sub",[["vertical-align","sub"]]),e("align-super",[["vertical-align","super"]]),o("align",{themeKeys:[],handle:i=>[lib_l("vertical-align",i)]}),r.functional("font",i=>{if(!(!i.value||i.modifier)){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["number","generic-name","family-name"])){case"generic-name":case"family-name":return[lib_l("font-family",u)];default:return[lib_D([lib_$("--tw-font-weight")]),lib_l("--tw-font-weight",u),lib_l("font-weight",u)]}}{let u=t.resolveWith(i.value.value,["--font"],["--font-feature-settings","--font-variation-settings"]);if(u){let[m,k={}]=u;return[lib_l("font-family",m),lib_l("font-feature-settings",k["--font-feature-settings"]),lib_l("font-variation-settings",k["--font-variation-settings"])]}}{let u=t.resolve(i.value.value,["--font-weight"]);if(u)return[lib_D([lib_$("--tw-font-weight")]),lib_l("--tw-font-weight",u),lib_l("font-weight",u)]}}}),n("font",()=>[{values:[],valueThemeKeys:["--font"]},{values:[],valueThemeKeys:["--font-weight"]}]),e("uppercase",[["text-transform","uppercase"]]),e("lowercase",[["text-transform","lowercase"]]),e("capitalize",[["text-transform","capitalize"]]),e("normal-case",[["text-transform","none"]]),e("italic",[["font-style","italic"]]),e("not-italic",[["font-style","normal"]]),e("underline",[["text-decoration-line","underline"]]),e("overline",[["text-decoration-line","overline"]]),e("line-through",[["text-decoration-line","line-through"]]),e("no-underline",[["text-decoration-line","none"]]),e("font-stretch-normal",[["font-stretch","normal"]]),e("font-stretch-ultra-condensed",[["font-stretch","ultra-condensed"]]),e("font-stretch-extra-condensed",[["font-stretch","extra-condensed"]]),e("font-stretch-condensed",[["font-stretch","condensed"]]),e("font-stretch-semi-condensed",[["font-stretch","semi-condensed"]]),e("font-stretch-semi-expanded",[["font-stretch","semi-expanded"]]),e("font-stretch-expanded",[["font-stretch","expanded"]]),e("font-stretch-extra-expanded",[["font-stretch","extra-expanded"]]),e("font-stretch-ultra-expanded",[["font-stretch","ultra-expanded"]]),o("font-stretch",{handleBareValue:({value:i})=>{if(!i.endsWith("%"))return null;let u=Number(i.slice(0,-1));return!chunk_V2K3XTS4_p(u)||Number.isNaN(u)||u<50||u>200?null:i},handle:i=>[lib_l("font-stretch",i)]}),n("font-stretch",()=>[{values:["50%","75%","90%","95%","100%","105%","110%","125%","150%","200%"]}]),s("placeholder",{themeKeys:["--background-color","--color"],handle:i=>[lib_F("&::placeholder",[lib_l("--tw-sort","placeholder-color"),lib_l("color",i)])]}),e("decoration-solid",[["text-decoration-style","solid"]]),e("decoration-double",[["text-decoration-style","double"]]),e("decoration-dotted",[["text-decoration-style","dotted"]]),e("decoration-dashed",[["text-decoration-style","dashed"]]),e("decoration-wavy",[["text-decoration-style","wavy"]]),e("decoration-auto",[["text-decoration-thickness","auto"]]),e("decoration-from-font",[["text-decoration-thickness","from-font"]]),r.functional("decoration",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["color","length","percentage"])){case"length":case"percentage":return i.modifier?void 0:[lib_l("text-decoration-thickness",u)];default:return u=lib_B(u,i.modifier,t),u===null?void 0:[lib_l("text-decoration-color",u)]}}{let u=t.resolve(i.value.value,["--text-decoration-thickness"]);if(u)return i.modifier?void 0:[lib_l("text-decoration-thickness",u)];if(chunk_V2K3XTS4_p(i.value.value))return i.modifier?void 0:[lib_l("text-decoration-thickness",`${i.value.value}px`)]}{let u=lib_q(i,t,["--text-decoration-color","--color"]);if(u)return[lib_l("text-decoration-color",u)]}}}),n("decoration",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-decoration-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:["0","1","2"],valueThemeKeys:["--text-decoration-thickness"]}]),e("animate-none",[["animation","none"]]),o("animate",{themeKeys:["--animate"],handle:i=>[lib_l("animation",i)]});{let i=["var(--tw-blur,)","var(--tw-brightness,)","var(--tw-contrast,)","var(--tw-grayscale,)","var(--tw-hue-rotate,)","var(--tw-invert,)","var(--tw-saturate,)","var(--tw-sepia,)","var(--tw-drop-shadow,)"].join(" "),u=["var(--tw-backdrop-blur,)","var(--tw-backdrop-brightness,)","var(--tw-backdrop-contrast,)","var(--tw-backdrop-grayscale,)","var(--tw-backdrop-hue-rotate,)","var(--tw-backdrop-invert,)","var(--tw-backdrop-opacity,)","var(--tw-backdrop-saturate,)","var(--tw-backdrop-sepia,)"].join(" "),m=()=>lib_D([lib_$("--tw-blur"),lib_$("--tw-brightness"),lib_$("--tw-contrast"),lib_$("--tw-grayscale"),lib_$("--tw-hue-rotate"),lib_$("--tw-invert"),lib_$("--tw-opacity"),lib_$("--tw-saturate"),lib_$("--tw-sepia")]),k=()=>lib_D([lib_$("--tw-backdrop-blur"),lib_$("--tw-backdrop-brightness"),lib_$("--tw-backdrop-contrast"),lib_$("--tw-backdrop-grayscale"),lib_$("--tw-backdrop-hue-rotate"),lib_$("--tw-backdrop-invert"),lib_$("--tw-backdrop-opacity"),lib_$("--tw-backdrop-saturate"),lib_$("--tw-backdrop-sepia")]);r.functional("filter",b=>{if(!b.modifier){if(b.value===null)return[m(),lib_l("filter",i)];if(b.value.kind==="arbitrary")return[lib_l("filter",b.value.value)];switch(b.value.value){case"none":return[lib_l("filter","none")]}}}),r.functional("backdrop-filter",b=>{if(!b.modifier){if(b.value===null)return[k(),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)];if(b.value.kind==="arbitrary")return[lib_l("-webkit-backdrop-filter",b.value.value),lib_l("backdrop-filter",b.value.value)];switch(b.value.value){case"none":return[lib_l("-webkit-backdrop-filter","none"),lib_l("backdrop-filter","none")]}}}),o("blur",{themeKeys:["--blur"],handle:b=>[m(),lib_l("--tw-blur",`blur(${b})`),lib_l("filter",i)]}),e("blur-none",[m,["--tw-blur"," "],["filter",i]]),o("backdrop-blur",{themeKeys:["--backdrop-blur","--blur"],handle:b=>[k(),lib_l("--tw-backdrop-blur",`blur(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),e("backdrop-blur-none",[k,["--tw-backdrop-blur"," "],["-webkit-backdrop-filter",u],["backdrop-filter",u]]),o("brightness",{themeKeys:["--brightness"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[m(),lib_l("--tw-brightness",`brightness(${b})`),lib_l("filter",i)]}),o("backdrop-brightness",{themeKeys:["--backdrop-brightness","--brightness"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-brightness",`brightness(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--brightness"]}]),n("backdrop-brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--backdrop-brightness","--brightness"]}]),o("contrast",{themeKeys:["--contrast"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[m(),lib_l("--tw-contrast",`contrast(${b})`),lib_l("filter",i)]}),o("backdrop-contrast",{themeKeys:["--backdrop-contrast","--contrast"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-contrast",`contrast(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--contrast"]}]),n("backdrop-contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--backdrop-contrast","--contrast"]}]),o("grayscale",{themeKeys:["--grayscale"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[m(),lib_l("--tw-grayscale",`grayscale(${b})`),lib_l("filter",i)]}),o("backdrop-grayscale",{themeKeys:["--backdrop-grayscale","--grayscale"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[k(),lib_l("--tw-backdrop-grayscale",`grayscale(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--grayscale"],hasDefaultValue:!0}]),n("backdrop-grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-grayscale","--grayscale"],hasDefaultValue:!0}]),o("hue-rotate",{supportsNegative:!0,themeKeys:["--hue-rotate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}deg`:null,handle:b=>[m(),lib_l("--tw-hue-rotate",`hue-rotate(${b})`),lib_l("filter",i)]}),o("backdrop-hue-rotate",{supportsNegative:!0,themeKeys:["--backdrop-hue-rotate","--hue-rotate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}deg`:null,handle:b=>[k(),lib_l("--tw-backdrop-hue-rotate",`hue-rotate(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--hue-rotate"]}]),n("backdrop-hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--backdrop-hue-rotate","--hue-rotate"]}]),o("invert",{themeKeys:["--invert"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[m(),lib_l("--tw-invert",`invert(${b})`),lib_l("filter",i)]}),o("backdrop-invert",{themeKeys:["--backdrop-invert","--invert"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[k(),lib_l("--tw-backdrop-invert",`invert(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--invert"],hasDefaultValue:!0}]),n("backdrop-invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-invert","--invert"],hasDefaultValue:!0}]),o("saturate",{themeKeys:["--saturate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[m(),lib_l("--tw-saturate",`saturate(${b})`),lib_l("filter",i)]}),o("backdrop-saturate",{themeKeys:["--backdrop-saturate","--saturate"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-saturate",`saturate(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--saturate"]}]),n("backdrop-saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--backdrop-saturate","--saturate"]}]),o("sepia",{themeKeys:["--sepia"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[m(),lib_l("--tw-sepia",`sepia(${b})`),lib_l("filter",i)]}),o("backdrop-sepia",{themeKeys:["--backdrop-sepia","--sepia"],handleBareValue:({value:b})=>chunk_V2K3XTS4_p(b)?`${b}%`:null,defaultValue:"100%",handle:b=>[k(),lib_l("--tw-backdrop-sepia",`sepia(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--sepia"],hasDefaultValue:!0}]),n("backdrop-sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--backdrop-sepia","--sepia"],hasDefaultValue:!0}]),e("drop-shadow-none",[m,["--tw-drop-shadow"," "],["filter",i]]),o("drop-shadow",{themeKeys:["--drop-shadow"],handle:b=>[m(),lib_l("--tw-drop-shadow",chunk_V2K3XTS4_u(b,",").map(V=>`drop-shadow(${V})`).join(" ")),lib_l("filter",i)]}),o("backdrop-opacity",{themeKeys:["--backdrop-opacity","--opacity"],handleBareValue:({value:b})=>de(b)?`${b}%`:null,handle:b=>[k(),lib_l("--tw-backdrop-opacity",`opacity(${b})`),lib_l("-webkit-backdrop-filter",u),lib_l("backdrop-filter",u)]}),n("backdrop-opacity",()=>[{values:Array.from({length:21},(b,V)=>`${V*5}`),valueThemeKeys:["--backdrop-opacity","--opacity"]}])}{let i=`var(--tw-ease, ${t.resolve(null,["--default-transition-timing-function"])??"ease"})`,u=`var(--tw-duration, ${t.resolve(null,["--default-transition-duration"])??"0s"})`;e("transition-none",[["transition-property","none"]]),e("transition-all",[["transition-property","all"],["transition-timing-function",i],["transition-duration",u]]),e("transition-colors",[["transition-property","color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to"],["transition-timing-function",i],["transition-duration",u]]),e("transition-opacity",[["transition-property","opacity"],["transition-timing-function",i],["transition-duration",u]]),e("transition-shadow",[["transition-property","box-shadow"],["transition-timing-function",i],["transition-duration",u]]),e("transition-transform",[["transition-property","transform, translate, scale, rotate"],["transition-timing-function",i],["transition-duration",u]]),o("transition",{defaultValue:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter",themeKeys:["--transition-property"],handle:m=>[lib_l("transition-property",m),lib_l("transition-timing-function",i),lib_l("transition-duration",u)]}),e("transition-discrete",[["transition-behavior","allow-discrete"]]),e("transition-normal",[["transition-behavior","normal"]]),o("delay",{handleBareValue:({value:m})=>chunk_V2K3XTS4_p(m)?`${m}ms`:null,themeKeys:["--transition-delay"],handle:m=>[lib_l("transition-delay",m)]});{let m=()=>lib_D([lib_$("--tw-duration")]);e("duration-initial",[m,["--tw-duration","initial"]]),r.functional("duration",k=>{if(k.modifier||!k.value)return;let b=null;if(k.value.kind==="arbitrary"?b=k.value.value:(b=t.resolve(k.value.fraction??k.value.value,["--transition-duration"]),b===null&&chunk_V2K3XTS4_p(k.value.value)&&(b=`${k.value.value}ms`)),b!==null)return[m(),lib_l("--tw-duration",b),lib_l("transition-duration",b)]})}n("delay",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-delay"]}]),n("duration",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-duration"]}])}{let i=()=>lib_D([lib_$("--tw-ease")]);e("ease-initial",[i,["--tw-ease","initial"]]),e("ease-linear",[i,["--tw-ease","linear"],["transition-timing-function","linear"]]),o("ease",{themeKeys:["--ease"],handle:u=>[i(),lib_l("--tw-ease",u),lib_l("transition-timing-function",u)]})}e("will-change-auto",[["will-change","auto"]]),e("will-change-scroll",[["will-change","scroll-position"]]),e("will-change-contents",[["will-change","contents"]]),e("will-change-transform",[["will-change","transform"]]),o("will-change",{themeKeys:[],handle:i=>[lib_l("will-change",i)]}),e("content-none",[["--tw-content","none"],["content","none"]]),o("content",{themeKeys:[],handle:i=>[lib_D([lib_$("--tw-content",'""')]),lib_l("--tw-content",i),lib_l("content","var(--tw-content)")]});{let i="var(--tw-contain-size,) var(--tw-contain-layout,) var(--tw-contain-paint,) var(--tw-contain-style,)",u=()=>lib_D([lib_$("--tw-contain-size"),lib_$("--tw-contain-layout"),lib_$("--tw-contain-paint"),lib_$("--tw-contain-style")]);e("contain-none",[["contain","none"]]),e("contain-content",[["contain","content"]]),e("contain-strict",[["contain","strict"]]),e("contain-size",[u,["--tw-contain-size","size"],["contain",i]]),e("contain-inline-size",[u,["--tw-contain-size","inline-size"],["contain",i]]),e("contain-layout",[u,["--tw-contain-layout","layout"],["contain",i]]),e("contain-paint",[u,["--tw-contain-paint","paint"],["contain",i]]),e("contain-style",[u,["--tw-contain-style","style"],["contain",i]]),o("contain",{themeKeys:[],handle:m=>[lib_l("contain",m)]})}e("forced-color-adjust-none",[["forced-color-adjust","none"]]),e("forced-color-adjust-auto",[["forced-color-adjust","auto"]]),e("leading-none",[()=>lib_D([lib_$("--tw-leading")]),["--tw-leading","1"],["line-height","1"]]),a("leading",["--leading","--spacing"],i=>[lib_D([lib_$("--tw-leading")]),lib_l("--tw-leading",i),lib_l("line-height",i)]),o("tracking",{supportsNegative:!0,themeKeys:["--tracking"],handle:i=>[lib_D([lib_$("--tw-tracking")]),lib_l("--tw-tracking",i),lib_l("letter-spacing",i)]}),e("antialiased",[["-webkit-font-smoothing","antialiased"],["-moz-osx-font-smoothing","grayscale"]]),e("subpixel-antialiased",[["-webkit-font-smoothing","auto"],["-moz-osx-font-smoothing","auto"]]);{let i="var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)",u=()=>lib_D([lib_$("--tw-ordinal"),lib_$("--tw-slashed-zero"),lib_$("--tw-numeric-figure"),lib_$("--tw-numeric-spacing"),lib_$("--tw-numeric-fraction")]);e("normal-nums",[["font-variant-numeric","normal"]]),e("ordinal",[u,["--tw-ordinal","ordinal"],["font-variant-numeric",i]]),e("slashed-zero",[u,["--tw-slashed-zero","slashed-zero"],["font-variant-numeric",i]]),e("lining-nums",[u,["--tw-numeric-figure","lining-nums"],["font-variant-numeric",i]]),e("oldstyle-nums",[u,["--tw-numeric-figure","oldstyle-nums"],["font-variant-numeric",i]]),e("proportional-nums",[u,["--tw-numeric-spacing","proportional-nums"],["font-variant-numeric",i]]),e("tabular-nums",[u,["--tw-numeric-spacing","tabular-nums"],["font-variant-numeric",i]]),e("diagonal-fractions",[u,["--tw-numeric-fraction","diagonal-fractions"],["font-variant-numeric",i]]),e("stacked-fractions",[u,["--tw-numeric-fraction","stacked-fractions"],["font-variant-numeric",i]])}{let i=()=>lib_D([lib_$("--tw-outline-style","solid")]);r.static("outline-hidden",()=>[lib_l("outline-style","none"),lib_O("@media","(forced-colors: active)",[lib_l("outline","2px solid transparent"),lib_l("outline-offset","2px")])]),e("outline-none",[["--tw-outline-style","none"],["outline-style","none"]]),e("outline-solid",[["--tw-outline-style","solid"],["outline-style","solid"]]),e("outline-dashed",[["--tw-outline-style","dashed"],["outline-style","dashed"]]),e("outline-dotted",[["--tw-outline-style","dotted"],["outline-style","dotted"]]),e("outline-double",[["--tw-outline-style","double"],["outline-style","double"]]),r.functional("outline",u=>{if(u.value===null)return u.modifier?void 0:[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width","1px")];if(u.value.kind==="arbitrary"){let m=u.value.value;switch(u.value.dataType??pe(m,["color","length","number","percentage"])){case"length":case"number":case"percentage":return u.modifier?void 0:[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width",m)];default:return m=lib_B(m,u.modifier,t),m===null?void 0:[lib_l("outline-color",m)]}}{let m=lib_q(u,t,["--outline-color","--color"]);if(m)return[lib_l("outline-color",m)]}{if(u.modifier)return;let m=t.resolve(u.value.value,["--outline-width"]);if(m)return[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width",m)];if(chunk_V2K3XTS4_p(u.value.value))return[i(),lib_l("outline-style","var(--tw-outline-style)"),lib_l("outline-width",`${u.value.value}px`)]}}),n("outline",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--outline-color","--color"],modifiers:Array.from({length:21},(u,m)=>`${m*5}`),hasDefaultValue:!0},{values:["0","1","2","4","8"],valueThemeKeys:["--outline-width"]}]),o("outline-offset",{supportsNegative:!0,themeKeys:["--outline-offset"],handleBareValue:({value:u})=>chunk_V2K3XTS4_p(u)?`${u}px`:null,handle:u=>[lib_l("outline-offset",u)]}),n("outline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--outline-offset"]}])}o("opacity",{themeKeys:["--opacity"],handleBareValue:({value:i})=>de(i)?`${i}%`:null,handle:i=>[lib_l("opacity",i)]}),n("opacity",()=>[{values:Array.from({length:21},(i,u)=>`${u*5}`),valueThemeKeys:["--opacity"]}]),e("underline-offset-auto",[["text-underline-offset","auto"]]),o("underline-offset",{supportsNegative:!0,themeKeys:["--text-underline-offset"],handleBareValue:({value:i})=>chunk_V2K3XTS4_p(i)?`${i}px`:null,handle:i=>[lib_l("text-underline-offset",i)]}),n("underline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--text-underline-offset"]}]),r.functional("text",i=>{if(i.value){if(i.value.kind==="arbitrary"){let u=i.value.value;switch(i.value.dataType??pe(u,["color","length","percentage","absolute-size","relative-size"])){case"size":case"length":case"percentage":case"absolute-size":case"relative-size":{if(i.modifier){let k=i.modifier.kind==="arbitrary"?i.modifier.value:t.resolve(i.modifier.value,["--leading"]);if(!k&&ue(i.modifier.value)){let b=t.resolve(null,["--spacing"]);if(!b)return null;k=`calc(${b} * ${i.modifier.value})`}return!k&&i.modifier.value==="none"&&(k="1"),k?[lib_l("font-size",u),lib_l("line-height",k)]:null}return[lib_l("font-size",u)]}default:return u=lib_B(u,i.modifier,t),u===null?void 0:[lib_l("color",u)]}}{let u=lib_q(i,t,["--text-color","--color"]);if(u)return[lib_l("color",u)]}{let u=t.resolveWith(i.value.value,["--text"],["--line-height","--letter-spacing","--font-weight"]);if(u){let[m,k={}]=Array.isArray(u)?u:[u];if(i.modifier){let b=i.modifier.kind==="arbitrary"?i.modifier.value:t.resolve(i.modifier.value,["--leading"]);if(!b&&ue(i.modifier.value)){let K=t.resolve(null,["--spacing"]);if(!K)return null;b=`calc(${K} * ${i.modifier.value})`}if(!b&&i.modifier.value==="none"&&(b="1"),!b)return null;let V=[lib_l("font-size",m)];return b&&V.push(lib_l("line-height",b)),V}return typeof k=="string"?[lib_l("font-size",m),lib_l("line-height",k)]:[lib_l("font-size",m),lib_l("line-height",k["--line-height"]?`var(--tw-leading, ${k["--line-height"]})`:void 0),lib_l("letter-spacing",k["--letter-spacing"]?`var(--tw-tracking, ${k["--letter-spacing"]})`:void 0),lib_l("font-weight",k["--font-weight"]?`var(--tw-font-weight, ${k["--font-weight"]})`:void 0)]}}}}),n("text",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:[],valueThemeKeys:["--text"],modifiers:[],modifierThemeKeys:["--leading"]}]);{let b=function(C){return`var(--tw-ring-inset,) 0 0 0 calc(${C} + var(--tw-ring-offset-width)) var(--tw-ring-color, ${k})`},V=function(C){return`inset 0 0 0 ${C} var(--tw-inset-ring-color, currentColor)`};var E=b,P=V;let i=["var(--tw-inset-shadow)","var(--tw-inset-ring-shadow)","var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow)"].join(", "),u="0 0 #0000",m=()=>lib_D([lib_$("--tw-shadow",u),lib_$("--tw-shadow-color"),lib_$("--tw-inset-shadow",u),lib_$("--tw-inset-shadow-color"),lib_$("--tw-ring-color"),lib_$("--tw-ring-shadow",u),lib_$("--tw-inset-ring-color"),lib_$("--tw-inset-ring-shadow",u),lib_$("--tw-ring-inset"),lib_$("--tw-ring-offset-width","0px","<length>"),lib_$("--tw-ring-offset-color","#fff"),lib_$("--tw-ring-offset-shadow",u)]);e("shadow-initial",[m,["--tw-shadow-color","initial"]]),r.functional("shadow",C=>{if(!C.value){let A=t.get(["--shadow"]);return A===null?void 0:[m(),lib_l("--tw-shadow",lib_ne(A,U=>`var(--tw-shadow-color, ${U})`)),lib_l("box-shadow",i)]}if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color"])){case"color":return A=lib_B(A,C.modifier,t),A===null?void 0:[m(),lib_l("--tw-shadow-color",A)];default:return[m(),lib_l("--tw-shadow",lib_ne(A,be=>`var(--tw-shadow-color, ${be})`)),lib_l("box-shadow",i)]}}switch(C.value.value){case"none":return C.modifier?void 0:[m(),lib_l("--tw-shadow",u),lib_l("box-shadow",i)]}{let A=t.get([`--shadow-${C.value.value}`]);if(A)return C.modifier?void 0:[m(),lib_l("--tw-shadow",lib_ne(A,U=>`var(--tw-shadow-color, ${U})`)),lib_l("box-shadow",i)]}{let A=lib_q(C,t,["--box-shadow-color","--color"]);if(A)return[m(),lib_l("--tw-shadow-color",A)]}}),n("shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:["none"],valueThemeKeys:["--shadow"],hasDefaultValue:!0}]),e("inset-shadow-initial",[m,["--tw-inset-shadow-color","initial"]]),r.functional("inset-shadow",C=>{if(!C.value){let A=t.get(["--inset-shadow"]);return A===null?void 0:[m(),lib_l("--tw-inset-shadow",lib_ne(A,U=>`var(--tw-inset-shadow-color, ${U})`)),lib_l("box-shadow",i)]}if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color"])){case"color":return A=lib_B(A,C.modifier,t),A===null?void 0:[m(),lib_l("--tw-inset-shadow-color",A)];default:return[m(),lib_l("--tw-inset-shadow",`inset ${lib_ne(A,be=>`var(--tw-inset-shadow-color, ${be})`)}`),lib_l("box-shadow",i)]}}switch(C.value.value){case"none":return C.modifier?void 0:[m(),lib_l("--tw-inset-shadow",u),lib_l("box-shadow",i)]}{let A=t.get([`--inset-shadow-${C.value.value}`]);if(A)return C.modifier?void 0:[m(),lib_l("--tw-inset-shadow",lib_ne(A,U=>`var(--tw-inset-shadow-color, ${U})`)),lib_l("box-shadow",i)]}{let A=lib_q(C,t,["--box-shadow-color","--color"]);if(A)return[m(),lib_l("--tw-inset-shadow-color",A)]}}),n("inset-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:[],valueThemeKeys:["--inset-shadow"],hasDefaultValue:!0}]),e("ring-inset",[m,["--tw-ring-inset","inset"]]);let k=t.get(["--default-ring-color"])??"currentColor";r.functional("ring",C=>{if(!C.value){if(C.modifier)return;let A=t.get(["--default-ring-width"])??"1px";return[m(),lib_l("--tw-ring-shadow",b(A)),lib_l("box-shadow",i)]}if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color","length"])){case"length":return C.modifier?void 0:[m(),lib_l("--tw-ring-shadow",b(A)),lib_l("box-shadow",i)];default:return A=lib_B(A,C.modifier,t),A===null?void 0:[lib_l("--tw-ring-color",A)]}}{let A=lib_q(C,t,["--ring-color","--color"]);if(A)return[lib_l("--tw-ring-color",A)]}{if(C.modifier)return;let A=t.resolve(C.value.value,["--ring-width"]);if(A===null&&chunk_V2K3XTS4_p(C.value.value)&&(A=`${C.value.value}px`),A)return[m(),lib_l("--tw-ring-shadow",b(A)),lib_l("box-shadow",i)]}}),n("ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]),r.functional("inset-ring",C=>{if(!C.value)return C.modifier?void 0:[m(),lib_l("--tw-inset-ring-shadow",V("1px")),lib_l("box-shadow",i)];if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color","length"])){case"length":return C.modifier?void 0:[m(),lib_l("--tw-inset-ring-shadow",V(A)),lib_l("box-shadow",i)];default:return A=lib_B(A,C.modifier,t),A===null?void 0:[lib_l("--tw-inset-ring-color",A)]}}{let A=lib_q(C,t,["--ring-color","--color"]);if(A)return[lib_l("--tw-inset-ring-color",A)]}{if(C.modifier)return;let A=t.resolve(C.value.value,["--ring-width"]);if(A===null&&chunk_V2K3XTS4_p(C.value.value)&&(A=`${C.value.value}px`),A)return[m(),lib_l("--tw-inset-ring-shadow",V(A)),lib_l("box-shadow",i)]}}),n("inset-ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(C,A)=>`${A*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]);let K="var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)";r.functional("ring-offset",C=>{if(C.value){if(C.value.kind==="arbitrary"){let A=C.value.value;switch(C.value.dataType??pe(A,["color","length"])){case"length":return C.modifier?void 0:[lib_l("--tw-ring-offset-width",A),lib_l("--tw-ring-offset-shadow",K)];default:return A=lib_B(A,C.modifier,t),A===null?void 0:[lib_l("--tw-ring-offset-color",A)]}}{let A=t.resolve(C.value.value,["--ring-offset-width"]);if(A)return C.modifier?void 0:[lib_l("--tw-ring-offset-width",A),lib_l("--tw-ring-offset-shadow",K)];if(chunk_V2K3XTS4_p(C.value.value))return C.modifier?void 0:[lib_l("--tw-ring-offset-width",`${C.value.value}px`),lib_l("--tw-ring-offset-shadow",K)]}{let A=lib_q(C,t,["--ring-offset-color","--color"]);if(A)return[lib_l("--tw-ring-offset-color",A)]}}})}return n("ring-offset",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-offset-color","--color"],modifiers:Array.from({length:21},(i,u)=>`${u*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-offset-width"]}]),r.functional("@container",i=>{let u=null;if(i.value===null?u="inline-size":i.value.kind==="arbitrary"?u=i.value.value:i.value.kind==="named"&&i.value.value==="normal"&&(u="normal"),u!==null)return i.modifier?[lib_l("container-type",u),lib_l("container-name",i.modifier.value)]:[lib_l("container-type",u)]}),n("@container",()=>[{values:["normal"],valueThemeKeys:[],hasDefaultValue:!0}]),r}function St(t){let r=t.params;return _r.test(r)?n=>{let e=new Set,o=new Set;lib_j(t.nodes,s=>{if(s.kind!=="declaration"||!s.value||!s.value.includes("--value(")&&!s.value.includes("--modifier("))return;let a=lib_L(s.value);le(a,c=>{if(c.kind!=="function"||c.value!=="--value"&&c.value!=="--modifier")return;let d=chunk_V2K3XTS4_u(lib_W(c.nodes),",");for(let[f,p]of d.entries())p=p.replace(/\\\*/g,"*"),p=p.replace(/--(.*?)\s--(.*?)/g,"--$1-*--$2"),p=p.replace(/\s+/g,""),p=p.replace(/(-\*){2,}/g,"-*"),p[0]==="-"&&p[1]==="-"&&!p.includes("-*")&&(p+="-*"),d[f]=p;c.nodes=lib_L(d.join(","));for(let f of c.nodes)if(f.kind==="word"&&f.value[0]==="-"&&f.value[1]==="-"){let p=f.value.replace(/-\*.*$/g,"");c.value==="--value"?e.add(p):c.value==="--modifier"&&o.add(p)}}),s.value=lib_W(a)}),n.utilities.functional(r.slice(0,-2),s=>{let a=structuredClone(t),c=s.value,d=s.modifier;if(c===null)return;let f=!1,p=!1,g=!1,h=!1,y=new Map,w=!1;if(lib_j([a],(v,{parent:x,replaceWith:T})=>{if(x?.kind!=="rule"&&x?.kind!=="at-rule"||v.kind!=="declaration"||!v.value)return;let N=lib_L(v.value);(le(N,(E,{replaceWith:P})=>{if(E.kind==="function"){if(E.value==="--value"){f=!0;let i=Nt(c,E,n);return i?(p=!0,i.ratio?w=!0:y.set(v,x),P(i.nodes),1):(f||=!1,T([]),2)}else if(E.value==="--modifier"){if(d===null)return T([]),1;g=!0;let i=Nt(d,E,n);return i?(h=!0,P(i.nodes),1):(g||=!1,T([]),2)}}})??0)===0&&(v.value=lib_W(N))}),f&&!p||g&&!h||w&&h||d&&!w&&!h)return null;if(w)for(let[v,x]of y){let T=x.nodes.indexOf(v);T!==-1&&x.nodes.splice(T,1)}return a.nodes}),n.utilities.suggest(r.slice(0,-2),()=>[{values:n.theme.keysInNamespaces(e).map(s=>s.replaceAll("_",".")),modifiers:n.theme.keysInNamespaces(o).map(s=>s.replaceAll("_","."))}])}:jr.test(r)?n=>{n.utilities.static(r,()=>structuredClone(t.nodes))}:null}function Nt(t,r,n){for(let e of r.nodes)if(t.kind==="named"&&e.kind==="word"&&e.value[0]==="-"&&e.value[1]==="-"){let o=e.value;if(o.endsWith("-*")){o=o.slice(0,-2);let s=n.theme.resolve(t.value,[o]);if(s)return{nodes:lib_L(s)}}else{let s=o.split("-*");if(s.length<=1)continue;let a=[s.shift()],c=n.theme.resolveWith(t.value,a,s);if(c){let[,d={}]=c;{let f=d[s.pop()];if(f)return{nodes:lib_L(f)}}}}}else if(t.kind==="named"&&e.kind==="word"){if(e.value!=="number"&&e.value!=="integer"&&e.value!=="ratio"&&e.value!=="percentage")continue;let o=e.value==="ratio"&&"fraction"in t?t.fraction:t.value;if(!o)continue;let s=pe(o,[e.value]);if(s===null)continue;if(s==="ratio"){let[a,c]=chunk_V2K3XTS4_u(o,"/");if(!chunk_V2K3XTS4_p(a)||!chunk_V2K3XTS4_p(c))continue}else{if(s==="number"&&!ue(o))continue;if(s==="percentage"&&!chunk_V2K3XTS4_p(o.slice(0,-1)))continue}return{nodes:lib_L(o),ratio:s==="ratio"}}else if(t.kind==="arbitrary"&&e.kind==="word"&&e.value[0]==="["&&e.value[e.value.length-1]==="]"){let o=e.value.slice(1,-1);if(o==="*")return{nodes:lib_L(t.value)};if("dataType"in t&&t.dataType&&t.dataType!==o)continue;if("dataType"in t&&t.dataType)return{nodes:lib_L(t.value)};if(pe(t.value,[o])!==null)return{nodes:lib_L(t.value)}}}var Ge={"--alpha":Dr,"--spacing":Fr,"--theme":Ur,theme:Kt};function Dr(t,r,...n){let[e,o]=chunk_V2K3XTS4_u(r,"/").map(s=>s.trim());if(!e||!o)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${e||"var(--my-color)"} / ${o||"50%"})\``);if(n.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${e||"var(--my-color)"} / ${o||"50%"})\``);return lib_G(e,o)}function Fr(t,r,...n){if(!r)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(n.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${n.length+1}.`);let e=t.theme.resolve(null,["--spacing"]);if(!e)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${e} * ${r})`}function Ur(t,r,...n){if(!r.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");return Kt(t,r,...n)}function Kt(t,r,...n){r=Ir(r);let e=t.resolveThemeValue(r);if(!e&&n.length>0)return n.join(", ");if(!e)throw new Error(`Could not resolve value for theme function: \`theme(${r})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return e}var Et=new RegExp(Object.keys(Ge).map(t=>`${t}\\(`).join("|"));function ae(t,r){let n=0;return lib_j(t,e=>{if(e.kind==="declaration"&&e.value&&Et.test(e.value)){n|=8,e.value=Rt(e.value,r);return}e.kind==="at-rule"&&(e.name==="@media"||e.name==="@custom-media"||e.name==="@container"||e.name==="@supports")&&Et.test(e.params)&&(n|=8,e.params=Rt(e.params,r))}),n}function Rt(t,r){let n=lib_L(t);return le(n,(e,{replaceWith:o})=>{if(e.kind==="function"&&e.value in Ge){let s=chunk_V2K3XTS4_u(lib_W(e.nodes).trim(),",").map(c=>c.trim()),a=Ge[e.value](r,...s);return o(lib_L(a))}}),lib_W(n)}function Ir(t){if(t[0]!=="'"&&t[0]!=='"')return t;let r="",n=t[0];for(let e=1;e<t.length-1;e++){let o=t[e],s=t[e+1];o==="\\"&&(s===n||s==="\\")?(r+=s,e++):r+=o}return r}function Re(t,r){let n=t.length,e=r.length,o=n<e?n:e;for(let s=0;s<o;s++){let a=t.charCodeAt(s),c=r.charCodeAt(s);if(a!==c){if(a>=48&&a<=57&&c>=48&&c<=57){let d=s,f=s+1,p=s,g=s+1;for(a=t.charCodeAt(f);a>=48&&a<=57;)a=t.charCodeAt(++f);for(c=r.charCodeAt(g);c>=48&&c<=57;)c=r.charCodeAt(++g);let h=t.slice(d,f),y=r.slice(p,g);return Number(h)-Number(y)||(h<y?-1:1)}return a-c}}return t.length-r.length}function Pt(t){let r=[];for(let n of t.utilities.keys("static"))r.push([n,{modifiers:[]}]);for(let n of t.utilities.keys("functional")){let e=t.utilities.getCompletions(n);for(let o of e)for(let s of o.values){let a=s===null?n:`${n}-${s}`;r.push([a,{modifiers:o.modifiers}]),o.supportsNegative&&r.push([`-${a}`,{modifiers:o.modifiers}])}}return r.sort((n,e)=>Re(n[0],e[0])),r}function Ot(t){let r=[];for(let[e,o]of t.variants.entries()){let c=function({value:d,modifier:f}={}){let p=e;d&&(p+=s?`-${d}`:d),f&&(p+=`/${f}`);let g=t.parseVariant(p);if(!g)return[];let h=lib_F(".__placeholder__",[]);if(se(h,g,t.variants)===null)return[];let y=[];return Se(h.nodes,(w,{path:v})=>{if(w.kind!=="rule"&&w.kind!=="at-rule"||w.nodes.length>0)return;v.sort((N,R)=>{let E=N.kind==="at-rule",P=R.kind==="at-rule";return E&&!P?-1:!E&&P?1:0});let x=v.flatMap(N=>N.kind==="rule"?N.selector==="&"?[]:[N.selector]:N.kind==="at-rule"?[`${N.name} ${N.params}`]:[]),T="";for(let N=x.length-1;N>=0;N--)T=T===""?x[N]:`${x[N]} { ${T} }`;y.push(T)}),y};var n=c;if(o.kind==="arbitrary")continue;let s=e!=="@",a=t.variants.getCompletions(e);switch(o.kind){case"static":{r.push({name:e,values:a,isArbitrary:!1,hasDash:s,selectors:c});break}case"functional":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}case"compound":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}}}return r}function jt(t,r){let{astNodes:n,nodeSorting:e}=lib_Z(Array.from(r),t),o=new Map(r.map(a=>[a,null])),s=0n;for(let a of n){let c=e.get(a)?.candidate;c&&o.set(c,o.get(c)??s++)}return r.map(a=>[a,o.get(a)??null])}var Ke=/^@?[a-zA-Z0-9_-]*$/;var He=class{compareFns=new Map;variants=new Map;completions=new Map;groupOrder=null;lastOrder=0;static(r,n,{compounds:e,order:o}={}){this.set(r,{kind:"static",applyFn:n,compoundsWith:0,compounds:e??2,order:o})}fromAst(r,n){let e=[];lib_j(n,o=>{o.kind==="rule"?e.push(o.selector):o.kind==="at-rule"&&o.name!=="@slot"&&e.push(`${o.name} ${o.params}`)}),this.static(r,o=>{let s=structuredClone(n);Ye(s,o.nodes),o.nodes=s},{compounds:lib_ie(e)})}functional(r,n,{compounds:e,order:o}={}){this.set(r,{kind:"functional",applyFn:n,compoundsWith:0,compounds:e??2,order:o})}compound(r,n,e,{compounds:o,order:s}={}){this.set(r,{kind:"compound",applyFn:e,compoundsWith:n,compounds:o??2,order:s})}group(r,n){this.groupOrder=this.nextOrder(),n&&this.compareFns.set(this.groupOrder,n),r(),this.groupOrder=null}has(r){return this.variants.has(r)}get(r){return this.variants.get(r)}kind(r){return this.variants.get(r)?.kind}compoundsWith(r,n){let e=this.variants.get(r),o=typeof n=="string"?this.variants.get(n):n.kind==="arbitrary"?{compounds:lib_ie([n.selector])}:this.variants.get(n.root);return!(!e||!o||e.kind!=="compound"||o.compounds===0||e.compoundsWith===0||!(e.compoundsWith&o.compounds))}suggest(r,n){this.completions.set(r,n)}getCompletions(r){return this.completions.get(r)?.()??[]}compare(r,n){if(r===n)return 0;if(r===null)return-1;if(n===null)return 1;if(r.kind==="arbitrary"&&n.kind==="arbitrary")return r.selector<n.selector?-1:1;if(r.kind==="arbitrary")return 1;if(n.kind==="arbitrary")return-1;let e=this.variants.get(r.root).order,o=this.variants.get(n.root).order,s=e-o;if(s!==0)return s;if(r.kind==="compound"&&n.kind==="compound"){let f=this.compare(r.variant,n.variant);return f!==0?f:r.modifier&&n.modifier?r.modifier.value<n.modifier.value?-1:1:r.modifier?1:n.modifier?-1:0}let a=this.compareFns.get(e);if(a!==void 0)return a(r,n);if(r.root!==n.root)return r.root<n.root?-1:1;let c=r.value,d=n.value;return c===null?-1:d===null||c.kind==="arbitrary"&&d.kind!=="arbitrary"?1:c.kind!=="arbitrary"&&d.kind==="arbitrary"||c.value<d.value?-1:1}keys(){return this.variants.keys()}entries(){return this.variants.entries()}set(r,{kind:n,applyFn:e,compounds:o,compoundsWith:s,order:a}){let c=this.variants.get(r);c?Object.assign(c,{kind:n,applyFn:e,compounds:o}):(a===void 0&&(this.lastOrder=this.nextOrder(),a=this.lastOrder),this.variants.set(r,{kind:n,applyFn:e,order:a,compoundsWith:s,compounds:o}))}nextOrder(){return this.groupOrder??this.lastOrder+1}};function lib_ie(t){let r=0;for(let n of t){if(n[0]==="@"){if(!n.startsWith("@media")&&!n.startsWith("@supports")&&!n.startsWith("@container"))return 0;r|=1;continue}if(n.includes("::"))return 0;r|=2}return r}function Dt(t){let r=new He;function n(f,p,{compounds:g}={}){g=g??lib_ie(p),r.static(f,h=>{h.nodes=p.map(y=>lib_M(y,h.nodes))},{compounds:g})}n("*",[":is(& > *)"],{compounds:0}),n("**",[":is(& *)"],{compounds:0});function e(f,p){return p.map(g=>{g=g.trim();let h=chunk_V2K3XTS4_u(g," ");return h[0]==="not"?h.slice(1).join(" "):f==="@container"?h[0][0]==="("?`not ${g}`:h[1]==="not"?`${h[0]} ${h.slice(2).join(" ")}`:`${h[0]} not ${h.slice(1).join(" ")}`:`not ${g}`})}let o=["@media","@supports","@container"];function s(f){for(let p of o){if(p!==f.name)continue;let g=chunk_V2K3XTS4_u(f.params,",");return g.length>1?null:(g=e(f.name,g),lib_O(f.name,g.join(", ")))}return null}function a(f){return f.includes("::")?null:`&:not(${chunk_V2K3XTS4_u(f,",").map(g=>(g.startsWith("&:is(")&&g.endsWith(")")&&(g=g.slice(5,-1)),g=g.replaceAll("&","*"),g)).join(", ")})`}r.compound("not",3,(f,p)=>{if(p.variant.kind==="arbitrary"&&p.variant.relative||p.modifier)return null;let g=!1;if(lib_j([f],(h,{path:y})=>{if(h.kind!=="rule"&&h.kind!=="at-rule")return 0;if(h.nodes.length>0)return 0;let w=[],v=[];for(let T of y)T.kind==="at-rule"?w.push(T):T.kind==="rule"&&v.push(T);if(w.length>1)return 2;if(v.length>1)return 2;let x=[];for(let T of v){let N=a(T.selector);if(!N)return g=!1,2;x.push(lib_F(N,[]))}for(let T of w){let N=s(T);if(!N)return g=!1,2;x.push(N)}return Object.assign(f,lib_F("&",x)),g=!0,1}),f.kind==="rule"&&f.selector==="&"&&f.nodes.length===1&&Object.assign(f,f.nodes[0]),!g)return null}),r.suggest("not",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("not",f))),r.compound("group",2,(f,p)=>{if(p.variant.kind==="arbitrary"&&p.variant.relative)return null;let g=p.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}group\\/${p.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}group)`,h=!1;if(lib_j([f],(y,{path:w})=>{if(y.kind!=="rule")return 0;for(let x of w.slice(0,-1))if(x.kind==="rule")return h=!1,2;let v=y.selector.replaceAll("&",g);chunk_V2K3XTS4_u(v,",").length>1&&(v=`:is(${v})`),y.selector=`&:is(${v} *)`,h=!0}),!h)return null}),r.suggest("group",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("group",f))),r.compound("peer",2,(f,p)=>{if(p.variant.kind==="arbitrary"&&p.variant.relative)return null;let g=p.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}peer\\/${p.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}peer)`,h=!1;if(lib_j([f],(y,{path:w})=>{if(y.kind!=="rule")return 0;for(let x of w.slice(0,-1))if(x.kind==="rule")return h=!1,2;let v=y.selector.replaceAll("&",g);chunk_V2K3XTS4_u(v,",").length>1&&(v=`:is(${v})`),y.selector=`&:is(${v} ~ *)`,h=!0}),!h)return null}),r.suggest("peer",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("peer",f))),n("first-letter",["&::first-letter"]),n("first-line",["&::first-line"]),n("marker",["& *::marker","&::marker"]),n("selection",["& *::selection","&::selection"]),n("file",["&::file-selector-button"]),n("placeholder",["&::placeholder"]),n("backdrop",["&::backdrop"]);{let f=function(){return lib_D([lib_O("@property","--tw-content",[lib_l("syntax",'"*"'),lib_l("initial-value",'""'),lib_l("inherits","false")])])};var c=f;r.static("before",p=>{p.nodes=[lib_F("&::before",[f(),lib_l("content","var(--tw-content)"),...p.nodes])]},{compounds:0}),r.static("after",p=>{p.nodes=[lib_F("&::after",[f(),lib_l("content","var(--tw-content)"),...p.nodes])]},{compounds:0})}n("first",["&:first-child"]),n("last",["&:last-child"]),n("only",["&:only-child"]),n("odd",["&:nth-child(odd)"]),n("even",["&:nth-child(even)"]),n("first-of-type",["&:first-of-type"]),n("last-of-type",["&:last-of-type"]),n("only-of-type",["&:only-of-type"]),n("visited",["&:visited"]),n("target",["&:target"]),n("open",["&:is([open], :popover-open, :open)"]),n("default",["&:default"]),n("checked",["&:checked"]),n("indeterminate",["&:indeterminate"]),n("placeholder-shown",["&:placeholder-shown"]),n("autofill",["&:autofill"]),n("optional",["&:optional"]),n("required",["&:required"]),n("valid",["&:valid"]),n("invalid",["&:invalid"]),n("in-range",["&:in-range"]),n("out-of-range",["&:out-of-range"]),n("read-only",["&:read-only"]),n("empty",["&:empty"]),n("focus-within",["&:focus-within"]),r.static("hover",f=>{f.nodes=[lib_F("&:hover",[lib_O("@media","(hover: hover)",f.nodes)])]}),n("focus",["&:focus"]),n("focus-visible",["&:focus-visible"]),n("active",["&:active"]),n("enabled",["&:enabled"]),n("disabled",["&:disabled"]),n("inert",["&:is([inert], [inert] *)"]),r.compound("in",2,(f,p)=>{if(p.modifier)return null;let g=!1;if(lib_j([f],(h,{path:y})=>{if(h.kind!=="rule")return 0;for(let w of y.slice(0,-1))if(w.kind==="rule")return g=!1,2;h.selector=`:where(${h.selector.replaceAll("&","*")}) &`,g=!0}),!g)return null}),r.suggest("in",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("in",f))),r.compound("has",2,(f,p)=>{if(p.modifier)return null;let g=!1;if(lib_j([f],(h,{path:y})=>{if(h.kind!=="rule")return 0;for(let w of y.slice(0,-1))if(w.kind==="rule")return g=!1,2;h.selector=`&:has(${h.selector.replaceAll("&","*")})`,g=!0}),!g)return null}),r.suggest("has",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("has",f))),r.functional("aria",(f,p)=>{if(!p.value||p.modifier)return null;p.value.kind==="arbitrary"?f.nodes=[lib_F(`&[aria-${_t(p.value.value)}]`,f.nodes)]:f.nodes=[lib_F(`&[aria-${p.value.value}="true"]`,f.nodes)]}),r.suggest("aria",()=>["busy","checked","disabled","expanded","hidden","pressed","readonly","required","selected"]),r.functional("data",(f,p)=>{if(!p.value||p.modifier)return null;f.nodes=[lib_F(`&[data-${_t(p.value.value)}]`,f.nodes)]}),r.functional("nth",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-child(${p.value.value})`,f.nodes)]}),r.functional("nth-last",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-last-child(${p.value.value})`,f.nodes)]}),r.functional("nth-of-type",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-of-type(${p.value.value})`,f.nodes)]}),r.functional("nth-last-of-type",(f,p)=>{if(!p.value||p.modifier||p.value.kind==="named"&&!chunk_V2K3XTS4_p(p.value.value))return null;f.nodes=[lib_F(`&:nth-last-of-type(${p.value.value})`,f.nodes)]}),r.functional("supports",(f,p)=>{if(!p.value||p.modifier)return null;let g=p.value.value;if(g===null)return null;if(/^[\w-]*\s*\(/.test(g)){let h=g.replace(/\b(and|or|not)\b/g," $1 ");f.nodes=[lib_O("@supports",h,f.nodes)];return}g.includes(":")||(g=`${g}: var(--tw)`),(g[0]!=="("||g[g.length-1]!==")")&&(g=`(${g})`),f.nodes=[lib_O("@supports",g,f.nodes)]},{compounds:1}),n("motion-safe",["@media (prefers-reduced-motion: no-preference)"]),n("motion-reduce",["@media (prefers-reduced-motion: reduce)"]),n("contrast-more",["@media (prefers-contrast: more)"]),n("contrast-less",["@media (prefers-contrast: less)"]);{let f=function(p,g,h,y){if(p===g)return 0;let w=y.get(p);if(w===null)return h==="asc"?-1:1;let v=y.get(g);return v===null?h==="asc"?1:-1:lib_re(w,v,h)};var d=f;{let p=t.namespace("--breakpoint"),g=new lib_z(h=>{switch(h.kind){case"static":return t.resolveValue(h.root,["--breakpoint"])??null;case"functional":{if(!h.value||h.modifier)return null;let y=null;return h.value.kind==="arbitrary"?y=h.value.value:h.value.kind==="named"&&(y=t.resolveValue(h.value.value,["--breakpoint"])),!y||y.includes("var(")?null:y}case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("max",(h,y)=>{if(y.modifier)return null;let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@media",`(width < ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"desc",g)),r.suggest("max",()=>Array.from(p.keys()).filter(h=>h!==null)),r.group(()=>{for(let[h,y]of t.namespace("--breakpoint"))h!==null&&r.static(h,w=>{w.nodes=[lib_O("@media",`(width >= ${y})`,w.nodes)]},{compounds:1});r.functional("min",(h,y)=>{if(y.modifier)return null;let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@media",`(width >= ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"asc",g)),r.suggest("min",()=>Array.from(p.keys()).filter(h=>h!==null))}{let p=t.namespace("--container"),g=new lib_z(h=>{switch(h.kind){case"functional":{if(h.value===null)return null;let y=null;return h.value.kind==="arbitrary"?y=h.value.value:h.value.kind==="named"&&(y=t.resolveValue(h.value.value,["--container"])),!y||y.includes("var(")?null:y}case"static":case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("@max",(h,y)=>{let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@container",y.modifier?`${y.modifier.value} (width < ${w})`:`(width < ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"desc",g)),r.suggest("@max",()=>Array.from(p.keys()).filter(h=>h!==null)),r.group(()=>{r.functional("@",(h,y)=>{let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@container",y.modifier?`${y.modifier.value} (width >= ${w})`:`(width >= ${w})`,h.nodes)]},{compounds:1}),r.functional("@min",(h,y)=>{let w=g.get(y);if(w===null)return null;h.nodes=[lib_O("@container",y.modifier?`${y.modifier.value} (width >= ${w})`:`(width >= ${w})`,h.nodes)]},{compounds:1})},(h,y)=>f(h,y,"asc",g)),r.suggest("@min",()=>Array.from(p.keys()).filter(h=>h!==null)),r.suggest("@",()=>Array.from(p.keys()).filter(h=>h!==null))}}return n("portrait",["@media (orientation: portrait)"]),n("landscape",["@media (orientation: landscape)"]),n("ltr",['&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *)']),n("rtl",['&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *)']),n("dark",["@media (prefers-color-scheme: dark)"]),n("starting",["@starting-style"]),n("print",["@media print"]),n("forced-colors",["@media (forced-colors: active)"]),r}function _t(t){if(t.includes("=")){let[r,...n]=chunk_V2K3XTS4_u(t,"="),e=n.join("=").trim();if(e[0]==="'"||e[0]==='"')return t;if(e.length>1){let o=e[e.length-1];if(e[e.length-2]===" "&&(o==="i"||o==="I"||o==="s"||o==="S"))return`${r}="${e.slice(0,-2)}" ${o}`}return`${r}="${e}"`}return t}function Ye(t,r){lib_j(t,(n,{replaceWith:e})=>{if(n.kind==="at-rule"&&n.name==="@slot")e(r);else if(n.kind==="at-rule"&&(n.name==="@keyframes"||n.name==="@property"))return Object.assign(n,lib_D([lib_O(n.name,n.params,n.nodes)])),1})}function Ft(t){let r=Tt(t),n=Dt(t),e=new lib_z(c=>Ct(c,a)),o=new lib_z(c=>Array.from(At(c,a))),s=new lib_z(c=>Ut(c,a)),a={theme:t,utilities:r,variants:n,invalidCandidates:new Set,important:!1,candidatesToCss(c){let d=[];for(let f of c){let p=!1,{astNodes:g}=lib_Z([f],this,{onInvalidCandidate(){p=!0}});g=lib_te(g),g.length===0||p?d.push(null):d.push(lib_J(g))}return d},getClassOrder(c){return jt(this,c)},getClassList(){return Pt(this)},getVariants(){return Ot(this)},parseCandidate(c){return o.get(c)},parseVariant(c){return e.get(c)},compileAstNodes(c){return s.get(c)},getVariantOrder(){let c=Array.from(e.values());c.sort((g,h)=>this.variants.compare(g,h));let d=new Map,f,p=0;for(let g of c)g!==null&&(f!==void 0&&this.variants.compare(f,g)!==0&&p++,d.set(g,p),f=g);return d},resolveThemeValue(c){let d=c.lastIndexOf("/"),f=null;d!==-1&&(f=c.slice(d+1).trim(),c=c.slice(0,d).trim());let p=t.get([c])??void 0;return f&&p?lib_G(p,f):p}};return a}var Ze=["container-type","pointer-events","visibility","position","inset","inset-inline","inset-block","inset-inline-start","inset-inline-end","top","right","bottom","left","isolation","z-index","order","grid-column","grid-column-start","grid-column-end","grid-row","grid-row-start","grid-row-end","float","clear","--tw-container-component","margin","margin-inline","margin-block","margin-inline-start","margin-inline-end","margin-top","margin-right","margin-bottom","margin-left","box-sizing","display","field-sizing","aspect-ratio","height","max-height","min-height","width","max-width","min-width","flex","flex-shrink","flex-grow","flex-basis","table-layout","caption-side","border-collapse","border-spacing","transform-origin","translate","--tw-translate-x","--tw-translate-y","scale","--tw-scale-x","--tw-scale-y","--tw-scale-z","rotate","--tw-rotate-x","--tw-rotate-y","--tw-rotate-z","--tw-skew-x","--tw-skew-y","transform","animation","cursor","touch-action","--tw-pan-x","--tw-pan-y","--tw-pinch-zoom","resize","scroll-snap-type","--tw-scroll-snap-strictness","scroll-snap-align","scroll-snap-stop","scroll-margin","scroll-margin-inline","scroll-margin-block","scroll-margin-inline-start","scroll-margin-inline-end","scroll-margin-top","scroll-margin-right","scroll-margin-bottom","scroll-margin-left","scroll-padding","scroll-padding-inline","scroll-padding-block","scroll-padding-inline-start","scroll-padding-inline-end","scroll-padding-top","scroll-padding-right","scroll-padding-bottom","scroll-padding-left","list-style-position","list-style-type","list-style-image","appearance","columns","break-before","break-inside","break-after","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-template-columns","grid-template-rows","flex-direction","flex-wrap","place-content","place-items","align-content","align-items","justify-content","justify-items","gap","column-gap","row-gap","--tw-space-x-reverse","--tw-space-y-reverse","divide-x-width","divide-y-width","--tw-divide-y-reverse","divide-style","divide-color","place-self","align-self","justify-self","overflow","overflow-x","overflow-y","overscroll-behavior","overscroll-behavior-x","overscroll-behavior-y","scroll-behavior","border-radius","border-start-radius","border-end-radius","border-top-radius","border-right-radius","border-bottom-radius","border-left-radius","border-start-start-radius","border-start-end-radius","border-end-end-radius","border-end-start-radius","border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius","border-width","border-inline-width","border-block-width","border-inline-start-width","border-inline-end-width","border-top-width","border-right-width","border-bottom-width","border-left-width","border-style","border-inline-style","border-block-style","border-inline-start-style","border-inline-end-style","border-top-style","border-right-style","border-bottom-style","border-left-style","border-color","border-inline-color","border-block-color","border-inline-start-color","border-inline-end-color","border-top-color","border-right-color","border-bottom-color","border-left-color","background-color","background-image","--tw-gradient-position","--tw-gradient-stops","--tw-gradient-via-stops","--tw-gradient-from","--tw-gradient-from-position","--tw-gradient-via","--tw-gradient-via-position","--tw-gradient-to","--tw-gradient-to-position","box-decoration-break","background-size","background-attachment","background-clip","background-position","background-repeat","background-origin","fill","stroke","stroke-width","object-fit","object-position","padding","padding-inline","padding-block","padding-inline-start","padding-inline-end","padding-top","padding-right","padding-bottom","padding-left","text-align","text-indent","vertical-align","font-family","font-size","line-height","font-weight","letter-spacing","text-wrap","overflow-wrap","word-break","text-overflow","hyphens","white-space","color","text-transform","font-style","font-stretch","font-variant-numeric","text-decoration-line","text-decoration-color","text-decoration-style","text-decoration-thickness","text-underline-offset","-webkit-font-smoothing","placeholder-color","caret-color","accent-color","color-scheme","opacity","background-blend-mode","mix-blend-mode","box-shadow","--tw-shadow","--tw-shadow-color","--tw-ring-shadow","--tw-ring-color","--tw-inset-shadow","--tw-inset-shadow-color","--tw-inset-ring-shadow","--tw-inset-ring-color","--tw-ring-offset-width","--tw-ring-offset-color","outline","outline-width","outline-offset","outline-color","--tw-blur","--tw-brightness","--tw-contrast","--tw-drop-shadow","--tw-grayscale","--tw-hue-rotate","--tw-invert","--tw-saturate","--tw-sepia","filter","--tw-backdrop-blur","--tw-backdrop-brightness","--tw-backdrop-contrast","--tw-backdrop-grayscale","--tw-backdrop-hue-rotate","--tw-backdrop-invert","--tw-backdrop-opacity","--tw-backdrop-saturate","--tw-backdrop-sepia","backdrop-filter","transition-property","transition-behavior","transition-delay","transition-duration","transition-timing-function","will-change","contain","content","forced-color-adjust"];function lib_Z(t,r,{onInvalidCandidate:n}={}){let e=new Map,o=[],s=new Map;for(let c of t){if(r.invalidCandidates.has(c)){n?.(c);continue}let d=r.parseCandidate(c);if(d.length===0){n?.(c);continue}s.set(c,d)}let a=r.getVariantOrder();for(let[c,d]of s){let f=!1;for(let p of d){let g=r.compileAstNodes(p);if(g.length!==0){try{ae(g.map(({node:h})=>h),r)}catch{continue}f=!0;for(let{node:h,propertySort:y}of g){let w=0n;for(let v of p.variants)w|=1n<<BigInt(a.get(v));e.set(h,{properties:y,variants:w,candidate:c}),o.push(h)}}}f||n?.(c)}return o.sort((c,d)=>{let f=e.get(c),p=e.get(d);if(f.variants-p.variants!==0n)return Number(f.variants-p.variants);let g=0;for(;f.properties.length<g&&p.properties.length<g&&f.properties[g]===p.properties[g];)g+=1;return(f.properties[g]??1/0)-(p.properties[g]??1/0)||p.properties.length-f.properties.length||Re(f.candidate,p.candidate)}),{astNodes:o,nodeSorting:e}}function Ut(t,r){let n=zr(t,r);if(n.length===0)return[];let e=[],o=`.${chunk_WZA4AHDT_f(t.raw)}`;for(let s of n){let a=Mr(s);(t.important||r.important)&&zt(s);let c={kind:"rule",selector:o,nodes:s};for(let d of t.variants)if(se(c,d,r.variants)===null)return[];e.push({node:c,propertySort:a})}return e}function se(t,r,n,e=0){if(r.kind==="arbitrary"){if(r.relative&&e===0)return null;t.nodes=[lib_M(r.selector,t.nodes)];return}let{applyFn:o}=n.get(r.root);if(r.kind==="compound"){let a=lib_O("@slot");if(se(a,r.variant,n,e+1)===null||r.root==="not"&&a.nodes.length>1)return null;for(let d of a.nodes)if(d.kind!=="rule"&&d.kind!=="at-rule"||o(d,r)===null)return null;lib_j(a.nodes,d=>{if((d.kind==="rule"||d.kind==="at-rule")&&d.nodes.length<=0)return d.nodes=t.nodes,1}),t.nodes=a.nodes;return}if(o(t,r)===null)return null}function It(t){let r=t.options?.types??[];return r.length>1&&r.includes("any")}function zr(t,r){if(t.kind==="arbitrary"){let a=t.value;return t.modifier&&(a=lib_B(a,t.modifier,r.theme)),a===null?[]:[[lib_l(t.property,a)]]}let n=r.utilities.get(t.root)??[],e=[],o=n.filter(a=>!It(a));for(let a of o){if(a.kind!==t.kind)continue;let c=a.compileFn(t);if(c!==void 0){if(c===null)return e;e.push(c)}}if(e.length>0)return e;let s=n.filter(a=>It(a));for(let a of s){if(a.kind!==t.kind)continue;let c=a.compileFn(t);if(c!==void 0){if(c===null)return e;e.push(c)}}return e}function zt(t){for(let r of t)r.kind!=="at-root"&&(r.kind==="declaration"?r.important=!0:(r.kind==="rule"||r.kind==="at-rule")&&zt(r.nodes))}function Mr(t){let r=new Set,n=t.slice();for(;n.length>0;){let e=n.shift();if(e.kind==="declaration"){if(e.property==="--tw-sort"){let s=Ze.indexOf(e.value??"");if(s!==-1){r.add(s);break}}let o=Ze.indexOf(e.property);o!==-1&&r.add(o)}else if(e.kind==="rule"||e.kind==="at-rule")for(let o of e.nodes)n.push(o)}return Array.from(r).sort((e,o)=>e-o)}function ve(t,r){let n=0,e=lib_M("&",t),o=new Set,s=new lib_z(()=>new Set),a=new lib_z(()=>new Set);lib_j([e],(g,{parent:h})=>{if(g.kind==="at-rule"){if(g.name==="@keyframes")return lib_j(g.nodes,y=>{if(y.kind==="at-rule"&&y.name==="@apply")throw new Error("You cannot use `@apply` inside `@keyframes`.")}),1;if(g.name==="@utility"){let y=g.params.replace(/-\*$/,"");a.get(y).add(g),lib_j(g.nodes,w=>{if(!(w.kind!=="at-rule"||w.name!=="@apply")){o.add(g);for(let v of Mt(w,r))s.get(g).add(v)}});return}if(g.name==="@apply"){if(h===null)return;n|=1,o.add(h);for(let y of Mt(g,r))s.get(h).add(y)}}});let c=new Set,d=[],f=new Set;function p(g,h=[]){if(!c.has(g)){if(f.has(g)){let y=h[(h.indexOf(g)+1)%h.length];throw g.kind==="at-rule"&&g.name==="@utility"&&y.kind==="at-rule"&&y.name==="@utility"&&lib_j(g.nodes,w=>{if(w.kind!=="at-rule"||w.name!=="@apply")return;let v=w.params.split(/\s+/g);for(let x of v)for(let T of r.parseCandidate(x))switch(T.kind){case"arbitrary":break;case"static":case"functional":if(y.params.replace(/-\*$/,"")===T.root)throw new Error(`You cannot \`@apply\` the \`${x}\` utility here because it creates a circular dependency.`);break;default:}}),new Error(`Circular dependency detected:
|
|
71525
|
-
|
|
71526
|
-
${lib_J([g])}
|
|
71527
|
-
Relies on:
|
|
71528
|
-
|
|
71529
|
-
${lib_J([y])}`)}f.add(g);for(let y of s.get(g))for(let w of a.get(y))h.push(g),p(w,h),h.pop();c.add(g),f.delete(g),d.push(g)}}for(let g of o)p(g);return lib_j(d,(g,{replaceWith:h})=>{if(g.kind!=="at-rule"||g.name!=="@apply")return;let y=g.params.split(/\s+/g);{let w=lib_Z(y,r,{onInvalidCandidate:x=>{throw new Error(`Cannot apply unknown utility class: ${x}`)}}).astNodes,v=[];for(let x of w)if(x.kind==="rule")for(let T of x.nodes)v.push(T);else v.push(x);h(v)}}),n}function*Mt(t,r){for(let n of t.params.split(/\s+/g))for(let e of r.parseCandidate(n))switch(e.kind){case"arbitrary":break;case"static":case"functional":yield e.root;break;default:}}async function Qe(t,r,n,e=0){let o=0,s=[];return lib_j(t,(a,{replaceWith:c})=>{if(a.kind==="at-rule"&&(a.name==="@import"||a.name==="@reference")){let d=Lr(lib_L(a.params));if(d===null)return;a.name==="@reference"&&(d.media="reference"),o|=2;let{uri:f,layer:p,media:g,supports:h}=d;if(f.startsWith("data:")||f.startsWith("http://")||f.startsWith("https://"))return;let y=lib_ee({},[]);return s.push((async()=>{if(e>100)throw new Error(`Exceeded maximum recursion depth while resolving \`${f}\` in \`${r}\`)`);let w=await n(f,r),v=lib_X(w.content);await Qe(v,w.base,n,e+1),y.nodes=Br([lib_ee({base:w.base},v)],p,g,h)})()),c(y),1}}),s.length>0&&await Promise.all(s),o}function Lr(t){let r,n=null,e=null,o=null;for(let s=0;s<t.length;s++){let a=t[s];if(a.kind!=="separator"){if(a.kind==="word"&&!r){if(!a.value||a.value[0]!=='"'&&a.value[0]!=="'")return null;r=a.value.slice(1,-1);continue}if(a.kind==="function"&&a.value.toLowerCase()==="url"||!r)return null;if((a.kind==="word"||a.kind==="function")&&a.value.toLowerCase()==="layer"){if(n)return null;if(o)throw new Error("`layer(\u2026)` in an `@import` should come before any other functions or conditions");"nodes"in a?n=lib_W(a.nodes):n="";continue}if(a.kind==="function"&&a.value.toLowerCase()==="supports"){if(o)return null;o=lib_W(a.nodes);continue}e=lib_W(t.slice(s));break}}return r?{uri:r,layer:n,media:e,supports:o}:null}function Br(t,r,n,e){let o=t;return r!==null&&(o=[lib_O("@layer",r,o)]),n!==null&&(o=[lib_O("@media",n,o)]),e!==null&&(o=[lib_O("@supports",e[0]==="("?e:`(${e})`,o)]),o}function lib_ue(t,r=null){return Array.isArray(t)&&t.length===2&&typeof t[1]=="object"&&typeof t[1]!==null?r?t[1][r]??null:t[0]:Array.isArray(t)&&r===null?t.join(", "):typeof t=="string"&&r===null?t:null}function Bt(t,{theme:r},n){for(let e of n){let o=Pe([e]);o&&t.theme.clearNamespace(`--${o}`,4)}for(let[e,o]of Wr(r)){if(typeof o!="string"&&typeof o!="number")continue;if(typeof o=="string"&&(o=o.replace(/<alpha-value>/g,"1")),e[0]==="opacity"&&(typeof o=="number"||typeof o=="string")){let a=typeof o=="string"?parseFloat(o):o;a>=0&&a<=1&&(o=a*100+"%")}let s=Pe(e);s&&t.theme.add(`--${s}`,""+o,7)}if(Object.hasOwn(r,"fontFamily")){let e=5;{let o=lib_ue(r.fontFamily.sans);o&&t.theme.hasDefault("--font-sans")&&(t.theme.add("--default-font-family",o,e),t.theme.add("--default-font-feature-settings",lib_ue(r.fontFamily.sans,"fontFeatureSettings")??"normal",e),t.theme.add("--default-font-variation-settings",lib_ue(r.fontFamily.sans,"fontVariationSettings")??"normal",e))}{let o=lib_ue(r.fontFamily.mono);o&&t.theme.hasDefault("--font-mono")&&(t.theme.add("--default-mono-font-family",o,e),t.theme.add("--default-mono-font-feature-settings",lib_ue(r.fontFamily.mono,"fontFeatureSettings")??"normal",e),t.theme.add("--default-mono-font-variation-settings",lib_ue(r.fontFamily.mono,"fontVariationSettings")??"normal",e))}}return r}function Wr(t){let r=[];return Wt(t,[],(n,e)=>{if(Jr(n))return r.push([e,n]),1;if(Gr(n)){r.push([e,n[0]]);for(let o of Reflect.ownKeys(n[1]))r.push([[...e,`-${o}`],n[1][o]]);return 1}if(Array.isArray(n)&&n.every(o=>typeof o=="string"))return r.push([e,n.join(", ")]),1}),r}var qr=/^[a-zA-Z0-9-_%/\.]+$/;function Pe(t){if(t[0]==="container")return null;t=structuredClone(t),t[0]==="animation"&&(t[0]="animate"),t[0]==="aspectRatio"&&(t[0]="aspect"),t[0]==="borderRadius"&&(t[0]="radius"),t[0]==="boxShadow"&&(t[0]="shadow"),t[0]==="colors"&&(t[0]="color"),t[0]==="fontFamily"&&(t[0]="font"),t[0]==="fontSize"&&(t[0]="text"),t[0]==="letterSpacing"&&(t[0]="tracking"),t[0]==="lineHeight"&&(t[0]="leading"),t[0]==="maxWidth"&&(t[0]="container"),t[0]==="screens"&&(t[0]="breakpoint"),t[0]==="transitionTimingFunction"&&(t[0]="ease");for(let r of t)if(!qr.test(r))return null;return t.map((r,n,e)=>r==="1"&&n!==e.length-1?"":r).map(r=>r.replaceAll(".","_").replace(/([a-z])([A-Z])/g,(n,e,o)=>`${e}-${o.toLowerCase()}`)).filter((r,n)=>r!=="DEFAULT"||n!==t.length-1).join("-")}function Jr(t){return typeof t=="number"||typeof t=="string"}function Gr(t){if(!Array.isArray(t)||t.length!==2||typeof t[0]!="string"&&typeof t[0]!="number"||t[1]===void 0||t[1]===null||typeof t[1]!="object")return!1;for(let r of Reflect.ownKeys(t[1]))if(typeof r!="string"||typeof t[1][r]!="string"&&typeof t[1][r]!="number")return!1;return!0}function Wt(t,r=[],n){for(let e of Reflect.ownKeys(t)){let o=t[e];if(o==null)continue;let s=[...r,e],a=n(o,s)??0;if(a!==1){if(a===2)return 2;if(!(!Array.isArray(o)&&typeof o!="object")&&Wt(o,s,n)===2)return 2}}}function Oe(t){let r=[];for(let n of chunk_V2K3XTS4_u(t,".")){if(!n.includes("[")){r.push(n);continue}let e=0;for(;;){let o=n.indexOf("[",e),s=n.indexOf("]",o);if(o===-1||s===-1)break;o>e&&r.push(n.slice(e,o)),r.push(n.slice(o+1,s)),e=s+1}e<=n.length-1&&r.push(n.slice(e))}return r}function fe(t){if(Object.prototype.toString.call(t)!=="[object Object]")return!1;let r=Object.getPrototypeOf(t);return r===null||Object.getPrototypeOf(r)===null}function lib_ye(t,r,n,e=[]){for(let o of r)if(o!=null)for(let s of Reflect.ownKeys(o)){e.push(s);let a=n(t[s],o[s],e);a!==void 0?t[s]=a:!fe(t[s])||!fe(o[s])?t[s]=o[s]:t[s]=lib_ye({},[t[s],o[s]],n,e),e.pop()}return t}function je(t,r,n){return function(o,s){let a=o.lastIndexOf("/"),c=null;a!==-1&&(c=o.slice(a+1).trim(),o=o.slice(0,a).trim());let d=(()=>{let f=Oe(o),[p,g]=Hr(t.theme,f),h=n(qt(r()??{},f)??null);if(typeof h=="string"&&(h=h.replace("<alpha-value>","1")),typeof p!="object")return typeof g!="object"&&g&4?h??p:p;if(h!==null&&typeof h=="object"&&!Array.isArray(h)){let y=lib_ye({},[h],(w,v)=>v);if(p===null&&Object.hasOwn(h,"__CSS_VALUES__")){let w={};for(let v in h.__CSS_VALUES__)w[v]=h[v],delete y[v];p=w}for(let w in p)w!=="__CSS_VALUES__"&&(h?.__CSS_VALUES__?.[w]&4&&qt(y,w.split("-"))!==void 0||(y[chunk_WZA4AHDT_v(w)]=p[w]));return y}if(Array.isArray(p)&&Array.isArray(g)&&Array.isArray(h)){let y=p[0],w=p[1];g[0]&4&&(y=h[0]??y);for(let v of Object.keys(w))g[1][v]&4&&(w[v]=h[1][v]??w[v]);return[y,w]}return p??h})();return c&&typeof d=="string"&&(d=lib_G(d,c)),d??s}}function Hr(t,r){if(r.length===1&&r[0].startsWith("--"))return[t.get([r[0]]),t.getOptions(r[0])];let n=Pe(r),e=new Map,o=new lib_z(()=>new Map),s=t.namespace(`--${n}`);if(s.size===0)return[null,0];let a=new Map;for(let[p,g]of s){if(!p||!p.includes("--")){e.set(p,g),a.set(p,t.getOptions(p?`--${n}-${p}`:`--${n}`));continue}let h=p.indexOf("--"),y=p.slice(0,h),w=p.slice(h+2);w=w.replace(/-([a-z])/g,(v,x)=>x.toUpperCase()),o.get(y===""?null:y).set(w,[g,t.getOptions(`--${n}${p}`)])}let c=t.getOptions(`--${n}`);for(let[p,g]of o){let h=e.get(p);if(typeof h!="string")continue;let y={},w={};for(let[v,[x,T]]of g)y[v]=x,w[v]=T;e.set(p,[h,y]),a.set(p,[c,w])}let d={},f={};for(let[p,g]of e)Jt(d,[p??"DEFAULT"],g);for(let[p,g]of a)Jt(f,[p??"DEFAULT"],g);return r[r.length-1]==="DEFAULT"?[d?.DEFAULT??null,f.DEFAULT??0]:"DEFAULT"in d&&Object.keys(d).length===1?[d.DEFAULT,f.DEFAULT??0]:(d.__CSS_VALUES__=f,[d,f])}function qt(t,r){for(let n=0;n<r.length;++n){let e=r[n];if(t[e]===void 0){if(r[n+1]===void 0)return;r[n+1]=`${e}-${r[n+1]}`;continue}t=t[e]}return t}function Jt(t,r,n){for(let e of r.slice(0,-1))t[e]===void 0&&(t[e]={}),t=t[e];t[r[r.length-1]]=n}function Yr(t){return{kind:"combinator",value:t}}function Zr(t,r){return{kind:"function",value:t,nodes:r}}function we(t){return{kind:"selector",value:t}}function Qr(t){return{kind:"separator",value:t}}function Xr(t){return{kind:"value",value:t}}function _e(t,r,n=null){for(let e=0;e<t.length;e++){let o=t[e],s=r(o,{parent:n,replaceWith(a){Array.isArray(a)?a.length===0?t.splice(e,1):a.length===1?t[e]=a[0]:t.splice(e,1,...a):t[e]=a,e--}})??0;if(s===2)return 2;if(s!==1&&o.kind==="function"&&_e(o.nodes,r,o)===2)return 2}}function De(t){let r="";for(let n of t)switch(n.kind){case"combinator":case"selector":case"separator":case"value":{r+=n.value;break}case"function":r+=n.value+"("+De(n.nodes)+")"}return r}var Gt=92,en=93,Ht=41,tn=58,Yt=44,rn=34,nn=46,Zt=62,Qt=10,on=35,Xt=91,er=40,tr=43,ln=39,rr=32,nr=9,ir=126;function Xe(t){t=t.replaceAll(`\r
|
|
71530
|
-
`,`
|
|
71531
|
-
`);let r=[],n=[],e=null,o="",s;for(let a=0;a<t.length;a++){let c=t.charCodeAt(a);switch(c){case Yt:case Zt:case Qt:case rr:case tr:case nr:case ir:{if(o.length>0){let h=we(o);e?e.nodes.push(h):r.push(h),o=""}let d=a,f=a+1;for(;f<t.length&&(s=t.charCodeAt(f),!(s!==Yt&&s!==Zt&&s!==Qt&&s!==rr&&s!==tr&&s!==nr&&s!==ir));f++);a=f-1;let p=t.slice(d,f),g=p.trim()===","?Qr(p):Yr(p);e?e.nodes.push(g):r.push(g);break}case er:{let d=Zr(o,[]);if(o="",d.value!==":not"&&d.value!==":where"&&d.value!==":has"&&d.value!==":is"){let f=a+1,p=0;for(let h=a+1;h<t.length;h++){if(s=t.charCodeAt(h),s===er){p++;continue}if(s===Ht){if(p===0){a=h;break}p--}}let g=a;d.nodes.push(Xr(t.slice(f,g))),o="",a=g,r.push(d);break}e?e.nodes.push(d):r.push(d),n.push(d),e=d;break}case Ht:{let d=n.pop();if(o.length>0){let f=we(o);d.nodes.push(f),o=""}n.length>0?e=n[n.length-1]:e=null;break}case nn:case tn:case on:{if(o.length>0){let d=we(o);e?e.nodes.push(d):r.push(d)}o=String.fromCharCode(c);break}case Xt:{if(o.length>0){let p=we(o);e?e.nodes.push(p):r.push(p)}o="";let d=a,f=0;for(let p=a+1;p<t.length;p++){if(s=t.charCodeAt(p),s===Xt){f++;continue}if(s===en){if(f===0){a=p;break}f--}}o+=t.slice(d,a+1);break}case ln:case rn:{let d=a;for(let f=a+1;f<t.length;f++)if(s=t.charCodeAt(f),s===Gt)f+=1;else if(s===c){a=f;break}o+=t.slice(d,a+1);break}case Gt:{let d=t.charCodeAt(a+1);o+=String.fromCharCode(c)+String.fromCharCode(d),a+=1;break}default:o+=String.fromCharCode(c)}}return o.length>0&&r.push(we(o)),r}var or=/^[a-z@][a-zA-Z0-9/%._-]*$/;function et({designSystem:t,ast:r,resolvedConfig:n,featuresRef:e,referenceMode:o}){let s={addBase(a){if(o)return;let c=lib_H(a);e.current|=ae(c,t),r.push(lib_O("@layer","base",c))},addVariant(a,c){if(!Ke.test(a))throw new Error(`\`addVariant('${a}')\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);typeof c=="string"||Array.isArray(c)?t.variants.static(a,d=>{d.nodes=lr(c,d.nodes)},{compounds:lib_ie(typeof c=="string"?[c]:c)}):typeof c=="object"&&t.variants.fromAst(a,lib_H(c))},matchVariant(a,c,d){function f(g,h,y){let w=c(g,{modifier:h?.value??null});return lr(w,y)}let p=Object.keys(d?.values??{});t.variants.group(()=>{t.variants.functional(a,(g,h)=>{if(!h.value){if(d?.values&&"DEFAULT"in d.values){g.nodes=f(d.values.DEFAULT,h.modifier,g.nodes);return}return null}if(h.value.kind==="arbitrary")g.nodes=f(h.value.value,h.modifier,g.nodes);else if(h.value.kind==="named"&&d?.values){let y=d.values[h.value.value];if(typeof y!="string")return;g.nodes=f(y,h.modifier,g.nodes)}})},(g,h)=>{if(g.kind!=="functional"||h.kind!=="functional")return 0;let y=g.value?g.value.value:"DEFAULT",w=h.value?h.value.value:"DEFAULT",v=d?.values?.[y]??y,x=d?.values?.[w]??w;if(d&&typeof d.sort=="function")return d.sort({value:v,modifier:g.modifier?.value??null},{value:x,modifier:h.modifier?.value??null});let T=p.indexOf(y),N=p.indexOf(w);return T=T===-1?p.length:T,N=N===-1?p.length:N,T!==N?T-N:v<x?-1:1})},addUtilities(a){a=Array.isArray(a)?a:[a];let c=a.flatMap(f=>Object.entries(f));c=c.flatMap(([f,p])=>chunk_V2K3XTS4_u(f,",").map(g=>[g.trim(),p]));let d=new lib_z(()=>[]);for(let[f,p]of c){if(f.startsWith("@keyframes ")){o||r.push(lib_M(f,lib_H(p)));continue}let g=Xe(f),h=!1;if(_e(g,y=>{if(y.kind==="selector"&&y.value[0]==="."&&or.test(y.value.slice(1))){let w=y.value;y.value="&";let v=De(g),x=w.slice(1),T=v==="&"?lib_H(p):[lib_M(v,lib_H(p))];d.get(x).push(...T),h=!0,y.value=w;return}if(y.kind==="function"&&y.value===":not")return 1}),!h)throw new Error(`\`addUtilities({ '${f}' : \u2026 })\` defines an invalid utility selector. Utilities must be a single class name and start with a lowercase letter, eg. \`.scrollbar-none\`.`)}for(let[f,p]of d)t.theme.prefix&&lib_j(p,g=>{if(g.kind==="rule"){let h=Xe(g.selector);_e(h,y=>{y.kind==="selector"&&y.value[0]==="."&&(y.value=`.${t.theme.prefix}\\:${y.value.slice(1)}`)}),g.selector=De(h)}}),t.utilities.static(f,()=>{let g=structuredClone(p);return e.current|=ve(g,t),g})},matchUtilities(a,c){let d=c?.type?Array.isArray(c?.type)?c.type:[c.type]:["any"];for(let[p,g]of Object.entries(a)){let h=function({negative:y}){return w=>{if(w.value?.kind==="arbitrary"&&d.length>0&&!d.includes("any")&&(w.value.dataType&&!d.includes(w.value.dataType)||!w.value.dataType&&!pe(w.value.value,d)))return;let v=d.includes("color"),x=null,T=!1;{let E=c?.values??{};v&&(E=Object.assign({inherit:"inherit",transparent:"transparent",current:"currentColor"},E)),w.value?w.value.kind==="arbitrary"?x=w.value.value:w.value.fraction&&E[w.value.fraction]?(x=E[w.value.fraction],T=!0):E[w.value.value]?x=E[w.value.value]:E.__BARE_VALUE__&&(x=E.__BARE_VALUE__(w.value)??null,T=(w.value.fraction!==null&&x?.includes("/"))??!1):x=E.DEFAULT??null}if(x===null)return;let N;{let E=c?.modifiers??null;w.modifier?E==="any"||w.modifier.kind==="arbitrary"?N=w.modifier.value:E?.[w.modifier.value]?N=E[w.modifier.value]:v&&!Number.isNaN(Number(w.modifier.value))?N=`${w.modifier.value}%`:N=null:N=null}if(w.modifier&&N===null&&!T)return w.value?.kind==="arbitrary"?null:void 0;v&&N!==null&&(x=lib_G(x,N)),y&&(x=`calc(${x} * -1)`);let R=lib_H(g(x,{modifier:N}));return e.current|=ve(R,t),R}};var f=h;if(!or.test(p))throw new Error(`\`matchUtilities({ '${p}' : \u2026 })\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter, eg. \`scrollbar\`.`);c?.supportsNegativeValues&&t.utilities.functional(`-${p}`,h({negative:!0}),{types:d}),t.utilities.functional(p,h({negative:!1}),{types:d}),t.utilities.suggest(p,()=>{let y=c?.values??{},w=new Set(Object.keys(y));w.delete("__BARE_VALUE__"),w.has("DEFAULT")&&(w.delete("DEFAULT"),w.add(null));let v=c?.modifiers??{},x=v==="any"?[]:Object.keys(v);return[{supportsNegative:c?.supportsNegativeValues??!1,values:Array.from(w),modifiers:x}]})}},addComponents(a,c){this.addUtilities(a,c)},matchComponents(a,c){this.matchUtilities(a,c)},theme:je(t,()=>n.theme??{},a=>a),prefix(a){return a},config(a,c){let d=n;if(!a)return d;let f=Oe(a);for(let p=0;p<f.length;++p){let g=f[p];if(d[g]===void 0)return c;d=d[g]}return d??c}};return s.addComponents=s.addComponents.bind(s),s.matchComponents=s.matchComponents.bind(s),s}function lib_H(t){let r=[];t=Array.isArray(t)?t:[t];let n=t.flatMap(e=>Object.entries(e));for(let[e,o]of n)if(typeof o!="object"){if(!e.startsWith("--")){if(o==="@slot"){r.push(lib_M(e,[lib_O("@slot")]));continue}e=e.replace(/([A-Z])/g,"-$1").toLowerCase()}r.push(lib_l(e,String(o)))}else if(Array.isArray(o))for(let s of o)typeof s=="string"?r.push(lib_l(e,s)):r.push(lib_M(e,lib_H(s)));else o!==null&&r.push(lib_M(e,lib_H(o)));return r}function lr(t,r){return(typeof t=="string"?[t]:t).flatMap(e=>{if(e.trim().endsWith("}")){let o=e.replace("}","{@slot}}"),s=lib_X(o);return Ye(s,r),s}else return lib_M(e,r)})}function ar(t,r,n){for(let e of sn(r))t.theme.addKeyframes(e)}function sn(t){let r=[];if("keyframes"in t.theme)for(let[n,e]of Object.entries(t.theme.keyframes))r.push(lib_O("@keyframes",n,lib_H(e)));return r}function sr(t){return{theme:{...ye,colors:({theme:r})=>r("color",{}),extend:{fontSize:({theme:r})=>({...r("text",{})}),boxShadow:({theme:r})=>({...r("shadow",{})}),animation:({theme:r})=>({...r("animate",{})}),aspectRatio:({theme:r})=>({...r("aspect",{})}),borderRadius:({theme:r})=>({...r("radius",{})}),screens:({theme:r})=>({...r("breakpoint",{})}),letterSpacing:({theme:r})=>({...r("tracking",{})}),lineHeight:({theme:r})=>({...r("leading",{})}),transitionDuration:{DEFAULT:t.get(["--default-transition-duration"])??null},transitionTimingFunction:{DEFAULT:t.get(["--default-transition-timing-function"])??null},maxWidth:({theme:r})=>({...r("container",{})})}}}}var un={blocklist:[],future:{},prefix:"",important:!1,darkMode:null,theme:{},plugins:[],content:{files:[]}};function rt(t,r){let n={design:t,configs:[],plugins:[],content:{files:[]},theme:{},extend:{},result:structuredClone(un)};for(let o of r)tt(n,o);for(let o of n.configs)"darkMode"in o&&o.darkMode!==void 0&&(n.result.darkMode=o.darkMode??null),"prefix"in o&&o.prefix!==void 0&&(n.result.prefix=o.prefix??""),"blocklist"in o&&o.blocklist!==void 0&&(n.result.blocklist=o.blocklist??[]),"important"in o&&o.important!==void 0&&(n.result.important=o.important??!1);let e=cn(n);return{resolvedConfig:{...n.result,content:n.content,theme:n.theme,plugins:n.plugins},replacedThemeKeys:e}}function fn(t,r){if(Array.isArray(t)&&fe(t[0]))return t.concat(r);if(Array.isArray(r)&&fe(r[0])&&fe(t))return[t,...r];if(Array.isArray(r))return r}function tt(t,{config:r,base:n,path:e,reference:o}){let s=[];for(let d of r.plugins??[])"__isOptionsFunction"in d?s.push({...d(),reference:o}):"handler"in d?s.push({...d,reference:o}):s.push({handler:d,reference:o});if(Array.isArray(r.presets)&&r.presets.length===0)throw new Error("Error in the config file/plugin/preset. An empty preset (`preset: []`) is not currently supported.");for(let d of r.presets??[])tt(t,{path:e,base:n,config:d,reference:o});for(let d of s)t.plugins.push(d),d.config&&tt(t,{path:e,base:n,config:d.config,reference:!!d.reference});let a=r.content??[],c=Array.isArray(a)?a:a.files;for(let d of c)t.content.files.push(typeof d=="object"?d:{base:n,pattern:d});t.configs.push(r)}function cn(t){let r=new Set,n=je(t.design,()=>t.theme,o),e=Object.assign(n,{theme:n,colors:l});function o(s){return typeof s=="function"?s(e)??null:s??null}for(let s of t.configs){let a=s.theme??{},c=a.extend??{};for(let d in a)d!=="extend"&&r.add(d);Object.assign(t.theme,a);for(let d in c)t.extend[d]??=[],t.extend[d].push(c[d])}delete t.theme.extend;for(let s in t.extend){let a=[t.theme[s],...t.extend[s]];t.theme[s]=()=>{let c=a.map(o);return lib_ye({},c,fn)}}for(let s in t.theme)t.theme[s]=o(t.theme[s]);if(t.theme.screens&&typeof t.theme.screens=="object")for(let s of Object.keys(t.theme.screens)){let a=t.theme.screens[s];a&&typeof a=="object"&&("raw"in a||"max"in a||"min"in a&&(t.theme.screens[s]=a.min))}return r}function ur(t,r){let n=t.theme.container||{};if(typeof n!="object"||n===null)return;let e=dn(n,r);e.length!==0&&r.utilities.static("container",()=>structuredClone(e))}function dn({center:t,padding:r,screens:n},e){let o=[],s=null;if(t&&o.push(lib_l("margin-inline","auto")),(typeof r=="string"||typeof r=="object"&&r!==null&&"DEFAULT"in r)&&o.push(lib_l("padding-inline",typeof r=="string"?r:r.DEFAULT)),typeof n=="object"&&n!==null){s=new Map;let a=Array.from(e.theme.namespace("--breakpoint").entries());if(a.sort((c,d)=>lib_re(c[1],d[1],"asc")),a.length>0){let[c]=a[0];o.push(lib_O("@media",`(width >= --theme(--breakpoint-${c}))`,[lib_l("max-width","none")]))}for(let[c,d]of Object.entries(n)){if(typeof d=="object")if("min"in d)d=d.min;else continue;s.set(c,lib_O("@media",`(width >= ${d})`,[lib_l("max-width",d)]))}}if(typeof r=="object"&&r!==null){let a=Object.entries(r).filter(([c])=>c!=="DEFAULT").map(([c,d])=>[c,e.theme.resolveValue(c,["--breakpoint"]),d]).filter(Boolean);a.sort((c,d)=>lib_re(c[1],d[1],"asc"));for(let[c,,d]of a)if(s&&s.has(c))s.get(c).nodes.push(lib_l("padding-inline",d));else{if(s)continue;o.push(lib_O("@media",`(width >= theme(--breakpoint-${c}))`,[lib_l("padding-inline",d)]))}}if(s)for(let[,a]of s)o.push(a);return o}function fr({addVariant:t,config:r}){let n=r("darkMode",null),[e,o=".dark"]=Array.isArray(n)?n:[n];if(e==="variant"){let s;if(Array.isArray(o)||typeof o=="function"?s=o:typeof o=="string"&&(s=[o]),Array.isArray(s))for(let a of s)a===".dark"?(e=!1,console.warn('When using `variant` for `darkMode`, you must provide a selector.\nExample: `darkMode: ["variant", ".your-selector &"]`')):a.includes("&")||(e=!1,console.warn('When using `variant` for `darkMode`, your selector must contain `&`.\nExample `darkMode: ["variant", ".your-selector &"]`'));o=s}e===null||(e==="selector"?t("dark",`&:where(${o}, ${o} *)`):e==="media"?t("dark","@media (prefers-color-scheme: dark)"):e==="variant"?t("dark",o):e==="class"&&t("dark",`&:is(${o} *)`))}function cr(t){for(let[r,n]of[["t","top"],["tr","top right"],["r","right"],["br","bottom right"],["b","bottom"],["bl","bottom left"],["l","left"],["tl","top left"]])t.utilities.static(`bg-gradient-to-${r}`,()=>[lib_l("--tw-gradient-position",`to ${n} in oklab`),lib_l("background-image","linear-gradient(var(--tw-gradient-stops))")]);t.utilities.functional("max-w-screen",r=>{if(!r.value||r.value.kind==="arbitrary")return;let n=t.theme.resolve(r.value.value,["--breakpoint"]);if(n)return[lib_l("max-width",n)]}),t.utilities.static("overflow-ellipsis",()=>[lib_l("text-overflow","ellipsis")]),t.utilities.static("decoration-slice",()=>[lib_l("-webkit-box-decoration-break","slice"),lib_l("box-decoration-break","slice")]),t.utilities.static("decoration-clone",()=>[lib_l("-webkit-box-decoration-break","clone"),lib_l("box-decoration-break","clone")]),t.utilities.functional("flex-shrink",r=>{if(!r.modifier){if(!r.value)return[lib_l("flex-shrink","1")];if(r.value.kind==="arbitrary")return[lib_l("flex-shrink",r.value.value)];if(chunk_V2K3XTS4_p(r.value.value))return[lib_l("flex-shrink",r.value.value)]}}),t.utilities.functional("flex-grow",r=>{if(!r.modifier){if(!r.value)return[lib_l("flex-grow","1")];if(r.value.kind==="arbitrary")return[lib_l("flex-grow",r.value.value)];if(chunk_V2K3XTS4_p(r.value.value))return[lib_l("flex-grow",r.value.value)]}})}function dr(t,r){let n=t.theme.screens||{},e=r.variants.get("min")?.order??0,o=[];for(let[a,c]of Object.entries(n)){let h=function(y){r.variants.static(a,w=>{w.nodes=[lib_O("@media",g,w.nodes)]},{order:y})};var s=h;let d=r.variants.get(a),f=r.theme.resolveValue(a,["--breakpoint"]);if(d&&f&&!r.theme.hasDefault(`--breakpoint-${a}`))continue;let p=!0;typeof c=="string"&&(p=!1);let g=pn(c);p?o.push(h):h(e)}if(o.length!==0){for(let[,a]of r.variants.variants)a.order>e&&(a.order+=o.length);r.variants.compareFns=new Map(Array.from(r.variants.compareFns).map(([a,c])=>(a>e&&(a+=o.length),[a,c])));for(let[a,c]of o.entries())c(e+a+1)}}function pn(t){return(Array.isArray(t)?t:[t]).map(n=>typeof n=="string"?{min:n}:n&&typeof n=="object"?n:null).map(n=>{if(n===null)return null;if("raw"in n)return n.raw;let e="";return n.max!==void 0&&(e+=`${n.max} >= `),e+="width",n.min!==void 0&&(e+=` >= ${n.min}`),`(${e})`}).filter(Boolean).join(", ")}function pr(t,r){let n=t.theme.aria||{},e=t.theme.supports||{},o=t.theme.data||{};if(Object.keys(n).length>0){let s=r.variants.get("aria"),a=s?.applyFn,c=s?.compounds;r.variants.functional("aria",(d,f)=>{let p=f.value;return p&&p.kind==="named"&&p.value in n?a?.(d,{...f,value:{kind:"arbitrary",value:n[p.value]}}):a?.(d,f)},{compounds:c})}if(Object.keys(e).length>0){let s=r.variants.get("supports"),a=s?.applyFn,c=s?.compounds;r.variants.functional("supports",(d,f)=>{let p=f.value;return p&&p.kind==="named"&&p.value in e?a?.(d,{...f,value:{kind:"arbitrary",value:e[p.value]}}):a?.(d,f)},{compounds:c})}if(Object.keys(o).length>0){let s=r.variants.get("data"),a=s?.applyFn,c=s?.compounds;r.variants.functional("data",(d,f)=>{let p=f.value;return p&&p.kind==="named"&&p.value in o?a?.(d,{...f,value:{kind:"arbitrary",value:o[p.value]}}):a?.(d,f)},{compounds:c})}}var gn=/^[a-z]+$/;async function mr({designSystem:t,base:r,ast:n,loadModule:e,globs:o}){let s=0,a=[],c=[];lib_j(n,(g,{parent:h,replaceWith:y,context:w})=>{if(g.kind==="at-rule"){if(g.name==="@plugin"){if(h!==null)throw new Error("`@plugin` cannot be nested.");let v=g.params.slice(1,-1);if(v.length===0)throw new Error("`@plugin` must have a path.");let x={};for(let T of g.nodes??[]){if(T.kind!=="declaration")throw new Error(`Unexpected \`@plugin\` option:
|
|
71532
|
-
|
|
71533
|
-
${lib_J([T])}
|
|
71534
|
-
|
|
71535
|
-
\`@plugin\` options must be a flat list of declarations.`);if(T.value===void 0)continue;let N=T.value,R=chunk_V2K3XTS4_u(N,",").map(E=>{if(E=E.trim(),E==="null")return null;if(E==="true")return!0;if(E==="false")return!1;if(Number.isNaN(Number(E))){if(E[0]==='"'&&E[E.length-1]==='"'||E[0]==="'"&&E[E.length-1]==="'")return E.slice(1,-1);if(E[0]==="{"&&E[E.length-1]==="}")throw new Error(`Unexpected \`@plugin\` option: Value of declaration \`${lib_J([T]).trim()}\` is not supported.
|
|
71536
|
-
|
|
71537
|
-
Using an object as a plugin option is currently only supported in JavaScript configuration files.`)}else return Number(E);return E});x[T.property]=R.length===1?R[0]:R}a.push([{id:v,base:w.base,reference:!!w.reference},Object.keys(x).length>0?x:null]),y([]),s|=4;return}if(g.name==="@config"){if(g.nodes.length>0)throw new Error("`@config` cannot have a body.");if(h!==null)throw new Error("`@config` cannot be nested.");c.push({id:g.params.slice(1,-1),base:w.base,reference:!!w.reference}),y([]),s|=4;return}}}),cr(t);let d=t.resolveThemeValue;if(t.resolveThemeValue=function(h){return h.startsWith("--")?d(h):(s|=gr({designSystem:t,base:r,ast:n,globs:o,configs:[],pluginDetails:[]}),t.resolveThemeValue(h))},!a.length&&!c.length)return 0;let[f,p]=await Promise.all([Promise.all(c.map(async({id:g,base:h,reference:y})=>{let w=await e(g,h,"config");return{path:g,base:w.base,config:w.module,reference:y}})),Promise.all(a.map(async([{id:g,base:h,reference:y},w])=>{let v=await e(g,h,"plugin");return{path:g,base:v.base,plugin:v.module,options:w,reference:y}}))]);return s|=gr({designSystem:t,base:r,ast:n,globs:o,configs:f,pluginDetails:p}),s}function gr({designSystem:t,base:r,ast:n,globs:e,configs:o,pluginDetails:s}){let a=0,d=[...s.map(v=>{if(!v.options)return{config:{plugins:[v.plugin]},base:v.base,reference:v.reference};if("__isOptionsFunction"in v.plugin)return{config:{plugins:[v.plugin(v.options)]},base:v.base,reference:v.reference};throw new Error(`The plugin "${v.path}" does not accept options`)}),...o],{resolvedConfig:f}=rt(t,[{config:sr(t.theme),base:r,reference:!0},...d,{config:{plugins:[fr]},base:r,reference:!0}]),{resolvedConfig:p,replacedThemeKeys:g}=rt(t,d);t.resolveThemeValue=function(x,T){let N=y.theme(x,T);if(Array.isArray(N)&&N.length===2)return N[0];if(Array.isArray(N))return N.join(", ");if(typeof N=="string")return N};let h={designSystem:t,ast:n,resolvedConfig:f,featuresRef:{set current(v){a|=v}}},y=et({...h,referenceMode:!1}),w;for(let{handler:v,reference:x}of f.plugins)x?(w||=et({...h,referenceMode:!0}),v(w)):v(y);if(Bt(t,p,g),ar(t,p,g),pr(p,t),dr(p,t),ur(p,t),!t.theme.prefix&&f.prefix){if(f.prefix.endsWith("-")&&(f.prefix=f.prefix.slice(0,-1),console.warn(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only and is written as a variant before all utilities. We have fixed up the prefix for you. Remove the trailing \`-\` to silence this warning.`)),!gn.test(f.prefix))throw new Error(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);t.theme.prefix=f.prefix}if(!t.important&&f.important===!0&&(t.important=!0),typeof f.important=="string"){let v=f.important;lib_j(n,(x,{replaceWith:T,parent:N})=>{if(x.kind==="at-rule"&&!(x.name!=="@tailwind"||x.params!=="utilities"))return N?.kind==="rule"&&N.selector===v?2:(T(lib_F(v,[x])),2)})}for(let v of f.blocklist)t.invalidCandidates.add(v);for(let v of f.content.files){if("raw"in v)throw new Error(`Error in the config file/plugin/preset. The \`content\` key contains a \`raw\` entry:
|
|
71538
|
-
|
|
71539
|
-
${JSON.stringify(v,null,2)}
|
|
71540
|
-
|
|
71541
|
-
This feature is not currently supported.`);e.push(v)}return a}var mn=/^[a-z]+$/;function hn(){throw new Error("No `loadModule` function provided to `compile`")}function vn(){throw new Error("No `loadStylesheet` function provided to `compile`")}function yn(t){let r=0,n=null;for(let e of chunk_V2K3XTS4_u(t," "))e==="reference"?r|=2:e==="inline"?r|=1:e==="default"?r|=4:e.startsWith("prefix(")&&e.endsWith(")")&&(n=e.slice(7,-1));return[r,n]}var me=(c=>(c[c.None=0]="None",c[c.AtApply=1]="AtApply",c[c.AtImport=2]="AtImport",c[c.JsPluginCompat=4]="JsPluginCompat",c[c.ThemeFunction=8]="ThemeFunction",c[c.Utilities=16]="Utilities",c[c.Variants=32]="Variants",c))(me||{});async function hr(t,{base:r="",loadModule:n=hn,loadStylesheet:e=vn}={}){let o=0;t=[lib_ee({base:r},t)],o|=await Qe(t,r,e);let s=null,a=new chunk_WZA4AHDT_g,c=[],d=[],f=null,p=null,g=[],h=[],y=null;lib_j(t,(v,{parent:x,replaceWith:T,context:N})=>{if(v.kind==="at-rule"){if(v.name==="@tailwind"&&(v.params==="utilities"||v.params.startsWith("utilities"))){if(p!==null){T([]);return}let R=chunk_V2K3XTS4_u(v.params," ");for(let E of R)if(E.startsWith("source(")){let P=E.slice(7,-1);if(P==="none"){y=P;continue}if(P[0]==='"'&&P[P.length-1]!=='"'||P[0]==="'"&&P[P.length-1]!=="'"||P[0]!=="'"&&P[0]!=='"')throw new Error("`source(\u2026)` paths must be quoted.");y={base:N.sourceBase??N.base,pattern:P.slice(1,-1)}}p=v,o|=16}if(v.name==="@utility"){if(x!==null)throw new Error("`@utility` cannot be nested.");if(v.nodes.length===0)throw new Error(`\`@utility ${v.params}\` is empty. Utilities should include at least one property.`);let R=St(v);if(R===null)throw new Error(`\`@utility ${v.params}\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter.`);d.push(R)}if(v.name==="@source"){if(v.nodes.length>0)throw new Error("`@source` cannot have a body.");if(x!==null)throw new Error("`@source` cannot be nested.");let R=v.params;if(R[0]==='"'&&R[R.length-1]!=='"'||R[0]==="'"&&R[R.length-1]!=="'"||R[0]!=="'"&&R[0]!=='"')throw new Error("`@source` paths must be quoted.");h.push({base:N.base,pattern:R.slice(1,-1)}),T([]);return}if(v.name==="@variant"&&(x===null?v.nodes.length===0?v.name="@custom-variant":(lib_j(v.nodes,R=>{if(R.kind==="at-rule"&&R.name==="@slot")return v.name="@custom-variant",2}),v.name==="@variant"&&g.push(v)):g.push(v)),v.name==="@custom-variant"){if(x!==null)throw new Error("`@custom-variant` cannot be nested.");T([]);let[R,E]=chunk_V2K3XTS4_u(v.params," ");if(!Ke.test(R))throw new Error(`\`@custom-variant ${R}\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);if(v.nodes.length>0&&E)throw new Error(`\`@custom-variant ${R}\` cannot have both a selector and a body.`);if(v.nodes.length===0){if(!E)throw new Error(`\`@custom-variant ${R}\` has no selector or body.`);let P=chunk_V2K3XTS4_u(E.slice(1,-1),",");if(P.length===0||P.some(m=>m.trim()===""))throw new Error(`\`@custom-variant ${R} (${P.join(",")})\` selector is invalid.`);let i=[],u=[];for(let m of P)m=m.trim(),m[0]==="@"?i.push(m):u.push(m);c.push(m=>{m.variants.static(R,k=>{let b=[];u.length>0&&b.push(lib_F(u.join(", "),k.nodes));for(let V of i)b.push(lib_M(V,k.nodes));k.nodes=b},{compounds:lib_ie([...u,...i])})});return}else{c.push(P=>{P.variants.fromAst(R,v.nodes)});return}}if(v.name==="@media"){let R=chunk_V2K3XTS4_u(v.params," "),E=[];for(let P of R)if(P.startsWith("source(")){let i=P.slice(7,-1);lib_j(v.nodes,(u,{replaceWith:m})=>{if(u.kind==="at-rule"&&u.name==="@tailwind"&&u.params==="utilities")return u.params+=` source(${i})`,m([lib_ee({sourceBase:N.base},[u])]),2})}else if(P.startsWith("theme(")){let i=P.slice(6,-1);lib_j(v.nodes,u=>{if(u.kind!=="at-rule")throw new Error('Files imported with `@import "\u2026" theme(\u2026)` must only contain `@theme` blocks.');if(u.name==="@theme")return u.params+=" "+i,1})}else if(P.startsWith("prefix(")){let i=P.slice(7,-1);lib_j(v.nodes,u=>{if(u.kind==="at-rule"&&u.name==="@theme")return u.params+=` prefix(${i})`,1})}else P==="important"?s=!0:P==="reference"?v.nodes=[lib_ee({reference:!0},v.nodes)]:E.push(P);return E.length>0?v.params=E.join(" "):R.length>0&&T(v.nodes),lib_j(v.nodes,P=>{P.kind==="at-rule"&&P.name==="@variant"&&g.push(P)}),1}if(v.name==="@theme"){let[R,E]=yn(v.params);if(N.reference&&(R|=2),E){if(!mn.test(E))throw new Error(`The prefix "${E}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);a.prefix=E}return lib_j(v.nodes,(P,{replaceWith:i})=>{if(P.kind==="at-rule"&&P.name==="@keyframes")return R&2?(i([]),1):(a.addKeyframes(P),i([]),1);if(P.kind==="comment")return;if(P.kind==="declaration"&&P.property.startsWith("--")){a.add(chunk_WZA4AHDT_v(P.property),P.value??"",R);return}let u=lib_J([lib_O(v.name,v.params,[P])]).split(`
|
|
71542
|
-
`).map((m,k,b)=>`${k===0||k>=b.length-2?" ":">"} ${m}`).join(`
|
|
71543
|
-
`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`.
|
|
71544
|
-
|
|
71545
|
-
${u}`)}),!f&&!(R&2)?(f=lib_F(":root, :host",v.nodes),T([f])):T([]),1}}});let w=Ft(a);s&&(w.important=s),o|=await mr({designSystem:w,base:r,ast:t,loadModule:n,globs:h});for(let v of c)v(w);for(let v of d)v(w);if(f){let v=[];for(let[T,N]of a.entries())N.options&2||v.push(lib_l(chunk_WZA4AHDT_f(T),N.value));let x=a.getKeyframes();if(x.length>0){let T=[...a.namespace("--animate").values()].flatMap(N=>N.split(" "));for(let N of x){let R=N.params;T.includes(R)&&v.push(lib_D([N]))}}f.nodes=v}if(p){let v=p;v.kind="context",v.context={}}if(g.length>0){for(let v of g){let x=lib_F("&",v.nodes),T=v.params,N=w.parseVariant(T);if(N===null)throw new Error(`Cannot use \`@variant\` with unknown variant: ${T}`);if(se(x,N,w.variants)===null)throw new Error(`Cannot use \`@variant\` with variant: ${T}`);Object.assign(v,x)}o|=32}return o|=ae(t,w),o|=ve(t,w),lib_j(t,(v,{replaceWith:x})=>{if(v.kind==="at-rule")return v.name==="@utility"&&x([]),1}),{designSystem:w,ast:t,globs:h,root:y,utilitiesNode:p,features:o}}async function wn(t,r={}){let{designSystem:n,ast:e,globs:o,root:s,utilitiesNode:a,features:c}=await hr(t,r);e.unshift(Te(`! tailwindcss v${at} | MIT License | https://tailwindcss.com `));function d(h){n.invalidCandidates.add(h)}let f=new Set,p=null,g=0;return{globs:o,root:s,features:c,build(h){if(c===0)return t;if(!a)return p??=lib_te(e),p;let y=!1,w=f.size;for(let x of h)n.invalidCandidates.has(x)||(f.add(x),y||=f.size!==w);if(!y)return p??=lib_te(e),p;let v=lib_Z(f,n,{onInvalidCandidate:d}).astNodes;return g===v.length?(p??=lib_te(e),p):(g=v.length,a.nodes=v,p=lib_te(e),p)}}}async function tl(t,r={}){let n=lib_X(t),e=await wn(n,r),o=n,s=t;return{...e,build(a){let c=e.build(a);return c===o||(s=lib_J(c),o=c),s}}}async function rl(t,r={}){return(await hr(lib_X(t),r)).designSystem}function bn(){throw new Error("It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration.")}
|
|
71546
|
-
|
|
71547
|
-
;// ./node_modules/tailwindcss/index.css
|
|
71548
|
-
const tailwindcss_namespaceObject = "@layer theme, base, components, utilities;\n\n@layer theme {\n @theme default {\n --font-sans: ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\",\n \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-serif: ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif;\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,\n \"Liberation Mono\", \"Courier New\", monospace;\n\n --color-red-50: oklch(0.971 0.013 17.38);\n --color-red-100: oklch(0.936 0.032 17.717);\n --color-red-200: oklch(0.885 0.062 18.334);\n --color-red-300: oklch(0.808 0.114 19.571);\n --color-red-400: oklch(0.704 0.191 22.216);\n --color-red-500: oklch(0.637 0.237 25.331);\n --color-red-600: oklch(0.577 0.245 27.325);\n --color-red-700: oklch(0.505 0.213 27.518);\n --color-red-800: oklch(0.444 0.177 26.899);\n --color-red-900: oklch(0.396 0.141 25.723);\n --color-red-950: oklch(0.258 0.092 26.042);\n\n --color-orange-50: oklch(0.98 0.016 73.684);\n --color-orange-100: oklch(0.954 0.038 75.164);\n --color-orange-200: oklch(0.901 0.076 70.697);\n --color-orange-300: oklch(0.837 0.128 66.29);\n --color-orange-400: oklch(0.75 0.183 55.934);\n --color-orange-500: oklch(0.705 0.213 47.604);\n --color-orange-600: oklch(0.646 0.222 41.116);\n --color-orange-700: oklch(0.553 0.195 38.402);\n --color-orange-800: oklch(0.47 0.157 37.304);\n --color-orange-900: oklch(0.408 0.123 38.172);\n --color-orange-950: oklch(0.266 0.079 36.259);\n\n --color-amber-50: oklch(0.987 0.022 95.277);\n --color-amber-100: oklch(0.962 0.059 95.617);\n --color-amber-200: oklch(0.924 0.12 95.746);\n --color-amber-300: oklch(0.879 0.169 91.605);\n --color-amber-400: oklch(0.828 0.189 84.429);\n --color-amber-500: oklch(0.769 0.188 70.08);\n --color-amber-600: oklch(0.666 0.179 58.318);\n --color-amber-700: oklch(0.555 0.163 48.998);\n --color-amber-800: oklch(0.473 0.137 46.201);\n --color-amber-900: oklch(0.414 0.112 45.904);\n --color-amber-950: oklch(0.279 0.077 45.635);\n\n --color-yellow-50: oklch(0.987 0.026 102.212);\n --color-yellow-100: oklch(0.973 0.071 103.193);\n --color-yellow-200: oklch(0.945 0.129 101.54);\n --color-yellow-300: oklch(0.905 0.182 98.111);\n --color-yellow-400: oklch(0.852 0.199 91.936);\n --color-yellow-500: oklch(0.795 0.184 86.047);\n --color-yellow-600: oklch(0.681 0.162 75.834);\n --color-yellow-700: oklch(0.554 0.135 66.442);\n --color-yellow-800: oklch(0.476 0.114 61.907);\n --color-yellow-900: oklch(0.421 0.095 57.708);\n --color-yellow-950: oklch(0.286 0.066 53.813);\n\n --color-lime-50: oklch(0.986 0.031 120.757);\n --color-lime-100: oklch(0.967 0.067 122.328);\n --color-lime-200: oklch(0.938 0.127 124.321);\n --color-lime-300: oklch(0.897 0.196 126.665);\n --color-lime-400: oklch(0.841 0.238 128.85);\n --color-lime-500: oklch(0.768 0.233 130.85);\n --color-lime-600: oklch(0.648 0.2 131.684);\n --color-lime-700: oklch(0.532 0.157 131.589);\n --color-lime-800: oklch(0.453 0.124 130.933);\n --color-lime-900: oklch(0.405 0.101 131.063);\n --color-lime-950: oklch(0.274 0.072 132.109);\n\n --color-green-50: oklch(0.982 0.018 155.826);\n --color-green-100: oklch(0.962 0.044 156.743);\n --color-green-200: oklch(0.925 0.084 155.995);\n --color-green-300: oklch(0.871 0.15 154.449);\n --color-green-400: oklch(0.792 0.209 151.711);\n --color-green-500: oklch(0.723 0.219 149.579);\n --color-green-600: oklch(0.627 0.194 149.214);\n --color-green-700: oklch(0.527 0.154 150.069);\n --color-green-800: oklch(0.448 0.119 151.328);\n --color-green-900: oklch(0.393 0.095 152.535);\n --color-green-950: oklch(0.266 0.065 152.934);\n\n --color-emerald-50: oklch(0.979 0.021 166.113);\n --color-emerald-100: oklch(0.95 0.052 163.051);\n --color-emerald-200: oklch(0.905 0.093 164.15);\n --color-emerald-300: oklch(0.845 0.143 164.978);\n --color-emerald-400: oklch(0.765 0.177 163.223);\n --color-emerald-500: oklch(0.696 0.17 162.48);\n --color-emerald-600: oklch(0.596 0.145 163.225);\n --color-emerald-700: oklch(0.508 0.118 165.612);\n --color-emerald-800: oklch(0.432 0.095 166.913);\n --color-emerald-900: oklch(0.378 0.077 168.94);\n --color-emerald-950: oklch(0.262 0.051 172.552);\n\n --color-teal-50: oklch(0.984 0.014 180.72);\n --color-teal-100: oklch(0.953 0.051 180.801);\n --color-teal-200: oklch(0.91 0.096 180.426);\n --color-teal-300: oklch(0.855 0.138 181.071);\n --color-teal-400: oklch(0.777 0.152 181.912);\n --color-teal-500: oklch(0.704 0.14 182.503);\n --color-teal-600: oklch(0.6 0.118 184.704);\n --color-teal-700: oklch(0.511 0.096 186.391);\n --color-teal-800: oklch(0.437 0.078 188.216);\n --color-teal-900: oklch(0.386 0.063 188.416);\n --color-teal-950: oklch(0.277 0.046 192.524);\n\n --color-cyan-50: oklch(0.984 0.019 200.873);\n --color-cyan-100: oklch(0.956 0.045 203.388);\n --color-cyan-200: oklch(0.917 0.08 205.041);\n --color-cyan-300: oklch(0.865 0.127 207.078);\n --color-cyan-400: oklch(0.789 0.154 211.53);\n --color-cyan-500: oklch(0.715 0.143 215.221);\n --color-cyan-600: oklch(0.609 0.126 221.723);\n --color-cyan-700: oklch(0.52 0.105 223.128);\n --color-cyan-800: oklch(0.45 0.085 224.283);\n --color-cyan-900: oklch(0.398 0.07 227.392);\n --color-cyan-950: oklch(0.302 0.056 229.695);\n\n --color-sky-50: oklch(0.977 0.013 236.62);\n --color-sky-100: oklch(0.951 0.026 236.824);\n --color-sky-200: oklch(0.901 0.058 230.902);\n --color-sky-300: oklch(0.828 0.111 230.318);\n --color-sky-400: oklch(0.746 0.16 232.661);\n --color-sky-500: oklch(0.685 0.169 237.323);\n --color-sky-600: oklch(0.588 0.158 241.966);\n --color-sky-700: oklch(0.5 0.134 242.749);\n --color-sky-800: oklch(0.443 0.11 240.79);\n --color-sky-900: oklch(0.391 0.09 240.876);\n --color-sky-950: oklch(0.293 0.066 243.157);\n\n --color-blue-50: oklch(0.97 0.014 254.604);\n --color-blue-100: oklch(0.932 0.032 255.585);\n --color-blue-200: oklch(0.882 0.059 254.128);\n --color-blue-300: oklch(0.809 0.105 251.813);\n --color-blue-400: oklch(0.707 0.165 254.624);\n --color-blue-500: oklch(0.623 0.214 259.815);\n --color-blue-600: oklch(0.546 0.245 262.881);\n --color-blue-700: oklch(0.488 0.243 264.376);\n --color-blue-800: oklch(0.424 0.199 265.638);\n --color-blue-900: oklch(0.379 0.146 265.522);\n --color-blue-950: oklch(0.282 0.091 267.935);\n\n --color-indigo-50: oklch(0.962 0.018 272.314);\n --color-indigo-100: oklch(0.93 0.034 272.788);\n --color-indigo-200: oklch(0.87 0.065 274.039);\n --color-indigo-300: oklch(0.785 0.115 274.713);\n --color-indigo-400: oklch(0.673 0.182 276.935);\n --color-indigo-500: oklch(0.585 0.233 277.117);\n --color-indigo-600: oklch(0.511 0.262 276.966);\n --color-indigo-700: oklch(0.457 0.24 277.023);\n --color-indigo-800: oklch(0.398 0.195 277.366);\n --color-indigo-900: oklch(0.359 0.144 278.697);\n --color-indigo-950: oklch(0.257 0.09 281.288);\n\n --color-violet-50: oklch(0.969 0.016 293.756);\n --color-violet-100: oklch(0.943 0.029 294.588);\n --color-violet-200: oklch(0.894 0.057 293.283);\n --color-violet-300: oklch(0.811 0.111 293.571);\n --color-violet-400: oklch(0.702 0.183 293.541);\n --color-violet-500: oklch(0.606 0.25 292.717);\n --color-violet-600: oklch(0.541 0.281 293.009);\n --color-violet-700: oklch(0.491 0.27 292.581);\n --color-violet-800: oklch(0.432 0.232 292.759);\n --color-violet-900: oklch(0.38 0.189 293.745);\n --color-violet-950: oklch(0.283 0.141 291.089);\n\n --color-purple-50: oklch(0.977 0.014 308.299);\n --color-purple-100: oklch(0.946 0.033 307.174);\n --color-purple-200: oklch(0.902 0.063 306.703);\n --color-purple-300: oklch(0.827 0.119 306.383);\n --color-purple-400: oklch(0.714 0.203 305.504);\n --color-purple-500: oklch(0.627 0.265 303.9);\n --color-purple-600: oklch(0.558 0.288 302.321);\n --color-purple-700: oklch(0.496 0.265 301.924);\n --color-purple-800: oklch(0.438 0.218 303.724);\n --color-purple-900: oklch(0.381 0.176 304.987);\n --color-purple-950: oklch(0.291 0.149 302.717);\n\n --color-fuchsia-50: oklch(0.977 0.017 320.058);\n --color-fuchsia-100: oklch(0.952 0.037 318.852);\n --color-fuchsia-200: oklch(0.903 0.076 319.62);\n --color-fuchsia-300: oklch(0.833 0.145 321.434);\n --color-fuchsia-400: oklch(0.74 0.238 322.16);\n --color-fuchsia-500: oklch(0.667 0.295 322.15);\n --color-fuchsia-600: oklch(0.591 0.293 322.896);\n --color-fuchsia-700: oklch(0.518 0.253 323.949);\n --color-fuchsia-800: oklch(0.452 0.211 324.591);\n --color-fuchsia-900: oklch(0.401 0.17 325.612);\n --color-fuchsia-950: oklch(0.293 0.136 325.661);\n\n --color-pink-50: oklch(0.971 0.014 343.198);\n --color-pink-100: oklch(0.948 0.028 342.258);\n --color-pink-200: oklch(0.899 0.061 343.231);\n --color-pink-300: oklch(0.823 0.12 346.018);\n --color-pink-400: oklch(0.718 0.202 349.761);\n --color-pink-500: oklch(0.656 0.241 354.308);\n --color-pink-600: oklch(0.592 0.249 0.584);\n --color-pink-700: oklch(0.525 0.223 3.958);\n --color-pink-800: oklch(0.459 0.187 3.815);\n --color-pink-900: oklch(0.408 0.153 2.432);\n --color-pink-950: oklch(0.284 0.109 3.907);\n\n --color-rose-50: oklch(0.969 0.015 12.422);\n --color-rose-100: oklch(0.941 0.03 12.58);\n --color-rose-200: oklch(0.892 0.058 10.001);\n --color-rose-300: oklch(0.81 0.117 11.638);\n --color-rose-400: oklch(0.712 0.194 13.428);\n --color-rose-500: oklch(0.645 0.246 16.439);\n --color-rose-600: oklch(0.586 0.253 17.585);\n --color-rose-700: oklch(0.514 0.222 16.935);\n --color-rose-800: oklch(0.455 0.188 13.697);\n --color-rose-900: oklch(0.41 0.159 10.272);\n --color-rose-950: oklch(0.271 0.105 12.094);\n\n --color-slate-50: oklch(0.984 0.003 247.858);\n --color-slate-100: oklch(0.968 0.007 247.896);\n --color-slate-200: oklch(0.929 0.013 255.508);\n --color-slate-300: oklch(0.869 0.022 252.894);\n --color-slate-400: oklch(0.704 0.04 256.788);\n --color-slate-500: oklch(0.554 0.046 257.417);\n --color-slate-600: oklch(0.446 0.043 257.281);\n --color-slate-700: oklch(0.372 0.044 257.287);\n --color-slate-800: oklch(0.279 0.041 260.031);\n --color-slate-900: oklch(0.208 0.042 265.755);\n --color-slate-950: oklch(0.129 0.042 264.695);\n\n --color-gray-50: oklch(0.985 0.002 247.839);\n --color-gray-100: oklch(0.967 0.003 264.542);\n --color-gray-200: oklch(0.928 0.006 264.531);\n --color-gray-300: oklch(0.872 0.01 258.338);\n --color-gray-400: oklch(0.707 0.022 261.325);\n --color-gray-500: oklch(0.551 0.027 264.364);\n --color-gray-600: oklch(0.446 0.03 256.802);\n --color-gray-700: oklch(0.373 0.034 259.733);\n --color-gray-800: oklch(0.278 0.033 256.848);\n --color-gray-900: oklch(0.21 0.034 264.665);\n --color-gray-950: oklch(0.13 0.028 261.692);\n\n --color-zinc-50: oklch(0.985 0 0);\n --color-zinc-100: oklch(0.967 0.001 286.375);\n --color-zinc-200: oklch(0.92 0.004 286.32);\n --color-zinc-300: oklch(0.871 0.006 286.286);\n --color-zinc-400: oklch(0.705 0.015 286.067);\n --color-zinc-500: oklch(0.552 0.016 285.938);\n --color-zinc-600: oklch(0.442 0.017 285.786);\n --color-zinc-700: oklch(0.37 0.013 285.805);\n --color-zinc-800: oklch(0.274 0.006 286.033);\n --color-zinc-900: oklch(0.21 0.006 285.885);\n --color-zinc-950: oklch(0.141 0.005 285.823);\n\n --color-neutral-50: oklch(0.985 0 0);\n --color-neutral-100: oklch(0.97 0 0);\n --color-neutral-200: oklch(0.922 0 0);\n --color-neutral-300: oklch(0.87 0 0);\n --color-neutral-400: oklch(0.708 0 0);\n --color-neutral-500: oklch(0.556 0 0);\n --color-neutral-600: oklch(0.439 0 0);\n --color-neutral-700: oklch(0.371 0 0);\n --color-neutral-800: oklch(0.269 0 0);\n --color-neutral-900: oklch(0.205 0 0);\n --color-neutral-950: oklch(0.145 0 0);\n\n --color-stone-50: oklch(0.985 0.001 106.423);\n --color-stone-100: oklch(0.97 0.001 106.424);\n --color-stone-200: oklch(0.923 0.003 48.717);\n --color-stone-300: oklch(0.869 0.005 56.366);\n --color-stone-400: oklch(0.709 0.01 56.259);\n --color-stone-500: oklch(0.553 0.013 58.071);\n --color-stone-600: oklch(0.444 0.011 73.639);\n --color-stone-700: oklch(0.374 0.01 67.558);\n --color-stone-800: oklch(0.268 0.007 34.298);\n --color-stone-900: oklch(0.216 0.006 56.043);\n --color-stone-950: oklch(0.147 0.004 49.25);\n\n --color-black: #000;\n --color-white: #fff;\n\n --spacing: 0.25rem;\n\n --breakpoint-sm: 40rem;\n --breakpoint-md: 48rem;\n --breakpoint-lg: 64rem;\n --breakpoint-xl: 80rem;\n --breakpoint-2xl: 96rem;\n\n --container-3xs: 16rem;\n --container-2xs: 18rem;\n --container-xs: 20rem;\n --container-sm: 24rem;\n --container-md: 28rem;\n --container-lg: 32rem;\n --container-xl: 36rem;\n --container-2xl: 42rem;\n --container-3xl: 48rem;\n --container-4xl: 56rem;\n --container-5xl: 64rem;\n --container-6xl: 72rem;\n --container-7xl: 80rem;\n\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --text-lg: 1.125rem;\n --text-lg--line-height: calc(1.75 / 1.125);\n --text-xl: 1.25rem;\n --text-xl--line-height: calc(1.75 / 1.25);\n --text-2xl: 1.5rem;\n --text-2xl--line-height: calc(2 / 1.5);\n --text-3xl: 1.875rem;\n --text-3xl--line-height: calc(2.25 / 1.875);\n --text-4xl: 2.25rem;\n --text-4xl--line-height: calc(2.5 / 2.25);\n --text-5xl: 3rem;\n --text-5xl--line-height: 1;\n --text-6xl: 3.75rem;\n --text-6xl--line-height: 1;\n --text-7xl: 4.5rem;\n --text-7xl--line-height: 1;\n --text-8xl: 6rem;\n --text-8xl--line-height: 1;\n --text-9xl: 8rem;\n --text-9xl--line-height: 1;\n\n --font-weight-thin: 100;\n --font-weight-extralight: 200;\n --font-weight-light: 300;\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n --font-weight-extrabold: 800;\n --font-weight-black: 900;\n\n --tracking-tighter: -0.05em;\n --tracking-tight: -0.025em;\n --tracking-normal: 0em;\n --tracking-wide: 0.025em;\n --tracking-wider: 0.05em;\n --tracking-widest: 0.1em;\n\n --leading-tight: 1.25;\n --leading-snug: 1.375;\n --leading-normal: 1.5;\n --leading-relaxed: 1.625;\n --leading-loose: 2;\n\n --radius-xs: 0.125rem;\n --radius-sm: 0.25rem;\n --radius-md: 0.375rem;\n --radius-lg: 0.5rem;\n --radius-xl: 0.75rem;\n --radius-2xl: 1rem;\n --radius-3xl: 1.5rem;\n --radius-4xl: 2rem;\n\n --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);\n --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),\n 0 2px 4px -2px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),\n 0 4px 6px -4px rgb(0 0 0 / 0.1);\n --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),\n 0 8px 10px -6px rgb(0 0 0 / 0.1);\n --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);\n\n --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);\n --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);\n --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);\n\n --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);\n --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);\n --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);\n --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);\n --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);\n --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);\n\n --ease-in: cubic-bezier(0.4, 0, 1, 1);\n --ease-out: cubic-bezier(0, 0, 0.2, 1);\n --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);\n\n --animate-spin: spin 1s linear infinite;\n --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;\n --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n --animate-bounce: bounce 1s infinite;\n\n @keyframes spin {\n to {\n transform: rotate(360deg);\n }\n }\n\n @keyframes ping {\n 75%,\n 100% {\n transform: scale(2);\n opacity: 0;\n }\n }\n\n @keyframes pulse {\n 50% {\n opacity: 0.5;\n }\n }\n\n @keyframes bounce {\n 0%,\n 100% {\n transform: translateY(-25%);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n\n 50% {\n transform: none;\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n }\n\n --blur-xs: 4px;\n --blur-sm: 8px;\n --blur-md: 12px;\n --blur-lg: 16px;\n --blur-xl: 24px;\n --blur-2xl: 40px;\n --blur-3xl: 64px;\n\n --perspective-dramatic: 100px;\n --perspective-near: 300px;\n --perspective-normal: 500px;\n --perspective-midrange: 800px;\n --perspective-distant: 1200px;\n\n --aspect-video: 16 / 9;\n\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-font-feature-settings: var(--font-sans--font-feature-settings);\n --default-font-variation-settings: var(\n --font-sans--font-variation-settings\n );\n --default-mono-font-family: var(--font-mono);\n --default-mono-font-feature-settings: var(\n --font-mono--font-feature-settings\n );\n --default-mono-font-variation-settings: var(\n --font-mono--font-variation-settings\n );\n }\n\n /* Deprecated */\n @theme default inline reference {\n --blur: 8px;\n --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);\n --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);\n --radius: 0.25rem;\n --max-width-prose: 65ch;\n }\n}\n\n@layer base {\n /*\n 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)\n 2. Remove default margins and padding\n 3. Reset all borders.\n*/\n\n *,\n ::after,\n ::before,\n ::backdrop,\n ::file-selector-button {\n box-sizing: border-box; /* 1 */\n margin: 0; /* 2 */\n padding: 0; /* 2 */\n border: 0 solid; /* 3 */\n }\n\n /*\n 1. Use a consistent sensible line-height in all browsers.\n 2. Prevent adjustments of font size after orientation changes in iOS.\n 3. Use a more readable tab size.\n 4. Use the user's configured `sans` font-family by default.\n 5. Use the user's configured `sans` font-feature-settings by default.\n 6. Use the user's configured `sans` font-variation-settings by default.\n 7. Disable tap highlights on iOS.\n*/\n\n html,\n :host {\n line-height: 1.5; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n tab-size: 4; /* 3 */\n font-family: var(\n --default-font-family,\n ui-sans-serif,\n system-ui,\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\"\n ); /* 4 */\n font-feature-settings: var(--default-font-feature-settings, normal); /* 5 */\n font-variation-settings: var(\n --default-font-variation-settings,\n normal\n ); /* 6 */\n -webkit-tap-highlight-color: transparent; /* 7 */\n }\n\n /*\n Inherit line-height from `html` so users can set them as a class directly on the `html` element.\n*/\n\n body {\n line-height: inherit;\n }\n\n /*\n 1. Add the correct height in Firefox.\n 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n 3. Reset the default border style to a 1px solid border.\n*/\n\n hr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n border-top-width: 1px; /* 3 */\n }\n\n /*\n Add the correct text decoration in Chrome, Edge, and Safari.\n*/\n\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n /*\n Remove the default font size and weight for headings.\n*/\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n\n /*\n Reset links to optimize for opt-in styling instead of opt-out.\n*/\n\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n\n /*\n Add the correct font weight in Edge and Safari.\n*/\n\n b,\n strong {\n font-weight: bolder;\n }\n\n /*\n 1. Use the user's configured `mono` font-family by default.\n 2. Use the user's configured `mono` font-feature-settings by default.\n 3. Use the user's configured `mono` font-variation-settings by default.\n 4. Correct the odd `em` font sizing in all browsers.\n*/\n\n code,\n kbd,\n samp,\n pre {\n font-family: var(\n --default-mono-font-family,\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n \"Liberation Mono\",\n \"Courier New\",\n monospace\n ); /* 4 */\n font-feature-settings: var(\n --default-mono-font-feature-settings,\n normal\n ); /* 5 */\n font-variation-settings: var(\n --default-mono-font-variation-settings,\n normal\n ); /* 6 */\n font-size: 1em; /* 4 */\n }\n\n /*\n Add the correct font size in all browsers.\n*/\n\n small {\n font-size: 80%;\n }\n\n /*\n Prevent `sub` and `sup` elements from affecting the line height in all browsers.\n*/\n\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n /*\n 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n 3. Remove gaps between table borders by default.\n*/\n\n table {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n border-collapse: collapse; /* 3 */\n }\n\n /*\n Use the modern Firefox focus style for all focusable elements.\n*/\n\n :-moz-focusring {\n outline: auto;\n }\n\n /*\n Add the correct vertical alignment in Chrome and Firefox.\n*/\n\n progress {\n vertical-align: baseline;\n }\n\n /*\n Add the correct display in Chrome and Safari.\n*/\n\n summary {\n display: list-item;\n }\n\n /*\n Make lists unstyled by default.\n*/\n\n ol,\n ul,\n menu {\n list-style: none;\n }\n\n /*\n 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)\n 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)\n This can trigger a poorly considered lint error in some tools but is included by design.\n*/\n\n img,\n svg,\n video,\n canvas,\n audio,\n iframe,\n embed,\n object {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n }\n\n /*\n Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)\n*/\n\n img,\n video {\n max-width: 100%;\n height: auto;\n }\n\n /*\n 1. Inherit font styles in all browsers.\n 2. Remove border radius in all browsers.\n 3. Remove background color in all browsers.\n 4. Ensure consistent opacity for disabled states in all browsers.\n*/\n\n button,\n input,\n select,\n optgroup,\n textarea,\n ::file-selector-button {\n font: inherit; /* 1 */\n font-feature-settings: inherit; /* 1 */\n font-variation-settings: inherit; /* 1 */\n letter-spacing: inherit; /* 1 */\n color: inherit; /* 1 */\n border-radius: 0; /* 2 */\n background-color: transparent; /* 3 */\n opacity: 1; /* 4 */\n }\n\n /*\n Restore default font weight.\n*/\n\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n\n /*\n Restore indentation.\n*/\n\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n\n /*\n Restore space after button.\n*/\n\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n\n /*\n 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)\n 2. Set the default placeholder color to a semi-transparent version of the current text color.\n*/\n\n ::placeholder {\n opacity: 1; /* 1 */\n color: color-mix(in oklab, currentColor 50%, transparent); /* 2 */\n }\n\n /*\n Prevent resizing textareas horizontally by default.\n*/\n\n textarea {\n resize: vertical;\n }\n\n /*\n Remove the inner padding in Chrome and Safari on macOS.\n*/\n\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n\n /*\n 1. Ensure date/time inputs have the same height when empty in iOS Safari.\n 2. Ensure text alignment can be changed on date/time inputs in iOS Safari.\n*/\n\n ::-webkit-date-and-time-value {\n min-height: 1lh; /* 1 */\n text-align: inherit; /* 2 */\n }\n\n /*\n Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.\n*/\n\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n\n /*\n Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.\n*/\n\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n\n ::-webkit-datetime-edit,\n ::-webkit-datetime-edit-year-field,\n ::-webkit-datetime-edit-month-field,\n ::-webkit-datetime-edit-day-field,\n ::-webkit-datetime-edit-hour-field,\n ::-webkit-datetime-edit-minute-field,\n ::-webkit-datetime-edit-second-field,\n ::-webkit-datetime-edit-millisecond-field,\n ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n\n /*\n Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)\n*/\n\n :-moz-ui-invalid {\n box-shadow: none;\n }\n\n /*\n Correct the inability to style the border radius in iOS Safari.\n*/\n\n button,\n input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]),\n ::file-selector-button {\n appearance: button;\n }\n\n /*\n Correct the cursor style of increment and decrement buttons in Safari.\n*/\n\n ::-webkit-inner-spin-button,\n ::-webkit-outer-spin-button {\n height: auto;\n }\n\n /*\n Make elements with the HTML hidden attribute stay hidden by default.\n*/\n\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n\n@layer utilities {\n @tailwind utilities;\n}\n";
|
|
71549
|
-
;// ./node_modules/tailwindcss/preflight.css
|
|
71550
|
-
const preflight_namespaceObject = "/*\n 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)\n 2. Remove default margins and padding\n 3. Reset all borders.\n*/\n\n*,\n::after,\n::before,\n::backdrop,\n::file-selector-button {\n box-sizing: border-box; /* 1 */\n margin: 0; /* 2 */\n padding: 0; /* 2 */\n border: 0 solid; /* 3 */\n}\n\n/*\n 1. Use a consistent sensible line-height in all browsers.\n 2. Prevent adjustments of font size after orientation changes in iOS.\n 3. Use a more readable tab size.\n 4. Use the user's configured `sans` font-family by default.\n 5. Use the user's configured `sans` font-feature-settings by default.\n 6. Use the user's configured `sans` font-variation-settings by default.\n 7. Disable tap highlights on iOS.\n*/\n\nhtml,\n:host {\n line-height: 1.5; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n tab-size: 4; /* 3 */\n font-family: var(\n --default-font-family,\n ui-sans-serif,\n system-ui,\n sans-serif,\n 'Apple Color Emoji',\n 'Segoe UI Emoji',\n 'Segoe UI Symbol',\n 'Noto Color Emoji'\n ); /* 4 */\n font-feature-settings: var(--default-font-feature-settings, normal); /* 5 */\n font-variation-settings: var(--default-font-variation-settings, normal); /* 6 */\n -webkit-tap-highlight-color: transparent; /* 7 */\n}\n\n/*\n Inherit line-height from `html` so users can set them as a class directly on the `html` element.\n*/\n\nbody {\n line-height: inherit;\n}\n\n/*\n 1. Add the correct height in Firefox.\n 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n 3. Reset the default border style to a 1px solid border.\n*/\n\nhr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n border-top-width: 1px; /* 3 */\n}\n\n/*\n Add the correct text decoration in Chrome, Edge, and Safari.\n*/\n\nabbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n}\n\n/*\n Remove the default font size and weight for headings.\n*/\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}\n\n/*\n Reset links to optimize for opt-in styling instead of opt-out.\n*/\n\na {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n}\n\n/*\n Add the correct font weight in Edge and Safari.\n*/\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/*\n 1. Use the user's configured `mono` font-family by default.\n 2. Use the user's configured `mono` font-feature-settings by default.\n 3. Use the user's configured `mono` font-variation-settings by default.\n 4. Correct the odd `em` font sizing in all browsers.\n*/\n\ncode,\nkbd,\nsamp,\npre {\n font-family: var(\n --default-mono-font-family,\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n 'Liberation Mono',\n 'Courier New',\n monospace\n ); /* 4 */\n font-feature-settings: var(--default-mono-font-feature-settings, normal); /* 5 */\n font-variation-settings: var(--default-mono-font-variation-settings, normal); /* 6 */\n font-size: 1em; /* 4 */\n}\n\n/*\n Add the correct font size in all browsers.\n*/\n\nsmall {\n font-size: 80%;\n}\n\n/*\n Prevent `sub` and `sup` elements from affecting the line height in all browsers.\n*/\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/*\n 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n 3. Remove gaps between table borders by default.\n*/\n\ntable {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n border-collapse: collapse; /* 3 */\n}\n\n/*\n Use the modern Firefox focus style for all focusable elements.\n*/\n\n:-moz-focusring {\n outline: auto;\n}\n\n/*\n Add the correct vertical alignment in Chrome and Firefox.\n*/\n\nprogress {\n vertical-align: baseline;\n}\n\n/*\n Add the correct display in Chrome and Safari.\n*/\n\nsummary {\n display: list-item;\n}\n\n/*\n Make lists unstyled by default.\n*/\n\nol,\nul,\nmenu {\n list-style: none;\n}\n\n/*\n 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)\n 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)\n This can trigger a poorly considered lint error in some tools but is included by design.\n*/\n\nimg,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n}\n\n/*\n Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)\n*/\n\nimg,\nvideo {\n max-width: 100%;\n height: auto;\n}\n\n/*\n 1. Inherit font styles in all browsers.\n 2. Remove border radius in all browsers.\n 3. Remove background color in all browsers.\n 4. Ensure consistent opacity for disabled states in all browsers.\n*/\n\nbutton,\ninput,\nselect,\noptgroup,\ntextarea,\n::file-selector-button {\n font: inherit; /* 1 */\n font-feature-settings: inherit; /* 1 */\n font-variation-settings: inherit; /* 1 */\n letter-spacing: inherit; /* 1 */\n color: inherit; /* 1 */\n border-radius: 0; /* 2 */\n background-color: transparent; /* 3 */\n opacity: 1; /* 4 */\n}\n\n/*\n Restore default font weight.\n*/\n\n:where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n}\n\n/*\n Restore indentation.\n*/\n\n:where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n}\n\n/*\n Restore space after button.\n*/\n\n::file-selector-button {\n margin-inline-end: 4px;\n}\n\n/*\n 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)\n 2. Set the default placeholder color to a semi-transparent version of the current text color.\n*/\n\n::placeholder {\n opacity: 1; /* 1 */\n color: color-mix(in oklab, currentColor 50%, transparent); /* 2 */\n}\n\n/*\n Prevent resizing textareas horizontally by default.\n*/\n\ntextarea {\n resize: vertical;\n}\n\n/*\n Remove the inner padding in Chrome and Safari on macOS.\n*/\n\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/*\n 1. Ensure date/time inputs have the same height when empty in iOS Safari.\n 2. Ensure text alignment can be changed on date/time inputs in iOS Safari.\n*/\n\n::-webkit-date-and-time-value {\n min-height: 1lh; /* 1 */\n text-align: inherit; /* 2 */\n}\n\n/*\n Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.\n*/\n\n::-webkit-datetime-edit {\n display: inline-flex;\n}\n\n/*\n Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.\n*/\n\n::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n}\n\n::-webkit-datetime-edit,\n::-webkit-datetime-edit-year-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-minute-field,\n::-webkit-datetime-edit-second-field,\n::-webkit-datetime-edit-millisecond-field,\n::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n}\n\n/*\n Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)\n*/\n\n:-moz-ui-invalid {\n box-shadow: none;\n}\n\n/*\n Correct the inability to style the border radius in iOS Safari.\n*/\n\nbutton,\ninput:where([type='button'], [type='reset'], [type='submit']),\n::file-selector-button {\n appearance: button;\n}\n\n/*\n Correct the cursor style of increment and decrement buttons in Safari.\n*/\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n height: auto;\n}\n\n/*\n Make elements with the HTML hidden attribute stay hidden by default.\n*/\n\n[hidden]:where(:not([hidden='until-found'])) {\n display: none !important;\n}\n";
|
|
71551
|
-
;// ./node_modules/tailwindcss/theme.css
|
|
71552
|
-
const theme_namespaceObject = "@theme default {\n --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n 'Segoe UI Symbol', 'Noto Color Emoji';\n --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',\n 'Courier New', monospace;\n\n --color-red-50: oklch(0.971 0.013 17.38);\n --color-red-100: oklch(0.936 0.032 17.717);\n --color-red-200: oklch(0.885 0.062 18.334);\n --color-red-300: oklch(0.808 0.114 19.571);\n --color-red-400: oklch(0.704 0.191 22.216);\n --color-red-500: oklch(0.637 0.237 25.331);\n --color-red-600: oklch(0.577 0.245 27.325);\n --color-red-700: oklch(0.505 0.213 27.518);\n --color-red-800: oklch(0.444 0.177 26.899);\n --color-red-900: oklch(0.396 0.141 25.723);\n --color-red-950: oklch(0.258 0.092 26.042);\n\n --color-orange-50: oklch(0.98 0.016 73.684);\n --color-orange-100: oklch(0.954 0.038 75.164);\n --color-orange-200: oklch(0.901 0.076 70.697);\n --color-orange-300: oklch(0.837 0.128 66.29);\n --color-orange-400: oklch(0.75 0.183 55.934);\n --color-orange-500: oklch(0.705 0.213 47.604);\n --color-orange-600: oklch(0.646 0.222 41.116);\n --color-orange-700: oklch(0.553 0.195 38.402);\n --color-orange-800: oklch(0.47 0.157 37.304);\n --color-orange-900: oklch(0.408 0.123 38.172);\n --color-orange-950: oklch(0.266 0.079 36.259);\n\n --color-amber-50: oklch(0.987 0.022 95.277);\n --color-amber-100: oklch(0.962 0.059 95.617);\n --color-amber-200: oklch(0.924 0.12 95.746);\n --color-amber-300: oklch(0.879 0.169 91.605);\n --color-amber-400: oklch(0.828 0.189 84.429);\n --color-amber-500: oklch(0.769 0.188 70.08);\n --color-amber-600: oklch(0.666 0.179 58.318);\n --color-amber-700: oklch(0.555 0.163 48.998);\n --color-amber-800: oklch(0.473 0.137 46.201);\n --color-amber-900: oklch(0.414 0.112 45.904);\n --color-amber-950: oklch(0.279 0.077 45.635);\n\n --color-yellow-50: oklch(0.987 0.026 102.212);\n --color-yellow-100: oklch(0.973 0.071 103.193);\n --color-yellow-200: oklch(0.945 0.129 101.54);\n --color-yellow-300: oklch(0.905 0.182 98.111);\n --color-yellow-400: oklch(0.852 0.199 91.936);\n --color-yellow-500: oklch(0.795 0.184 86.047);\n --color-yellow-600: oklch(0.681 0.162 75.834);\n --color-yellow-700: oklch(0.554 0.135 66.442);\n --color-yellow-800: oklch(0.476 0.114 61.907);\n --color-yellow-900: oklch(0.421 0.095 57.708);\n --color-yellow-950: oklch(0.286 0.066 53.813);\n\n --color-lime-50: oklch(0.986 0.031 120.757);\n --color-lime-100: oklch(0.967 0.067 122.328);\n --color-lime-200: oklch(0.938 0.127 124.321);\n --color-lime-300: oklch(0.897 0.196 126.665);\n --color-lime-400: oklch(0.841 0.238 128.85);\n --color-lime-500: oklch(0.768 0.233 130.85);\n --color-lime-600: oklch(0.648 0.2 131.684);\n --color-lime-700: oklch(0.532 0.157 131.589);\n --color-lime-800: oklch(0.453 0.124 130.933);\n --color-lime-900: oklch(0.405 0.101 131.063);\n --color-lime-950: oklch(0.274 0.072 132.109);\n\n --color-green-50: oklch(0.982 0.018 155.826);\n --color-green-100: oklch(0.962 0.044 156.743);\n --color-green-200: oklch(0.925 0.084 155.995);\n --color-green-300: oklch(0.871 0.15 154.449);\n --color-green-400: oklch(0.792 0.209 151.711);\n --color-green-500: oklch(0.723 0.219 149.579);\n --color-green-600: oklch(0.627 0.194 149.214);\n --color-green-700: oklch(0.527 0.154 150.069);\n --color-green-800: oklch(0.448 0.119 151.328);\n --color-green-900: oklch(0.393 0.095 152.535);\n --color-green-950: oklch(0.266 0.065 152.934);\n\n --color-emerald-50: oklch(0.979 0.021 166.113);\n --color-emerald-100: oklch(0.95 0.052 163.051);\n --color-emerald-200: oklch(0.905 0.093 164.15);\n --color-emerald-300: oklch(0.845 0.143 164.978);\n --color-emerald-400: oklch(0.765 0.177 163.223);\n --color-emerald-500: oklch(0.696 0.17 162.48);\n --color-emerald-600: oklch(0.596 0.145 163.225);\n --color-emerald-700: oklch(0.508 0.118 165.612);\n --color-emerald-800: oklch(0.432 0.095 166.913);\n --color-emerald-900: oklch(0.378 0.077 168.94);\n --color-emerald-950: oklch(0.262 0.051 172.552);\n\n --color-teal-50: oklch(0.984 0.014 180.72);\n --color-teal-100: oklch(0.953 0.051 180.801);\n --color-teal-200: oklch(0.91 0.096 180.426);\n --color-teal-300: oklch(0.855 0.138 181.071);\n --color-teal-400: oklch(0.777 0.152 181.912);\n --color-teal-500: oklch(0.704 0.14 182.503);\n --color-teal-600: oklch(0.6 0.118 184.704);\n --color-teal-700: oklch(0.511 0.096 186.391);\n --color-teal-800: oklch(0.437 0.078 188.216);\n --color-teal-900: oklch(0.386 0.063 188.416);\n --color-teal-950: oklch(0.277 0.046 192.524);\n\n --color-cyan-50: oklch(0.984 0.019 200.873);\n --color-cyan-100: oklch(0.956 0.045 203.388);\n --color-cyan-200: oklch(0.917 0.08 205.041);\n --color-cyan-300: oklch(0.865 0.127 207.078);\n --color-cyan-400: oklch(0.789 0.154 211.53);\n --color-cyan-500: oklch(0.715 0.143 215.221);\n --color-cyan-600: oklch(0.609 0.126 221.723);\n --color-cyan-700: oklch(0.52 0.105 223.128);\n --color-cyan-800: oklch(0.45 0.085 224.283);\n --color-cyan-900: oklch(0.398 0.07 227.392);\n --color-cyan-950: oklch(0.302 0.056 229.695);\n\n --color-sky-50: oklch(0.977 0.013 236.62);\n --color-sky-100: oklch(0.951 0.026 236.824);\n --color-sky-200: oklch(0.901 0.058 230.902);\n --color-sky-300: oklch(0.828 0.111 230.318);\n --color-sky-400: oklch(0.746 0.16 232.661);\n --color-sky-500: oklch(0.685 0.169 237.323);\n --color-sky-600: oklch(0.588 0.158 241.966);\n --color-sky-700: oklch(0.5 0.134 242.749);\n --color-sky-800: oklch(0.443 0.11 240.79);\n --color-sky-900: oklch(0.391 0.09 240.876);\n --color-sky-950: oklch(0.293 0.066 243.157);\n\n --color-blue-50: oklch(0.97 0.014 254.604);\n --color-blue-100: oklch(0.932 0.032 255.585);\n --color-blue-200: oklch(0.882 0.059 254.128);\n --color-blue-300: oklch(0.809 0.105 251.813);\n --color-blue-400: oklch(0.707 0.165 254.624);\n --color-blue-500: oklch(0.623 0.214 259.815);\n --color-blue-600: oklch(0.546 0.245 262.881);\n --color-blue-700: oklch(0.488 0.243 264.376);\n --color-blue-800: oklch(0.424 0.199 265.638);\n --color-blue-900: oklch(0.379 0.146 265.522);\n --color-blue-950: oklch(0.282 0.091 267.935);\n\n --color-indigo-50: oklch(0.962 0.018 272.314);\n --color-indigo-100: oklch(0.93 0.034 272.788);\n --color-indigo-200: oklch(0.87 0.065 274.039);\n --color-indigo-300: oklch(0.785 0.115 274.713);\n --color-indigo-400: oklch(0.673 0.182 276.935);\n --color-indigo-500: oklch(0.585 0.233 277.117);\n --color-indigo-600: oklch(0.511 0.262 276.966);\n --color-indigo-700: oklch(0.457 0.24 277.023);\n --color-indigo-800: oklch(0.398 0.195 277.366);\n --color-indigo-900: oklch(0.359 0.144 278.697);\n --color-indigo-950: oklch(0.257 0.09 281.288);\n\n --color-violet-50: oklch(0.969 0.016 293.756);\n --color-violet-100: oklch(0.943 0.029 294.588);\n --color-violet-200: oklch(0.894 0.057 293.283);\n --color-violet-300: oklch(0.811 0.111 293.571);\n --color-violet-400: oklch(0.702 0.183 293.541);\n --color-violet-500: oklch(0.606 0.25 292.717);\n --color-violet-600: oklch(0.541 0.281 293.009);\n --color-violet-700: oklch(0.491 0.27 292.581);\n --color-violet-800: oklch(0.432 0.232 292.759);\n --color-violet-900: oklch(0.38 0.189 293.745);\n --color-violet-950: oklch(0.283 0.141 291.089);\n\n --color-purple-50: oklch(0.977 0.014 308.299);\n --color-purple-100: oklch(0.946 0.033 307.174);\n --color-purple-200: oklch(0.902 0.063 306.703);\n --color-purple-300: oklch(0.827 0.119 306.383);\n --color-purple-400: oklch(0.714 0.203 305.504);\n --color-purple-500: oklch(0.627 0.265 303.9);\n --color-purple-600: oklch(0.558 0.288 302.321);\n --color-purple-700: oklch(0.496 0.265 301.924);\n --color-purple-800: oklch(0.438 0.218 303.724);\n --color-purple-900: oklch(0.381 0.176 304.987);\n --color-purple-950: oklch(0.291 0.149 302.717);\n\n --color-fuchsia-50: oklch(0.977 0.017 320.058);\n --color-fuchsia-100: oklch(0.952 0.037 318.852);\n --color-fuchsia-200: oklch(0.903 0.076 319.62);\n --color-fuchsia-300: oklch(0.833 0.145 321.434);\n --color-fuchsia-400: oklch(0.74 0.238 322.16);\n --color-fuchsia-500: oklch(0.667 0.295 322.15);\n --color-fuchsia-600: oklch(0.591 0.293 322.896);\n --color-fuchsia-700: oklch(0.518 0.253 323.949);\n --color-fuchsia-800: oklch(0.452 0.211 324.591);\n --color-fuchsia-900: oklch(0.401 0.17 325.612);\n --color-fuchsia-950: oklch(0.293 0.136 325.661);\n\n --color-pink-50: oklch(0.971 0.014 343.198);\n --color-pink-100: oklch(0.948 0.028 342.258);\n --color-pink-200: oklch(0.899 0.061 343.231);\n --color-pink-300: oklch(0.823 0.12 346.018);\n --color-pink-400: oklch(0.718 0.202 349.761);\n --color-pink-500: oklch(0.656 0.241 354.308);\n --color-pink-600: oklch(0.592 0.249 0.584);\n --color-pink-700: oklch(0.525 0.223 3.958);\n --color-pink-800: oklch(0.459 0.187 3.815);\n --color-pink-900: oklch(0.408 0.153 2.432);\n --color-pink-950: oklch(0.284 0.109 3.907);\n\n --color-rose-50: oklch(0.969 0.015 12.422);\n --color-rose-100: oklch(0.941 0.03 12.58);\n --color-rose-200: oklch(0.892 0.058 10.001);\n --color-rose-300: oklch(0.81 0.117 11.638);\n --color-rose-400: oklch(0.712 0.194 13.428);\n --color-rose-500: oklch(0.645 0.246 16.439);\n --color-rose-600: oklch(0.586 0.253 17.585);\n --color-rose-700: oklch(0.514 0.222 16.935);\n --color-rose-800: oklch(0.455 0.188 13.697);\n --color-rose-900: oklch(0.41 0.159 10.272);\n --color-rose-950: oklch(0.271 0.105 12.094);\n\n --color-slate-50: oklch(0.984 0.003 247.858);\n --color-slate-100: oklch(0.968 0.007 247.896);\n --color-slate-200: oklch(0.929 0.013 255.508);\n --color-slate-300: oklch(0.869 0.022 252.894);\n --color-slate-400: oklch(0.704 0.04 256.788);\n --color-slate-500: oklch(0.554 0.046 257.417);\n --color-slate-600: oklch(0.446 0.043 257.281);\n --color-slate-700: oklch(0.372 0.044 257.287);\n --color-slate-800: oklch(0.279 0.041 260.031);\n --color-slate-900: oklch(0.208 0.042 265.755);\n --color-slate-950: oklch(0.129 0.042 264.695);\n\n --color-gray-50: oklch(0.985 0.002 247.839);\n --color-gray-100: oklch(0.967 0.003 264.542);\n --color-gray-200: oklch(0.928 0.006 264.531);\n --color-gray-300: oklch(0.872 0.01 258.338);\n --color-gray-400: oklch(0.707 0.022 261.325);\n --color-gray-500: oklch(0.551 0.027 264.364);\n --color-gray-600: oklch(0.446 0.03 256.802);\n --color-gray-700: oklch(0.373 0.034 259.733);\n --color-gray-800: oklch(0.278 0.033 256.848);\n --color-gray-900: oklch(0.21 0.034 264.665);\n --color-gray-950: oklch(0.13 0.028 261.692);\n\n --color-zinc-50: oklch(0.985 0 0);\n --color-zinc-100: oklch(0.967 0.001 286.375);\n --color-zinc-200: oklch(0.92 0.004 286.32);\n --color-zinc-300: oklch(0.871 0.006 286.286);\n --color-zinc-400: oklch(0.705 0.015 286.067);\n --color-zinc-500: oklch(0.552 0.016 285.938);\n --color-zinc-600: oklch(0.442 0.017 285.786);\n --color-zinc-700: oklch(0.37 0.013 285.805);\n --color-zinc-800: oklch(0.274 0.006 286.033);\n --color-zinc-900: oklch(0.21 0.006 285.885);\n --color-zinc-950: oklch(0.141 0.005 285.823);\n\n --color-neutral-50: oklch(0.985 0 0);\n --color-neutral-100: oklch(0.97 0 0);\n --color-neutral-200: oklch(0.922 0 0);\n --color-neutral-300: oklch(0.87 0 0);\n --color-neutral-400: oklch(0.708 0 0);\n --color-neutral-500: oklch(0.556 0 0);\n --color-neutral-600: oklch(0.439 0 0);\n --color-neutral-700: oklch(0.371 0 0);\n --color-neutral-800: oklch(0.269 0 0);\n --color-neutral-900: oklch(0.205 0 0);\n --color-neutral-950: oklch(0.145 0 0);\n\n --color-stone-50: oklch(0.985 0.001 106.423);\n --color-stone-100: oklch(0.97 0.001 106.424);\n --color-stone-200: oklch(0.923 0.003 48.717);\n --color-stone-300: oklch(0.869 0.005 56.366);\n --color-stone-400: oklch(0.709 0.01 56.259);\n --color-stone-500: oklch(0.553 0.013 58.071);\n --color-stone-600: oklch(0.444 0.011 73.639);\n --color-stone-700: oklch(0.374 0.01 67.558);\n --color-stone-800: oklch(0.268 0.007 34.298);\n --color-stone-900: oklch(0.216 0.006 56.043);\n --color-stone-950: oklch(0.147 0.004 49.25);\n\n --color-black: #000;\n --color-white: #fff;\n\n --spacing: 0.25rem;\n\n --breakpoint-sm: 40rem;\n --breakpoint-md: 48rem;\n --breakpoint-lg: 64rem;\n --breakpoint-xl: 80rem;\n --breakpoint-2xl: 96rem;\n\n --container-3xs: 16rem;\n --container-2xs: 18rem;\n --container-xs: 20rem;\n --container-sm: 24rem;\n --container-md: 28rem;\n --container-lg: 32rem;\n --container-xl: 36rem;\n --container-2xl: 42rem;\n --container-3xl: 48rem;\n --container-4xl: 56rem;\n --container-5xl: 64rem;\n --container-6xl: 72rem;\n --container-7xl: 80rem;\n\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --text-lg: 1.125rem;\n --text-lg--line-height: calc(1.75 / 1.125);\n --text-xl: 1.25rem;\n --text-xl--line-height: calc(1.75 / 1.25);\n --text-2xl: 1.5rem;\n --text-2xl--line-height: calc(2 / 1.5);\n --text-3xl: 1.875rem;\n --text-3xl--line-height: calc(2.25 / 1.875);\n --text-4xl: 2.25rem;\n --text-4xl--line-height: calc(2.5 / 2.25);\n --text-5xl: 3rem;\n --text-5xl--line-height: 1;\n --text-6xl: 3.75rem;\n --text-6xl--line-height: 1;\n --text-7xl: 4.5rem;\n --text-7xl--line-height: 1;\n --text-8xl: 6rem;\n --text-8xl--line-height: 1;\n --text-9xl: 8rem;\n --text-9xl--line-height: 1;\n\n --font-weight-thin: 100;\n --font-weight-extralight: 200;\n --font-weight-light: 300;\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n --font-weight-extrabold: 800;\n --font-weight-black: 900;\n\n --tracking-tighter: -0.05em;\n --tracking-tight: -0.025em;\n --tracking-normal: 0em;\n --tracking-wide: 0.025em;\n --tracking-wider: 0.05em;\n --tracking-widest: 0.1em;\n\n --leading-tight: 1.25;\n --leading-snug: 1.375;\n --leading-normal: 1.5;\n --leading-relaxed: 1.625;\n --leading-loose: 2;\n\n --radius-xs: 0.125rem;\n --radius-sm: 0.25rem;\n --radius-md: 0.375rem;\n --radius-lg: 0.5rem;\n --radius-xl: 0.75rem;\n --radius-2xl: 1rem;\n --radius-3xl: 1.5rem;\n --radius-4xl: 2rem;\n\n --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);\n --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);\n --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);\n --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);\n\n --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);\n --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);\n --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);\n\n --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);\n --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);\n --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);\n --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);\n --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);\n --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);\n\n --ease-in: cubic-bezier(0.4, 0, 1, 1);\n --ease-out: cubic-bezier(0, 0, 0.2, 1);\n --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);\n\n --animate-spin: spin 1s linear infinite;\n --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;\n --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n --animate-bounce: bounce 1s infinite;\n\n @keyframes spin {\n to {\n transform: rotate(360deg);\n }\n }\n\n @keyframes ping {\n 75%,\n 100% {\n transform: scale(2);\n opacity: 0;\n }\n }\n\n @keyframes pulse {\n 50% {\n opacity: 0.5;\n }\n }\n\n @keyframes bounce {\n 0%,\n 100% {\n transform: translateY(-25%);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n\n 50% {\n transform: none;\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n }\n\n --blur-xs: 4px;\n --blur-sm: 8px;\n --blur-md: 12px;\n --blur-lg: 16px;\n --blur-xl: 24px;\n --blur-2xl: 40px;\n --blur-3xl: 64px;\n\n --perspective-dramatic: 100px;\n --perspective-near: 300px;\n --perspective-normal: 500px;\n --perspective-midrange: 800px;\n --perspective-distant: 1200px;\n\n --aspect-video: 16 / 9;\n\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-font-feature-settings: var(--font-sans--font-feature-settings);\n --default-font-variation-settings: var(--font-sans--font-variation-settings);\n --default-mono-font-family: var(--font-mono);\n --default-mono-font-feature-settings: var(--font-mono--font-feature-settings);\n --default-mono-font-variation-settings: var(--font-mono--font-variation-settings);\n}\n\n/* Deprecated */\n@theme default inline reference {\n --blur: 8px;\n --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);\n --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);\n --radius: 0.25rem;\n --max-width-prose: 65ch;\n}\n";
|
|
71553
|
-
;// ./node_modules/tailwindcss/utilities.css
|
|
71554
|
-
const utilities_namespaceObject = "@tailwind utilities;\n";
|
|
71555
|
-
;// ./utils/tailwind-bundle.ts
|
|
71556
|
-
|
|
71557
|
-
|
|
71558
|
-
|
|
71559
|
-
// @ts-expect-error - these are being imported as strings
|
|
71560
|
-
|
|
71561
|
-
// @ts-expect-error - these are being imported as strings
|
|
71562
|
-
|
|
71563
|
-
// @ts-expect-error - these are being imported as strings
|
|
71564
|
-
|
|
71565
|
-
// @ts-expect-error - these are being imported as strings
|
|
71566
|
-
|
|
71567
|
-
/*
|
|
71568
|
-
* @note: This is mostly copied from @tailwindcss/browser
|
|
71569
|
-
*/
|
|
71570
|
-
async function loadStylesheet(id, base) {
|
|
71571
|
-
function load() {
|
|
71572
|
-
if (id === 'tailwindcss') {
|
|
71573
|
-
return {
|
|
71574
|
-
base,
|
|
71575
|
-
content: tailwindcss_namespaceObject,
|
|
71576
|
-
};
|
|
71577
|
-
}
|
|
71578
|
-
else if (id === 'tailwindcss/preflight' || id === 'tailwindcss/preflight.css' || id === './preflight.css') {
|
|
71579
|
-
return {
|
|
71580
|
-
base,
|
|
71581
|
-
content: preflight_namespaceObject,
|
|
71582
|
-
};
|
|
71583
|
-
}
|
|
71584
|
-
else if (id === 'tailwindcss/theme' || id === 'tailwindcss/theme.css' || id === './theme.css') {
|
|
71585
|
-
return {
|
|
71586
|
-
base,
|
|
71587
|
-
content: theme_namespaceObject,
|
|
71588
|
-
};
|
|
71589
|
-
}
|
|
71590
|
-
else if (id === 'tailwindcss/utilities' || id === 'tailwindcss/utilities.css' || id === './utilities.css') {
|
|
71591
|
-
return {
|
|
71592
|
-
base,
|
|
71593
|
-
content: utilities_namespaceObject,
|
|
71594
|
-
};
|
|
71595
|
-
}
|
|
71596
|
-
throw new Error(`The browser build does not support @import for "${id}"`);
|
|
71597
|
-
}
|
|
71598
|
-
const sheet = load();
|
|
71599
|
-
return sheet;
|
|
71600
|
-
}
|
|
71601
|
-
async function loadModule() {
|
|
71602
|
-
throw new Error('The browser build does not support plugins or config files.');
|
|
71603
|
-
}
|
|
71604
|
-
async function createCompiler() {
|
|
71605
|
-
const css = `
|
|
71606
|
-
@layer theme, base, components, utilities;
|
|
71607
|
-
|
|
71608
|
-
@import "tailwindcss/theme.css" layer(theme);
|
|
71609
|
-
@import "tailwindcss/utilities.css" layer(utilities);
|
|
71610
|
-
`;
|
|
71611
|
-
return tl(css, {
|
|
71612
|
-
base: '/',
|
|
71613
|
-
loadStylesheet,
|
|
71614
|
-
loadModule,
|
|
71615
|
-
});
|
|
71616
|
-
}
|
|
71617
|
-
async function tailwindBundle(string, { prefix }) {
|
|
71618
|
-
const compiler = await createCompiler();
|
|
71619
|
-
const newClasses = new Set(string.split(/[^a-zA-Z0-9_-]+/));
|
|
71620
|
-
const css = compiler.build(Array.from(newClasses));
|
|
71621
|
-
return lib_postcss([postcss_prefix_selector_default()({ prefix })]).process(css, { from: undefined });
|
|
71622
|
-
}
|
|
71623
|
-
/* harmony default export */ const tailwind_bundle = (tailwindBundle);
|
|
71624
|
-
|
|
71625
|
-
;// ./processor/transform/tailwind.tsx
|
|
71626
|
-
|
|
71627
|
-
|
|
71628
|
-
|
|
71629
|
-
|
|
71630
|
-
|
|
71631
|
-
const exportTailwindStylesheet = async (tree, vfile, { components, parseRoot }) => {
|
|
71632
|
-
if (hasNamedExport(tree, 'stylesheet'))
|
|
71633
|
-
return;
|
|
71634
|
-
const stringToParse = [...Object.values(components), parseRoot ? String(vfile) : ''].join('\n\n');
|
|
71635
|
-
const stylesheet = (await tailwind_bundle(stringToParse, { prefix: `.${tailwindPrefix}` })).css;
|
|
71636
|
-
const exportNode = {
|
|
71637
|
-
type: 'mdxjsEsm',
|
|
71638
|
-
value: '',
|
|
71639
|
-
data: {
|
|
71640
|
-
estree: {
|
|
71641
|
-
type: 'Program',
|
|
71642
|
-
sourceType: 'module',
|
|
71643
|
-
body: [
|
|
71644
|
-
{
|
|
71645
|
-
type: 'ExportNamedDeclaration',
|
|
71646
|
-
source: null,
|
|
71647
|
-
specifiers: [],
|
|
71648
|
-
declaration: {
|
|
71649
|
-
type: 'VariableDeclaration',
|
|
71650
|
-
kind: 'const',
|
|
71651
|
-
declarations: [
|
|
71652
|
-
{
|
|
71653
|
-
type: 'VariableDeclarator',
|
|
71654
|
-
id: { type: 'Identifier', name: 'stylesheet' },
|
|
71655
|
-
init: valueToEstree(stylesheet),
|
|
71656
|
-
},
|
|
71657
|
-
],
|
|
71658
|
-
},
|
|
71659
|
-
},
|
|
71660
|
-
],
|
|
71661
|
-
},
|
|
71662
|
-
},
|
|
71663
|
-
};
|
|
71664
|
-
tree.children.unshift(exportNode);
|
|
71665
|
-
};
|
|
71666
|
-
const injectTailwindRoot = ({ components = {} }) => (node, index, parent) => {
|
|
71667
|
-
if (!('name' in node))
|
|
71668
|
-
return;
|
|
71669
|
-
if (!(node.name in components))
|
|
71670
|
-
return;
|
|
71671
|
-
if (!('children' in parent))
|
|
71672
|
-
return;
|
|
71673
|
-
const attrs = {
|
|
71674
|
-
flow: node.type === 'mdxJsxFlowElement',
|
|
71675
|
-
};
|
|
71676
|
-
const wrapper = {
|
|
71677
|
-
type: node.type,
|
|
71678
|
-
name: 'TailwindRoot',
|
|
71679
|
-
attributes: toAttributes(attrs),
|
|
71680
|
-
children: [node],
|
|
71681
|
-
};
|
|
71682
|
-
parent.children.splice(index, 1, wrapper);
|
|
71683
|
-
// eslint-disable-next-line consistent-return
|
|
71684
|
-
return SKIP;
|
|
71685
|
-
};
|
|
71686
|
-
const tailwind = ({ components, parseRoot }) => async (tree, vfile) => {
|
|
71687
|
-
const localComponents = getExports(tree).reduce((acc, name) => {
|
|
71688
|
-
acc[name] = String(vfile);
|
|
71689
|
-
return acc;
|
|
71690
|
-
}, {});
|
|
71691
|
-
visit(tree, isMDXElement, injectTailwindRoot({ components: { ...components, ...localComponents } }));
|
|
71692
|
-
await exportTailwindStylesheet(tree, vfile, { components: { ...components, ...localComponents }, parseRoot });
|
|
71693
|
-
return tree;
|
|
71694
|
-
};
|
|
71695
|
-
/* harmony default export */ const transform_tailwind = (tailwind);
|
|
71696
|
-
|
|
71697
|
-
;// ./processor/transform/variables.ts
|
|
71698
|
-
|
|
71699
|
-
|
|
71700
|
-
const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
71701
|
-
visit(tree, (node, index, parent) => {
|
|
71702
|
-
if (!['mdxFlowExpression', 'mdxTextExpression'].includes(node.type) || !('value' in node))
|
|
71703
|
-
return;
|
|
71704
|
-
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
71705
|
-
if (node.data.estree.type !== 'Program')
|
|
71706
|
-
return;
|
|
71707
|
-
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
71708
|
-
const [expression] = node.data.estree.body;
|
|
71709
|
-
if (!expression ||
|
|
71710
|
-
expression.type !== 'ExpressionStatement' ||
|
|
71711
|
-
expression.expression.object?.name !== 'user' ||
|
|
71712
|
-
!['Literal', 'Identifier'].includes(expression.expression.property?.type))
|
|
71713
|
-
return;
|
|
71714
|
-
const name = expression.expression.property.type === 'Identifier'
|
|
71715
|
-
? expression.expression.property.name
|
|
71716
|
-
: expression.expression.property.value;
|
|
71717
|
-
const variable = asMdx
|
|
71718
|
-
? {
|
|
71719
|
-
type: 'mdxJsxTextElement',
|
|
71720
|
-
name: 'Variable',
|
|
71721
|
-
attributes: [
|
|
71722
|
-
{
|
|
71723
|
-
type: 'mdxJsxAttribute',
|
|
71724
|
-
name: 'name',
|
|
71725
|
-
value: name,
|
|
71726
|
-
},
|
|
71727
|
-
],
|
|
71728
|
-
children: [],
|
|
71729
|
-
position: node.position,
|
|
71730
|
-
}
|
|
71731
|
-
: {
|
|
71732
|
-
type: NodeTypes.variable,
|
|
71733
|
-
data: {
|
|
71734
|
-
hName: 'Variable',
|
|
71735
|
-
hProperties: {
|
|
71736
|
-
name,
|
|
71737
|
-
},
|
|
71738
|
-
},
|
|
71739
|
-
value: `{${node.value}}`,
|
|
71740
|
-
position: node.position,
|
|
71741
|
-
};
|
|
71742
|
-
parent.children.splice(index, 1, variable);
|
|
71743
|
-
});
|
|
71744
|
-
return tree;
|
|
71745
|
-
};
|
|
71746
|
-
/* harmony default export */ const transform_variables = (variables);
|
|
71747
|
-
|
|
71748
|
-
;// ./processor/transform/index.ts
|
|
71749
|
-
|
|
71750
|
-
|
|
71751
|
-
|
|
71752
|
-
|
|
71753
|
-
|
|
71754
|
-
|
|
71755
|
-
|
|
71756
|
-
|
|
71757
|
-
|
|
71758
|
-
|
|
71759
|
-
|
|
71760
|
-
|
|
71761
|
-
|
|
71762
|
-
|
|
71763
|
-
|
|
71764
|
-
|
|
71765
|
-
const defaultTransforms = {
|
|
71766
|
-
calloutTransformer: callouts,
|
|
71767
|
-
codeTabsTransformer: code_tabs,
|
|
71768
|
-
embedTransformer: transform_embeds,
|
|
71769
|
-
imageTransformer: transform_images,
|
|
71770
|
-
gemojiTransformer: gemoji_,
|
|
71771
|
-
};
|
|
71772
|
-
/* harmony default export */ const transform = (Object.values(defaultTransforms));
|
|
71773
|
-
|
|
71774
|
-
;// ./lib/ast-processor.ts
|
|
71775
|
-
|
|
71776
|
-
|
|
71777
|
-
|
|
71778
|
-
|
|
71779
|
-
|
|
71780
|
-
|
|
71781
|
-
const remarkPlugins = [remarkFrontmatter, remarkGfm, ...transform];
|
|
71782
|
-
const rehypePlugins = [rehypeSlug, transform_mermaid];
|
|
71783
|
-
const astProcessor = (opts = { components: {} }) => remark()
|
|
71784
|
-
.use(remarkMdx)
|
|
71785
|
-
.use(remarkPlugins)
|
|
71786
|
-
.use(opts.remarkPlugins)
|
|
71787
|
-
.use(transform_variables, { asMdx: false })
|
|
71788
|
-
.use(readme_components({ components: opts.components }));
|
|
71789
|
-
/* harmony default export */ const ast_processor = (astProcessor);
|
|
71790
|
-
|
|
71791
|
-
;// ./node_modules/markdown-extensions/index.js
|
|
71792
|
-
// TODO: Load the JSON file when Node.js supports that.
|
|
71793
|
-
|
|
71794
|
-
const markdownExtension = [
|
|
71795
|
-
'md',
|
|
71796
|
-
'markdown',
|
|
71797
|
-
'mdown',
|
|
71798
|
-
'mkdn',
|
|
71799
|
-
'mkd',
|
|
71800
|
-
'mdwn',
|
|
71801
|
-
'mkdown',
|
|
71802
|
-
'ron',
|
|
71803
|
-
];
|
|
71804
|
-
|
|
71805
|
-
/* harmony default export */ const markdown_extensions = (markdownExtension);
|
|
71806
|
-
|
|
71807
|
-
;// ./node_modules/@mdx-js/mdx/lib/util/extnames.js
|
|
71808
|
-
|
|
71809
|
-
|
|
71810
|
-
const md = markdown_extensions.map(function (d) {
|
|
71811
|
-
return '.' + d
|
|
71812
|
-
})
|
|
71813
|
-
const mdx = (/* unused pure expression or super */ null && (['.mdx']))
|
|
71814
|
-
|
|
71815
|
-
;// ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
|
|
71816
|
-
/**
|
|
71817
|
-
* @import {Compatible} from 'vfile'
|
|
71818
|
-
* @import {CompileOptions} from '../compile.js'
|
|
71819
|
-
* @import {ProcessorOptions} from '../core.js'
|
|
71820
|
-
*/
|
|
71821
|
-
|
|
71822
|
-
|
|
71823
|
-
|
|
71824
|
-
|
|
71825
|
-
/**
|
|
71826
|
-
* Create a file and options from a given `vfileCompatible` and options that
|
|
71827
|
-
* might contain `format: 'detect'`.
|
|
71828
|
-
*
|
|
71829
|
-
* @param {Readonly<Compatible>} vfileCompatible
|
|
71830
|
-
* File.
|
|
71831
|
-
* @param {Readonly<CompileOptions> | null | undefined} [options]
|
|
71832
|
-
* Configuration (optional).
|
|
71833
|
-
* @returns {{file: VFile, options: ProcessorOptions}}
|
|
71834
|
-
* File and options.
|
|
71835
|
-
*/
|
|
71836
|
-
function resolve_file_and_options_resolveFileAndOptions(vfileCompatible, options) {
|
|
71837
|
-
const file = resolve_file_and_options_looksLikeAVFile(vfileCompatible)
|
|
71838
|
-
? vfileCompatible
|
|
71839
|
-
: new VFile(vfileCompatible)
|
|
71840
|
-
const {format, ...rest} = options || {}
|
|
71841
|
-
return {
|
|
71842
|
-
file,
|
|
71843
|
-
options: {
|
|
71844
|
-
format:
|
|
71845
|
-
format === 'md' || format === 'mdx'
|
|
71846
|
-
? format
|
|
71847
|
-
: file.extname && (rest.mdExtensions || md).includes(file.extname)
|
|
71848
|
-
? 'md'
|
|
71849
|
-
: 'mdx',
|
|
71850
|
-
...rest
|
|
71851
|
-
}
|
|
71852
|
-
}
|
|
71853
|
-
}
|
|
71854
|
-
|
|
71855
|
-
/**
|
|
71856
|
-
* @param {Readonly<Compatible> | null | undefined} [value]
|
|
71857
|
-
* Thing.
|
|
71858
|
-
* @returns {value is VFile}
|
|
71859
|
-
* Check.
|
|
71860
|
-
*/
|
|
71861
|
-
function resolve_file_and_options_looksLikeAVFile(value) {
|
|
71862
|
-
return Boolean(
|
|
71863
|
-
value &&
|
|
71864
|
-
typeof value === 'object' &&
|
|
71865
|
-
'message' in value &&
|
|
71866
|
-
'messages' in value
|
|
71867
|
-
)
|
|
71868
|
-
}
|
|
71869
|
-
|
|
71870
|
-
;// ./node_modules/estree-walker/src/walker.js
|
|
71871
|
-
/**
|
|
71872
|
-
* @typedef { import('estree').Node} Node
|
|
71873
|
-
* @typedef {{
|
|
71874
|
-
* skip: () => void;
|
|
71875
|
-
* remove: () => void;
|
|
71876
|
-
* replace: (node: Node) => void;
|
|
71877
|
-
* }} WalkerContext
|
|
71264
|
+
* @typedef { import('estree').Node} Node
|
|
71265
|
+
* @typedef {{
|
|
71266
|
+
* skip: () => void;
|
|
71267
|
+
* remove: () => void;
|
|
71268
|
+
* replace: (node: Node) => void;
|
|
71269
|
+
* }} WalkerContext
|
|
71878
71270
|
*/
|
|
71879
71271
|
|
|
71880
71272
|
class WalkerBase {
|
|
@@ -77200,7 +76592,7 @@ function lib_empty(value) {
|
|
|
77200
76592
|
* @returns {JsxFragment}
|
|
77201
76593
|
* estree JSX fragment.
|
|
77202
76594
|
*/
|
|
77203
|
-
function
|
|
76595
|
+
function handlers_root_root(node, state) {
|
|
77204
76596
|
const children = state.all(node)
|
|
77205
76597
|
/** @type {Array<JsxChild>} */
|
|
77206
76598
|
const cleanChildren = []
|
|
@@ -77292,7 +76684,7 @@ const handlers = {
|
|
|
77292
76684
|
mdxJsxTextElement: mdxJsxElement,
|
|
77293
76685
|
mdxTextExpression: mdx_expression_mdxExpression,
|
|
77294
76686
|
mdxjsEsm: mdxjs_esm_mdxjsEsm,
|
|
77295
|
-
root:
|
|
76687
|
+
root: handlers_root_root,
|
|
77296
76688
|
text: handlers_text_text
|
|
77297
76689
|
}
|
|
77298
76690
|
|
|
@@ -79260,7 +78652,7 @@ function paragraph_paragraph(state, node) {
|
|
|
79260
78652
|
* @returns {HastParents}
|
|
79261
78653
|
* hast node.
|
|
79262
78654
|
*/
|
|
79263
|
-
function
|
|
78655
|
+
function lib_handlers_root_root(state, node) {
|
|
79264
78656
|
/** @type {HastRoot} */
|
|
79265
78657
|
const result = {type: 'root', children: state.wrap(state.all(node))}
|
|
79266
78658
|
state.patch(node, result)
|
|
@@ -79645,7 +79037,7 @@ const handlers_handlers = {
|
|
|
79645
79037
|
list: handlers_list_list,
|
|
79646
79038
|
paragraph: paragraph_paragraph,
|
|
79647
79039
|
// @ts-expect-error: root is different, but hard to type.
|
|
79648
|
-
root:
|
|
79040
|
+
root: lib_handlers_root_root,
|
|
79649
79041
|
strong: strong_strong,
|
|
79650
79042
|
table: table,
|
|
79651
79043
|
tableCell: tableCell,
|
|
@@ -83023,81 +82415,702 @@ function core_createProcessor(options) {
|
|
|
83023
82415
|
* @import {Compatible, VFile} from 'vfile'
|
|
83024
82416
|
* @import {ProcessorOptions} from './core.js'
|
|
83025
82417
|
*/
|
|
83026
|
-
|
|
82418
|
+
|
|
82419
|
+
/**
|
|
82420
|
+
* @typedef {Omit<ProcessorOptions, 'format'>} CoreProcessorOptions
|
|
82421
|
+
* Core configuration.
|
|
82422
|
+
*
|
|
82423
|
+
* @typedef ExtraOptions
|
|
82424
|
+
* Extra configuration.
|
|
82425
|
+
* @property {'detect' | 'md' | 'mdx' | null | undefined} [format='detect']
|
|
82426
|
+
* Format of `file` (default: `'detect'`).
|
|
82427
|
+
*
|
|
82428
|
+
* @typedef {CoreProcessorOptions & ExtraOptions} CompileOptions
|
|
82429
|
+
* Configuration for `compile`.
|
|
82430
|
+
*
|
|
82431
|
+
* `CompileOptions` is the same as `ProcessorOptions` with the exception that
|
|
82432
|
+
* the `format` option supports a `'detect'` value, which is the default.
|
|
82433
|
+
* The `'detect'` format means to use `'md'` for files with an extension in
|
|
82434
|
+
* `mdExtensions` and `'mdx'` otherwise.
|
|
82435
|
+
*/
|
|
82436
|
+
|
|
82437
|
+
|
|
82438
|
+
|
|
82439
|
+
|
|
82440
|
+
/**
|
|
82441
|
+
* Compile MDX to JS.
|
|
82442
|
+
*
|
|
82443
|
+
* @param {Readonly<Compatible>} vfileCompatible
|
|
82444
|
+
* MDX document to parse.
|
|
82445
|
+
* @param {Readonly<CompileOptions> | null | undefined} [compileOptions]
|
|
82446
|
+
* Compile configuration (optional).
|
|
82447
|
+
* @return {Promise<VFile>}
|
|
82448
|
+
* Promise to compiled file.
|
|
82449
|
+
*/
|
|
82450
|
+
function compile(vfileCompatible, compileOptions) {
|
|
82451
|
+
const {file, options} = resolve_file_and_options_resolveFileAndOptions(vfileCompatible, compileOptions)
|
|
82452
|
+
return core_createProcessor(options).process(file)
|
|
82453
|
+
}
|
|
82454
|
+
|
|
82455
|
+
/**
|
|
82456
|
+
* Synchronously compile MDX to JS.
|
|
82457
|
+
*
|
|
82458
|
+
* When possible please use the async `compile`.
|
|
82459
|
+
*
|
|
82460
|
+
* @param {Readonly<Compatible>} vfileCompatible
|
|
82461
|
+
* MDX document to parse.
|
|
82462
|
+
* @param {Readonly<CompileOptions> | null | undefined} [compileOptions]
|
|
82463
|
+
* Compile configuration (optional).
|
|
82464
|
+
* @return {VFile}
|
|
82465
|
+
* Compiled file.
|
|
82466
|
+
*/
|
|
82467
|
+
function compileSync(vfileCompatible, compileOptions) {
|
|
82468
|
+
const {file, options} = resolveFileAndOptions(vfileCompatible, compileOptions)
|
|
82469
|
+
return createProcessor(options).processSync(file)
|
|
82470
|
+
}
|
|
82471
|
+
|
|
82472
|
+
;// ./errors/mdx-syntax-error.ts
|
|
82473
|
+
class MdxSyntaxError extends SyntaxError {
|
|
82474
|
+
original = null;
|
|
82475
|
+
constructor(error, doc) {
|
|
82476
|
+
const { message, line, column, url } = error;
|
|
82477
|
+
const messages = [
|
|
82478
|
+
`Oh no! We ran into a syntax error at { line: ${line}, column: ${column} }, please see this url for more details: ${url}`,
|
|
82479
|
+
];
|
|
82480
|
+
if (typeof line !== 'undefined') {
|
|
82481
|
+
messages.push(doc.split('\n')[line - 1]);
|
|
82482
|
+
if (typeof column !== 'undefined') {
|
|
82483
|
+
const prefix = new Array(column).map(() => '').join(' ');
|
|
82484
|
+
messages.push(`${prefix}↑ ${message}`);
|
|
82485
|
+
}
|
|
82486
|
+
}
|
|
82487
|
+
super(messages.join('\n'));
|
|
82488
|
+
this.original = error;
|
|
82489
|
+
this.name = 'MdxSyntaxError';
|
|
82490
|
+
}
|
|
82491
|
+
}
|
|
82492
|
+
|
|
82493
|
+
;// ./node_modules/estree-util-value-to-estree/dist/estree-util-value-to-estree.js
|
|
82494
|
+
/**
|
|
82495
|
+
* Create an ESTree identifier node for a given name.
|
|
82496
|
+
*
|
|
82497
|
+
* @param name
|
|
82498
|
+
* The name of the identifier.
|
|
82499
|
+
* @returns
|
|
82500
|
+
* The identifier node.
|
|
82501
|
+
*/
|
|
82502
|
+
function identifier(name) {
|
|
82503
|
+
return { type: 'Identifier', name };
|
|
82504
|
+
}
|
|
82505
|
+
/**
|
|
82506
|
+
* Create an ESTree literal node for a given value.
|
|
82507
|
+
*
|
|
82508
|
+
* @param value
|
|
82509
|
+
* The value for which to create a literal.
|
|
82510
|
+
* @returns
|
|
82511
|
+
* The literal node.
|
|
82512
|
+
*/
|
|
82513
|
+
function estree_util_value_to_estree_literal(value) {
|
|
82514
|
+
return { type: 'Literal', value };
|
|
82515
|
+
}
|
|
82516
|
+
/**
|
|
82517
|
+
* Create an ESTree call expression on an object member.
|
|
82518
|
+
*
|
|
82519
|
+
* @param object
|
|
82520
|
+
* The object to call the method on.
|
|
82521
|
+
* @param name
|
|
82522
|
+
* The name of the method to call.
|
|
82523
|
+
* @param args
|
|
82524
|
+
* Arguments to pass to the function call
|
|
82525
|
+
* @returns
|
|
82526
|
+
* The call expression node.
|
|
82527
|
+
*/
|
|
82528
|
+
function methodCall(object, name, args) {
|
|
82529
|
+
return {
|
|
82530
|
+
type: 'CallExpression',
|
|
82531
|
+
optional: false,
|
|
82532
|
+
callee: {
|
|
82533
|
+
type: 'MemberExpression',
|
|
82534
|
+
computed: false,
|
|
82535
|
+
optional: false,
|
|
82536
|
+
object,
|
|
82537
|
+
property: identifier(name)
|
|
82538
|
+
},
|
|
82539
|
+
arguments: args
|
|
82540
|
+
};
|
|
82541
|
+
}
|
|
82542
|
+
/**
|
|
82543
|
+
* Turn a number or bigint into an ESTree expression. This handles positive and negative numbers and
|
|
82544
|
+
* bigints as well as special numbers.
|
|
82545
|
+
*
|
|
82546
|
+
* @param number
|
|
82547
|
+
* The value to turn into an ESTree expression.
|
|
82548
|
+
* @returns
|
|
82549
|
+
* An expression that represents the given value.
|
|
82550
|
+
*/
|
|
82551
|
+
function processNumber(number) {
|
|
82552
|
+
if (number < 0 || Object.is(number, -0)) {
|
|
82553
|
+
return {
|
|
82554
|
+
type: 'UnaryExpression',
|
|
82555
|
+
operator: '-',
|
|
82556
|
+
prefix: true,
|
|
82557
|
+
argument: processNumber(-number)
|
|
82558
|
+
};
|
|
82559
|
+
}
|
|
82560
|
+
if (typeof number === 'bigint') {
|
|
82561
|
+
return { type: 'Literal', bigint: String(number) };
|
|
82562
|
+
}
|
|
82563
|
+
if (number === Number.POSITIVE_INFINITY || Number.isNaN(number)) {
|
|
82564
|
+
return identifier(String(number));
|
|
82565
|
+
}
|
|
82566
|
+
return estree_util_value_to_estree_literal(number);
|
|
82567
|
+
}
|
|
82568
|
+
/**
|
|
82569
|
+
* Process an array of numbers. This is a shortcut for iterables whose constructor takes an array of
|
|
82570
|
+
* numbers as input.
|
|
82571
|
+
*
|
|
82572
|
+
* @param numbers
|
|
82573
|
+
* The numbers to add to the array expression.
|
|
82574
|
+
* @returns
|
|
82575
|
+
* An ESTree array expression whose elements match the input numbers.
|
|
82576
|
+
*/
|
|
82577
|
+
function processNumberArray(numbers) {
|
|
82578
|
+
const elements = [];
|
|
82579
|
+
for (const value of numbers) {
|
|
82580
|
+
elements.push(processNumber(value));
|
|
82581
|
+
}
|
|
82582
|
+
return { type: 'ArrayExpression', elements };
|
|
82583
|
+
}
|
|
82584
|
+
/**
|
|
82585
|
+
* Check whether a value can be constructed from its string representation.
|
|
82586
|
+
*
|
|
82587
|
+
* @param value
|
|
82588
|
+
* The value to check
|
|
82589
|
+
* @returns
|
|
82590
|
+
* Whether or not the value can be constructed from its string representation.
|
|
82591
|
+
*/
|
|
82592
|
+
function isStringReconstructable(value) {
|
|
82593
|
+
return value instanceof URL || value instanceof URLSearchParams;
|
|
82594
|
+
}
|
|
82595
|
+
/**
|
|
82596
|
+
* Check whether a value can be constructed from its `valueOf()` result.
|
|
82597
|
+
*
|
|
82598
|
+
* @param value
|
|
82599
|
+
* The value to check
|
|
82600
|
+
* @returns
|
|
82601
|
+
* Whether or not the value can be constructed from its `valueOf()` result.
|
|
82602
|
+
*/
|
|
82603
|
+
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
82604
|
+
function isValueReconstructable(value) {
|
|
82605
|
+
return (value instanceof Boolean ||
|
|
82606
|
+
value instanceof Date ||
|
|
82607
|
+
value instanceof Number ||
|
|
82608
|
+
value instanceof String);
|
|
82609
|
+
}
|
|
82610
|
+
const wellKnownSymbols = new Map();
|
|
82611
|
+
for (const name of Reflect.ownKeys(Symbol)) {
|
|
82612
|
+
const value = Symbol[name];
|
|
82613
|
+
if (typeof value === 'symbol') {
|
|
82614
|
+
wellKnownSymbols.set(value, name);
|
|
82615
|
+
}
|
|
82616
|
+
}
|
|
82617
|
+
/**
|
|
82618
|
+
* Check whether a value is a typed array.
|
|
82619
|
+
*
|
|
82620
|
+
* @param value
|
|
82621
|
+
* The value to check
|
|
82622
|
+
* @returns
|
|
82623
|
+
* Whether or not the value is a typed array.
|
|
82624
|
+
*/
|
|
82625
|
+
function isTypedArray(value) {
|
|
82626
|
+
return (value instanceof BigInt64Array ||
|
|
82627
|
+
value instanceof BigUint64Array ||
|
|
82628
|
+
value instanceof Float32Array ||
|
|
82629
|
+
value instanceof Float64Array ||
|
|
82630
|
+
value instanceof Int8Array ||
|
|
82631
|
+
value instanceof Int16Array ||
|
|
82632
|
+
value instanceof Int32Array ||
|
|
82633
|
+
value instanceof Uint8Array ||
|
|
82634
|
+
value instanceof Uint8ClampedArray ||
|
|
82635
|
+
value instanceof Uint16Array ||
|
|
82636
|
+
value instanceof Uint32Array);
|
|
82637
|
+
}
|
|
82638
|
+
/**
|
|
82639
|
+
* Compare two value contexts for sorting them based on reference count.
|
|
82640
|
+
*
|
|
82641
|
+
* @param a
|
|
82642
|
+
* The first context to compare.
|
|
82643
|
+
* @param b
|
|
82644
|
+
* The second context to compare.
|
|
82645
|
+
* @returns
|
|
82646
|
+
* The count of context a minus the count of context b.
|
|
82647
|
+
*/
|
|
82648
|
+
function compareContexts(a, b) {
|
|
82649
|
+
const aReferencedByB = a.referencedBy.has(b.value);
|
|
82650
|
+
const bReferencedByA = b.referencedBy.has(a.value);
|
|
82651
|
+
if (aReferencedByB) {
|
|
82652
|
+
if (bReferencedByA) {
|
|
82653
|
+
return a.count - b.count;
|
|
82654
|
+
}
|
|
82655
|
+
return -1;
|
|
82656
|
+
}
|
|
82657
|
+
if (bReferencedByA) {
|
|
82658
|
+
return 1;
|
|
82659
|
+
}
|
|
82660
|
+
return a.count - b.count;
|
|
82661
|
+
}
|
|
83027
82662
|
/**
|
|
83028
|
-
*
|
|
83029
|
-
* Core configuration.
|
|
83030
|
-
*
|
|
83031
|
-
* @typedef ExtraOptions
|
|
83032
|
-
* Extra configuration.
|
|
83033
|
-
* @property {'detect' | 'md' | 'mdx' | null | undefined} [format='detect']
|
|
83034
|
-
* Format of `file` (default: `'detect'`).
|
|
82663
|
+
* Replace the assigned right hand expression with the new expression.
|
|
83035
82664
|
*
|
|
83036
|
-
*
|
|
83037
|
-
*
|
|
82665
|
+
* If there is no assignment expression, the original expression is returned. Otherwise the
|
|
82666
|
+
* assignment is modified and returned,
|
|
83038
82667
|
*
|
|
83039
|
-
*
|
|
83040
|
-
*
|
|
83041
|
-
*
|
|
83042
|
-
*
|
|
82668
|
+
* @param expression
|
|
82669
|
+
* The expression to use for the assignment.
|
|
82670
|
+
* @param assignment
|
|
82671
|
+
* The existing assignmentexpression
|
|
82672
|
+
* @returns
|
|
82673
|
+
* The new expression.
|
|
83043
82674
|
*/
|
|
83044
|
-
|
|
83045
|
-
|
|
83046
|
-
|
|
83047
|
-
|
|
82675
|
+
function replaceAssignment(expression, assignment) {
|
|
82676
|
+
if (!assignment || assignment.type !== 'AssignmentExpression') {
|
|
82677
|
+
return expression;
|
|
82678
|
+
}
|
|
82679
|
+
let node = assignment;
|
|
82680
|
+
while (node.right.type === 'AssignmentExpression') {
|
|
82681
|
+
node = node.right;
|
|
82682
|
+
}
|
|
82683
|
+
node.right = expression;
|
|
82684
|
+
return assignment;
|
|
82685
|
+
}
|
|
83048
82686
|
/**
|
|
83049
|
-
*
|
|
82687
|
+
* Create an ESTree epxression to represent a symbol. Global and well-known symbols are supported.
|
|
83050
82688
|
*
|
|
83051
|
-
* @param
|
|
83052
|
-
*
|
|
83053
|
-
* @
|
|
83054
|
-
*
|
|
83055
|
-
* @return {Promise<VFile>}
|
|
83056
|
-
* Promise to compiled file.
|
|
82689
|
+
* @param symbol
|
|
82690
|
+
* THe symbol to represent.
|
|
82691
|
+
* @returns
|
|
82692
|
+
* An ESTree expression to represent the symbol.
|
|
83057
82693
|
*/
|
|
83058
|
-
function
|
|
83059
|
-
|
|
83060
|
-
|
|
82694
|
+
function symbolToEstree(symbol) {
|
|
82695
|
+
const name = wellKnownSymbols.get(symbol);
|
|
82696
|
+
if (name) {
|
|
82697
|
+
return {
|
|
82698
|
+
type: 'MemberExpression',
|
|
82699
|
+
computed: false,
|
|
82700
|
+
optional: false,
|
|
82701
|
+
object: identifier('Symbol'),
|
|
82702
|
+
property: identifier(name)
|
|
82703
|
+
};
|
|
82704
|
+
}
|
|
82705
|
+
if (symbol.description && symbol === Symbol.for(symbol.description)) {
|
|
82706
|
+
return methodCall(identifier('Symbol'), 'for', [estree_util_value_to_estree_literal(symbol.description)]);
|
|
82707
|
+
}
|
|
82708
|
+
throw new TypeError(`Only global symbols are supported, got: ${String(symbol)}`, {
|
|
82709
|
+
cause: symbol
|
|
82710
|
+
});
|
|
83061
82711
|
}
|
|
83062
|
-
|
|
83063
82712
|
/**
|
|
83064
|
-
*
|
|
83065
|
-
*
|
|
83066
|
-
* When possible please use the async `compile`.
|
|
82713
|
+
* Create an ESTree property from a key and a value expression.
|
|
83067
82714
|
*
|
|
83068
|
-
* @param
|
|
83069
|
-
*
|
|
83070
|
-
* @param
|
|
83071
|
-
*
|
|
83072
|
-
* @
|
|
83073
|
-
*
|
|
82715
|
+
* @param key
|
|
82716
|
+
* The property key value
|
|
82717
|
+
* @param value
|
|
82718
|
+
* The property value as an ESTree expression.
|
|
82719
|
+
* @returns
|
|
82720
|
+
* The ESTree properry node.
|
|
83074
82721
|
*/
|
|
83075
|
-
function
|
|
83076
|
-
|
|
83077
|
-
|
|
82722
|
+
function property(key, value) {
|
|
82723
|
+
const computed = typeof key !== 'string';
|
|
82724
|
+
return {
|
|
82725
|
+
type: 'Property',
|
|
82726
|
+
method: false,
|
|
82727
|
+
shorthand: false,
|
|
82728
|
+
computed,
|
|
82729
|
+
kind: 'init',
|
|
82730
|
+
key: computed ? symbolToEstree(key) : estree_util_value_to_estree_literal(key),
|
|
82731
|
+
value
|
|
82732
|
+
};
|
|
83078
82733
|
}
|
|
83079
|
-
|
|
83080
|
-
|
|
83081
|
-
|
|
83082
|
-
|
|
83083
|
-
|
|
83084
|
-
|
|
83085
|
-
|
|
83086
|
-
|
|
83087
|
-
|
|
83088
|
-
|
|
83089
|
-
|
|
83090
|
-
|
|
83091
|
-
|
|
83092
|
-
|
|
82734
|
+
/**
|
|
82735
|
+
* Convert a value to an ESTree node.
|
|
82736
|
+
*
|
|
82737
|
+
* @param value
|
|
82738
|
+
* The value to convert.
|
|
82739
|
+
* @param options
|
|
82740
|
+
* Additional options to configure the output.
|
|
82741
|
+
* @returns
|
|
82742
|
+
* The ESTree node.
|
|
82743
|
+
*/
|
|
82744
|
+
function valueToEstree(value, options = {}) {
|
|
82745
|
+
const stack = [];
|
|
82746
|
+
const collectedContexts = new Map();
|
|
82747
|
+
const namedContexts = [];
|
|
82748
|
+
/**
|
|
82749
|
+
* Analyze a value and collect all reference contexts.
|
|
82750
|
+
*
|
|
82751
|
+
* @param val
|
|
82752
|
+
* The value to analyze.
|
|
82753
|
+
*/
|
|
82754
|
+
function analyze(val) {
|
|
82755
|
+
if (typeof val === 'function') {
|
|
82756
|
+
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
82757
|
+
}
|
|
82758
|
+
if (typeof val !== 'object') {
|
|
82759
|
+
return;
|
|
82760
|
+
}
|
|
82761
|
+
if (val == null) {
|
|
82762
|
+
return;
|
|
82763
|
+
}
|
|
82764
|
+
const context = collectedContexts.get(val);
|
|
82765
|
+
if (context) {
|
|
82766
|
+
if (options.preserveReferences) {
|
|
82767
|
+
context.count += 1;
|
|
82768
|
+
}
|
|
82769
|
+
for (const ancestor of stack) {
|
|
82770
|
+
context.referencedBy.add(ancestor);
|
|
82771
|
+
}
|
|
82772
|
+
if (stack.includes(val)) {
|
|
82773
|
+
if (!options.preserveReferences) {
|
|
82774
|
+
throw new Error(`Found circular reference: ${val}`, { cause: val });
|
|
82775
|
+
}
|
|
82776
|
+
const parent = stack.at(-1);
|
|
82777
|
+
const parentContext = collectedContexts.get(parent);
|
|
82778
|
+
parentContext.recursive = true;
|
|
82779
|
+
context.recursive = true;
|
|
83093
82780
|
}
|
|
82781
|
+
return;
|
|
82782
|
+
}
|
|
82783
|
+
collectedContexts.set(val, {
|
|
82784
|
+
count: 1,
|
|
82785
|
+
recursive: false,
|
|
82786
|
+
referencedBy: new Set(stack),
|
|
82787
|
+
value: val
|
|
82788
|
+
});
|
|
82789
|
+
if (isTypedArray(val)) {
|
|
82790
|
+
return;
|
|
82791
|
+
}
|
|
82792
|
+
if (isStringReconstructable(val)) {
|
|
82793
|
+
return;
|
|
82794
|
+
}
|
|
82795
|
+
if (isValueReconstructable(val)) {
|
|
82796
|
+
return;
|
|
82797
|
+
}
|
|
82798
|
+
if (value instanceof RegExp) {
|
|
82799
|
+
return;
|
|
82800
|
+
}
|
|
82801
|
+
stack.push(val);
|
|
82802
|
+
if (val instanceof Map) {
|
|
82803
|
+
for (const pair of val) {
|
|
82804
|
+
analyze(pair[0]);
|
|
82805
|
+
analyze(pair[1]);
|
|
82806
|
+
}
|
|
82807
|
+
}
|
|
82808
|
+
else if (Array.isArray(val) || val instanceof Set) {
|
|
82809
|
+
for (const entry of val) {
|
|
82810
|
+
analyze(entry);
|
|
82811
|
+
}
|
|
82812
|
+
}
|
|
82813
|
+
else {
|
|
82814
|
+
const proto = Object.getPrototypeOf(val);
|
|
82815
|
+
if (proto != null && proto !== Object.prototype && !options.instanceAsObject) {
|
|
82816
|
+
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
82817
|
+
}
|
|
82818
|
+
for (const key of Reflect.ownKeys(val)) {
|
|
82819
|
+
analyze(val[key]);
|
|
82820
|
+
}
|
|
82821
|
+
}
|
|
82822
|
+
stack.pop();
|
|
82823
|
+
}
|
|
82824
|
+
/**
|
|
82825
|
+
* Recursively generate the ESTree expression needed to reconstruct the value.
|
|
82826
|
+
*
|
|
82827
|
+
* @param val
|
|
82828
|
+
* The value to process.
|
|
82829
|
+
* @param isDeclaration
|
|
82830
|
+
* Whether or not this is for a variable declaration.
|
|
82831
|
+
* @returns
|
|
82832
|
+
* The ESTree expression to reconstruct the value.
|
|
82833
|
+
*/
|
|
82834
|
+
function generate(val, isDeclaration) {
|
|
82835
|
+
if (val === undefined) {
|
|
82836
|
+
return identifier(String(val));
|
|
82837
|
+
}
|
|
82838
|
+
if (val == null || typeof val === 'string' || typeof val === 'boolean') {
|
|
82839
|
+
return estree_util_value_to_estree_literal(val);
|
|
82840
|
+
}
|
|
82841
|
+
if (typeof val === 'bigint' || typeof val === 'number') {
|
|
82842
|
+
return processNumber(val);
|
|
82843
|
+
}
|
|
82844
|
+
if (typeof val === 'symbol') {
|
|
82845
|
+
return symbolToEstree(val);
|
|
82846
|
+
}
|
|
82847
|
+
const context = collectedContexts.get(val);
|
|
82848
|
+
if (!isDeclaration && context?.name) {
|
|
82849
|
+
return identifier(context.name);
|
|
82850
|
+
}
|
|
82851
|
+
if (isValueReconstructable(val)) {
|
|
82852
|
+
return {
|
|
82853
|
+
type: 'NewExpression',
|
|
82854
|
+
callee: identifier(val.constructor.name),
|
|
82855
|
+
arguments: [generate(val.valueOf())]
|
|
82856
|
+
};
|
|
82857
|
+
}
|
|
82858
|
+
if (val instanceof RegExp) {
|
|
82859
|
+
return {
|
|
82860
|
+
type: 'Literal',
|
|
82861
|
+
regex: { pattern: val.source, flags: val.flags }
|
|
82862
|
+
};
|
|
82863
|
+
}
|
|
82864
|
+
if (typeof Buffer !== 'undefined' && Buffer.isBuffer(val)) {
|
|
82865
|
+
return methodCall(identifier('Buffer'), 'from', [processNumberArray(val)]);
|
|
82866
|
+
}
|
|
82867
|
+
if (isTypedArray(val)) {
|
|
82868
|
+
return {
|
|
82869
|
+
type: 'NewExpression',
|
|
82870
|
+
callee: identifier(val.constructor.name),
|
|
82871
|
+
arguments: [processNumberArray(val)]
|
|
82872
|
+
};
|
|
82873
|
+
}
|
|
82874
|
+
if (isStringReconstructable(val)) {
|
|
82875
|
+
return {
|
|
82876
|
+
type: 'NewExpression',
|
|
82877
|
+
callee: identifier(val.constructor.name),
|
|
82878
|
+
arguments: [estree_util_value_to_estree_literal(String(val))]
|
|
82879
|
+
};
|
|
82880
|
+
}
|
|
82881
|
+
if (Array.isArray(val)) {
|
|
82882
|
+
const elements = Array.from({ length: val.length });
|
|
82883
|
+
let trimmable;
|
|
82884
|
+
for (let index = 0; index < val.length; index += 1) {
|
|
82885
|
+
if (!(index in val)) {
|
|
82886
|
+
elements[index] = null;
|
|
82887
|
+
trimmable = undefined;
|
|
82888
|
+
continue;
|
|
82889
|
+
}
|
|
82890
|
+
const child = val[index];
|
|
82891
|
+
const childContext = collectedContexts.get(child);
|
|
82892
|
+
if (context &&
|
|
82893
|
+
childContext &&
|
|
82894
|
+
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
82895
|
+
elements[index] = null;
|
|
82896
|
+
trimmable ||= index;
|
|
82897
|
+
childContext.assignment = {
|
|
82898
|
+
type: 'AssignmentExpression',
|
|
82899
|
+
operator: '=',
|
|
82900
|
+
left: {
|
|
82901
|
+
type: 'MemberExpression',
|
|
82902
|
+
computed: true,
|
|
82903
|
+
optional: false,
|
|
82904
|
+
object: identifier(context.name),
|
|
82905
|
+
property: estree_util_value_to_estree_literal(index)
|
|
82906
|
+
},
|
|
82907
|
+
right: childContext.assignment || identifier(childContext.name)
|
|
82908
|
+
};
|
|
82909
|
+
}
|
|
82910
|
+
else {
|
|
82911
|
+
elements[index] = generate(child);
|
|
82912
|
+
trimmable = undefined;
|
|
82913
|
+
}
|
|
82914
|
+
}
|
|
82915
|
+
if (trimmable != null) {
|
|
82916
|
+
elements.splice(trimmable);
|
|
82917
|
+
}
|
|
82918
|
+
return {
|
|
82919
|
+
type: 'ArrayExpression',
|
|
82920
|
+
elements
|
|
82921
|
+
};
|
|
82922
|
+
}
|
|
82923
|
+
if (val instanceof Set) {
|
|
82924
|
+
const elements = [];
|
|
82925
|
+
let finalizer;
|
|
82926
|
+
for (const child of val) {
|
|
82927
|
+
if (finalizer) {
|
|
82928
|
+
finalizer = methodCall(finalizer, 'add', [generate(child)]);
|
|
82929
|
+
}
|
|
82930
|
+
else {
|
|
82931
|
+
const childContext = collectedContexts.get(child);
|
|
82932
|
+
if (context &&
|
|
82933
|
+
childContext &&
|
|
82934
|
+
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
82935
|
+
finalizer = methodCall(identifier(context.name), 'add', [generate(child)]);
|
|
82936
|
+
}
|
|
82937
|
+
else {
|
|
82938
|
+
elements.push(generate(child));
|
|
82939
|
+
}
|
|
82940
|
+
}
|
|
82941
|
+
}
|
|
82942
|
+
if (context && finalizer) {
|
|
82943
|
+
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
82944
|
+
}
|
|
82945
|
+
return {
|
|
82946
|
+
type: 'NewExpression',
|
|
82947
|
+
callee: identifier('Set'),
|
|
82948
|
+
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
82949
|
+
};
|
|
82950
|
+
}
|
|
82951
|
+
if (val instanceof Map) {
|
|
82952
|
+
const elements = [];
|
|
82953
|
+
let finalizer;
|
|
82954
|
+
for (const [key, item] of val) {
|
|
82955
|
+
if (finalizer) {
|
|
82956
|
+
finalizer = methodCall(finalizer, 'set', [generate(key), generate(item)]);
|
|
82957
|
+
}
|
|
82958
|
+
else {
|
|
82959
|
+
const keyContext = collectedContexts.get(key);
|
|
82960
|
+
const itemContext = collectedContexts.get(item);
|
|
82961
|
+
if (context &&
|
|
82962
|
+
((keyContext && namedContexts.indexOf(keyContext) >= namedContexts.indexOf(context)) ||
|
|
82963
|
+
(itemContext && namedContexts.indexOf(itemContext) >= namedContexts.indexOf(context)))) {
|
|
82964
|
+
finalizer = methodCall(identifier(context.name), 'set', [
|
|
82965
|
+
generate(key),
|
|
82966
|
+
generate(item)
|
|
82967
|
+
]);
|
|
82968
|
+
}
|
|
82969
|
+
else {
|
|
82970
|
+
elements.push({
|
|
82971
|
+
type: 'ArrayExpression',
|
|
82972
|
+
elements: [generate(key), generate(item)]
|
|
82973
|
+
});
|
|
82974
|
+
}
|
|
82975
|
+
}
|
|
82976
|
+
}
|
|
82977
|
+
if (context && finalizer) {
|
|
82978
|
+
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
82979
|
+
}
|
|
82980
|
+
return {
|
|
82981
|
+
type: 'NewExpression',
|
|
82982
|
+
callee: identifier('Map'),
|
|
82983
|
+
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
82984
|
+
};
|
|
82985
|
+
}
|
|
82986
|
+
const properties = [];
|
|
82987
|
+
if (Object.getPrototypeOf(val) == null) {
|
|
82988
|
+
properties.push(property('__proto__', estree_util_value_to_estree_literal(null)));
|
|
82989
|
+
}
|
|
82990
|
+
const object = val;
|
|
82991
|
+
const propertyDescriptors = [];
|
|
82992
|
+
for (const key of Reflect.ownKeys(val)) {
|
|
82993
|
+
// TODO [>=4] Throw an error for getters.
|
|
82994
|
+
const child = object[key];
|
|
82995
|
+
const { configurable, enumerable, writable } = Object.getOwnPropertyDescriptor(val, key);
|
|
82996
|
+
const childContext = collectedContexts.get(child);
|
|
82997
|
+
if (!configurable || !enumerable || !writable) {
|
|
82998
|
+
const propertyDescriptor = [property('value', generate(child))];
|
|
82999
|
+
if (configurable) {
|
|
83000
|
+
propertyDescriptor.push(property('configurable', estree_util_value_to_estree_literal(true)));
|
|
83001
|
+
}
|
|
83002
|
+
if (enumerable) {
|
|
83003
|
+
propertyDescriptor.push(property('enumerable', estree_util_value_to_estree_literal(true)));
|
|
83004
|
+
}
|
|
83005
|
+
if (writable) {
|
|
83006
|
+
propertyDescriptor.push(property('writable', estree_util_value_to_estree_literal(true)));
|
|
83007
|
+
}
|
|
83008
|
+
propertyDescriptors.push(property(key, {
|
|
83009
|
+
type: 'ObjectExpression',
|
|
83010
|
+
properties: propertyDescriptor
|
|
83011
|
+
}));
|
|
83012
|
+
}
|
|
83013
|
+
else if (context &&
|
|
83014
|
+
childContext &&
|
|
83015
|
+
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
83016
|
+
childContext.assignment = {
|
|
83017
|
+
type: 'AssignmentExpression',
|
|
83018
|
+
operator: '=',
|
|
83019
|
+
left: {
|
|
83020
|
+
type: 'MemberExpression',
|
|
83021
|
+
computed: true,
|
|
83022
|
+
optional: false,
|
|
83023
|
+
object: identifier(context.name),
|
|
83024
|
+
property: generate(key)
|
|
83025
|
+
},
|
|
83026
|
+
right: childContext.assignment || generate(child)
|
|
83027
|
+
};
|
|
83028
|
+
}
|
|
83029
|
+
else {
|
|
83030
|
+
properties.push(property(key, generate(child)));
|
|
83031
|
+
}
|
|
83032
|
+
}
|
|
83033
|
+
const objectExpression = {
|
|
83034
|
+
type: 'ObjectExpression',
|
|
83035
|
+
properties
|
|
83036
|
+
};
|
|
83037
|
+
if (propertyDescriptors.length) {
|
|
83038
|
+
if (!context) {
|
|
83039
|
+
return methodCall(identifier('Object'), 'defineProperties', [
|
|
83040
|
+
objectExpression,
|
|
83041
|
+
{
|
|
83042
|
+
type: 'ObjectExpression',
|
|
83043
|
+
properties: propertyDescriptors
|
|
83044
|
+
}
|
|
83045
|
+
]);
|
|
83046
|
+
}
|
|
83047
|
+
context.assignment = replaceAssignment(methodCall(identifier('Object'), 'defineProperties', [
|
|
83048
|
+
identifier(context.name),
|
|
83049
|
+
{
|
|
83050
|
+
type: 'ObjectExpression',
|
|
83051
|
+
properties: propertyDescriptors
|
|
83052
|
+
}
|
|
83053
|
+
]), context.assignment);
|
|
83054
|
+
}
|
|
83055
|
+
return objectExpression;
|
|
83056
|
+
}
|
|
83057
|
+
analyze(value);
|
|
83058
|
+
for (const [val, context] of collectedContexts) {
|
|
83059
|
+
if (context.recursive || context.count > 1) {
|
|
83060
|
+
// Assign reused or recursive references to a variable.
|
|
83061
|
+
context.name = `$${namedContexts.length}`;
|
|
83062
|
+
namedContexts.push(context);
|
|
83063
|
+
}
|
|
83064
|
+
else {
|
|
83065
|
+
// Otherwise don’t treat it as a reference.
|
|
83066
|
+
collectedContexts.delete(val);
|
|
83094
83067
|
}
|
|
83095
|
-
super(messages.join('\n'));
|
|
83096
|
-
this.original = error;
|
|
83097
|
-
this.name = 'MdxSyntaxError';
|
|
83098
83068
|
}
|
|
83069
|
+
if (!namedContexts.length) {
|
|
83070
|
+
return generate(value);
|
|
83071
|
+
}
|
|
83072
|
+
const declarations = namedContexts.sort(compareContexts).map((context) => ({
|
|
83073
|
+
type: 'VariableDeclarator',
|
|
83074
|
+
id: identifier(context.name),
|
|
83075
|
+
init: generate(context.value, true)
|
|
83076
|
+
}));
|
|
83077
|
+
const rootContext = collectedContexts.get(value);
|
|
83078
|
+
const finalizers = [];
|
|
83079
|
+
for (const context of collectedContexts.values()) {
|
|
83080
|
+
if (context !== rootContext && context.assignment) {
|
|
83081
|
+
finalizers.push(context.assignment);
|
|
83082
|
+
}
|
|
83083
|
+
}
|
|
83084
|
+
finalizers.push(rootContext ? rootContext.assignment || identifier(rootContext.name) : generate(value));
|
|
83085
|
+
return {
|
|
83086
|
+
type: 'CallExpression',
|
|
83087
|
+
optional: false,
|
|
83088
|
+
arguments: [],
|
|
83089
|
+
callee: {
|
|
83090
|
+
type: 'ArrowFunctionExpression',
|
|
83091
|
+
expression: false,
|
|
83092
|
+
params: [],
|
|
83093
|
+
body: {
|
|
83094
|
+
type: 'BlockStatement',
|
|
83095
|
+
body: [
|
|
83096
|
+
{
|
|
83097
|
+
type: 'VariableDeclaration',
|
|
83098
|
+
kind: 'const',
|
|
83099
|
+
declarations
|
|
83100
|
+
},
|
|
83101
|
+
{
|
|
83102
|
+
type: 'ReturnStatement',
|
|
83103
|
+
argument: {
|
|
83104
|
+
type: 'SequenceExpression',
|
|
83105
|
+
expressions: finalizers
|
|
83106
|
+
}
|
|
83107
|
+
}
|
|
83108
|
+
]
|
|
83109
|
+
}
|
|
83110
|
+
}
|
|
83111
|
+
};
|
|
83099
83112
|
}
|
|
83100
|
-
|
|
83113
|
+
//# sourceMappingURL=estree-util-value-to-estree.js.map
|
|
83101
83114
|
;// ./node_modules/hast-util-parse-selector/lib/index.js
|
|
83102
83115
|
/**
|
|
83103
83116
|
* @typedef {import('hast').Element} Element
|
|
@@ -83693,10 +83706,10 @@ const tocToHast = (headings = []) => {
|
|
|
83693
83706
|
});
|
|
83694
83707
|
return ast;
|
|
83695
83708
|
};
|
|
83696
|
-
const
|
|
83709
|
+
const tocHastToMdx = (toc, components) => {
|
|
83697
83710
|
const tree = { type: 'root', children: toc };
|
|
83698
83711
|
visit(tree, 'mdxJsxFlowElement', (node, index, parent) => {
|
|
83699
|
-
const subToc = components[node.name]
|
|
83712
|
+
const subToc = components[node.name] || [];
|
|
83700
83713
|
parent.children.splice(index, 1, ...subToc);
|
|
83701
83714
|
});
|
|
83702
83715
|
const tocHast = tocToHast(tree.children);
|
|
@@ -83715,7 +83728,7 @@ const tocToMdx = (toc, components) => {
|
|
|
83715
83728
|
|
|
83716
83729
|
|
|
83717
83730
|
const { codeTabsTransformer: compile_codeTabsTransformer, ...transforms } = defaultTransforms;
|
|
83718
|
-
const compile_compile = async (text, { components = {}, copyButtons, useTailwind,
|
|
83731
|
+
const compile_compile = async (text, { components = {}, copyButtons, useTailwind, ...opts } = {}) => {
|
|
83719
83732
|
const remarkPlugins = [
|
|
83720
83733
|
remarkFrontmatter,
|
|
83721
83734
|
remarkGfm,
|
|
@@ -83723,7 +83736,7 @@ const compile_compile = async (text, { components = {}, copyButtons, useTailwind
|
|
|
83723
83736
|
[compile_codeTabsTransformer, { copyButtons }],
|
|
83724
83737
|
];
|
|
83725
83738
|
if (useTailwind) {
|
|
83726
|
-
remarkPlugins.push([transform_tailwind, { components
|
|
83739
|
+
remarkPlugins.push([transform_tailwind, { components }]);
|
|
83727
83740
|
}
|
|
83728
83741
|
try {
|
|
83729
83742
|
const vfile = await compile(text, {
|
|
@@ -87171,7 +87184,7 @@ function q_q(state, node) {
|
|
|
87171
87184
|
* @returns {MdastRoot}
|
|
87172
87185
|
* mdast node.
|
|
87173
87186
|
*/
|
|
87174
|
-
function
|
|
87187
|
+
function hast_util_to_mdast_lib_handlers_root_root(state, node) {
|
|
87175
87188
|
let children = state.all(node)
|
|
87176
87189
|
|
|
87177
87190
|
if (state.options.document || wrapNeeded(children)) {
|
|
@@ -87671,7 +87684,7 @@ function wbr(state, node) {
|
|
|
87671
87684
|
const nodeHandlers = {
|
|
87672
87685
|
comment: handlers_comment_comment,
|
|
87673
87686
|
doctype: lib_handlers_ignore,
|
|
87674
|
-
root:
|
|
87687
|
+
root: hast_util_to_mdast_lib_handlers_root_root,
|
|
87675
87688
|
text: hast_util_to_mdast_lib_handlers_text_text
|
|
87676
87689
|
}
|
|
87677
87690
|
|
|
@@ -88862,10 +88875,12 @@ const makeUseMDXComponents = (more = {}) => {
|
|
|
88862
88875
|
const run_run = async (string, _opts = {}) => {
|
|
88863
88876
|
const { Fragment } = jsx_runtime_namespaceObject;
|
|
88864
88877
|
const { components = {}, terms, variables, baseUrl, imports = {}, ...opts } = _opts;
|
|
88878
|
+
const tocsByTag = {};
|
|
88865
88879
|
const exportedComponents = Object.entries(components).reduce((memo, [tag, mod]) => {
|
|
88866
88880
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
88867
|
-
const { default: Content, toc, Toc,
|
|
88881
|
+
const { default: Content, toc, Toc, ...rest } = mod;
|
|
88868
88882
|
memo[tag] = Content;
|
|
88883
|
+
tocsByTag[tag] = toc;
|
|
88869
88884
|
if (rest) {
|
|
88870
88885
|
Object.entries(rest).forEach(([subTag, component]) => {
|
|
88871
88886
|
memo[subTag] = component;
|
|
@@ -88886,7 +88901,7 @@ const run_run = async (string, _opts = {}) => {
|
|
|
88886
88901
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
88887
88902
|
const { Toc: _Toc, toc, default: Content, stylesheet, ...exports } = await exec(string);
|
|
88888
88903
|
let Toc;
|
|
88889
|
-
const tocMdx =
|
|
88904
|
+
const tocMdx = tocHastToMdx(toc, tocsByTag);
|
|
88890
88905
|
if (tocMdx) {
|
|
88891
88906
|
const compiledToc = await lib_compile(tocMdx);
|
|
88892
88907
|
const tocModule = await exec(compiledToc, { useMDXComponents: () => ({ p: Fragment }) });
|
|
@@ -88894,7 +88909,6 @@ const run_run = async (string, _opts = {}) => {
|
|
|
88894
88909
|
}
|
|
88895
88910
|
return {
|
|
88896
88911
|
default: props => (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(contexts, { baseUrl: baseUrl, terms: terms, variables: variables },
|
|
88897
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(components_Style, { stylesheet: stylesheet }),
|
|
88898
88912
|
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(Content, { ...props }))),
|
|
88899
88913
|
toc,
|
|
88900
88914
|
Toc: props => Toc ? (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(components_TableOfContents, null,
|
|
@@ -88948,6 +88962,7 @@ const utils = {
|
|
|
88948
88962
|
|
|
88949
88963
|
|
|
88950
88964
|
|
|
88965
|
+
|
|
88951
88966
|
})();
|
|
88952
88967
|
|
|
88953
88968
|
/******/ return __webpack_exports__;
|