@readme/markdown 8.4.1 → 9.0.1
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 +97 -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/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 +1182 -1161
- package/dist/main.node.js +1178 -1147
- package/dist/main.node.js.map +1 -1
- 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.node.js
CHANGED
|
@@ -16125,6 +16125,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
16125
16125
|
remarkPlugins: () => (/* reexport */ remarkPlugins),
|
|
16126
16126
|
run: () => (/* reexport */ lib_run),
|
|
16127
16127
|
tags: () => (/* reexport */ lib_tags),
|
|
16128
|
+
tailwindCompiler: () => (/* reexport */ tailwindCompiler),
|
|
16128
16129
|
utils: () => (/* binding */ utils)
|
|
16129
16130
|
});
|
|
16130
16131
|
|
|
@@ -16146,12 +16147,12 @@ __webpack_require__.d(components_namespaceObject, {
|
|
|
16146
16147
|
HTMLBlock: () => (components_HTMLBlock),
|
|
16147
16148
|
Heading: () => (components_Heading),
|
|
16148
16149
|
Image: () => (components_Image),
|
|
16149
|
-
Style: () => (components_Style),
|
|
16150
16150
|
Tab: () => (Tab),
|
|
16151
16151
|
Table: () => (components_Table),
|
|
16152
16152
|
TableOfContents: () => (components_TableOfContents),
|
|
16153
16153
|
Tabs: () => (components_Tabs),
|
|
16154
|
-
TailwindRoot: () => (components_TailwindRoot)
|
|
16154
|
+
TailwindRoot: () => (components_TailwindRoot),
|
|
16155
|
+
TailwindStyle: () => (components_TailwindStyle)
|
|
16155
16156
|
});
|
|
16156
16157
|
|
|
16157
16158
|
// NAMESPACE OBJECT: ./node_modules/micromark/lib/constructs.js
|
|
@@ -21557,18 +21558,6 @@ const Image = (Props) => {
|
|
|
21557
21558
|
};
|
|
21558
21559
|
/* harmony default export */ const components_Image = (Image);
|
|
21559
21560
|
|
|
21560
|
-
;// ./components/Style/index.tsx
|
|
21561
|
-
|
|
21562
|
-
|
|
21563
|
-
const Style = ({ stylesheet }) => {
|
|
21564
|
-
const hasDom = typeof document !== 'undefined';
|
|
21565
|
-
if (!stylesheet) {
|
|
21566
|
-
return null;
|
|
21567
|
-
}
|
|
21568
|
-
return hasDom ? (0,external_amd_react_dom_commonjs2_react_dom_commonjs_react_dom_root_ReactDOM_umd_react_dom_namespaceObject.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);
|
|
21569
|
-
};
|
|
21570
|
-
/* harmony default export */ const components_Style = (Style);
|
|
21571
|
-
|
|
21572
21561
|
;// ./components/Table/index.tsx
|
|
21573
21562
|
|
|
21574
21563
|
const Table = (props) => {
|
|
@@ -21579,6 +21568,19 @@ const Table = (props) => {
|
|
|
21579
21568
|
};
|
|
21580
21569
|
/* harmony default export */ const components_Table = (Table);
|
|
21581
21570
|
|
|
21571
|
+
;// ./components/TableOfContents/index.tsx
|
|
21572
|
+
|
|
21573
|
+
function TableOfContents({ children }) {
|
|
21574
|
+
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("nav", null,
|
|
21575
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("ul", { className: "toc-list" },
|
|
21576
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", null,
|
|
21577
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("a", { className: "tocHeader", href: "#" },
|
|
21578
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("i", { className: "icon icon-text-align-left" }),
|
|
21579
|
+
"Table of Contents")),
|
|
21580
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", { className: "toc-children" }, children))));
|
|
21581
|
+
}
|
|
21582
|
+
/* harmony default export */ const components_TableOfContents = (TableOfContents);
|
|
21583
|
+
|
|
21582
21584
|
;// ./components/Tabs/index.tsx
|
|
21583
21585
|
|
|
21584
21586
|
|
|
@@ -21596,19 +21598,6 @@ const Tabs = ({ children }) => {
|
|
|
21596
21598
|
};
|
|
21597
21599
|
/* harmony default export */ const components_Tabs = (Tabs);
|
|
21598
21600
|
|
|
21599
|
-
;// ./components/TableOfContents/index.tsx
|
|
21600
|
-
|
|
21601
|
-
function TableOfContents({ children }) {
|
|
21602
|
-
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("nav", null,
|
|
21603
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("ul", { className: "toc-list" },
|
|
21604
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", null,
|
|
21605
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("a", { className: "tocHeader", href: "#" },
|
|
21606
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("i", { className: "icon icon-text-align-left" }),
|
|
21607
|
-
"Table of Contents")),
|
|
21608
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("li", { className: "toc-children" }, children))));
|
|
21609
|
-
}
|
|
21610
|
-
/* harmony default export */ const components_TableOfContents = (TableOfContents);
|
|
21611
|
-
|
|
21612
21601
|
;// ./utils/consts.ts
|
|
21613
21602
|
const tailwindPrefix = 'readme-tailwind';
|
|
21614
21603
|
|
|
@@ -21621,6 +21610,247 @@ const TailwindRoot = ({ children, flow }) => {
|
|
|
21621
21610
|
};
|
|
21622
21611
|
/* harmony default export */ const components_TailwindRoot = (TailwindRoot);
|
|
21623
21612
|
|
|
21613
|
+
// EXTERNAL MODULE: ./node_modules/postcss/lib/postcss.js
|
|
21614
|
+
var postcss = __webpack_require__(2895);
|
|
21615
|
+
var postcss_default = /*#__PURE__*/__webpack_require__.n(postcss);
|
|
21616
|
+
;// ./node_modules/postcss/lib/postcss.mjs
|
|
21617
|
+
|
|
21618
|
+
|
|
21619
|
+
/* harmony default export */ const lib_postcss = ((postcss_default()));
|
|
21620
|
+
|
|
21621
|
+
const stringify = (postcss_default()).stringify
|
|
21622
|
+
const fromJSON = (postcss_default()).fromJSON
|
|
21623
|
+
const postcss_plugin = (postcss_default()).plugin
|
|
21624
|
+
const parse = (postcss_default()).parse
|
|
21625
|
+
const list = (postcss_default()).list
|
|
21626
|
+
|
|
21627
|
+
const postcss_document = (postcss_default()).document
|
|
21628
|
+
const comment = (postcss_default()).comment
|
|
21629
|
+
const atRule = (postcss_default()).atRule
|
|
21630
|
+
const rule = (postcss_default()).rule
|
|
21631
|
+
const decl = (postcss_default()).decl
|
|
21632
|
+
const root = (postcss_default()).root
|
|
21633
|
+
|
|
21634
|
+
const CssSyntaxError = (postcss_default()).CssSyntaxError
|
|
21635
|
+
const Declaration = (postcss_default()).Declaration
|
|
21636
|
+
const Container = (postcss_default()).Container
|
|
21637
|
+
const Processor = (postcss_default()).Processor
|
|
21638
|
+
const Document = (postcss_default()).Document
|
|
21639
|
+
const Comment = (postcss_default()).Comment
|
|
21640
|
+
const Warning = (postcss_default()).Warning
|
|
21641
|
+
const AtRule = (postcss_default()).AtRule
|
|
21642
|
+
const Result = (postcss_default()).Result
|
|
21643
|
+
const Input = (postcss_default()).Input
|
|
21644
|
+
const Rule = (postcss_default()).Rule
|
|
21645
|
+
const Root = (postcss_default()).Root
|
|
21646
|
+
const Node = (postcss_default()).Node
|
|
21647
|
+
|
|
21648
|
+
// EXTERNAL MODULE: ./node_modules/postcss-prefix-selector/index.js
|
|
21649
|
+
var postcss_prefix_selector = __webpack_require__(9193);
|
|
21650
|
+
var postcss_prefix_selector_default = /*#__PURE__*/__webpack_require__.n(postcss_prefix_selector);
|
|
21651
|
+
;// ./node_modules/tailwindcss/dist/chunk-AZANAYY2.mjs
|
|
21652
|
+
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)"}};
|
|
21653
|
+
|
|
21654
|
+
;// ./node_modules/tailwindcss/dist/chunk-V2K3XTS4.mjs
|
|
21655
|
+
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}};
|
|
21656
|
+
|
|
21657
|
+
;// ./node_modules/tailwindcss/dist/chunk-WZA4AHDT.mjs
|
|
21658
|
+
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)}};
|
|
21659
|
+
|
|
21660
|
+
;// ./node_modules/tailwindcss/dist/lib.mjs
|
|
21661
|
+
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
|
|
21662
|
+
`,`
|
|
21663
|
+
`);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":""};
|
|
21664
|
+
`;else if(e.kind==="rule"){s+=`${a}${e.selector} {
|
|
21665
|
+
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
21666
|
+
`}else if(e.kind==="at-rule"){if(e.nodes.length===0)return`${a}${e.name} ${e.params};
|
|
21667
|
+
`;s+=`${a}${e.name}${e.params?` ${e.params} `:" "}{
|
|
21668
|
+
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
21669
|
+
`}else if(e.kind==="comment")s+=`${a}/*${e.value}*/
|
|
21670
|
+
`;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
|
|
21671
|
+
`,`
|
|
21672
|
+
`);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:
|
|
21673
|
+
|
|
21674
|
+
${lib_J([g])}
|
|
21675
|
+
Relies on:
|
|
21676
|
+
|
|
21677
|
+
${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
|
|
21678
|
+
`,`
|
|
21679
|
+
`);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:
|
|
21680
|
+
|
|
21681
|
+
${lib_J([T])}
|
|
21682
|
+
|
|
21683
|
+
\`@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.
|
|
21684
|
+
|
|
21685
|
+
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:
|
|
21686
|
+
|
|
21687
|
+
${JSON.stringify(v,null,2)}
|
|
21688
|
+
|
|
21689
|
+
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(`
|
|
21690
|
+
`).map((m,k,b)=>`${k===0||k>=b.length-2?" ":">"} ${m}`).join(`
|
|
21691
|
+
`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`.
|
|
21692
|
+
|
|
21693
|
+
${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.")}
|
|
21694
|
+
|
|
21695
|
+
;// ./node_modules/tailwindcss/index.css
|
|
21696
|
+
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";
|
|
21697
|
+
;// ./node_modules/tailwindcss/preflight.css
|
|
21698
|
+
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";
|
|
21699
|
+
;// ./node_modules/tailwindcss/theme.css
|
|
21700
|
+
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";
|
|
21701
|
+
;// ./node_modules/tailwindcss/utilities.css
|
|
21702
|
+
const utilities_namespaceObject = "@tailwind utilities;\n";
|
|
21703
|
+
;// ./utils/tailwind-compiler.ts
|
|
21704
|
+
|
|
21705
|
+
|
|
21706
|
+
|
|
21707
|
+
// @ts-expect-error - these are being imported as strings
|
|
21708
|
+
|
|
21709
|
+
// @ts-expect-error - these are being imported as strings
|
|
21710
|
+
|
|
21711
|
+
// @ts-expect-error - these are being imported as strings
|
|
21712
|
+
|
|
21713
|
+
// @ts-expect-error - these are being imported as strings
|
|
21714
|
+
|
|
21715
|
+
/*
|
|
21716
|
+
* @note: This is mostly copied from @tailwindcss/browser
|
|
21717
|
+
*/
|
|
21718
|
+
async function loadStylesheet(id, base) {
|
|
21719
|
+
function load() {
|
|
21720
|
+
if (id === 'tailwindcss') {
|
|
21721
|
+
return {
|
|
21722
|
+
base,
|
|
21723
|
+
content: tailwindcss_namespaceObject,
|
|
21724
|
+
};
|
|
21725
|
+
}
|
|
21726
|
+
else if (id === 'tailwindcss/preflight' || id === 'tailwindcss/preflight.css' || id === './preflight.css') {
|
|
21727
|
+
return {
|
|
21728
|
+
base,
|
|
21729
|
+
content: preflight_namespaceObject,
|
|
21730
|
+
};
|
|
21731
|
+
}
|
|
21732
|
+
else if (id === 'tailwindcss/theme' || id === 'tailwindcss/theme.css' || id === './theme.css') {
|
|
21733
|
+
return {
|
|
21734
|
+
base,
|
|
21735
|
+
content: theme_namespaceObject,
|
|
21736
|
+
};
|
|
21737
|
+
}
|
|
21738
|
+
else if (id === 'tailwindcss/utilities' || id === 'tailwindcss/utilities.css' || id === './utilities.css') {
|
|
21739
|
+
return {
|
|
21740
|
+
base,
|
|
21741
|
+
content: utilities_namespaceObject,
|
|
21742
|
+
};
|
|
21743
|
+
}
|
|
21744
|
+
throw new Error(`The browser build does not support @import for "${id}"`);
|
|
21745
|
+
}
|
|
21746
|
+
const sheet = load();
|
|
21747
|
+
return sheet;
|
|
21748
|
+
}
|
|
21749
|
+
async function loadModule() {
|
|
21750
|
+
throw new Error('The browser build does not support plugins or config files.');
|
|
21751
|
+
}
|
|
21752
|
+
async function createCompiler() {
|
|
21753
|
+
const css = `
|
|
21754
|
+
@layer theme, base, components, utilities;
|
|
21755
|
+
|
|
21756
|
+
@import "tailwindcss/theme.css" layer(theme);
|
|
21757
|
+
@import "tailwindcss/utilities.css" layer(utilities);
|
|
21758
|
+
`;
|
|
21759
|
+
return tl(css, {
|
|
21760
|
+
base: '/',
|
|
21761
|
+
loadStylesheet,
|
|
21762
|
+
loadModule,
|
|
21763
|
+
});
|
|
21764
|
+
}
|
|
21765
|
+
async function tailwindCompiler(classes, { prefix }) {
|
|
21766
|
+
const compiler = await createCompiler();
|
|
21767
|
+
const css = compiler.build(Array.from(classes));
|
|
21768
|
+
return lib_postcss([postcss_prefix_selector_default()({ prefix })]).process(css, { from: undefined });
|
|
21769
|
+
}
|
|
21770
|
+
|
|
21771
|
+
;// ./components/TailwindStyle/index.tsx
|
|
21772
|
+
|
|
21773
|
+
|
|
21774
|
+
|
|
21775
|
+
const traverse = (node, callback) => {
|
|
21776
|
+
callback(node);
|
|
21777
|
+
node.childNodes.forEach(child => {
|
|
21778
|
+
traverse(child, callback);
|
|
21779
|
+
});
|
|
21780
|
+
};
|
|
21781
|
+
const TailwindStyle = ({ children }) => {
|
|
21782
|
+
const [stylesheet, setStylesheet] = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useState)('');
|
|
21783
|
+
const classes = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useRef)(new Set());
|
|
21784
|
+
const ref = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useRef)(null);
|
|
21785
|
+
const addClasses = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useCallback)((element) => {
|
|
21786
|
+
if (!(element instanceof HTMLElement))
|
|
21787
|
+
return;
|
|
21788
|
+
element.classList.forEach(className => {
|
|
21789
|
+
classes.current.add(className);
|
|
21790
|
+
});
|
|
21791
|
+
}, []);
|
|
21792
|
+
const updateStylesheet = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useCallback)(async () => {
|
|
21793
|
+
const candidates = classes.current;
|
|
21794
|
+
if (candidates.size === 0)
|
|
21795
|
+
return;
|
|
21796
|
+
const sheet = await tailwindCompiler(Array.from(candidates), { prefix: `.${tailwindPrefix}` });
|
|
21797
|
+
/* @note: don't insert an empty stylesheet */
|
|
21798
|
+
if (sheet.css.match(/^@layer utilities;/m))
|
|
21799
|
+
return;
|
|
21800
|
+
setStylesheet(sheet.css);
|
|
21801
|
+
}, []);
|
|
21802
|
+
/*
|
|
21803
|
+
* @note: execute once on load
|
|
21804
|
+
*/
|
|
21805
|
+
(0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useEffect)(() => {
|
|
21806
|
+
if (!ref.current)
|
|
21807
|
+
return;
|
|
21808
|
+
ref.current.querySelectorAll(`.${tailwindPrefix}`).forEach(child => traverse(child, addClasses));
|
|
21809
|
+
updateStylesheet();
|
|
21810
|
+
});
|
|
21811
|
+
/*
|
|
21812
|
+
* @note: observe for changes
|
|
21813
|
+
*/
|
|
21814
|
+
(0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useEffect)(() => {
|
|
21815
|
+
if (!ref.current)
|
|
21816
|
+
return;
|
|
21817
|
+
const observer = new MutationObserver((records) => {
|
|
21818
|
+
let shouldUpdate = false;
|
|
21819
|
+
records.forEach(record => {
|
|
21820
|
+
if (record.type === 'childList') {
|
|
21821
|
+
record.addedNodes.forEach(node => {
|
|
21822
|
+
if (!(node instanceof HTMLElement) || !node.classList.contains(tailwindPrefix))
|
|
21823
|
+
return;
|
|
21824
|
+
traverse(node, addClasses);
|
|
21825
|
+
shouldUpdate = true;
|
|
21826
|
+
});
|
|
21827
|
+
}
|
|
21828
|
+
else if (record.type === 'attributes') {
|
|
21829
|
+
if (record.attributeName !== 'class' || !(record.target instanceof HTMLElement))
|
|
21830
|
+
return;
|
|
21831
|
+
addClasses(record.target);
|
|
21832
|
+
shouldUpdate = true;
|
|
21833
|
+
}
|
|
21834
|
+
if (shouldUpdate) {
|
|
21835
|
+
updateStylesheet();
|
|
21836
|
+
}
|
|
21837
|
+
});
|
|
21838
|
+
});
|
|
21839
|
+
observer.observe(ref.current, {
|
|
21840
|
+
subtree: true,
|
|
21841
|
+
childList: true,
|
|
21842
|
+
attributes: true,
|
|
21843
|
+
attributeFilter: ['class'],
|
|
21844
|
+
});
|
|
21845
|
+
// eslint-disable-next-line consistent-return
|
|
21846
|
+
return () => observer.disconnect();
|
|
21847
|
+
}, [addClasses, updateStylesheet]);
|
|
21848
|
+
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("div", { ref: ref, style: { display: 'contents' } },
|
|
21849
|
+
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("style", { "data-tailwind-stylesheet": true }, stylesheet),
|
|
21850
|
+
children));
|
|
21851
|
+
};
|
|
21852
|
+
/* harmony default export */ const components_TailwindStyle = (TailwindStyle);
|
|
21853
|
+
|
|
21624
21854
|
;// ./components/index.ts
|
|
21625
21855
|
|
|
21626
21856
|
|
|
@@ -25554,7 +25784,7 @@ function tokenizeThematicBreak(effects, ok, nok) {
|
|
|
25554
25784
|
|
|
25555
25785
|
|
|
25556
25786
|
/** @type {Construct} */
|
|
25557
|
-
const
|
|
25787
|
+
const list_list = {
|
|
25558
25788
|
name: 'list',
|
|
25559
25789
|
tokenize: tokenizeListStart,
|
|
25560
25790
|
continuation: {
|
|
@@ -25737,7 +25967,7 @@ function tokenizeListContinuation(effects, ok, nok) {
|
|
|
25737
25967
|
|
|
25738
25968
|
return factorySpace(
|
|
25739
25969
|
effects,
|
|
25740
|
-
effects.attempt(
|
|
25970
|
+
effects.attempt(list_list, ok, nok),
|
|
25741
25971
|
'linePrefix',
|
|
25742
25972
|
self.parser.constructs.disable.null.includes('codeIndented')
|
|
25743
25973
|
? undefined
|
|
@@ -33660,19 +33890,19 @@ function tokenizeCodeText(effects, ok, nok) {
|
|
|
33660
33890
|
|
|
33661
33891
|
/** @satisfies {Extension['document']} */
|
|
33662
33892
|
const constructs_document = {
|
|
33663
|
-
[42]:
|
|
33664
|
-
[43]:
|
|
33665
|
-
[45]:
|
|
33666
|
-
[48]:
|
|
33667
|
-
[49]:
|
|
33668
|
-
[50]:
|
|
33669
|
-
[51]:
|
|
33670
|
-
[52]:
|
|
33671
|
-
[53]:
|
|
33672
|
-
[54]:
|
|
33673
|
-
[55]:
|
|
33674
|
-
[56]:
|
|
33675
|
-
[57]:
|
|
33893
|
+
[42]: list_list,
|
|
33894
|
+
[43]: list_list,
|
|
33895
|
+
[45]: list_list,
|
|
33896
|
+
[48]: list_list,
|
|
33897
|
+
[49]: list_list,
|
|
33898
|
+
[50]: list_list,
|
|
33899
|
+
[51]: list_list,
|
|
33900
|
+
[52]: list_list,
|
|
33901
|
+
[53]: list_list,
|
|
33902
|
+
[54]: list_list,
|
|
33903
|
+
[55]: list_list,
|
|
33904
|
+
[56]: list_list,
|
|
33905
|
+
[57]: list_list,
|
|
33676
33906
|
[62]: blockQuote
|
|
33677
33907
|
}
|
|
33678
33908
|
|
|
@@ -33758,7 +33988,7 @@ const disable = {
|
|
|
33758
33988
|
* @param {ParseOptions | null | undefined} [options]
|
|
33759
33989
|
* @returns {ParseContext}
|
|
33760
33990
|
*/
|
|
33761
|
-
function
|
|
33991
|
+
function parse_parse(options) {
|
|
33762
33992
|
const settings = options || {}
|
|
33763
33993
|
const constructs =
|
|
33764
33994
|
/** @type {FullNormalizedExtension} */
|
|
@@ -34242,7 +34472,7 @@ function fromMarkdown(value, encoding, options) {
|
|
|
34242
34472
|
}
|
|
34243
34473
|
return compiler(options)(
|
|
34244
34474
|
postprocess(
|
|
34245
|
-
|
|
34475
|
+
parse_parse(options).document().write(preprocess()(value, encoding, true))
|
|
34246
34476
|
)
|
|
34247
34477
|
)
|
|
34248
34478
|
}
|
|
@@ -36933,7 +37163,7 @@ function checkRule(state) {
|
|
|
36933
37163
|
* @param {Info} info
|
|
36934
37164
|
* @returns {string}
|
|
36935
37165
|
*/
|
|
36936
|
-
function
|
|
37166
|
+
function handle_list_list(node, parent, state, info) {
|
|
36937
37167
|
const exit = state.enter('list')
|
|
36938
37168
|
const bulletCurrent = state.bulletCurrent
|
|
36939
37169
|
/** @type {string} */
|
|
@@ -37188,7 +37418,7 @@ const phrasing =
|
|
|
37188
37418
|
* @param {Info} info
|
|
37189
37419
|
* @returns {string}
|
|
37190
37420
|
*/
|
|
37191
|
-
function
|
|
37421
|
+
function root_root(node, _, state, info) {
|
|
37192
37422
|
// Note: `html` nodes are ambiguous.
|
|
37193
37423
|
const hasPhrasing = node.children.some(function (d) {
|
|
37194
37424
|
return phrasing(d)
|
|
@@ -37393,10 +37623,10 @@ const handle = {
|
|
|
37393
37623
|
inlineCode: inlineCode,
|
|
37394
37624
|
link: link_link,
|
|
37395
37625
|
linkReference: linkReference,
|
|
37396
|
-
list:
|
|
37626
|
+
list: handle_list_list,
|
|
37397
37627
|
listItem: listItem,
|
|
37398
37628
|
paragraph: paragraph,
|
|
37399
|
-
root:
|
|
37629
|
+
root: root_root,
|
|
37400
37630
|
strong: strong,
|
|
37401
37631
|
text: handle_text_text,
|
|
37402
37632
|
thematicBreak: thematic_break_thematicBreak
|
|
@@ -40099,7 +40329,7 @@ const unified_lib_own = {}.hasOwnProperty
|
|
|
40099
40329
|
* Output of `stringify` (optional).
|
|
40100
40330
|
* @extends {CallableInstance<[], Processor<ParseTree, HeadTree, TailTree, CompileTree, CompileResult>>}
|
|
40101
40331
|
*/
|
|
40102
|
-
class
|
|
40332
|
+
class lib_Processor extends CallableInstance {
|
|
40103
40333
|
/**
|
|
40104
40334
|
* Create a processor.
|
|
40105
40335
|
*/
|
|
@@ -40222,7 +40452,7 @@ class Processor extends CallableInstance {
|
|
|
40222
40452
|
// Cast as the type parameters will be the same after attaching.
|
|
40223
40453
|
const destination =
|
|
40224
40454
|
/** @type {Processor<ParseTree, HeadTree, TailTree, CompileTree, CompileResult>} */ (
|
|
40225
|
-
new
|
|
40455
|
+
new lib_Processor()
|
|
40226
40456
|
)
|
|
40227
40457
|
let index = -1
|
|
40228
40458
|
|
|
@@ -40924,7 +41154,7 @@ class Processor extends CallableInstance {
|
|
|
40924
41154
|
* When the descendant processor is configured in the future it does not
|
|
40925
41155
|
* affect the ancestral processor.
|
|
40926
41156
|
*/
|
|
40927
|
-
const unified = new
|
|
41157
|
+
const unified = new lib_Processor().freeze()
|
|
40928
41158
|
|
|
40929
41159
|
/**
|
|
40930
41160
|
* Assert a parser is available.
|
|
@@ -52275,7 +52505,7 @@ pp$3.currentThisScope = function() {
|
|
|
52275
52505
|
}
|
|
52276
52506
|
};
|
|
52277
52507
|
|
|
52278
|
-
var
|
|
52508
|
+
var acorn_Node = function Node(parser, pos, loc) {
|
|
52279
52509
|
this.type = "";
|
|
52280
52510
|
this.start = pos;
|
|
52281
52511
|
this.end = 0;
|
|
@@ -52292,11 +52522,11 @@ var Node = function Node(parser, pos, loc) {
|
|
|
52292
52522
|
var pp$2 = Parser.prototype;
|
|
52293
52523
|
|
|
52294
52524
|
pp$2.startNode = function() {
|
|
52295
|
-
return new
|
|
52525
|
+
return new acorn_Node(this, this.start, this.startLoc)
|
|
52296
52526
|
};
|
|
52297
52527
|
|
|
52298
52528
|
pp$2.startNodeAt = function(pos, loc) {
|
|
52299
|
-
return new
|
|
52529
|
+
return new acorn_Node(this, pos, loc)
|
|
52300
52530
|
};
|
|
52301
52531
|
|
|
52302
52532
|
// Finish an AST node, adding `type` and `end` properties.
|
|
@@ -52322,7 +52552,7 @@ pp$2.finishNodeAt = function(node, type, pos, loc) {
|
|
|
52322
52552
|
};
|
|
52323
52553
|
|
|
52324
52554
|
pp$2.copyNode = function(node) {
|
|
52325
|
-
var newNode = new
|
|
52555
|
+
var newNode = new acorn_Node(this, node.start, this.startLoc);
|
|
52326
52556
|
for (var prop in node) { newNode[prop] = node[prop]; }
|
|
52327
52557
|
return newNode
|
|
52328
52558
|
};
|
|
@@ -54585,7 +54815,7 @@ Parser.acorn = {
|
|
|
54585
54815
|
Position: Position,
|
|
54586
54816
|
SourceLocation: SourceLocation,
|
|
54587
54817
|
getLineInfo: getLineInfo,
|
|
54588
|
-
Node:
|
|
54818
|
+
Node: acorn_Node,
|
|
54589
54819
|
TokenType: TokenType,
|
|
54590
54820
|
tokTypes: types$1,
|
|
54591
54821
|
keywordTypes: keywords,
|
|
@@ -75423,1040 +75653,220 @@ const tablesToJsx = () => tree => {
|
|
|
75423
75653
|
};
|
|
75424
75654
|
/* harmony default export */ const tables_to_jsx = (tablesToJsx);
|
|
75425
75655
|
|
|
75426
|
-
;// ./
|
|
75427
|
-
|
|
75428
|
-
|
|
75429
|
-
|
|
75430
|
-
|
|
75431
|
-
|
|
75432
|
-
|
|
75433
|
-
|
|
75434
|
-
|
|
75435
|
-
|
|
75436
|
-
|
|
75437
|
-
|
|
75438
|
-
/**
|
|
75439
|
-
* Create an ESTree literal node for a given value.
|
|
75440
|
-
*
|
|
75441
|
-
* @param value
|
|
75442
|
-
* The value for which to create a literal.
|
|
75443
|
-
* @returns
|
|
75444
|
-
* The literal node.
|
|
75445
|
-
*/
|
|
75446
|
-
function estree_util_value_to_estree_literal(value) {
|
|
75447
|
-
return { type: 'Literal', value };
|
|
75448
|
-
}
|
|
75449
|
-
/**
|
|
75450
|
-
* Create an ESTree call expression on an object member.
|
|
75451
|
-
*
|
|
75452
|
-
* @param object
|
|
75453
|
-
* The object to call the method on.
|
|
75454
|
-
* @param name
|
|
75455
|
-
* The name of the method to call.
|
|
75456
|
-
* @param args
|
|
75457
|
-
* Arguments to pass to the function call
|
|
75458
|
-
* @returns
|
|
75459
|
-
* The call expression node.
|
|
75460
|
-
*/
|
|
75461
|
-
function methodCall(object, name, args) {
|
|
75462
|
-
return {
|
|
75463
|
-
type: 'CallExpression',
|
|
75464
|
-
optional: false,
|
|
75465
|
-
callee: {
|
|
75466
|
-
type: 'MemberExpression',
|
|
75467
|
-
computed: false,
|
|
75468
|
-
optional: false,
|
|
75469
|
-
object,
|
|
75470
|
-
property: identifier(name)
|
|
75471
|
-
},
|
|
75472
|
-
arguments: args
|
|
75656
|
+
;// ./processor/transform/tailwind.tsx
|
|
75657
|
+
|
|
75658
|
+
|
|
75659
|
+
const injectTailwindRoot = ({ components = {} }) => (node, index, parent) => {
|
|
75660
|
+
if (!('name' in node))
|
|
75661
|
+
return;
|
|
75662
|
+
if (!(node.name in components))
|
|
75663
|
+
return;
|
|
75664
|
+
if (!('children' in parent))
|
|
75665
|
+
return;
|
|
75666
|
+
const attrs = {
|
|
75667
|
+
flow: node.type === 'mdxJsxFlowElement',
|
|
75473
75668
|
};
|
|
75474
|
-
|
|
75669
|
+
const wrapper = {
|
|
75670
|
+
type: node.type,
|
|
75671
|
+
name: 'TailwindRoot',
|
|
75672
|
+
attributes: toAttributes(attrs),
|
|
75673
|
+
children: [node],
|
|
75674
|
+
};
|
|
75675
|
+
parent.children.splice(index, 1, wrapper);
|
|
75676
|
+
// eslint-disable-next-line consistent-return
|
|
75677
|
+
return SKIP;
|
|
75678
|
+
};
|
|
75679
|
+
const tailwind = ({ components }) => (tree, vfile) => {
|
|
75680
|
+
const localComponents = getExports(tree).reduce((acc, name) => {
|
|
75681
|
+
acc[name] = String(vfile);
|
|
75682
|
+
return acc;
|
|
75683
|
+
}, {});
|
|
75684
|
+
visit(tree, isMDXElement, injectTailwindRoot({ components: { ...components, ...localComponents } }));
|
|
75685
|
+
return tree;
|
|
75686
|
+
};
|
|
75687
|
+
/* harmony default export */ const transform_tailwind = (tailwind);
|
|
75688
|
+
|
|
75689
|
+
;// ./processor/transform/variables.ts
|
|
75690
|
+
|
|
75691
|
+
|
|
75692
|
+
const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
75693
|
+
visit(tree, (node, index, parent) => {
|
|
75694
|
+
if (!['mdxFlowExpression', 'mdxTextExpression'].includes(node.type) || !('value' in node))
|
|
75695
|
+
return;
|
|
75696
|
+
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
75697
|
+
if (node.data.estree.type !== 'Program')
|
|
75698
|
+
return;
|
|
75699
|
+
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
75700
|
+
const [expression] = node.data.estree.body;
|
|
75701
|
+
if (!expression ||
|
|
75702
|
+
expression.type !== 'ExpressionStatement' ||
|
|
75703
|
+
expression.expression.object?.name !== 'user' ||
|
|
75704
|
+
!['Literal', 'Identifier'].includes(expression.expression.property?.type))
|
|
75705
|
+
return;
|
|
75706
|
+
const name = expression.expression.property.type === 'Identifier'
|
|
75707
|
+
? expression.expression.property.name
|
|
75708
|
+
: expression.expression.property.value;
|
|
75709
|
+
const variable = asMdx
|
|
75710
|
+
? {
|
|
75711
|
+
type: 'mdxJsxTextElement',
|
|
75712
|
+
name: 'Variable',
|
|
75713
|
+
attributes: [
|
|
75714
|
+
{
|
|
75715
|
+
type: 'mdxJsxAttribute',
|
|
75716
|
+
name: 'name',
|
|
75717
|
+
value: name,
|
|
75718
|
+
},
|
|
75719
|
+
],
|
|
75720
|
+
children: [],
|
|
75721
|
+
position: node.position,
|
|
75722
|
+
}
|
|
75723
|
+
: {
|
|
75724
|
+
type: NodeTypes.variable,
|
|
75725
|
+
data: {
|
|
75726
|
+
hName: 'Variable',
|
|
75727
|
+
hProperties: {
|
|
75728
|
+
name,
|
|
75729
|
+
},
|
|
75730
|
+
},
|
|
75731
|
+
value: `{${node.value}}`,
|
|
75732
|
+
position: node.position,
|
|
75733
|
+
};
|
|
75734
|
+
parent.children.splice(index, 1, variable);
|
|
75735
|
+
});
|
|
75736
|
+
return tree;
|
|
75737
|
+
};
|
|
75738
|
+
/* harmony default export */ const transform_variables = (variables);
|
|
75739
|
+
|
|
75740
|
+
;// ./processor/transform/index.ts
|
|
75741
|
+
|
|
75742
|
+
|
|
75743
|
+
|
|
75744
|
+
|
|
75745
|
+
|
|
75746
|
+
|
|
75747
|
+
|
|
75748
|
+
|
|
75749
|
+
|
|
75750
|
+
|
|
75751
|
+
|
|
75752
|
+
|
|
75753
|
+
|
|
75754
|
+
|
|
75755
|
+
|
|
75756
|
+
|
|
75757
|
+
const defaultTransforms = {
|
|
75758
|
+
calloutTransformer: callouts,
|
|
75759
|
+
codeTabsTransformer: code_tabs,
|
|
75760
|
+
embedTransformer: transform_embeds,
|
|
75761
|
+
imageTransformer: transform_images,
|
|
75762
|
+
gemojiTransformer: gemoji_,
|
|
75763
|
+
};
|
|
75764
|
+
/* harmony default export */ const transform = (Object.values(defaultTransforms));
|
|
75765
|
+
|
|
75766
|
+
;// ./lib/ast-processor.ts
|
|
75767
|
+
|
|
75768
|
+
|
|
75769
|
+
|
|
75770
|
+
|
|
75771
|
+
|
|
75772
|
+
|
|
75773
|
+
const remarkPlugins = [remarkFrontmatter, remarkGfm, ...transform];
|
|
75774
|
+
const rehypePlugins = [rehypeSlug, transform_mermaid];
|
|
75775
|
+
const astProcessor = (opts = { components: {} }) => remark()
|
|
75776
|
+
.use(remarkMdx)
|
|
75777
|
+
.use(remarkPlugins)
|
|
75778
|
+
.use(opts.remarkPlugins)
|
|
75779
|
+
.use(transform_variables, { asMdx: false })
|
|
75780
|
+
.use(readme_components({ components: opts.components }));
|
|
75781
|
+
/* harmony default export */ const ast_processor = (astProcessor);
|
|
75782
|
+
|
|
75783
|
+
;// ./node_modules/markdown-extensions/index.js
|
|
75784
|
+
// TODO: Load the JSON file when Node.js supports that.
|
|
75785
|
+
|
|
75786
|
+
const markdownExtension = [
|
|
75787
|
+
'md',
|
|
75788
|
+
'markdown',
|
|
75789
|
+
'mdown',
|
|
75790
|
+
'mkdn',
|
|
75791
|
+
'mkd',
|
|
75792
|
+
'mdwn',
|
|
75793
|
+
'mkdown',
|
|
75794
|
+
'ron',
|
|
75795
|
+
];
|
|
75796
|
+
|
|
75797
|
+
/* harmony default export */ const markdown_extensions = (markdownExtension);
|
|
75798
|
+
|
|
75799
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/extnames.js
|
|
75800
|
+
|
|
75801
|
+
|
|
75802
|
+
const md = markdown_extensions.map(function (d) {
|
|
75803
|
+
return '.' + d
|
|
75804
|
+
})
|
|
75805
|
+
const mdx = (/* unused pure expression or super */ null && (['.mdx']))
|
|
75806
|
+
|
|
75807
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
|
|
75475
75808
|
/**
|
|
75476
|
-
*
|
|
75477
|
-
*
|
|
75478
|
-
*
|
|
75479
|
-
* @param number
|
|
75480
|
-
* The value to turn into an ESTree expression.
|
|
75481
|
-
* @returns
|
|
75482
|
-
* An expression that represents the given value.
|
|
75809
|
+
* @import {Compatible} from 'vfile'
|
|
75810
|
+
* @import {CompileOptions} from '../compile.js'
|
|
75811
|
+
* @import {ProcessorOptions} from '../core.js'
|
|
75483
75812
|
*/
|
|
75484
|
-
|
|
75485
|
-
|
|
75486
|
-
|
|
75487
|
-
|
|
75488
|
-
operator: '-',
|
|
75489
|
-
prefix: true,
|
|
75490
|
-
argument: processNumber(-number)
|
|
75491
|
-
};
|
|
75492
|
-
}
|
|
75493
|
-
if (typeof number === 'bigint') {
|
|
75494
|
-
return { type: 'Literal', bigint: String(number) };
|
|
75495
|
-
}
|
|
75496
|
-
if (number === Number.POSITIVE_INFINITY || Number.isNaN(number)) {
|
|
75497
|
-
return identifier(String(number));
|
|
75498
|
-
}
|
|
75499
|
-
return estree_util_value_to_estree_literal(number);
|
|
75500
|
-
}
|
|
75813
|
+
|
|
75814
|
+
|
|
75815
|
+
|
|
75816
|
+
|
|
75501
75817
|
/**
|
|
75502
|
-
*
|
|
75503
|
-
*
|
|
75818
|
+
* Create a file and options from a given `vfileCompatible` and options that
|
|
75819
|
+
* might contain `format: 'detect'`.
|
|
75504
75820
|
*
|
|
75505
|
-
* @param
|
|
75506
|
-
*
|
|
75507
|
-
* @
|
|
75508
|
-
*
|
|
75821
|
+
* @param {Readonly<Compatible>} vfileCompatible
|
|
75822
|
+
* File.
|
|
75823
|
+
* @param {Readonly<CompileOptions> | null | undefined} [options]
|
|
75824
|
+
* Configuration (optional).
|
|
75825
|
+
* @returns {{file: VFile, options: ProcessorOptions}}
|
|
75826
|
+
* File and options.
|
|
75509
75827
|
*/
|
|
75510
|
-
function
|
|
75511
|
-
|
|
75512
|
-
|
|
75513
|
-
|
|
75828
|
+
function resolve_file_and_options_resolveFileAndOptions(vfileCompatible, options) {
|
|
75829
|
+
const file = resolve_file_and_options_looksLikeAVFile(vfileCompatible)
|
|
75830
|
+
? vfileCompatible
|
|
75831
|
+
: new VFile(vfileCompatible)
|
|
75832
|
+
const {format, ...rest} = options || {}
|
|
75833
|
+
return {
|
|
75834
|
+
file,
|
|
75835
|
+
options: {
|
|
75836
|
+
format:
|
|
75837
|
+
format === 'md' || format === 'mdx'
|
|
75838
|
+
? format
|
|
75839
|
+
: file.extname && (rest.mdExtensions || md).includes(file.extname)
|
|
75840
|
+
? 'md'
|
|
75841
|
+
: 'mdx',
|
|
75842
|
+
...rest
|
|
75514
75843
|
}
|
|
75515
|
-
|
|
75844
|
+
}
|
|
75516
75845
|
}
|
|
75846
|
+
|
|
75517
75847
|
/**
|
|
75518
|
-
*
|
|
75519
|
-
*
|
|
75520
|
-
* @
|
|
75521
|
-
*
|
|
75522
|
-
* @returns
|
|
75523
|
-
* Whether or not the value can be constructed from its string representation.
|
|
75848
|
+
* @param {Readonly<Compatible> | null | undefined} [value]
|
|
75849
|
+
* Thing.
|
|
75850
|
+
* @returns {value is VFile}
|
|
75851
|
+
* Check.
|
|
75524
75852
|
*/
|
|
75525
|
-
function
|
|
75526
|
-
|
|
75853
|
+
function resolve_file_and_options_looksLikeAVFile(value) {
|
|
75854
|
+
return Boolean(
|
|
75855
|
+
value &&
|
|
75856
|
+
typeof value === 'object' &&
|
|
75857
|
+
'message' in value &&
|
|
75858
|
+
'messages' in value
|
|
75859
|
+
)
|
|
75527
75860
|
}
|
|
75861
|
+
|
|
75862
|
+
;// ./node_modules/estree-walker/src/walker.js
|
|
75528
75863
|
/**
|
|
75529
|
-
*
|
|
75530
|
-
*
|
|
75531
|
-
*
|
|
75532
|
-
*
|
|
75533
|
-
*
|
|
75534
|
-
*
|
|
75535
|
-
*/
|
|
75536
|
-
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
75537
|
-
function isValueReconstructable(value) {
|
|
75538
|
-
return (value instanceof Boolean ||
|
|
75539
|
-
value instanceof Date ||
|
|
75540
|
-
value instanceof Number ||
|
|
75541
|
-
value instanceof String);
|
|
75542
|
-
}
|
|
75543
|
-
const wellKnownSymbols = new Map();
|
|
75544
|
-
for (const name of Reflect.ownKeys(Symbol)) {
|
|
75545
|
-
const value = Symbol[name];
|
|
75546
|
-
if (typeof value === 'symbol') {
|
|
75547
|
-
wellKnownSymbols.set(value, name);
|
|
75548
|
-
}
|
|
75549
|
-
}
|
|
75550
|
-
/**
|
|
75551
|
-
* Check whether a value is a typed array.
|
|
75552
|
-
*
|
|
75553
|
-
* @param value
|
|
75554
|
-
* The value to check
|
|
75555
|
-
* @returns
|
|
75556
|
-
* Whether or not the value is a typed array.
|
|
75557
|
-
*/
|
|
75558
|
-
function isTypedArray(value) {
|
|
75559
|
-
return (value instanceof BigInt64Array ||
|
|
75560
|
-
value instanceof BigUint64Array ||
|
|
75561
|
-
value instanceof Float32Array ||
|
|
75562
|
-
value instanceof Float64Array ||
|
|
75563
|
-
value instanceof Int8Array ||
|
|
75564
|
-
value instanceof Int16Array ||
|
|
75565
|
-
value instanceof Int32Array ||
|
|
75566
|
-
value instanceof Uint8Array ||
|
|
75567
|
-
value instanceof Uint8ClampedArray ||
|
|
75568
|
-
value instanceof Uint16Array ||
|
|
75569
|
-
value instanceof Uint32Array);
|
|
75570
|
-
}
|
|
75571
|
-
/**
|
|
75572
|
-
* Compare two value contexts for sorting them based on reference count.
|
|
75573
|
-
*
|
|
75574
|
-
* @param a
|
|
75575
|
-
* The first context to compare.
|
|
75576
|
-
* @param b
|
|
75577
|
-
* The second context to compare.
|
|
75578
|
-
* @returns
|
|
75579
|
-
* The count of context a minus the count of context b.
|
|
75580
|
-
*/
|
|
75581
|
-
function compareContexts(a, b) {
|
|
75582
|
-
const aReferencedByB = a.referencedBy.has(b.value);
|
|
75583
|
-
const bReferencedByA = b.referencedBy.has(a.value);
|
|
75584
|
-
if (aReferencedByB) {
|
|
75585
|
-
if (bReferencedByA) {
|
|
75586
|
-
return a.count - b.count;
|
|
75587
|
-
}
|
|
75588
|
-
return -1;
|
|
75589
|
-
}
|
|
75590
|
-
if (bReferencedByA) {
|
|
75591
|
-
return 1;
|
|
75592
|
-
}
|
|
75593
|
-
return a.count - b.count;
|
|
75594
|
-
}
|
|
75595
|
-
/**
|
|
75596
|
-
* Replace the assigned right hand expression with the new expression.
|
|
75597
|
-
*
|
|
75598
|
-
* If there is no assignment expression, the original expression is returned. Otherwise the
|
|
75599
|
-
* assignment is modified and returned,
|
|
75600
|
-
*
|
|
75601
|
-
* @param expression
|
|
75602
|
-
* The expression to use for the assignment.
|
|
75603
|
-
* @param assignment
|
|
75604
|
-
* The existing assignmentexpression
|
|
75605
|
-
* @returns
|
|
75606
|
-
* The new expression.
|
|
75607
|
-
*/
|
|
75608
|
-
function replaceAssignment(expression, assignment) {
|
|
75609
|
-
if (!assignment || assignment.type !== 'AssignmentExpression') {
|
|
75610
|
-
return expression;
|
|
75611
|
-
}
|
|
75612
|
-
let node = assignment;
|
|
75613
|
-
while (node.right.type === 'AssignmentExpression') {
|
|
75614
|
-
node = node.right;
|
|
75615
|
-
}
|
|
75616
|
-
node.right = expression;
|
|
75617
|
-
return assignment;
|
|
75618
|
-
}
|
|
75619
|
-
/**
|
|
75620
|
-
* Create an ESTree epxression to represent a symbol. Global and well-known symbols are supported.
|
|
75621
|
-
*
|
|
75622
|
-
* @param symbol
|
|
75623
|
-
* THe symbol to represent.
|
|
75624
|
-
* @returns
|
|
75625
|
-
* An ESTree expression to represent the symbol.
|
|
75626
|
-
*/
|
|
75627
|
-
function symbolToEstree(symbol) {
|
|
75628
|
-
const name = wellKnownSymbols.get(symbol);
|
|
75629
|
-
if (name) {
|
|
75630
|
-
return {
|
|
75631
|
-
type: 'MemberExpression',
|
|
75632
|
-
computed: false,
|
|
75633
|
-
optional: false,
|
|
75634
|
-
object: identifier('Symbol'),
|
|
75635
|
-
property: identifier(name)
|
|
75636
|
-
};
|
|
75637
|
-
}
|
|
75638
|
-
if (symbol.description && symbol === Symbol.for(symbol.description)) {
|
|
75639
|
-
return methodCall(identifier('Symbol'), 'for', [estree_util_value_to_estree_literal(symbol.description)]);
|
|
75640
|
-
}
|
|
75641
|
-
throw new TypeError(`Only global symbols are supported, got: ${String(symbol)}`, {
|
|
75642
|
-
cause: symbol
|
|
75643
|
-
});
|
|
75644
|
-
}
|
|
75645
|
-
/**
|
|
75646
|
-
* Create an ESTree property from a key and a value expression.
|
|
75647
|
-
*
|
|
75648
|
-
* @param key
|
|
75649
|
-
* The property key value
|
|
75650
|
-
* @param value
|
|
75651
|
-
* The property value as an ESTree expression.
|
|
75652
|
-
* @returns
|
|
75653
|
-
* The ESTree properry node.
|
|
75654
|
-
*/
|
|
75655
|
-
function property(key, value) {
|
|
75656
|
-
const computed = typeof key !== 'string';
|
|
75657
|
-
return {
|
|
75658
|
-
type: 'Property',
|
|
75659
|
-
method: false,
|
|
75660
|
-
shorthand: false,
|
|
75661
|
-
computed,
|
|
75662
|
-
kind: 'init',
|
|
75663
|
-
key: computed ? symbolToEstree(key) : estree_util_value_to_estree_literal(key),
|
|
75664
|
-
value
|
|
75665
|
-
};
|
|
75666
|
-
}
|
|
75667
|
-
/**
|
|
75668
|
-
* Convert a value to an ESTree node.
|
|
75669
|
-
*
|
|
75670
|
-
* @param value
|
|
75671
|
-
* The value to convert.
|
|
75672
|
-
* @param options
|
|
75673
|
-
* Additional options to configure the output.
|
|
75674
|
-
* @returns
|
|
75675
|
-
* The ESTree node.
|
|
75676
|
-
*/
|
|
75677
|
-
function valueToEstree(value, options = {}) {
|
|
75678
|
-
const stack = [];
|
|
75679
|
-
const collectedContexts = new Map();
|
|
75680
|
-
const namedContexts = [];
|
|
75681
|
-
/**
|
|
75682
|
-
* Analyze a value and collect all reference contexts.
|
|
75683
|
-
*
|
|
75684
|
-
* @param val
|
|
75685
|
-
* The value to analyze.
|
|
75686
|
-
*/
|
|
75687
|
-
function analyze(val) {
|
|
75688
|
-
if (typeof val === 'function') {
|
|
75689
|
-
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
75690
|
-
}
|
|
75691
|
-
if (typeof val !== 'object') {
|
|
75692
|
-
return;
|
|
75693
|
-
}
|
|
75694
|
-
if (val == null) {
|
|
75695
|
-
return;
|
|
75696
|
-
}
|
|
75697
|
-
const context = collectedContexts.get(val);
|
|
75698
|
-
if (context) {
|
|
75699
|
-
if (options.preserveReferences) {
|
|
75700
|
-
context.count += 1;
|
|
75701
|
-
}
|
|
75702
|
-
for (const ancestor of stack) {
|
|
75703
|
-
context.referencedBy.add(ancestor);
|
|
75704
|
-
}
|
|
75705
|
-
if (stack.includes(val)) {
|
|
75706
|
-
if (!options.preserveReferences) {
|
|
75707
|
-
throw new Error(`Found circular reference: ${val}`, { cause: val });
|
|
75708
|
-
}
|
|
75709
|
-
const parent = stack.at(-1);
|
|
75710
|
-
const parentContext = collectedContexts.get(parent);
|
|
75711
|
-
parentContext.recursive = true;
|
|
75712
|
-
context.recursive = true;
|
|
75713
|
-
}
|
|
75714
|
-
return;
|
|
75715
|
-
}
|
|
75716
|
-
collectedContexts.set(val, {
|
|
75717
|
-
count: 1,
|
|
75718
|
-
recursive: false,
|
|
75719
|
-
referencedBy: new Set(stack),
|
|
75720
|
-
value: val
|
|
75721
|
-
});
|
|
75722
|
-
if (isTypedArray(val)) {
|
|
75723
|
-
return;
|
|
75724
|
-
}
|
|
75725
|
-
if (isStringReconstructable(val)) {
|
|
75726
|
-
return;
|
|
75727
|
-
}
|
|
75728
|
-
if (isValueReconstructable(val)) {
|
|
75729
|
-
return;
|
|
75730
|
-
}
|
|
75731
|
-
if (value instanceof RegExp) {
|
|
75732
|
-
return;
|
|
75733
|
-
}
|
|
75734
|
-
stack.push(val);
|
|
75735
|
-
if (val instanceof Map) {
|
|
75736
|
-
for (const pair of val) {
|
|
75737
|
-
analyze(pair[0]);
|
|
75738
|
-
analyze(pair[1]);
|
|
75739
|
-
}
|
|
75740
|
-
}
|
|
75741
|
-
else if (Array.isArray(val) || val instanceof Set) {
|
|
75742
|
-
for (const entry of val) {
|
|
75743
|
-
analyze(entry);
|
|
75744
|
-
}
|
|
75745
|
-
}
|
|
75746
|
-
else {
|
|
75747
|
-
const proto = Object.getPrototypeOf(val);
|
|
75748
|
-
if (proto != null && proto !== Object.prototype && !options.instanceAsObject) {
|
|
75749
|
-
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
75750
|
-
}
|
|
75751
|
-
for (const key of Reflect.ownKeys(val)) {
|
|
75752
|
-
analyze(val[key]);
|
|
75753
|
-
}
|
|
75754
|
-
}
|
|
75755
|
-
stack.pop();
|
|
75756
|
-
}
|
|
75757
|
-
/**
|
|
75758
|
-
* Recursively generate the ESTree expression needed to reconstruct the value.
|
|
75759
|
-
*
|
|
75760
|
-
* @param val
|
|
75761
|
-
* The value to process.
|
|
75762
|
-
* @param isDeclaration
|
|
75763
|
-
* Whether or not this is for a variable declaration.
|
|
75764
|
-
* @returns
|
|
75765
|
-
* The ESTree expression to reconstruct the value.
|
|
75766
|
-
*/
|
|
75767
|
-
function generate(val, isDeclaration) {
|
|
75768
|
-
if (val === undefined) {
|
|
75769
|
-
return identifier(String(val));
|
|
75770
|
-
}
|
|
75771
|
-
if (val == null || typeof val === 'string' || typeof val === 'boolean') {
|
|
75772
|
-
return estree_util_value_to_estree_literal(val);
|
|
75773
|
-
}
|
|
75774
|
-
if (typeof val === 'bigint' || typeof val === 'number') {
|
|
75775
|
-
return processNumber(val);
|
|
75776
|
-
}
|
|
75777
|
-
if (typeof val === 'symbol') {
|
|
75778
|
-
return symbolToEstree(val);
|
|
75779
|
-
}
|
|
75780
|
-
const context = collectedContexts.get(val);
|
|
75781
|
-
if (!isDeclaration && context?.name) {
|
|
75782
|
-
return identifier(context.name);
|
|
75783
|
-
}
|
|
75784
|
-
if (isValueReconstructable(val)) {
|
|
75785
|
-
return {
|
|
75786
|
-
type: 'NewExpression',
|
|
75787
|
-
callee: identifier(val.constructor.name),
|
|
75788
|
-
arguments: [generate(val.valueOf())]
|
|
75789
|
-
};
|
|
75790
|
-
}
|
|
75791
|
-
if (val instanceof RegExp) {
|
|
75792
|
-
return {
|
|
75793
|
-
type: 'Literal',
|
|
75794
|
-
regex: { pattern: val.source, flags: val.flags }
|
|
75795
|
-
};
|
|
75796
|
-
}
|
|
75797
|
-
if (typeof Buffer !== 'undefined' && Buffer.isBuffer(val)) {
|
|
75798
|
-
return methodCall(identifier('Buffer'), 'from', [processNumberArray(val)]);
|
|
75799
|
-
}
|
|
75800
|
-
if (isTypedArray(val)) {
|
|
75801
|
-
return {
|
|
75802
|
-
type: 'NewExpression',
|
|
75803
|
-
callee: identifier(val.constructor.name),
|
|
75804
|
-
arguments: [processNumberArray(val)]
|
|
75805
|
-
};
|
|
75806
|
-
}
|
|
75807
|
-
if (isStringReconstructable(val)) {
|
|
75808
|
-
return {
|
|
75809
|
-
type: 'NewExpression',
|
|
75810
|
-
callee: identifier(val.constructor.name),
|
|
75811
|
-
arguments: [estree_util_value_to_estree_literal(String(val))]
|
|
75812
|
-
};
|
|
75813
|
-
}
|
|
75814
|
-
if (Array.isArray(val)) {
|
|
75815
|
-
const elements = Array.from({ length: val.length });
|
|
75816
|
-
let trimmable;
|
|
75817
|
-
for (let index = 0; index < val.length; index += 1) {
|
|
75818
|
-
if (!(index in val)) {
|
|
75819
|
-
elements[index] = null;
|
|
75820
|
-
trimmable = undefined;
|
|
75821
|
-
continue;
|
|
75822
|
-
}
|
|
75823
|
-
const child = val[index];
|
|
75824
|
-
const childContext = collectedContexts.get(child);
|
|
75825
|
-
if (context &&
|
|
75826
|
-
childContext &&
|
|
75827
|
-
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
75828
|
-
elements[index] = null;
|
|
75829
|
-
trimmable ||= index;
|
|
75830
|
-
childContext.assignment = {
|
|
75831
|
-
type: 'AssignmentExpression',
|
|
75832
|
-
operator: '=',
|
|
75833
|
-
left: {
|
|
75834
|
-
type: 'MemberExpression',
|
|
75835
|
-
computed: true,
|
|
75836
|
-
optional: false,
|
|
75837
|
-
object: identifier(context.name),
|
|
75838
|
-
property: estree_util_value_to_estree_literal(index)
|
|
75839
|
-
},
|
|
75840
|
-
right: childContext.assignment || identifier(childContext.name)
|
|
75841
|
-
};
|
|
75842
|
-
}
|
|
75843
|
-
else {
|
|
75844
|
-
elements[index] = generate(child);
|
|
75845
|
-
trimmable = undefined;
|
|
75846
|
-
}
|
|
75847
|
-
}
|
|
75848
|
-
if (trimmable != null) {
|
|
75849
|
-
elements.splice(trimmable);
|
|
75850
|
-
}
|
|
75851
|
-
return {
|
|
75852
|
-
type: 'ArrayExpression',
|
|
75853
|
-
elements
|
|
75854
|
-
};
|
|
75855
|
-
}
|
|
75856
|
-
if (val instanceof Set) {
|
|
75857
|
-
const elements = [];
|
|
75858
|
-
let finalizer;
|
|
75859
|
-
for (const child of val) {
|
|
75860
|
-
if (finalizer) {
|
|
75861
|
-
finalizer = methodCall(finalizer, 'add', [generate(child)]);
|
|
75862
|
-
}
|
|
75863
|
-
else {
|
|
75864
|
-
const childContext = collectedContexts.get(child);
|
|
75865
|
-
if (context &&
|
|
75866
|
-
childContext &&
|
|
75867
|
-
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
75868
|
-
finalizer = methodCall(identifier(context.name), 'add', [generate(child)]);
|
|
75869
|
-
}
|
|
75870
|
-
else {
|
|
75871
|
-
elements.push(generate(child));
|
|
75872
|
-
}
|
|
75873
|
-
}
|
|
75874
|
-
}
|
|
75875
|
-
if (context && finalizer) {
|
|
75876
|
-
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
75877
|
-
}
|
|
75878
|
-
return {
|
|
75879
|
-
type: 'NewExpression',
|
|
75880
|
-
callee: identifier('Set'),
|
|
75881
|
-
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
75882
|
-
};
|
|
75883
|
-
}
|
|
75884
|
-
if (val instanceof Map) {
|
|
75885
|
-
const elements = [];
|
|
75886
|
-
let finalizer;
|
|
75887
|
-
for (const [key, item] of val) {
|
|
75888
|
-
if (finalizer) {
|
|
75889
|
-
finalizer = methodCall(finalizer, 'set', [generate(key), generate(item)]);
|
|
75890
|
-
}
|
|
75891
|
-
else {
|
|
75892
|
-
const keyContext = collectedContexts.get(key);
|
|
75893
|
-
const itemContext = collectedContexts.get(item);
|
|
75894
|
-
if (context &&
|
|
75895
|
-
((keyContext && namedContexts.indexOf(keyContext) >= namedContexts.indexOf(context)) ||
|
|
75896
|
-
(itemContext && namedContexts.indexOf(itemContext) >= namedContexts.indexOf(context)))) {
|
|
75897
|
-
finalizer = methodCall(identifier(context.name), 'set', [
|
|
75898
|
-
generate(key),
|
|
75899
|
-
generate(item)
|
|
75900
|
-
]);
|
|
75901
|
-
}
|
|
75902
|
-
else {
|
|
75903
|
-
elements.push({
|
|
75904
|
-
type: 'ArrayExpression',
|
|
75905
|
-
elements: [generate(key), generate(item)]
|
|
75906
|
-
});
|
|
75907
|
-
}
|
|
75908
|
-
}
|
|
75909
|
-
}
|
|
75910
|
-
if (context && finalizer) {
|
|
75911
|
-
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
75912
|
-
}
|
|
75913
|
-
return {
|
|
75914
|
-
type: 'NewExpression',
|
|
75915
|
-
callee: identifier('Map'),
|
|
75916
|
-
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
75917
|
-
};
|
|
75918
|
-
}
|
|
75919
|
-
const properties = [];
|
|
75920
|
-
if (Object.getPrototypeOf(val) == null) {
|
|
75921
|
-
properties.push(property('__proto__', estree_util_value_to_estree_literal(null)));
|
|
75922
|
-
}
|
|
75923
|
-
const object = val;
|
|
75924
|
-
const propertyDescriptors = [];
|
|
75925
|
-
for (const key of Reflect.ownKeys(val)) {
|
|
75926
|
-
// TODO [>=4] Throw an error for getters.
|
|
75927
|
-
const child = object[key];
|
|
75928
|
-
const { configurable, enumerable, writable } = Object.getOwnPropertyDescriptor(val, key);
|
|
75929
|
-
const childContext = collectedContexts.get(child);
|
|
75930
|
-
if (!configurable || !enumerable || !writable) {
|
|
75931
|
-
const propertyDescriptor = [property('value', generate(child))];
|
|
75932
|
-
if (configurable) {
|
|
75933
|
-
propertyDescriptor.push(property('configurable', estree_util_value_to_estree_literal(true)));
|
|
75934
|
-
}
|
|
75935
|
-
if (enumerable) {
|
|
75936
|
-
propertyDescriptor.push(property('enumerable', estree_util_value_to_estree_literal(true)));
|
|
75937
|
-
}
|
|
75938
|
-
if (writable) {
|
|
75939
|
-
propertyDescriptor.push(property('writable', estree_util_value_to_estree_literal(true)));
|
|
75940
|
-
}
|
|
75941
|
-
propertyDescriptors.push(property(key, {
|
|
75942
|
-
type: 'ObjectExpression',
|
|
75943
|
-
properties: propertyDescriptor
|
|
75944
|
-
}));
|
|
75945
|
-
}
|
|
75946
|
-
else if (context &&
|
|
75947
|
-
childContext &&
|
|
75948
|
-
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
75949
|
-
childContext.assignment = {
|
|
75950
|
-
type: 'AssignmentExpression',
|
|
75951
|
-
operator: '=',
|
|
75952
|
-
left: {
|
|
75953
|
-
type: 'MemberExpression',
|
|
75954
|
-
computed: true,
|
|
75955
|
-
optional: false,
|
|
75956
|
-
object: identifier(context.name),
|
|
75957
|
-
property: generate(key)
|
|
75958
|
-
},
|
|
75959
|
-
right: childContext.assignment || generate(child)
|
|
75960
|
-
};
|
|
75961
|
-
}
|
|
75962
|
-
else {
|
|
75963
|
-
properties.push(property(key, generate(child)));
|
|
75964
|
-
}
|
|
75965
|
-
}
|
|
75966
|
-
const objectExpression = {
|
|
75967
|
-
type: 'ObjectExpression',
|
|
75968
|
-
properties
|
|
75969
|
-
};
|
|
75970
|
-
if (propertyDescriptors.length) {
|
|
75971
|
-
if (!context) {
|
|
75972
|
-
return methodCall(identifier('Object'), 'defineProperties', [
|
|
75973
|
-
objectExpression,
|
|
75974
|
-
{
|
|
75975
|
-
type: 'ObjectExpression',
|
|
75976
|
-
properties: propertyDescriptors
|
|
75977
|
-
}
|
|
75978
|
-
]);
|
|
75979
|
-
}
|
|
75980
|
-
context.assignment = replaceAssignment(methodCall(identifier('Object'), 'defineProperties', [
|
|
75981
|
-
identifier(context.name),
|
|
75982
|
-
{
|
|
75983
|
-
type: 'ObjectExpression',
|
|
75984
|
-
properties: propertyDescriptors
|
|
75985
|
-
}
|
|
75986
|
-
]), context.assignment);
|
|
75987
|
-
}
|
|
75988
|
-
return objectExpression;
|
|
75989
|
-
}
|
|
75990
|
-
analyze(value);
|
|
75991
|
-
for (const [val, context] of collectedContexts) {
|
|
75992
|
-
if (context.recursive || context.count > 1) {
|
|
75993
|
-
// Assign reused or recursive references to a variable.
|
|
75994
|
-
context.name = `$${namedContexts.length}`;
|
|
75995
|
-
namedContexts.push(context);
|
|
75996
|
-
}
|
|
75997
|
-
else {
|
|
75998
|
-
// Otherwise don’t treat it as a reference.
|
|
75999
|
-
collectedContexts.delete(val);
|
|
76000
|
-
}
|
|
76001
|
-
}
|
|
76002
|
-
if (!namedContexts.length) {
|
|
76003
|
-
return generate(value);
|
|
76004
|
-
}
|
|
76005
|
-
const declarations = namedContexts.sort(compareContexts).map((context) => ({
|
|
76006
|
-
type: 'VariableDeclarator',
|
|
76007
|
-
id: identifier(context.name),
|
|
76008
|
-
init: generate(context.value, true)
|
|
76009
|
-
}));
|
|
76010
|
-
const rootContext = collectedContexts.get(value);
|
|
76011
|
-
const finalizers = [];
|
|
76012
|
-
for (const context of collectedContexts.values()) {
|
|
76013
|
-
if (context !== rootContext && context.assignment) {
|
|
76014
|
-
finalizers.push(context.assignment);
|
|
76015
|
-
}
|
|
76016
|
-
}
|
|
76017
|
-
finalizers.push(rootContext ? rootContext.assignment || identifier(rootContext.name) : generate(value));
|
|
76018
|
-
return {
|
|
76019
|
-
type: 'CallExpression',
|
|
76020
|
-
optional: false,
|
|
76021
|
-
arguments: [],
|
|
76022
|
-
callee: {
|
|
76023
|
-
type: 'ArrowFunctionExpression',
|
|
76024
|
-
expression: false,
|
|
76025
|
-
params: [],
|
|
76026
|
-
body: {
|
|
76027
|
-
type: 'BlockStatement',
|
|
76028
|
-
body: [
|
|
76029
|
-
{
|
|
76030
|
-
type: 'VariableDeclaration',
|
|
76031
|
-
kind: 'const',
|
|
76032
|
-
declarations
|
|
76033
|
-
},
|
|
76034
|
-
{
|
|
76035
|
-
type: 'ReturnStatement',
|
|
76036
|
-
argument: {
|
|
76037
|
-
type: 'SequenceExpression',
|
|
76038
|
-
expressions: finalizers
|
|
76039
|
-
}
|
|
76040
|
-
}
|
|
76041
|
-
]
|
|
76042
|
-
}
|
|
76043
|
-
}
|
|
76044
|
-
};
|
|
76045
|
-
}
|
|
76046
|
-
//# sourceMappingURL=estree-util-value-to-estree.js.map
|
|
76047
|
-
// EXTERNAL MODULE: ./node_modules/postcss/lib/postcss.js
|
|
76048
|
-
var postcss = __webpack_require__(2895);
|
|
76049
|
-
var postcss_default = /*#__PURE__*/__webpack_require__.n(postcss);
|
|
76050
|
-
;// ./node_modules/postcss/lib/postcss.mjs
|
|
76051
|
-
|
|
76052
|
-
|
|
76053
|
-
/* harmony default export */ const lib_postcss = ((postcss_default()));
|
|
76054
|
-
|
|
76055
|
-
const stringify = (postcss_default()).stringify
|
|
76056
|
-
const fromJSON = (postcss_default()).fromJSON
|
|
76057
|
-
const postcss_plugin = (postcss_default()).plugin
|
|
76058
|
-
const postcss_parse = (postcss_default()).parse
|
|
76059
|
-
const postcss_list = (postcss_default()).list
|
|
76060
|
-
|
|
76061
|
-
const postcss_document = (postcss_default()).document
|
|
76062
|
-
const comment = (postcss_default()).comment
|
|
76063
|
-
const atRule = (postcss_default()).atRule
|
|
76064
|
-
const rule = (postcss_default()).rule
|
|
76065
|
-
const decl = (postcss_default()).decl
|
|
76066
|
-
const postcss_root = (postcss_default()).root
|
|
76067
|
-
|
|
76068
|
-
const CssSyntaxError = (postcss_default()).CssSyntaxError
|
|
76069
|
-
const Declaration = (postcss_default()).Declaration
|
|
76070
|
-
const Container = (postcss_default()).Container
|
|
76071
|
-
const postcss_Processor = (postcss_default()).Processor
|
|
76072
|
-
const Document = (postcss_default()).Document
|
|
76073
|
-
const Comment = (postcss_default()).Comment
|
|
76074
|
-
const Warning = (postcss_default()).Warning
|
|
76075
|
-
const AtRule = (postcss_default()).AtRule
|
|
76076
|
-
const Result = (postcss_default()).Result
|
|
76077
|
-
const Input = (postcss_default()).Input
|
|
76078
|
-
const Rule = (postcss_default()).Rule
|
|
76079
|
-
const Root = (postcss_default()).Root
|
|
76080
|
-
const postcss_Node = (postcss_default()).Node
|
|
76081
|
-
|
|
76082
|
-
// EXTERNAL MODULE: ./node_modules/postcss-prefix-selector/index.js
|
|
76083
|
-
var postcss_prefix_selector = __webpack_require__(9193);
|
|
76084
|
-
var postcss_prefix_selector_default = /*#__PURE__*/__webpack_require__.n(postcss_prefix_selector);
|
|
76085
|
-
;// ./node_modules/tailwindcss/dist/chunk-AZANAYY2.mjs
|
|
76086
|
-
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)"}};
|
|
76087
|
-
|
|
76088
|
-
;// ./node_modules/tailwindcss/dist/chunk-V2K3XTS4.mjs
|
|
76089
|
-
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}};
|
|
76090
|
-
|
|
76091
|
-
;// ./node_modules/tailwindcss/dist/chunk-WZA4AHDT.mjs
|
|
76092
|
-
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)}};
|
|
76093
|
-
|
|
76094
|
-
;// ./node_modules/tailwindcss/dist/lib.mjs
|
|
76095
|
-
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
|
|
76096
|
-
`,`
|
|
76097
|
-
`);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":""};
|
|
76098
|
-
`;else if(e.kind==="rule"){s+=`${a}${e.selector} {
|
|
76099
|
-
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
76100
|
-
`}else if(e.kind==="at-rule"){if(e.nodes.length===0)return`${a}${e.name} ${e.params};
|
|
76101
|
-
`;s+=`${a}${e.name}${e.params?` ${e.params} `:" "}{
|
|
76102
|
-
`;for(let c of e.nodes)s+=r(c,o+1);s+=`${a}}
|
|
76103
|
-
`}else if(e.kind==="comment")s+=`${a}/*${e.value}*/
|
|
76104
|
-
`;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
|
|
76105
|
-
`,`
|
|
76106
|
-
`);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:
|
|
76107
|
-
|
|
76108
|
-
${lib_J([g])}
|
|
76109
|
-
Relies on:
|
|
76110
|
-
|
|
76111
|
-
${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
|
|
76112
|
-
`,`
|
|
76113
|
-
`);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:
|
|
76114
|
-
|
|
76115
|
-
${lib_J([T])}
|
|
76116
|
-
|
|
76117
|
-
\`@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.
|
|
76118
|
-
|
|
76119
|
-
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:
|
|
76120
|
-
|
|
76121
|
-
${JSON.stringify(v,null,2)}
|
|
76122
|
-
|
|
76123
|
-
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(`
|
|
76124
|
-
`).map((m,k,b)=>`${k===0||k>=b.length-2?" ":">"} ${m}`).join(`
|
|
76125
|
-
`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`.
|
|
76126
|
-
|
|
76127
|
-
${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.")}
|
|
76128
|
-
|
|
76129
|
-
;// ./node_modules/tailwindcss/index.css
|
|
76130
|
-
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";
|
|
76131
|
-
;// ./node_modules/tailwindcss/preflight.css
|
|
76132
|
-
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";
|
|
76133
|
-
;// ./node_modules/tailwindcss/theme.css
|
|
76134
|
-
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";
|
|
76135
|
-
;// ./node_modules/tailwindcss/utilities.css
|
|
76136
|
-
const utilities_namespaceObject = "@tailwind utilities;\n";
|
|
76137
|
-
;// ./utils/tailwind-bundle.ts
|
|
76138
|
-
|
|
76139
|
-
|
|
76140
|
-
|
|
76141
|
-
// @ts-expect-error - these are being imported as strings
|
|
76142
|
-
|
|
76143
|
-
// @ts-expect-error - these are being imported as strings
|
|
76144
|
-
|
|
76145
|
-
// @ts-expect-error - these are being imported as strings
|
|
76146
|
-
|
|
76147
|
-
// @ts-expect-error - these are being imported as strings
|
|
76148
|
-
|
|
76149
|
-
/*
|
|
76150
|
-
* @note: This is mostly copied from @tailwindcss/browser
|
|
76151
|
-
*/
|
|
76152
|
-
async function loadStylesheet(id, base) {
|
|
76153
|
-
function load() {
|
|
76154
|
-
if (id === 'tailwindcss') {
|
|
76155
|
-
return {
|
|
76156
|
-
base,
|
|
76157
|
-
content: tailwindcss_namespaceObject,
|
|
76158
|
-
};
|
|
76159
|
-
}
|
|
76160
|
-
else if (id === 'tailwindcss/preflight' || id === 'tailwindcss/preflight.css' || id === './preflight.css') {
|
|
76161
|
-
return {
|
|
76162
|
-
base,
|
|
76163
|
-
content: preflight_namespaceObject,
|
|
76164
|
-
};
|
|
76165
|
-
}
|
|
76166
|
-
else if (id === 'tailwindcss/theme' || id === 'tailwindcss/theme.css' || id === './theme.css') {
|
|
76167
|
-
return {
|
|
76168
|
-
base,
|
|
76169
|
-
content: theme_namespaceObject,
|
|
76170
|
-
};
|
|
76171
|
-
}
|
|
76172
|
-
else if (id === 'tailwindcss/utilities' || id === 'tailwindcss/utilities.css' || id === './utilities.css') {
|
|
76173
|
-
return {
|
|
76174
|
-
base,
|
|
76175
|
-
content: utilities_namespaceObject,
|
|
76176
|
-
};
|
|
76177
|
-
}
|
|
76178
|
-
throw new Error(`The browser build does not support @import for "${id}"`);
|
|
76179
|
-
}
|
|
76180
|
-
const sheet = load();
|
|
76181
|
-
return sheet;
|
|
76182
|
-
}
|
|
76183
|
-
async function loadModule() {
|
|
76184
|
-
throw new Error('The browser build does not support plugins or config files.');
|
|
76185
|
-
}
|
|
76186
|
-
async function createCompiler() {
|
|
76187
|
-
const css = `
|
|
76188
|
-
@layer theme, base, components, utilities;
|
|
76189
|
-
|
|
76190
|
-
@import "tailwindcss/theme.css" layer(theme);
|
|
76191
|
-
@import "tailwindcss/utilities.css" layer(utilities);
|
|
76192
|
-
`;
|
|
76193
|
-
return tl(css, {
|
|
76194
|
-
base: '/',
|
|
76195
|
-
loadStylesheet,
|
|
76196
|
-
loadModule,
|
|
76197
|
-
});
|
|
76198
|
-
}
|
|
76199
|
-
async function tailwindBundle(string, { prefix }) {
|
|
76200
|
-
const compiler = await createCompiler();
|
|
76201
|
-
const newClasses = new Set(string.split(/[^a-zA-Z0-9_-]+/));
|
|
76202
|
-
const css = compiler.build(Array.from(newClasses));
|
|
76203
|
-
return lib_postcss([postcss_prefix_selector_default()({ prefix })]).process(css, { from: undefined });
|
|
76204
|
-
}
|
|
76205
|
-
/* harmony default export */ const tailwind_bundle = (tailwindBundle);
|
|
76206
|
-
|
|
76207
|
-
;// ./processor/transform/tailwind.tsx
|
|
76208
|
-
|
|
76209
|
-
|
|
76210
|
-
|
|
76211
|
-
|
|
76212
|
-
|
|
76213
|
-
const exportTailwindStylesheet = async (tree, vfile, { components, parseRoot }) => {
|
|
76214
|
-
if (hasNamedExport(tree, 'stylesheet'))
|
|
76215
|
-
return;
|
|
76216
|
-
const stringToParse = [...Object.values(components), parseRoot ? String(vfile) : ''].join('\n\n');
|
|
76217
|
-
const stylesheet = (await tailwind_bundle(stringToParse, { prefix: `.${tailwindPrefix}` })).css;
|
|
76218
|
-
const exportNode = {
|
|
76219
|
-
type: 'mdxjsEsm',
|
|
76220
|
-
value: '',
|
|
76221
|
-
data: {
|
|
76222
|
-
estree: {
|
|
76223
|
-
type: 'Program',
|
|
76224
|
-
sourceType: 'module',
|
|
76225
|
-
body: [
|
|
76226
|
-
{
|
|
76227
|
-
type: 'ExportNamedDeclaration',
|
|
76228
|
-
source: null,
|
|
76229
|
-
specifiers: [],
|
|
76230
|
-
declaration: {
|
|
76231
|
-
type: 'VariableDeclaration',
|
|
76232
|
-
kind: 'const',
|
|
76233
|
-
declarations: [
|
|
76234
|
-
{
|
|
76235
|
-
type: 'VariableDeclarator',
|
|
76236
|
-
id: { type: 'Identifier', name: 'stylesheet' },
|
|
76237
|
-
init: valueToEstree(stylesheet),
|
|
76238
|
-
},
|
|
76239
|
-
],
|
|
76240
|
-
},
|
|
76241
|
-
},
|
|
76242
|
-
],
|
|
76243
|
-
},
|
|
76244
|
-
},
|
|
76245
|
-
};
|
|
76246
|
-
tree.children.unshift(exportNode);
|
|
76247
|
-
};
|
|
76248
|
-
const injectTailwindRoot = ({ components = {} }) => (node, index, parent) => {
|
|
76249
|
-
if (!('name' in node))
|
|
76250
|
-
return;
|
|
76251
|
-
if (!(node.name in components))
|
|
76252
|
-
return;
|
|
76253
|
-
if (!('children' in parent))
|
|
76254
|
-
return;
|
|
76255
|
-
const attrs = {
|
|
76256
|
-
flow: node.type === 'mdxJsxFlowElement',
|
|
76257
|
-
};
|
|
76258
|
-
const wrapper = {
|
|
76259
|
-
type: node.type,
|
|
76260
|
-
name: 'TailwindRoot',
|
|
76261
|
-
attributes: toAttributes(attrs),
|
|
76262
|
-
children: [node],
|
|
76263
|
-
};
|
|
76264
|
-
parent.children.splice(index, 1, wrapper);
|
|
76265
|
-
// eslint-disable-next-line consistent-return
|
|
76266
|
-
return SKIP;
|
|
76267
|
-
};
|
|
76268
|
-
const tailwind = ({ components, parseRoot }) => async (tree, vfile) => {
|
|
76269
|
-
const localComponents = getExports(tree).reduce((acc, name) => {
|
|
76270
|
-
acc[name] = String(vfile);
|
|
76271
|
-
return acc;
|
|
76272
|
-
}, {});
|
|
76273
|
-
visit(tree, isMDXElement, injectTailwindRoot({ components: { ...components, ...localComponents } }));
|
|
76274
|
-
await exportTailwindStylesheet(tree, vfile, { components: { ...components, ...localComponents }, parseRoot });
|
|
76275
|
-
return tree;
|
|
76276
|
-
};
|
|
76277
|
-
/* harmony default export */ const transform_tailwind = (tailwind);
|
|
76278
|
-
|
|
76279
|
-
;// ./processor/transform/variables.ts
|
|
76280
|
-
|
|
76281
|
-
|
|
76282
|
-
const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
76283
|
-
visit(tree, (node, index, parent) => {
|
|
76284
|
-
if (!['mdxFlowExpression', 'mdxTextExpression'].includes(node.type) || !('value' in node))
|
|
76285
|
-
return;
|
|
76286
|
-
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
76287
|
-
if (node.data.estree.type !== 'Program')
|
|
76288
|
-
return;
|
|
76289
|
-
// @ts-expect-error - estree is not defined on our mdx types?!
|
|
76290
|
-
const [expression] = node.data.estree.body;
|
|
76291
|
-
if (!expression ||
|
|
76292
|
-
expression.type !== 'ExpressionStatement' ||
|
|
76293
|
-
expression.expression.object?.name !== 'user' ||
|
|
76294
|
-
!['Literal', 'Identifier'].includes(expression.expression.property?.type))
|
|
76295
|
-
return;
|
|
76296
|
-
const name = expression.expression.property.type === 'Identifier'
|
|
76297
|
-
? expression.expression.property.name
|
|
76298
|
-
: expression.expression.property.value;
|
|
76299
|
-
const variable = asMdx
|
|
76300
|
-
? {
|
|
76301
|
-
type: 'mdxJsxTextElement',
|
|
76302
|
-
name: 'Variable',
|
|
76303
|
-
attributes: [
|
|
76304
|
-
{
|
|
76305
|
-
type: 'mdxJsxAttribute',
|
|
76306
|
-
name: 'name',
|
|
76307
|
-
value: name,
|
|
76308
|
-
},
|
|
76309
|
-
],
|
|
76310
|
-
children: [],
|
|
76311
|
-
position: node.position,
|
|
76312
|
-
}
|
|
76313
|
-
: {
|
|
76314
|
-
type: NodeTypes.variable,
|
|
76315
|
-
data: {
|
|
76316
|
-
hName: 'Variable',
|
|
76317
|
-
hProperties: {
|
|
76318
|
-
name,
|
|
76319
|
-
},
|
|
76320
|
-
},
|
|
76321
|
-
value: `{${node.value}}`,
|
|
76322
|
-
position: node.position,
|
|
76323
|
-
};
|
|
76324
|
-
parent.children.splice(index, 1, variable);
|
|
76325
|
-
});
|
|
76326
|
-
return tree;
|
|
76327
|
-
};
|
|
76328
|
-
/* harmony default export */ const transform_variables = (variables);
|
|
76329
|
-
|
|
76330
|
-
;// ./processor/transform/index.ts
|
|
76331
|
-
|
|
76332
|
-
|
|
76333
|
-
|
|
76334
|
-
|
|
76335
|
-
|
|
76336
|
-
|
|
76337
|
-
|
|
76338
|
-
|
|
76339
|
-
|
|
76340
|
-
|
|
76341
|
-
|
|
76342
|
-
|
|
76343
|
-
|
|
76344
|
-
|
|
76345
|
-
|
|
76346
|
-
|
|
76347
|
-
const defaultTransforms = {
|
|
76348
|
-
calloutTransformer: callouts,
|
|
76349
|
-
codeTabsTransformer: code_tabs,
|
|
76350
|
-
embedTransformer: transform_embeds,
|
|
76351
|
-
imageTransformer: transform_images,
|
|
76352
|
-
gemojiTransformer: gemoji_,
|
|
76353
|
-
};
|
|
76354
|
-
/* harmony default export */ const transform = (Object.values(defaultTransforms));
|
|
76355
|
-
|
|
76356
|
-
;// ./lib/ast-processor.ts
|
|
76357
|
-
|
|
76358
|
-
|
|
76359
|
-
|
|
76360
|
-
|
|
76361
|
-
|
|
76362
|
-
|
|
76363
|
-
const remarkPlugins = [remarkFrontmatter, remarkGfm, ...transform];
|
|
76364
|
-
const rehypePlugins = [rehypeSlug, transform_mermaid];
|
|
76365
|
-
const astProcessor = (opts = { components: {} }) => remark()
|
|
76366
|
-
.use(remarkMdx)
|
|
76367
|
-
.use(remarkPlugins)
|
|
76368
|
-
.use(opts.remarkPlugins)
|
|
76369
|
-
.use(transform_variables, { asMdx: false })
|
|
76370
|
-
.use(readme_components({ components: opts.components }));
|
|
76371
|
-
/* harmony default export */ const ast_processor = (astProcessor);
|
|
76372
|
-
|
|
76373
|
-
;// ./node_modules/markdown-extensions/index.js
|
|
76374
|
-
// TODO: Load the JSON file when Node.js supports that.
|
|
76375
|
-
|
|
76376
|
-
const markdownExtension = [
|
|
76377
|
-
'md',
|
|
76378
|
-
'markdown',
|
|
76379
|
-
'mdown',
|
|
76380
|
-
'mkdn',
|
|
76381
|
-
'mkd',
|
|
76382
|
-
'mdwn',
|
|
76383
|
-
'mkdown',
|
|
76384
|
-
'ron',
|
|
76385
|
-
];
|
|
76386
|
-
|
|
76387
|
-
/* harmony default export */ const markdown_extensions = (markdownExtension);
|
|
76388
|
-
|
|
76389
|
-
;// ./node_modules/@mdx-js/mdx/lib/util/extnames.js
|
|
76390
|
-
|
|
76391
|
-
|
|
76392
|
-
const md = markdown_extensions.map(function (d) {
|
|
76393
|
-
return '.' + d
|
|
76394
|
-
})
|
|
76395
|
-
const mdx = (/* unused pure expression or super */ null && (['.mdx']))
|
|
76396
|
-
|
|
76397
|
-
;// ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
|
|
76398
|
-
/**
|
|
76399
|
-
* @import {Compatible} from 'vfile'
|
|
76400
|
-
* @import {CompileOptions} from '../compile.js'
|
|
76401
|
-
* @import {ProcessorOptions} from '../core.js'
|
|
76402
|
-
*/
|
|
76403
|
-
|
|
76404
|
-
|
|
76405
|
-
|
|
76406
|
-
|
|
76407
|
-
/**
|
|
76408
|
-
* Create a file and options from a given `vfileCompatible` and options that
|
|
76409
|
-
* might contain `format: 'detect'`.
|
|
76410
|
-
*
|
|
76411
|
-
* @param {Readonly<Compatible>} vfileCompatible
|
|
76412
|
-
* File.
|
|
76413
|
-
* @param {Readonly<CompileOptions> | null | undefined} [options]
|
|
76414
|
-
* Configuration (optional).
|
|
76415
|
-
* @returns {{file: VFile, options: ProcessorOptions}}
|
|
76416
|
-
* File and options.
|
|
76417
|
-
*/
|
|
76418
|
-
function resolve_file_and_options_resolveFileAndOptions(vfileCompatible, options) {
|
|
76419
|
-
const file = resolve_file_and_options_looksLikeAVFile(vfileCompatible)
|
|
76420
|
-
? vfileCompatible
|
|
76421
|
-
: new VFile(vfileCompatible)
|
|
76422
|
-
const {format, ...rest} = options || {}
|
|
76423
|
-
return {
|
|
76424
|
-
file,
|
|
76425
|
-
options: {
|
|
76426
|
-
format:
|
|
76427
|
-
format === 'md' || format === 'mdx'
|
|
76428
|
-
? format
|
|
76429
|
-
: file.extname && (rest.mdExtensions || md).includes(file.extname)
|
|
76430
|
-
? 'md'
|
|
76431
|
-
: 'mdx',
|
|
76432
|
-
...rest
|
|
76433
|
-
}
|
|
76434
|
-
}
|
|
76435
|
-
}
|
|
76436
|
-
|
|
76437
|
-
/**
|
|
76438
|
-
* @param {Readonly<Compatible> | null | undefined} [value]
|
|
76439
|
-
* Thing.
|
|
76440
|
-
* @returns {value is VFile}
|
|
76441
|
-
* Check.
|
|
76442
|
-
*/
|
|
76443
|
-
function resolve_file_and_options_looksLikeAVFile(value) {
|
|
76444
|
-
return Boolean(
|
|
76445
|
-
value &&
|
|
76446
|
-
typeof value === 'object' &&
|
|
76447
|
-
'message' in value &&
|
|
76448
|
-
'messages' in value
|
|
76449
|
-
)
|
|
76450
|
-
}
|
|
76451
|
-
|
|
76452
|
-
;// ./node_modules/estree-walker/src/walker.js
|
|
76453
|
-
/**
|
|
76454
|
-
* @typedef { import('estree').Node} Node
|
|
76455
|
-
* @typedef {{
|
|
76456
|
-
* skip: () => void;
|
|
76457
|
-
* remove: () => void;
|
|
76458
|
-
* replace: (node: Node) => void;
|
|
76459
|
-
* }} WalkerContext
|
|
75864
|
+
* @typedef { import('estree').Node} Node
|
|
75865
|
+
* @typedef {{
|
|
75866
|
+
* skip: () => void;
|
|
75867
|
+
* remove: () => void;
|
|
75868
|
+
* replace: (node: Node) => void;
|
|
75869
|
+
* }} WalkerContext
|
|
76460
75870
|
*/
|
|
76461
75871
|
|
|
76462
75872
|
class WalkerBase {
|
|
@@ -81782,7 +81192,7 @@ function lib_empty(value) {
|
|
|
81782
81192
|
* @returns {JsxFragment}
|
|
81783
81193
|
* estree JSX fragment.
|
|
81784
81194
|
*/
|
|
81785
|
-
function
|
|
81195
|
+
function handlers_root_root(node, state) {
|
|
81786
81196
|
const children = state.all(node)
|
|
81787
81197
|
/** @type {Array<JsxChild>} */
|
|
81788
81198
|
const cleanChildren = []
|
|
@@ -81874,7 +81284,7 @@ const handlers = {
|
|
|
81874
81284
|
mdxJsxTextElement: mdxJsxElement,
|
|
81875
81285
|
mdxTextExpression: mdx_expression_mdxExpression,
|
|
81876
81286
|
mdxjsEsm: mdxjs_esm_mdxjsEsm,
|
|
81877
|
-
root:
|
|
81287
|
+
root: handlers_root_root,
|
|
81878
81288
|
text: handlers_text_text
|
|
81879
81289
|
}
|
|
81880
81290
|
|
|
@@ -83842,7 +83252,7 @@ function paragraph_paragraph(state, node) {
|
|
|
83842
83252
|
* @returns {HastParents}
|
|
83843
83253
|
* hast node.
|
|
83844
83254
|
*/
|
|
83845
|
-
function
|
|
83255
|
+
function lib_handlers_root_root(state, node) {
|
|
83846
83256
|
/** @type {HastRoot} */
|
|
83847
83257
|
const result = {type: 'root', children: state.wrap(state.all(node))}
|
|
83848
83258
|
state.patch(node, result)
|
|
@@ -84227,7 +83637,7 @@ const handlers_handlers = {
|
|
|
84227
83637
|
list: handlers_list_list,
|
|
84228
83638
|
paragraph: paragraph_paragraph,
|
|
84229
83639
|
// @ts-expect-error: root is different, but hard to type.
|
|
84230
|
-
root:
|
|
83640
|
+
root: lib_handlers_root_root,
|
|
84231
83641
|
strong: strong_strong,
|
|
84232
83642
|
table: table,
|
|
84233
83643
|
tableCell: tableCell,
|
|
@@ -87605,81 +87015,702 @@ function core_createProcessor(options) {
|
|
|
87605
87015
|
* @import {Compatible, VFile} from 'vfile'
|
|
87606
87016
|
* @import {ProcessorOptions} from './core.js'
|
|
87607
87017
|
*/
|
|
87608
|
-
|
|
87018
|
+
|
|
87019
|
+
/**
|
|
87020
|
+
* @typedef {Omit<ProcessorOptions, 'format'>} CoreProcessorOptions
|
|
87021
|
+
* Core configuration.
|
|
87022
|
+
*
|
|
87023
|
+
* @typedef ExtraOptions
|
|
87024
|
+
* Extra configuration.
|
|
87025
|
+
* @property {'detect' | 'md' | 'mdx' | null | undefined} [format='detect']
|
|
87026
|
+
* Format of `file` (default: `'detect'`).
|
|
87027
|
+
*
|
|
87028
|
+
* @typedef {CoreProcessorOptions & ExtraOptions} CompileOptions
|
|
87029
|
+
* Configuration for `compile`.
|
|
87030
|
+
*
|
|
87031
|
+
* `CompileOptions` is the same as `ProcessorOptions` with the exception that
|
|
87032
|
+
* the `format` option supports a `'detect'` value, which is the default.
|
|
87033
|
+
* The `'detect'` format means to use `'md'` for files with an extension in
|
|
87034
|
+
* `mdExtensions` and `'mdx'` otherwise.
|
|
87035
|
+
*/
|
|
87036
|
+
|
|
87037
|
+
|
|
87038
|
+
|
|
87039
|
+
|
|
87040
|
+
/**
|
|
87041
|
+
* Compile MDX to JS.
|
|
87042
|
+
*
|
|
87043
|
+
* @param {Readonly<Compatible>} vfileCompatible
|
|
87044
|
+
* MDX document to parse.
|
|
87045
|
+
* @param {Readonly<CompileOptions> | null | undefined} [compileOptions]
|
|
87046
|
+
* Compile configuration (optional).
|
|
87047
|
+
* @return {Promise<VFile>}
|
|
87048
|
+
* Promise to compiled file.
|
|
87049
|
+
*/
|
|
87050
|
+
function compile(vfileCompatible, compileOptions) {
|
|
87051
|
+
const {file, options} = resolve_file_and_options_resolveFileAndOptions(vfileCompatible, compileOptions)
|
|
87052
|
+
return core_createProcessor(options).process(file)
|
|
87053
|
+
}
|
|
87054
|
+
|
|
87055
|
+
/**
|
|
87056
|
+
* Synchronously compile MDX to JS.
|
|
87057
|
+
*
|
|
87058
|
+
* When possible please use the async `compile`.
|
|
87059
|
+
*
|
|
87060
|
+
* @param {Readonly<Compatible>} vfileCompatible
|
|
87061
|
+
* MDX document to parse.
|
|
87062
|
+
* @param {Readonly<CompileOptions> | null | undefined} [compileOptions]
|
|
87063
|
+
* Compile configuration (optional).
|
|
87064
|
+
* @return {VFile}
|
|
87065
|
+
* Compiled file.
|
|
87066
|
+
*/
|
|
87067
|
+
function compileSync(vfileCompatible, compileOptions) {
|
|
87068
|
+
const {file, options} = resolveFileAndOptions(vfileCompatible, compileOptions)
|
|
87069
|
+
return createProcessor(options).processSync(file)
|
|
87070
|
+
}
|
|
87071
|
+
|
|
87072
|
+
;// ./errors/mdx-syntax-error.ts
|
|
87073
|
+
class MdxSyntaxError extends SyntaxError {
|
|
87074
|
+
original = null;
|
|
87075
|
+
constructor(error, doc) {
|
|
87076
|
+
const { message, line, column, url } = error;
|
|
87077
|
+
const messages = [
|
|
87078
|
+
`Oh no! We ran into a syntax error at { line: ${line}, column: ${column} }, please see this url for more details: ${url}`,
|
|
87079
|
+
];
|
|
87080
|
+
if (typeof line !== 'undefined') {
|
|
87081
|
+
messages.push(doc.split('\n')[line - 1]);
|
|
87082
|
+
if (typeof column !== 'undefined') {
|
|
87083
|
+
const prefix = new Array(column).map(() => '').join(' ');
|
|
87084
|
+
messages.push(`${prefix}↑ ${message}`);
|
|
87085
|
+
}
|
|
87086
|
+
}
|
|
87087
|
+
super(messages.join('\n'));
|
|
87088
|
+
this.original = error;
|
|
87089
|
+
this.name = 'MdxSyntaxError';
|
|
87090
|
+
}
|
|
87091
|
+
}
|
|
87092
|
+
|
|
87093
|
+
;// ./node_modules/estree-util-value-to-estree/dist/estree-util-value-to-estree.js
|
|
87094
|
+
/**
|
|
87095
|
+
* Create an ESTree identifier node for a given name.
|
|
87096
|
+
*
|
|
87097
|
+
* @param name
|
|
87098
|
+
* The name of the identifier.
|
|
87099
|
+
* @returns
|
|
87100
|
+
* The identifier node.
|
|
87101
|
+
*/
|
|
87102
|
+
function identifier(name) {
|
|
87103
|
+
return { type: 'Identifier', name };
|
|
87104
|
+
}
|
|
87105
|
+
/**
|
|
87106
|
+
* Create an ESTree literal node for a given value.
|
|
87107
|
+
*
|
|
87108
|
+
* @param value
|
|
87109
|
+
* The value for which to create a literal.
|
|
87110
|
+
* @returns
|
|
87111
|
+
* The literal node.
|
|
87112
|
+
*/
|
|
87113
|
+
function estree_util_value_to_estree_literal(value) {
|
|
87114
|
+
return { type: 'Literal', value };
|
|
87115
|
+
}
|
|
87116
|
+
/**
|
|
87117
|
+
* Create an ESTree call expression on an object member.
|
|
87118
|
+
*
|
|
87119
|
+
* @param object
|
|
87120
|
+
* The object to call the method on.
|
|
87121
|
+
* @param name
|
|
87122
|
+
* The name of the method to call.
|
|
87123
|
+
* @param args
|
|
87124
|
+
* Arguments to pass to the function call
|
|
87125
|
+
* @returns
|
|
87126
|
+
* The call expression node.
|
|
87127
|
+
*/
|
|
87128
|
+
function methodCall(object, name, args) {
|
|
87129
|
+
return {
|
|
87130
|
+
type: 'CallExpression',
|
|
87131
|
+
optional: false,
|
|
87132
|
+
callee: {
|
|
87133
|
+
type: 'MemberExpression',
|
|
87134
|
+
computed: false,
|
|
87135
|
+
optional: false,
|
|
87136
|
+
object,
|
|
87137
|
+
property: identifier(name)
|
|
87138
|
+
},
|
|
87139
|
+
arguments: args
|
|
87140
|
+
};
|
|
87141
|
+
}
|
|
87142
|
+
/**
|
|
87143
|
+
* Turn a number or bigint into an ESTree expression. This handles positive and negative numbers and
|
|
87144
|
+
* bigints as well as special numbers.
|
|
87145
|
+
*
|
|
87146
|
+
* @param number
|
|
87147
|
+
* The value to turn into an ESTree expression.
|
|
87148
|
+
* @returns
|
|
87149
|
+
* An expression that represents the given value.
|
|
87150
|
+
*/
|
|
87151
|
+
function processNumber(number) {
|
|
87152
|
+
if (number < 0 || Object.is(number, -0)) {
|
|
87153
|
+
return {
|
|
87154
|
+
type: 'UnaryExpression',
|
|
87155
|
+
operator: '-',
|
|
87156
|
+
prefix: true,
|
|
87157
|
+
argument: processNumber(-number)
|
|
87158
|
+
};
|
|
87159
|
+
}
|
|
87160
|
+
if (typeof number === 'bigint') {
|
|
87161
|
+
return { type: 'Literal', bigint: String(number) };
|
|
87162
|
+
}
|
|
87163
|
+
if (number === Number.POSITIVE_INFINITY || Number.isNaN(number)) {
|
|
87164
|
+
return identifier(String(number));
|
|
87165
|
+
}
|
|
87166
|
+
return estree_util_value_to_estree_literal(number);
|
|
87167
|
+
}
|
|
87168
|
+
/**
|
|
87169
|
+
* Process an array of numbers. This is a shortcut for iterables whose constructor takes an array of
|
|
87170
|
+
* numbers as input.
|
|
87171
|
+
*
|
|
87172
|
+
* @param numbers
|
|
87173
|
+
* The numbers to add to the array expression.
|
|
87174
|
+
* @returns
|
|
87175
|
+
* An ESTree array expression whose elements match the input numbers.
|
|
87176
|
+
*/
|
|
87177
|
+
function processNumberArray(numbers) {
|
|
87178
|
+
const elements = [];
|
|
87179
|
+
for (const value of numbers) {
|
|
87180
|
+
elements.push(processNumber(value));
|
|
87181
|
+
}
|
|
87182
|
+
return { type: 'ArrayExpression', elements };
|
|
87183
|
+
}
|
|
87184
|
+
/**
|
|
87185
|
+
* Check whether a value can be constructed from its string representation.
|
|
87186
|
+
*
|
|
87187
|
+
* @param value
|
|
87188
|
+
* The value to check
|
|
87189
|
+
* @returns
|
|
87190
|
+
* Whether or not the value can be constructed from its string representation.
|
|
87191
|
+
*/
|
|
87192
|
+
function isStringReconstructable(value) {
|
|
87193
|
+
return value instanceof URL || value instanceof URLSearchParams;
|
|
87194
|
+
}
|
|
87195
|
+
/**
|
|
87196
|
+
* Check whether a value can be constructed from its `valueOf()` result.
|
|
87197
|
+
*
|
|
87198
|
+
* @param value
|
|
87199
|
+
* The value to check
|
|
87200
|
+
* @returns
|
|
87201
|
+
* Whether or not the value can be constructed from its `valueOf()` result.
|
|
87202
|
+
*/
|
|
87203
|
+
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
87204
|
+
function isValueReconstructable(value) {
|
|
87205
|
+
return (value instanceof Boolean ||
|
|
87206
|
+
value instanceof Date ||
|
|
87207
|
+
value instanceof Number ||
|
|
87208
|
+
value instanceof String);
|
|
87209
|
+
}
|
|
87210
|
+
const wellKnownSymbols = new Map();
|
|
87211
|
+
for (const name of Reflect.ownKeys(Symbol)) {
|
|
87212
|
+
const value = Symbol[name];
|
|
87213
|
+
if (typeof value === 'symbol') {
|
|
87214
|
+
wellKnownSymbols.set(value, name);
|
|
87215
|
+
}
|
|
87216
|
+
}
|
|
87217
|
+
/**
|
|
87218
|
+
* Check whether a value is a typed array.
|
|
87219
|
+
*
|
|
87220
|
+
* @param value
|
|
87221
|
+
* The value to check
|
|
87222
|
+
* @returns
|
|
87223
|
+
* Whether or not the value is a typed array.
|
|
87224
|
+
*/
|
|
87225
|
+
function isTypedArray(value) {
|
|
87226
|
+
return (value instanceof BigInt64Array ||
|
|
87227
|
+
value instanceof BigUint64Array ||
|
|
87228
|
+
value instanceof Float32Array ||
|
|
87229
|
+
value instanceof Float64Array ||
|
|
87230
|
+
value instanceof Int8Array ||
|
|
87231
|
+
value instanceof Int16Array ||
|
|
87232
|
+
value instanceof Int32Array ||
|
|
87233
|
+
value instanceof Uint8Array ||
|
|
87234
|
+
value instanceof Uint8ClampedArray ||
|
|
87235
|
+
value instanceof Uint16Array ||
|
|
87236
|
+
value instanceof Uint32Array);
|
|
87237
|
+
}
|
|
87238
|
+
/**
|
|
87239
|
+
* Compare two value contexts for sorting them based on reference count.
|
|
87240
|
+
*
|
|
87241
|
+
* @param a
|
|
87242
|
+
* The first context to compare.
|
|
87243
|
+
* @param b
|
|
87244
|
+
* The second context to compare.
|
|
87245
|
+
* @returns
|
|
87246
|
+
* The count of context a minus the count of context b.
|
|
87247
|
+
*/
|
|
87248
|
+
function compareContexts(a, b) {
|
|
87249
|
+
const aReferencedByB = a.referencedBy.has(b.value);
|
|
87250
|
+
const bReferencedByA = b.referencedBy.has(a.value);
|
|
87251
|
+
if (aReferencedByB) {
|
|
87252
|
+
if (bReferencedByA) {
|
|
87253
|
+
return a.count - b.count;
|
|
87254
|
+
}
|
|
87255
|
+
return -1;
|
|
87256
|
+
}
|
|
87257
|
+
if (bReferencedByA) {
|
|
87258
|
+
return 1;
|
|
87259
|
+
}
|
|
87260
|
+
return a.count - b.count;
|
|
87261
|
+
}
|
|
87609
87262
|
/**
|
|
87610
|
-
*
|
|
87611
|
-
* Core configuration.
|
|
87612
|
-
*
|
|
87613
|
-
* @typedef ExtraOptions
|
|
87614
|
-
* Extra configuration.
|
|
87615
|
-
* @property {'detect' | 'md' | 'mdx' | null | undefined} [format='detect']
|
|
87616
|
-
* Format of `file` (default: `'detect'`).
|
|
87263
|
+
* Replace the assigned right hand expression with the new expression.
|
|
87617
87264
|
*
|
|
87618
|
-
*
|
|
87619
|
-
*
|
|
87265
|
+
* If there is no assignment expression, the original expression is returned. Otherwise the
|
|
87266
|
+
* assignment is modified and returned,
|
|
87620
87267
|
*
|
|
87621
|
-
*
|
|
87622
|
-
*
|
|
87623
|
-
*
|
|
87624
|
-
*
|
|
87268
|
+
* @param expression
|
|
87269
|
+
* The expression to use for the assignment.
|
|
87270
|
+
* @param assignment
|
|
87271
|
+
* The existing assignmentexpression
|
|
87272
|
+
* @returns
|
|
87273
|
+
* The new expression.
|
|
87625
87274
|
*/
|
|
87626
|
-
|
|
87627
|
-
|
|
87628
|
-
|
|
87629
|
-
|
|
87275
|
+
function replaceAssignment(expression, assignment) {
|
|
87276
|
+
if (!assignment || assignment.type !== 'AssignmentExpression') {
|
|
87277
|
+
return expression;
|
|
87278
|
+
}
|
|
87279
|
+
let node = assignment;
|
|
87280
|
+
while (node.right.type === 'AssignmentExpression') {
|
|
87281
|
+
node = node.right;
|
|
87282
|
+
}
|
|
87283
|
+
node.right = expression;
|
|
87284
|
+
return assignment;
|
|
87285
|
+
}
|
|
87630
87286
|
/**
|
|
87631
|
-
*
|
|
87287
|
+
* Create an ESTree epxression to represent a symbol. Global and well-known symbols are supported.
|
|
87632
87288
|
*
|
|
87633
|
-
* @param
|
|
87634
|
-
*
|
|
87635
|
-
* @
|
|
87636
|
-
*
|
|
87637
|
-
* @return {Promise<VFile>}
|
|
87638
|
-
* Promise to compiled file.
|
|
87289
|
+
* @param symbol
|
|
87290
|
+
* THe symbol to represent.
|
|
87291
|
+
* @returns
|
|
87292
|
+
* An ESTree expression to represent the symbol.
|
|
87639
87293
|
*/
|
|
87640
|
-
function
|
|
87641
|
-
|
|
87642
|
-
|
|
87294
|
+
function symbolToEstree(symbol) {
|
|
87295
|
+
const name = wellKnownSymbols.get(symbol);
|
|
87296
|
+
if (name) {
|
|
87297
|
+
return {
|
|
87298
|
+
type: 'MemberExpression',
|
|
87299
|
+
computed: false,
|
|
87300
|
+
optional: false,
|
|
87301
|
+
object: identifier('Symbol'),
|
|
87302
|
+
property: identifier(name)
|
|
87303
|
+
};
|
|
87304
|
+
}
|
|
87305
|
+
if (symbol.description && symbol === Symbol.for(symbol.description)) {
|
|
87306
|
+
return methodCall(identifier('Symbol'), 'for', [estree_util_value_to_estree_literal(symbol.description)]);
|
|
87307
|
+
}
|
|
87308
|
+
throw new TypeError(`Only global symbols are supported, got: ${String(symbol)}`, {
|
|
87309
|
+
cause: symbol
|
|
87310
|
+
});
|
|
87643
87311
|
}
|
|
87644
|
-
|
|
87645
87312
|
/**
|
|
87646
|
-
*
|
|
87647
|
-
*
|
|
87648
|
-
* When possible please use the async `compile`.
|
|
87313
|
+
* Create an ESTree property from a key and a value expression.
|
|
87649
87314
|
*
|
|
87650
|
-
* @param
|
|
87651
|
-
*
|
|
87652
|
-
* @param
|
|
87653
|
-
*
|
|
87654
|
-
* @
|
|
87655
|
-
*
|
|
87315
|
+
* @param key
|
|
87316
|
+
* The property key value
|
|
87317
|
+
* @param value
|
|
87318
|
+
* The property value as an ESTree expression.
|
|
87319
|
+
* @returns
|
|
87320
|
+
* The ESTree properry node.
|
|
87656
87321
|
*/
|
|
87657
|
-
function
|
|
87658
|
-
|
|
87659
|
-
|
|
87322
|
+
function property(key, value) {
|
|
87323
|
+
const computed = typeof key !== 'string';
|
|
87324
|
+
return {
|
|
87325
|
+
type: 'Property',
|
|
87326
|
+
method: false,
|
|
87327
|
+
shorthand: false,
|
|
87328
|
+
computed,
|
|
87329
|
+
kind: 'init',
|
|
87330
|
+
key: computed ? symbolToEstree(key) : estree_util_value_to_estree_literal(key),
|
|
87331
|
+
value
|
|
87332
|
+
};
|
|
87660
87333
|
}
|
|
87661
|
-
|
|
87662
|
-
|
|
87663
|
-
|
|
87664
|
-
|
|
87665
|
-
|
|
87666
|
-
|
|
87667
|
-
|
|
87668
|
-
|
|
87669
|
-
|
|
87670
|
-
|
|
87671
|
-
|
|
87672
|
-
|
|
87673
|
-
|
|
87674
|
-
|
|
87334
|
+
/**
|
|
87335
|
+
* Convert a value to an ESTree node.
|
|
87336
|
+
*
|
|
87337
|
+
* @param value
|
|
87338
|
+
* The value to convert.
|
|
87339
|
+
* @param options
|
|
87340
|
+
* Additional options to configure the output.
|
|
87341
|
+
* @returns
|
|
87342
|
+
* The ESTree node.
|
|
87343
|
+
*/
|
|
87344
|
+
function valueToEstree(value, options = {}) {
|
|
87345
|
+
const stack = [];
|
|
87346
|
+
const collectedContexts = new Map();
|
|
87347
|
+
const namedContexts = [];
|
|
87348
|
+
/**
|
|
87349
|
+
* Analyze a value and collect all reference contexts.
|
|
87350
|
+
*
|
|
87351
|
+
* @param val
|
|
87352
|
+
* The value to analyze.
|
|
87353
|
+
*/
|
|
87354
|
+
function analyze(val) {
|
|
87355
|
+
if (typeof val === 'function') {
|
|
87356
|
+
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
87357
|
+
}
|
|
87358
|
+
if (typeof val !== 'object') {
|
|
87359
|
+
return;
|
|
87360
|
+
}
|
|
87361
|
+
if (val == null) {
|
|
87362
|
+
return;
|
|
87363
|
+
}
|
|
87364
|
+
const context = collectedContexts.get(val);
|
|
87365
|
+
if (context) {
|
|
87366
|
+
if (options.preserveReferences) {
|
|
87367
|
+
context.count += 1;
|
|
87368
|
+
}
|
|
87369
|
+
for (const ancestor of stack) {
|
|
87370
|
+
context.referencedBy.add(ancestor);
|
|
87371
|
+
}
|
|
87372
|
+
if (stack.includes(val)) {
|
|
87373
|
+
if (!options.preserveReferences) {
|
|
87374
|
+
throw new Error(`Found circular reference: ${val}`, { cause: val });
|
|
87375
|
+
}
|
|
87376
|
+
const parent = stack.at(-1);
|
|
87377
|
+
const parentContext = collectedContexts.get(parent);
|
|
87378
|
+
parentContext.recursive = true;
|
|
87379
|
+
context.recursive = true;
|
|
87675
87380
|
}
|
|
87381
|
+
return;
|
|
87382
|
+
}
|
|
87383
|
+
collectedContexts.set(val, {
|
|
87384
|
+
count: 1,
|
|
87385
|
+
recursive: false,
|
|
87386
|
+
referencedBy: new Set(stack),
|
|
87387
|
+
value: val
|
|
87388
|
+
});
|
|
87389
|
+
if (isTypedArray(val)) {
|
|
87390
|
+
return;
|
|
87391
|
+
}
|
|
87392
|
+
if (isStringReconstructable(val)) {
|
|
87393
|
+
return;
|
|
87394
|
+
}
|
|
87395
|
+
if (isValueReconstructable(val)) {
|
|
87396
|
+
return;
|
|
87397
|
+
}
|
|
87398
|
+
if (value instanceof RegExp) {
|
|
87399
|
+
return;
|
|
87400
|
+
}
|
|
87401
|
+
stack.push(val);
|
|
87402
|
+
if (val instanceof Map) {
|
|
87403
|
+
for (const pair of val) {
|
|
87404
|
+
analyze(pair[0]);
|
|
87405
|
+
analyze(pair[1]);
|
|
87406
|
+
}
|
|
87407
|
+
}
|
|
87408
|
+
else if (Array.isArray(val) || val instanceof Set) {
|
|
87409
|
+
for (const entry of val) {
|
|
87410
|
+
analyze(entry);
|
|
87411
|
+
}
|
|
87412
|
+
}
|
|
87413
|
+
else {
|
|
87414
|
+
const proto = Object.getPrototypeOf(val);
|
|
87415
|
+
if (proto != null && proto !== Object.prototype && !options.instanceAsObject) {
|
|
87416
|
+
throw new TypeError(`Unsupported value: ${val}`, { cause: val });
|
|
87417
|
+
}
|
|
87418
|
+
for (const key of Reflect.ownKeys(val)) {
|
|
87419
|
+
analyze(val[key]);
|
|
87420
|
+
}
|
|
87421
|
+
}
|
|
87422
|
+
stack.pop();
|
|
87423
|
+
}
|
|
87424
|
+
/**
|
|
87425
|
+
* Recursively generate the ESTree expression needed to reconstruct the value.
|
|
87426
|
+
*
|
|
87427
|
+
* @param val
|
|
87428
|
+
* The value to process.
|
|
87429
|
+
* @param isDeclaration
|
|
87430
|
+
* Whether or not this is for a variable declaration.
|
|
87431
|
+
* @returns
|
|
87432
|
+
* The ESTree expression to reconstruct the value.
|
|
87433
|
+
*/
|
|
87434
|
+
function generate(val, isDeclaration) {
|
|
87435
|
+
if (val === undefined) {
|
|
87436
|
+
return identifier(String(val));
|
|
87437
|
+
}
|
|
87438
|
+
if (val == null || typeof val === 'string' || typeof val === 'boolean') {
|
|
87439
|
+
return estree_util_value_to_estree_literal(val);
|
|
87440
|
+
}
|
|
87441
|
+
if (typeof val === 'bigint' || typeof val === 'number') {
|
|
87442
|
+
return processNumber(val);
|
|
87443
|
+
}
|
|
87444
|
+
if (typeof val === 'symbol') {
|
|
87445
|
+
return symbolToEstree(val);
|
|
87446
|
+
}
|
|
87447
|
+
const context = collectedContexts.get(val);
|
|
87448
|
+
if (!isDeclaration && context?.name) {
|
|
87449
|
+
return identifier(context.name);
|
|
87450
|
+
}
|
|
87451
|
+
if (isValueReconstructable(val)) {
|
|
87452
|
+
return {
|
|
87453
|
+
type: 'NewExpression',
|
|
87454
|
+
callee: identifier(val.constructor.name),
|
|
87455
|
+
arguments: [generate(val.valueOf())]
|
|
87456
|
+
};
|
|
87457
|
+
}
|
|
87458
|
+
if (val instanceof RegExp) {
|
|
87459
|
+
return {
|
|
87460
|
+
type: 'Literal',
|
|
87461
|
+
regex: { pattern: val.source, flags: val.flags }
|
|
87462
|
+
};
|
|
87463
|
+
}
|
|
87464
|
+
if (typeof Buffer !== 'undefined' && Buffer.isBuffer(val)) {
|
|
87465
|
+
return methodCall(identifier('Buffer'), 'from', [processNumberArray(val)]);
|
|
87466
|
+
}
|
|
87467
|
+
if (isTypedArray(val)) {
|
|
87468
|
+
return {
|
|
87469
|
+
type: 'NewExpression',
|
|
87470
|
+
callee: identifier(val.constructor.name),
|
|
87471
|
+
arguments: [processNumberArray(val)]
|
|
87472
|
+
};
|
|
87473
|
+
}
|
|
87474
|
+
if (isStringReconstructable(val)) {
|
|
87475
|
+
return {
|
|
87476
|
+
type: 'NewExpression',
|
|
87477
|
+
callee: identifier(val.constructor.name),
|
|
87478
|
+
arguments: [estree_util_value_to_estree_literal(String(val))]
|
|
87479
|
+
};
|
|
87480
|
+
}
|
|
87481
|
+
if (Array.isArray(val)) {
|
|
87482
|
+
const elements = Array.from({ length: val.length });
|
|
87483
|
+
let trimmable;
|
|
87484
|
+
for (let index = 0; index < val.length; index += 1) {
|
|
87485
|
+
if (!(index in val)) {
|
|
87486
|
+
elements[index] = null;
|
|
87487
|
+
trimmable = undefined;
|
|
87488
|
+
continue;
|
|
87489
|
+
}
|
|
87490
|
+
const child = val[index];
|
|
87491
|
+
const childContext = collectedContexts.get(child);
|
|
87492
|
+
if (context &&
|
|
87493
|
+
childContext &&
|
|
87494
|
+
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
87495
|
+
elements[index] = null;
|
|
87496
|
+
trimmable ||= index;
|
|
87497
|
+
childContext.assignment = {
|
|
87498
|
+
type: 'AssignmentExpression',
|
|
87499
|
+
operator: '=',
|
|
87500
|
+
left: {
|
|
87501
|
+
type: 'MemberExpression',
|
|
87502
|
+
computed: true,
|
|
87503
|
+
optional: false,
|
|
87504
|
+
object: identifier(context.name),
|
|
87505
|
+
property: estree_util_value_to_estree_literal(index)
|
|
87506
|
+
},
|
|
87507
|
+
right: childContext.assignment || identifier(childContext.name)
|
|
87508
|
+
};
|
|
87509
|
+
}
|
|
87510
|
+
else {
|
|
87511
|
+
elements[index] = generate(child);
|
|
87512
|
+
trimmable = undefined;
|
|
87513
|
+
}
|
|
87514
|
+
}
|
|
87515
|
+
if (trimmable != null) {
|
|
87516
|
+
elements.splice(trimmable);
|
|
87517
|
+
}
|
|
87518
|
+
return {
|
|
87519
|
+
type: 'ArrayExpression',
|
|
87520
|
+
elements
|
|
87521
|
+
};
|
|
87522
|
+
}
|
|
87523
|
+
if (val instanceof Set) {
|
|
87524
|
+
const elements = [];
|
|
87525
|
+
let finalizer;
|
|
87526
|
+
for (const child of val) {
|
|
87527
|
+
if (finalizer) {
|
|
87528
|
+
finalizer = methodCall(finalizer, 'add', [generate(child)]);
|
|
87529
|
+
}
|
|
87530
|
+
else {
|
|
87531
|
+
const childContext = collectedContexts.get(child);
|
|
87532
|
+
if (context &&
|
|
87533
|
+
childContext &&
|
|
87534
|
+
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
87535
|
+
finalizer = methodCall(identifier(context.name), 'add', [generate(child)]);
|
|
87536
|
+
}
|
|
87537
|
+
else {
|
|
87538
|
+
elements.push(generate(child));
|
|
87539
|
+
}
|
|
87540
|
+
}
|
|
87541
|
+
}
|
|
87542
|
+
if (context && finalizer) {
|
|
87543
|
+
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
87544
|
+
}
|
|
87545
|
+
return {
|
|
87546
|
+
type: 'NewExpression',
|
|
87547
|
+
callee: identifier('Set'),
|
|
87548
|
+
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
87549
|
+
};
|
|
87550
|
+
}
|
|
87551
|
+
if (val instanceof Map) {
|
|
87552
|
+
const elements = [];
|
|
87553
|
+
let finalizer;
|
|
87554
|
+
for (const [key, item] of val) {
|
|
87555
|
+
if (finalizer) {
|
|
87556
|
+
finalizer = methodCall(finalizer, 'set', [generate(key), generate(item)]);
|
|
87557
|
+
}
|
|
87558
|
+
else {
|
|
87559
|
+
const keyContext = collectedContexts.get(key);
|
|
87560
|
+
const itemContext = collectedContexts.get(item);
|
|
87561
|
+
if (context &&
|
|
87562
|
+
((keyContext && namedContexts.indexOf(keyContext) >= namedContexts.indexOf(context)) ||
|
|
87563
|
+
(itemContext && namedContexts.indexOf(itemContext) >= namedContexts.indexOf(context)))) {
|
|
87564
|
+
finalizer = methodCall(identifier(context.name), 'set', [
|
|
87565
|
+
generate(key),
|
|
87566
|
+
generate(item)
|
|
87567
|
+
]);
|
|
87568
|
+
}
|
|
87569
|
+
else {
|
|
87570
|
+
elements.push({
|
|
87571
|
+
type: 'ArrayExpression',
|
|
87572
|
+
elements: [generate(key), generate(item)]
|
|
87573
|
+
});
|
|
87574
|
+
}
|
|
87575
|
+
}
|
|
87576
|
+
}
|
|
87577
|
+
if (context && finalizer) {
|
|
87578
|
+
context.assignment = replaceAssignment(finalizer, context.assignment);
|
|
87579
|
+
}
|
|
87580
|
+
return {
|
|
87581
|
+
type: 'NewExpression',
|
|
87582
|
+
callee: identifier('Map'),
|
|
87583
|
+
arguments: elements.length ? [{ type: 'ArrayExpression', elements }] : []
|
|
87584
|
+
};
|
|
87585
|
+
}
|
|
87586
|
+
const properties = [];
|
|
87587
|
+
if (Object.getPrototypeOf(val) == null) {
|
|
87588
|
+
properties.push(property('__proto__', estree_util_value_to_estree_literal(null)));
|
|
87589
|
+
}
|
|
87590
|
+
const object = val;
|
|
87591
|
+
const propertyDescriptors = [];
|
|
87592
|
+
for (const key of Reflect.ownKeys(val)) {
|
|
87593
|
+
// TODO [>=4] Throw an error for getters.
|
|
87594
|
+
const child = object[key];
|
|
87595
|
+
const { configurable, enumerable, writable } = Object.getOwnPropertyDescriptor(val, key);
|
|
87596
|
+
const childContext = collectedContexts.get(child);
|
|
87597
|
+
if (!configurable || !enumerable || !writable) {
|
|
87598
|
+
const propertyDescriptor = [property('value', generate(child))];
|
|
87599
|
+
if (configurable) {
|
|
87600
|
+
propertyDescriptor.push(property('configurable', estree_util_value_to_estree_literal(true)));
|
|
87601
|
+
}
|
|
87602
|
+
if (enumerable) {
|
|
87603
|
+
propertyDescriptor.push(property('enumerable', estree_util_value_to_estree_literal(true)));
|
|
87604
|
+
}
|
|
87605
|
+
if (writable) {
|
|
87606
|
+
propertyDescriptor.push(property('writable', estree_util_value_to_estree_literal(true)));
|
|
87607
|
+
}
|
|
87608
|
+
propertyDescriptors.push(property(key, {
|
|
87609
|
+
type: 'ObjectExpression',
|
|
87610
|
+
properties: propertyDescriptor
|
|
87611
|
+
}));
|
|
87612
|
+
}
|
|
87613
|
+
else if (context &&
|
|
87614
|
+
childContext &&
|
|
87615
|
+
namedContexts.indexOf(childContext) >= namedContexts.indexOf(context)) {
|
|
87616
|
+
childContext.assignment = {
|
|
87617
|
+
type: 'AssignmentExpression',
|
|
87618
|
+
operator: '=',
|
|
87619
|
+
left: {
|
|
87620
|
+
type: 'MemberExpression',
|
|
87621
|
+
computed: true,
|
|
87622
|
+
optional: false,
|
|
87623
|
+
object: identifier(context.name),
|
|
87624
|
+
property: generate(key)
|
|
87625
|
+
},
|
|
87626
|
+
right: childContext.assignment || generate(child)
|
|
87627
|
+
};
|
|
87628
|
+
}
|
|
87629
|
+
else {
|
|
87630
|
+
properties.push(property(key, generate(child)));
|
|
87631
|
+
}
|
|
87632
|
+
}
|
|
87633
|
+
const objectExpression = {
|
|
87634
|
+
type: 'ObjectExpression',
|
|
87635
|
+
properties
|
|
87636
|
+
};
|
|
87637
|
+
if (propertyDescriptors.length) {
|
|
87638
|
+
if (!context) {
|
|
87639
|
+
return methodCall(identifier('Object'), 'defineProperties', [
|
|
87640
|
+
objectExpression,
|
|
87641
|
+
{
|
|
87642
|
+
type: 'ObjectExpression',
|
|
87643
|
+
properties: propertyDescriptors
|
|
87644
|
+
}
|
|
87645
|
+
]);
|
|
87646
|
+
}
|
|
87647
|
+
context.assignment = replaceAssignment(methodCall(identifier('Object'), 'defineProperties', [
|
|
87648
|
+
identifier(context.name),
|
|
87649
|
+
{
|
|
87650
|
+
type: 'ObjectExpression',
|
|
87651
|
+
properties: propertyDescriptors
|
|
87652
|
+
}
|
|
87653
|
+
]), context.assignment);
|
|
87654
|
+
}
|
|
87655
|
+
return objectExpression;
|
|
87656
|
+
}
|
|
87657
|
+
analyze(value);
|
|
87658
|
+
for (const [val, context] of collectedContexts) {
|
|
87659
|
+
if (context.recursive || context.count > 1) {
|
|
87660
|
+
// Assign reused or recursive references to a variable.
|
|
87661
|
+
context.name = `$${namedContexts.length}`;
|
|
87662
|
+
namedContexts.push(context);
|
|
87663
|
+
}
|
|
87664
|
+
else {
|
|
87665
|
+
// Otherwise don’t treat it as a reference.
|
|
87666
|
+
collectedContexts.delete(val);
|
|
87676
87667
|
}
|
|
87677
|
-
super(messages.join('\n'));
|
|
87678
|
-
this.original = error;
|
|
87679
|
-
this.name = 'MdxSyntaxError';
|
|
87680
87668
|
}
|
|
87669
|
+
if (!namedContexts.length) {
|
|
87670
|
+
return generate(value);
|
|
87671
|
+
}
|
|
87672
|
+
const declarations = namedContexts.sort(compareContexts).map((context) => ({
|
|
87673
|
+
type: 'VariableDeclarator',
|
|
87674
|
+
id: identifier(context.name),
|
|
87675
|
+
init: generate(context.value, true)
|
|
87676
|
+
}));
|
|
87677
|
+
const rootContext = collectedContexts.get(value);
|
|
87678
|
+
const finalizers = [];
|
|
87679
|
+
for (const context of collectedContexts.values()) {
|
|
87680
|
+
if (context !== rootContext && context.assignment) {
|
|
87681
|
+
finalizers.push(context.assignment);
|
|
87682
|
+
}
|
|
87683
|
+
}
|
|
87684
|
+
finalizers.push(rootContext ? rootContext.assignment || identifier(rootContext.name) : generate(value));
|
|
87685
|
+
return {
|
|
87686
|
+
type: 'CallExpression',
|
|
87687
|
+
optional: false,
|
|
87688
|
+
arguments: [],
|
|
87689
|
+
callee: {
|
|
87690
|
+
type: 'ArrowFunctionExpression',
|
|
87691
|
+
expression: false,
|
|
87692
|
+
params: [],
|
|
87693
|
+
body: {
|
|
87694
|
+
type: 'BlockStatement',
|
|
87695
|
+
body: [
|
|
87696
|
+
{
|
|
87697
|
+
type: 'VariableDeclaration',
|
|
87698
|
+
kind: 'const',
|
|
87699
|
+
declarations
|
|
87700
|
+
},
|
|
87701
|
+
{
|
|
87702
|
+
type: 'ReturnStatement',
|
|
87703
|
+
argument: {
|
|
87704
|
+
type: 'SequenceExpression',
|
|
87705
|
+
expressions: finalizers
|
|
87706
|
+
}
|
|
87707
|
+
}
|
|
87708
|
+
]
|
|
87709
|
+
}
|
|
87710
|
+
}
|
|
87711
|
+
};
|
|
87681
87712
|
}
|
|
87682
|
-
|
|
87713
|
+
//# sourceMappingURL=estree-util-value-to-estree.js.map
|
|
87683
87714
|
;// ./node_modules/hast-util-parse-selector/lib/index.js
|
|
87684
87715
|
/**
|
|
87685
87716
|
* @typedef {import('hast').Element} Element
|
|
@@ -88297,7 +88328,7 @@ const tocHastToMdx = (toc, components) => {
|
|
|
88297
88328
|
|
|
88298
88329
|
|
|
88299
88330
|
const { codeTabsTransformer: compile_codeTabsTransformer, ...transforms } = defaultTransforms;
|
|
88300
|
-
const compile_compile = async (text, { components = {}, copyButtons, useTailwind,
|
|
88331
|
+
const compile_compile = async (text, { components = {}, copyButtons, useTailwind, ...opts } = {}) => {
|
|
88301
88332
|
const remarkPlugins = [
|
|
88302
88333
|
remarkFrontmatter,
|
|
88303
88334
|
remarkGfm,
|
|
@@ -88305,7 +88336,7 @@ const compile_compile = async (text, { components = {}, copyButtons, useTailwind
|
|
|
88305
88336
|
[compile_codeTabsTransformer, { copyButtons }],
|
|
88306
88337
|
];
|
|
88307
88338
|
if (useTailwind) {
|
|
88308
|
-
remarkPlugins.push([transform_tailwind, { components
|
|
88339
|
+
remarkPlugins.push([transform_tailwind, { components }]);
|
|
88309
88340
|
}
|
|
88310
88341
|
try {
|
|
88311
88342
|
const vfile = await compile(text, {
|
|
@@ -91753,7 +91784,7 @@ function q_q(state, node) {
|
|
|
91753
91784
|
* @returns {MdastRoot}
|
|
91754
91785
|
* mdast node.
|
|
91755
91786
|
*/
|
|
91756
|
-
function
|
|
91787
|
+
function hast_util_to_mdast_lib_handlers_root_root(state, node) {
|
|
91757
91788
|
let children = state.all(node)
|
|
91758
91789
|
|
|
91759
91790
|
if (state.options.document || wrapNeeded(children)) {
|
|
@@ -92253,7 +92284,7 @@ function wbr(state, node) {
|
|
|
92253
92284
|
const nodeHandlers = {
|
|
92254
92285
|
comment: handlers_comment_comment,
|
|
92255
92286
|
doctype: lib_handlers_ignore,
|
|
92256
|
-
root:
|
|
92287
|
+
root: hast_util_to_mdast_lib_handlers_root_root,
|
|
92257
92288
|
text: hast_util_to_mdast_lib_handlers_text_text
|
|
92258
92289
|
}
|
|
92259
92290
|
|
|
@@ -93447,7 +93478,7 @@ const run_run = async (string, _opts = {}) => {
|
|
|
93447
93478
|
const tocsByTag = {};
|
|
93448
93479
|
const exportedComponents = Object.entries(components).reduce((memo, [tag, mod]) => {
|
|
93449
93480
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
93450
|
-
const { default: Content, toc, Toc,
|
|
93481
|
+
const { default: Content, toc, Toc, ...rest } = mod;
|
|
93451
93482
|
memo[tag] = Content;
|
|
93452
93483
|
tocsByTag[tag] = toc;
|
|
93453
93484
|
if (rest) {
|
|
@@ -93478,7 +93509,6 @@ const run_run = async (string, _opts = {}) => {
|
|
|
93478
93509
|
}
|
|
93479
93510
|
return {
|
|
93480
93511
|
default: props => (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(contexts, { baseUrl: baseUrl, terms: terms, variables: variables },
|
|
93481
|
-
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(components_Style, { stylesheet: stylesheet }),
|
|
93482
93512
|
external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(Content, { ...props }))),
|
|
93483
93513
|
toc,
|
|
93484
93514
|
Toc: props => Toc ? (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(components_TableOfContents, null,
|
|
@@ -93532,6 +93562,7 @@ const utils = {
|
|
|
93532
93562
|
|
|
93533
93563
|
|
|
93534
93564
|
|
|
93565
|
+
|
|
93535
93566
|
})();
|
|
93536
93567
|
|
|
93537
93568
|
module.exports = __webpack_exports__;
|