@mintlify/components 0.3.3 → 0.3.4
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/README.md +55 -15
- package/dist/Code/CodeBlock.d.ts +11 -3
- package/dist/Code/CodeGroup.d.ts +11 -3
- package/dist/Code/CopyToClipboardButton.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/main.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,50 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Mintlify
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<a href="https://mintlify.com">
|
|
3
|
+
<img
|
|
4
|
+
src="https://res.cloudinary.com/mintlify/image/upload/v1665385627/logo-rounded_zuk7q1.svg"
|
|
5
|
+
alt="Mintlify Logo"
|
|
6
|
+
height="64"
|
|
7
|
+
/>
|
|
8
|
+
</a>
|
|
9
|
+
<br />
|
|
10
|
+
<p>
|
|
11
|
+
<h3>
|
|
12
|
+
<b>
|
|
13
|
+
Mintlify Components
|
|
14
|
+
</b>
|
|
15
|
+
</h3>
|
|
16
|
+
</p>
|
|
17
|
+
<p>
|
|
18
|
+
<b>
|
|
19
|
+
Open-source library of UI components made with React and TailwindCSS.
|
|
20
|
+
</b>
|
|
21
|
+
</p>
|
|
22
|
+
<p>
|
|
23
|
+
|
|
24
|
+
[](/) [](https://mintlify.com)
|
|
25
|
+
|
|
26
|
+
</p>
|
|
27
|
+
<p>
|
|
28
|
+
<sub>
|
|
29
|
+
Built with 💚 by
|
|
30
|
+
<a href="https://mintlify.com">
|
|
31
|
+
Mintlify
|
|
32
|
+
</a>
|
|
33
|
+
</sub>
|
|
34
|
+
</p>
|
|
35
|
+
<br />
|
|
36
|
+
<p>
|
|
37
|
+
<a href="https://mintlify.com" target="_blank">
|
|
38
|
+
<img
|
|
39
|
+
src="https://mintlify-assets.b-cdn.net/website/mintlify-preview.png"
|
|
40
|
+
alt="Mintlify"
|
|
41
|
+
width="100%"
|
|
42
|
+
/>
|
|
43
|
+
</a>
|
|
44
|
+
</p>
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
This repo contains the components Mintlify uses in our open-source documentation framework: [mint](https://github.com/mintlify/mint). Checkout [mintlify.com/docs](https://mintlify.com/docs) to see the components in action. Feel free to use the components on your own websites!
|
|
10
48
|
|
|
11
49
|
## Installation
|
|
12
50
|
|
|
@@ -22,17 +60,21 @@ Import components like so:
|
|
|
22
60
|
|
|
23
61
|
`import { Accordion, Card } from "@mintlify/components"`
|
|
24
62
|
|
|
63
|
+
## Designed for Next.js
|
|
64
|
+
|
|
65
|
+
The project is designed for use with static side rendering where we don't have access to `document` or `window`. Thus, our webpack config has to use `mini-css-extract-plugin` instead of `style-loader`.
|
|
66
|
+
|
|
25
67
|
# Documentation
|
|
26
68
|
|
|
27
|
-
[
|
|
69
|
+
The [repo wiki](https://github.com/mintlify/components/wiki) explains how to contribute to the repo.
|
|
28
70
|
|
|
29
|
-
|
|
71
|
+
[Storybook](https://main--63134bd5ae01f2a7717a0e47.chromatic.com/) has interactive demos.
|
|
30
72
|
|
|
31
|
-
Go to [
|
|
73
|
+
Go to [mintlify.com/docs/components](https://mintlify.com/docs/components) for how to use the components in Mintlify's documentation platform.
|
|
32
74
|
|
|
33
75
|
# Long Term Vision
|
|
34
76
|
|
|
35
|
-
The first version of this library only
|
|
77
|
+
The first version of this library only includes documentation components. In the long run, Mintlify will include layout components you could use to build an entire site.
|
|
36
78
|
|
|
37
79
|
## Community
|
|
38
80
|
|
|
@@ -43,5 +85,3 @@ Join our Discord community if you have questions or just want to chat:
|
|
|
43
85
|
# License
|
|
44
86
|
|
|
45
87
|
[MIT](https://tldrlegal.com/license/mit-license)
|
|
46
|
-
|
|
47
|
-
_Built with 💚 by the Mintlify team._
|
package/dist/Code/CodeBlock.d.ts
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare function CodeBlock({ filename, filenameColor, copiedTooltipColor, children, }: {
|
|
2
|
+
export declare function CodeBlock({ filename, filenameColor, tooltipColor, copiedTooltipColor, children, }: {
|
|
3
3
|
filename?: string;
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Color of the filename text and the border underneath it when content is being shown.
|
|
6
|
+
*/
|
|
5
7
|
filenameColor?: string;
|
|
6
|
-
/**
|
|
8
|
+
/**
|
|
9
|
+
* Background color for the tooltip saying `Click to Copy` when hovering the clipboard button.
|
|
10
|
+
*/
|
|
11
|
+
tooltipColor?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Background color for the tooltip saying `Copied` when clicking the clipboard button.
|
|
14
|
+
*/
|
|
7
15
|
copiedTooltipColor?: string;
|
|
8
16
|
children?: any;
|
|
9
17
|
}): JSX.Element;
|
package/dist/Code/CodeGroup.d.ts
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export type CodeGroupProps = {
|
|
3
3
|
children: any;
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Color of the filename text and the border underneath it when the content is being shown
|
|
6
|
+
*/
|
|
5
7
|
selectedColor?: string;
|
|
6
|
-
/**
|
|
8
|
+
/**
|
|
9
|
+
* Background color for the tooltip saying `Click to Copy` when hovering the clipboard button.
|
|
10
|
+
*/
|
|
11
|
+
tooltipColor?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Background color for the tooltip saying `Copied` when clicking the clipboard button.
|
|
14
|
+
*/
|
|
7
15
|
copiedTooltipColor?: string;
|
|
8
16
|
isSmallText?: boolean;
|
|
9
17
|
};
|
|
@@ -14,4 +22,4 @@ export type CodeGroupProps = {
|
|
|
14
22
|
*
|
|
15
23
|
* @param {CodeBlock[]} props.children
|
|
16
24
|
*/
|
|
17
|
-
export declare function CodeGroup({ children, selectedColor, copiedTooltipColor, isSmallText, }: CodeGroupProps): JSX.Element | null;
|
|
25
|
+
export declare function CodeGroup({ children, selectedColor, tooltipColor, copiedTooltipColor, isSmallText, }: CodeGroupProps): JSX.Element | null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare function CopyToClipboardButton({ textToCopy, copiedTooltipColor, }: {
|
|
2
|
+
export declare function CopyToClipboardButton({ textToCopy, tooltipColor, copiedTooltipColor, }: {
|
|
3
3
|
textToCopy: string;
|
|
4
|
+
tooltipColor?: string;
|
|
4
5
|
copiedTooltipColor?: string;
|
|
5
6
|
}): JSX.Element | null;
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see index.js.LICENSE.txt */
|
|
2
|
-
(()=>{var e={8:(e,t,r)=>{var n,a="__lodash_hash_undefined__",o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,l=/^\w*$/,s=/^\./,i=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,u=/\\(\\)?/g,c=/^\[object .+?Constructor\]$/,d=/^(?:0|[1-9]\d*)$/,f="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,p="object"==typeof self&&self&&self.Object===Object&&self,v=f||p||Function("return this")(),h=Array.prototype,m=Function.prototype,b=Object.prototype,x=v["__core-js_shared__"],g=(n=/[^.]+$/.exec(x&&x.keys&&x.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",y=m.toString,w=b.hasOwnProperty,j=b.toString,k=RegExp("^"+y.call(w).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),C=v.Symbol,N=h.splice,O=_(v,"Map"),P=_(Object,"create"),T=C?C.prototype:void 0,E=T?T.toString:void 0;function S(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function I(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function L(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function A(e,t,r){var n=e[t];w.call(e,t)&&V(n,r)&&(void 0!==r||t in e)||(e[t]=r)}function R(e,t){for(var r=e.length;r--;)if(V(e[r][0],t))return r;return-1}function M(e,t){var r,n,a=e.__data__;return("string"==(n=typeof(r=t))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?a["string"==typeof t?"string":"hash"]:a.map}function _(e,t){var r=function(e,t){return null==e?void 0:e[t]}(e,t);return function(e){if(!B(e)||g&&g in e)return!1;var t=function(e){var t=B(e)?j.call(e):"";return"[object Function]"==t||"[object GeneratorFunction]"==t}(e)||function(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}(e)?k:c;return t.test(function(e){if(null!=e){try{return y.call(e)}catch(e){}try{return e+""}catch(e){}}return""}(e))}(r)?r:void 0}function F(e,t){return!!(t=null==t?9007199254740991:t)&&("number"==typeof e||d.test(e))&&e>-1&&e%1==0&&e<t}S.prototype.clear=function(){this.__data__=P?P(null):{}},S.prototype.delete=function(e){return this.has(e)&&delete this.__data__[e]},S.prototype.get=function(e){var t=this.__data__;if(P){var r=t[e];return r===a?void 0:r}return w.call(t,e)?t[e]:void 0},S.prototype.has=function(e){var t=this.__data__;return P?void 0!==t[e]:w.call(t,e)},S.prototype.set=function(e,t){return this.__data__[e]=P&&void 0===t?a:t,this},I.prototype.clear=function(){this.__data__=[]},I.prototype.delete=function(e){var t=this.__data__,r=R(t,e);return!(r<0||(r==t.length-1?t.pop():N.call(t,r,1),0))},I.prototype.get=function(e){var t=this.__data__,r=R(t,e);return r<0?void 0:t[r][1]},I.prototype.has=function(e){return R(this.__data__,e)>-1},I.prototype.set=function(e,t){var r=this.__data__,n=R(r,e);return n<0?r.push([e,t]):r[n][1]=t,this},L.prototype.clear=function(){this.__data__={hash:new S,map:new(O||I),string:new S}},L.prototype.delete=function(e){return M(this,e).delete(e)},L.prototype.get=function(e){return M(this,e).get(e)},L.prototype.has=function(e){return M(this,e).has(e)},L.prototype.set=function(e,t){return M(this,e).set(e,t),this};var H=z((function(e){var t;e=null==(t=e)?"":function(e){if("string"==typeof e)return e;if($(e))return E?E.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(t);var r=[];return s.test(e)&&r.push(""),e.replace(i,(function(e,t,n,a){r.push(n?a.replace(u,"$1"):t||e)})),r}));function D(e){if("string"==typeof e||$(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function z(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError("Expected a function");var r=function(){var n=arguments,a=t?t.apply(this,n):n[0],o=r.cache;if(o.has(a))return o.get(a);var l=e.apply(this,n);return r.cache=o.set(a,l),l};return r.cache=new(z.Cache||L),r}function V(e,t){return e===t||e!=e&&t!=t}z.Cache=L;var U=Array.isArray;function B(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function $(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==j.call(e)}e.exports=function(e,t,r){return null==e?e:function(e,t,r,n){if(!B(e))return e;t=function(e,t){if(U(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!$(e))||l.test(e)||!o.test(e)||null!=t&&e in Object(t)}(t,e)?[t]:function(e){return U(e)?e:H(e)}(t);for(var a=-1,s=t.length,i=s-1,u=e;null!=u&&++a<s;){var c=D(t[a]),d=r;if(a!=i){var f=u[c];void 0===(d=n?n(f,c,u):void 0)&&(d=B(f)?f:F(t[a+1])?[]:{})}A(u,c,d),u=u[c]}return e}(e,t,r)}},455:(e,t,r)=>{"use strict";var n=r(258),a=Symbol.for("react.element"),o=Symbol.for("react.fragment"),l=Object.prototype.hasOwnProperty,s=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,i={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,r){var n,o={},u=null,c=null;for(n in void 0!==r&&(u=""+r),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(c=t.ref),t)l.call(t,n)&&!i.hasOwnProperty(n)&&(o[n]=t[n]);if(e&&e.defaultProps)for(n in t=e.defaultProps)void 0===o[n]&&(o[n]=t[n]);return{$$typeof:a,type:e,key:u,ref:c,props:o,_owner:s.current}}t.Fragment=o,t.jsx=u,t.jsxs=u},557:(e,t,r)=>{"use strict";e.exports=r(455)},258:e=>{"use strict";e.exports=require("react")}},t={};function r(n){var a=t[n];if(void 0!==a)return a.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,r),o.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};(()=>{"use strict";r.r(n),r.d(n,{Accordion:()=>f,AccordionGroup:()=>v,ApiPlayground:()=>Ce,AppearFromTop:()=>le,Button:()=>Re,Card:()=>He,CardGroup:()=>ze,Check:()=>qt,CodeBlock:()=>Qe,CodeGroup:()=>Ft,Expandable:()=>Er,Frame:()=>Qt,Info:()=>Ut,Note:()=>$t,Param:()=>Xt,PillSelect:()=>yr,RequestMethodBubble:()=>Oe,RequestPathHeader:()=>Se,Tab:()=>jr,Tabs:()=>Cr,Tip:()=>Gt,Tooltip:()=>Or,Warning:()=>Bt});var e=r(557),t=r(258);function a(e){var t,r,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(r=a(e[t]))&&(n&&(n+=" "),n+=r);else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}const o=function(){for(var e,t,r=0,n="";r<arguments.length;)(e=arguments[r++])&&(t=a(e))&&(n&&(n+=" "),n+=t);return n};var l=function(){return l=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},l.apply(this,arguments)};function s(t){var r=t.open;return(0,e.jsx)("svg",l({xmlns:"http://www.w3.org/2000/svg",className:o("h-3 w-3 transition",r&&"duration-200 rotate-90 -mt-1",!r&&"duration-75"),viewBox:"0 0 256 512",fill:"currentColor"},{children:(0,e.jsx)("path",{d:"M118.6 105.4l128 127.1C252.9 239.6 256 247.8 256 255.1s-3.125 16.38-9.375 22.63l-128 127.1c-9.156 9.156-22.91 11.9-34.88 6.943S64 396.9 64 383.1V128c0-12.94 7.781-24.62 19.75-29.58S109.5 96.23 118.6 105.4z"})}))}const i=function(t){var r=t.title,n=t.description,a=t.open,o=t.setOpen;return(0,e.jsxs)("button",l({onClick:function(){return o(!a)},className:"not-prose mt-1.5 flex flex-row items-center content-center w-full py-1 text-slate-700 hover:text-slate-900 dark:text-slate-400 dark:hover:text-slate-200 ".concat(a?"":"rounded-b-xl"),"aria-controls":r+"Children","aria-expanded":a},{children:[(0,e.jsx)(s,{open:a}),(0,e.jsxs)("div",l({className:"ml-2 leading-tight text-left"},{children:[(0,e.jsxs)("p",l({className:"m-0"},{children:[a?"Hide":"Show"," ",r]})),n?(0,e.jsx)("p",l({className:"m-0"},{children:n})):null]}))]}))};var u=function(){return u=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},u.apply(this,arguments)};const c=function(t){var r=t.title,n=t.description,a=t.open,l=t.setOpen,i=t.icon,c=t.coverClass;return(0,e.jsxs)("button",u({onClick:function(){return l(!a)},className:o("not-prose flex flex-row items-center content-center w-full",c),"aria-controls":r+"Children","aria-expanded":a},{children:[(0,e.jsx)("div",u({className:"mr-0.5"},{children:(0,e.jsx)(s,{open:a})})),i?(0,e.jsx)("div",u({className:"h-4 w-4 fill-slate-800 dark:fill-slate-100 text-slate-800 dark:text-slate-100"},{children:i})):null,(0,e.jsxs)("div",u({className:"leading-tight text-left"},{children:[(0,e.jsx)("p",u({className:"m-0 font-medium text-slate-900 dark:text-slate-200"},{children:r})),n?(0,e.jsx)("p",u({className:"m-0 text-slate-900 dark:text-slate-200"},{children:n})):null]}))]}))};var d=function(){return d=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},d.apply(this,arguments)};const f=function(r){var n=r.title,a=r.description,l=r.defaultOpen,s=void 0!==l&&l,i=r.icon,u=r.onChange,f=r.variant,p=void 0===f?"rounded":f,v=r.children,h=(0,t.useState)(Boolean(s)),m=h[0],b=h[1],x=function(e){return"minimalist"===e?{parentClass:"",coverClass:"[&>div]:ml-2 py-1 text-slate-700 hover:text-slate-900 dark:text-slate-400 dark:hover:text-slate-200",contentClass:"mt-2 pt-1 mb-4 mx-[7px] px-4 border-l border-slate-100 dark:border-slate-800"}:{parentClass:"border dark:border-slate-800 rounded-xl mb-3 overflow-hidden",coverClass:"py-4 px-5 space-x-2 hover:bg-slate-100 hover:dark:bg-slate-800 rounded-t-xl",contentClass:"mt-2 mb-4 mx-6"}}(p),g=x.parentClass,y=x.coverClass,w=x.contentClass;return(0,e.jsxs)("div",d({role:"listitem",className:g},{children:[(0,e.jsx)(c,{title:n,description:a,open:m,setOpen:function(e){b(e),u&&u(e)},icon:i,coverClass:y}),(0,e.jsx)("div",d({className:o(w,!m&&"hidden")},{children:v}))]}),n)};var p=function(){return p=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},p.apply(this,arguments)};const v=function(t){var r=t.children;return(0,e.jsx)("div",p({className:"[&>div]:border-0 [&>div]:rounded-none [&>div>button]:rounded-none [&>div]:mb-0 overflow-hidden mt-0 mb-3 rounded-xl prose prose-slate dark:prose-dark divide-y divide-inherit border dark:border-slate-800",role:"list"},{children:r}))};function h(e,t,...r){if(e in t){let n=t[e];return"function"==typeof n?n(...r):n}let n=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map((e=>`"${e}"`)).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(n,h),n}var m,b=((m=b||{})[m.None=0]="None",m[m.RenderStrategy=1]="RenderStrategy",m[m.Static=2]="Static",m),x=(e=>(e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden",e))(x||{});function g({ourProps:e,theirProps:t,slot:r,defaultTag:n,features:a,visible:o=!0,name:l}){let s=w(t,e);if(o)return y(s,r,n,l);let i=null!=a?a:0;if(2&i){let{static:e=!1,...t}=s;if(e)return y(t,r,n,l)}if(1&i){let{unmount:e=!0,...t}=s;return h(e?0:1,{0:()=>null,1:()=>y({...t,hidden:!0,style:{display:"none"}},r,n,l)})}return y(s,r,n,l)}function y(e,r={},n,a){let{as:o=n,children:l,refName:s="ref",...i}=C(e,["unmount","static"]),u=void 0!==e.ref?{[s]:e.ref}:{},c="function"==typeof l?l(r):l;i.className&&"function"==typeof i.className&&(i.className=i.className(r));let d={};if(r){let e=!1,t=[];for(let[n,a]of Object.entries(r))"boolean"==typeof a&&(e=!0),!0===a&&t.push(n);e&&(d["data-headlessui-state"]=t.join(" "))}if(o===t.Fragment&&Object.keys(k(i)).length>0){if(!(0,t.isValidElement)(c)||Array.isArray(c)&&c.length>1)throw new Error(['Passing props on "Fragment"!',"",`The current component <${a} /> is rendering a "Fragment".`,"However we need to passthrough the following props:",Object.keys(i).map((e=>` - ${e}`)).join("\n"),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".',"Render a single element as the child so that we can forward the props onto that element."].map((e=>` - ${e}`)).join("\n")].join("\n"));return(0,t.cloneElement)(c,Object.assign({},w(c.props,k(C(i,["ref"]))),d,u,function(...e){return{ref:e.every((e=>null==e))?void 0:t=>{for(let r of e)null!=r&&("function"==typeof r?r(t):r.current=t)}}}(c.ref,u.ref)))}return(0,t.createElement)(o,Object.assign({},C(i,["ref"]),o!==t.Fragment&&u,o!==t.Fragment&&d),c)}function w(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},r={};for(let n of e)for(let e in n)e.startsWith("on")&&"function"==typeof n[e]?(null!=r[e]||(r[e]=[]),r[e].push(n[e])):t[e]=n[e];if(t.disabled||t["aria-disabled"])return Object.assign(t,Object.fromEntries(Object.keys(r).map((e=>[e,void 0]))));for(let e in r)Object.assign(t,{[e](t,...n){let a=r[e];for(let e of a){if((t instanceof Event||(null==t?void 0:t.nativeEvent)instanceof Event)&&t.defaultPrevented)return;e(t,...n)}}});return t}function j(e){var r;return Object.assign((0,t.forwardRef)(e),{displayName:null!=(r=e.displayName)?r:e.name})}function k(e){let t=Object.assign({},e);for(let e in t)void 0===t[e]&&delete t[e];return t}function C(e,t=[]){let r=Object.assign({},e);for(let e of t)e in r&&delete r[e];return r}let N=(0,t.createContext)(null);N.displayName="OpenClosedContext";var O=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(O||{});function P(){return(0,t.useContext)(N)}function T({value:e,children:r}){return t.createElement(N.Provider,{value:e},r)}const E="undefined"==typeof window||"undefined"==typeof document;let S=E?t.useEffect:t.useLayoutEffect;function I(){let e=(0,t.useRef)(!1);return S((()=>(e.current=!0,()=>{e.current=!1})),[]),e}function L(e){let r=(0,t.useRef)(e);return S((()=>{r.current=e}),[e]),r}let A={serverHandoffComplete:!1};function R(){let[e,r]=(0,t.useState)(A.serverHandoffComplete);return(0,t.useEffect)((()=>{!0!==e&&r(!0)}),[e]),(0,t.useEffect)((()=>{!1===A.serverHandoffComplete&&(A.serverHandoffComplete=!0)}),[]),e}let M=function(e){let r=L(e);return t.useCallback(((...e)=>r.current(...e)),[r])},_=Symbol();function F(...e){let r=(0,t.useRef)(e);(0,t.useEffect)((()=>{r.current=e}),[e]);let n=M((e=>{for(let t of r.current)null!=t&&("function"==typeof t?t(e):t.current=e)}));return e.every((e=>null==e||(null==e?void 0:e[_])))?void 0:n}function H(e){"function"==typeof queueMicrotask?queueMicrotask(e):Promise.resolve().then(e).catch((e=>setTimeout((()=>{throw e}))))}function D(){let e=[],t=[],r={enqueue(e){t.push(e)},addEventListener:(e,t,n,a)=>(e.addEventListener(t,n,a),r.add((()=>e.removeEventListener(t,n,a)))),requestAnimationFrame(...e){let t=requestAnimationFrame(...e);return r.add((()=>cancelAnimationFrame(t)))},nextFrame:(...e)=>r.requestAnimationFrame((()=>r.requestAnimationFrame(...e))),setTimeout(...e){let t=setTimeout(...e);return r.add((()=>clearTimeout(t)))},microTask(...e){let t={current:!0};return H((()=>{t.current&&e[0]()})),r.add((()=>{t.current=!1}))},add:t=>(e.push(t),()=>{let r=e.indexOf(t);if(r>=0){let[t]=e.splice(r,1);t()}}),dispose(){for(let t of e.splice(0))t()},async workQueue(){for(let e of t.splice(0))await e()}};return r}function z(e,...t){e&&t.length>0&&e.classList.add(...t)}function V(e,...t){e&&t.length>0&&e.classList.remove(...t)}function U(){let[e]=(0,t.useState)(D);return(0,t.useEffect)((()=>()=>e.dispose()),[e]),e}function B({container:e,direction:t,classes:r,onStart:n,onStop:a}){let o=I(),l=U(),s=L(t);S((()=>{let t=D();l.add(t.dispose);let i=e.current;if(i&&"idle"!==s.current&&o.current)return t.dispose(),n.current(s.current),t.add(function(e,t,r,n){let a=r?"enter":"leave",o=D(),l=void 0!==n?function(e){let t={called:!1};return(...r)=>{if(!t.called)return t.called=!0,e(...r)}}(n):()=>{};"enter"===a&&(e.removeAttribute("hidden"),e.style.display="");let s=h(a,{enter:()=>t.enter,leave:()=>t.leave}),i=h(a,{enter:()=>t.enterTo,leave:()=>t.leaveTo}),u=h(a,{enter:()=>t.enterFrom,leave:()=>t.leaveFrom});return V(e,...t.enter,...t.enterTo,...t.enterFrom,...t.leave,...t.leaveFrom,...t.leaveTo,...t.entered),z(e,...s,...u),o.nextFrame((()=>{V(e,...u),z(e,...i),function(e,t){let r=D();if(!e)return r.dispose;let{transitionDuration:n,transitionDelay:a}=getComputedStyle(e),[o,l]=[n,a].map((e=>{let[t=0]=e.split(",").filter(Boolean).map((e=>e.includes("ms")?parseFloat(e):1e3*parseFloat(e))).sort(((e,t)=>t-e));return t}));if(o+l!==0){let n=r.addEventListener(e,"transitionend",(e=>{e.target===e.currentTarget&&(t(),n())}))}else t();r.add((()=>t())),r.dispose}(e,(()=>(V(e,...s),z(e,...t.entered),l())))})),o.dispose}(i,r.current,"enter"===s.current,(()=>{t.dispose(),a.current(s.current)}))),t.dispose}),[t])}function $(...e){return e.filter(Boolean).join(" ")}function G(e=""){return e.split(" ").filter((e=>e.trim().length>1))}let q=(0,t.createContext)(null);q.displayName="TransitionContext";var W=(e=>(e.Visible="visible",e.Hidden="hidden",e))(W||{});let Z=(0,t.createContext)(null);function Q(e){return"children"in e?Q(e.children):e.current.filter((({el:e})=>null!==e.current)).filter((({state:e})=>"visible"===e)).length>0}function K(e,r){let n=L(e),a=(0,t.useRef)([]),o=I(),l=U(),s=M(((e,t=x.Hidden)=>{let r=a.current.findIndex((({el:t})=>t===e));-1!==r&&(h(t,{[x.Unmount](){a.current.splice(r,1)},[x.Hidden](){a.current[r].state="hidden"}}),l.microTask((()=>{var e;!Q(a)&&o.current&&(null==(e=n.current)||e.call(n))})))})),i=M((e=>{let t=a.current.find((({el:t})=>t===e));return t?"visible"!==t.state&&(t.state="visible"):a.current.push({el:e,state:"visible"}),()=>s(e,x.Unmount)})),u=(0,t.useRef)([]),c=(0,t.useRef)(Promise.resolve()),d=(0,t.useRef)({enter:[],leave:[],idle:[]}),f=M(((e,t,n)=>{u.current.splice(0),r&&(r.chains.current[t]=r.chains.current[t].filter((([t])=>t!==e))),null==r||r.chains.current[t].push([e,new Promise((e=>{u.current.push(e)}))]),null==r||r.chains.current[t].push([e,new Promise((e=>{Promise.all(d.current[t].map((([e,t])=>t))).then((()=>e()))}))]),"enter"===t?c.current=c.current.then((()=>null==r?void 0:r.wait.current)).then((()=>n(t))):n(t)})),p=M(((e,t,r)=>{Promise.all(d.current[t].splice(0).map((([e,t])=>t))).then((()=>{var e;null==(e=u.current.shift())||e()})).then((()=>r(t)))}));return(0,t.useMemo)((()=>({children:a,register:i,unregister:s,onStart:f,onStop:p,wait:c,chains:d})),[i,s,a,f,p,d,c])}function X(){}Z.displayName="NestingContext";let Y=["beforeEnter","afterEnter","beforeLeave","afterLeave"];function J(e){var t;let r={};for(let n of Y)r[n]=null!=(t=e[n])?t:X;return r}let ee=b.RenderStrategy,te=j((function(e,r){let{beforeEnter:n,afterEnter:a,beforeLeave:o,afterLeave:l,enter:s,enterFrom:i,enterTo:u,entered:c,leave:d,leaveFrom:f,leaveTo:p,...v}=e,m=(0,t.useRef)(null),b=F(m,r),y=v.unmount?x.Unmount:x.Hidden,{show:w,appear:j,initial:k}=function(){let e=(0,t.useContext)(q);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),[C,N]=(0,t.useState)(w?"visible":"hidden"),P=function(){let e=(0,t.useContext)(Z);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),{register:E,unregister:S}=P,I=(0,t.useRef)(null);(0,t.useEffect)((()=>E(m)),[E,m]),(0,t.useEffect)((()=>{if(y===x.Hidden&&m.current)return w&&"visible"!==C?void N("visible"):h(C,{hidden:()=>S(m),visible:()=>E(m)})}),[C,m,E,S,w,y]);let A=L({enter:G(s),enterFrom:G(i),enterTo:G(u),entered:G(c),leave:G(d),leaveFrom:G(f),leaveTo:G(p)}),_=function(e){let r=(0,t.useRef)(J(e));return(0,t.useEffect)((()=>{r.current=J(e)}),[e]),r}({beforeEnter:n,afterEnter:a,beforeLeave:o,afterLeave:l}),H=R();(0,t.useEffect)((()=>{if(H&&"visible"===C&&null===m.current)throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}),[m,C,H]);let D=k&&!j,z=!H||D||I.current===w?"idle":w?"enter":"leave",V=M((e=>h(e,{enter:()=>_.current.beforeEnter(),leave:()=>_.current.beforeLeave(),idle:()=>{}}))),U=M((e=>h(e,{enter:()=>_.current.afterEnter(),leave:()=>_.current.afterLeave(),idle:()=>{}}))),W=K((()=>{N("hidden"),S(m)}),P);B({container:m,classes:A,direction:z,onStart:L((e=>{W.onStart(m,e,V)})),onStop:L((e=>{W.onStop(m,e,U),"leave"===e&&!Q(W)&&(N("hidden"),S(m))}))}),(0,t.useEffect)((()=>{!D||(y===x.Hidden?I.current=null:I.current=w)}),[w,D,C]);let X=v,Y={ref:b};return j&&w&&("undefined"==typeof window||"undefined"==typeof document)&&(X={...X,className:$(v.className,...A.current.enter,...A.current.enterFrom)}),t.createElement(Z.Provider,{value:W},t.createElement(T,{value:h(C,{visible:O.Open,hidden:O.Closed})},g({ourProps:Y,theirProps:X,defaultTag:"div",features:ee,visible:"visible"===C,name:"Transition.Child"})))})),re=j((function(e,r){let{show:n,appear:a=!1,unmount:o,...l}=e,s=(0,t.useRef)(null),i=F(s,r);R();let u=P();if(void 0===n&&null!==u&&(n=h(u,{[O.Open]:!0,[O.Closed]:!1})),![!0,!1].includes(n))throw new Error("A <Transition /> is used but it is missing a `show={true | false}` prop.");let[c,d]=(0,t.useState)(n?"visible":"hidden"),f=K((()=>{d("hidden")})),[p,v]=(0,t.useState)(!0),m=(0,t.useRef)([n]);S((()=>{!1!==p&&m.current[m.current.length-1]!==n&&(m.current.push(n),v(!1))}),[m,n]);let b=(0,t.useMemo)((()=>({show:n,appear:a,initial:p})),[n,a,p]);(0,t.useEffect)((()=>{if(n)d("visible");else if(Q(f)){let e=s.current;if(!e)return;let t=e.getBoundingClientRect();0===t.x&&0===t.y&&0===t.width&&0===t.height&&d("hidden")}else d("hidden")}),[n,f]);let x={unmount:o};return t.createElement(Z.Provider,{value:f},t.createElement(q.Provider,{value:b},g({ourProps:{...x,as:t.Fragment,children:t.createElement(te,{ref:i,...x,...l})},theirProps:{},defaultTag:t.Fragment,features:ee,visible:"visible"===c,name:"Transition"})))})),ne=j((function(e,r){let n=null!==(0,t.useContext)(q),a=null!==P();return t.createElement(t.Fragment,null,!n&&a?t.createElement(re,{ref:r,...e}):t.createElement(te,{ref:r,...e}))})),ae=Object.assign(re,{Child:ne,Root:re});var oe=function(){return oe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},oe.apply(this,arguments)};function le(t){var r=t.show,n=t.className,a=t.children;return(0,e.jsx)("div",oe({className:"overflow-hidden relative"},{children:(0,e.jsx)(ae,oe({show:r,className:n,enter:"transition duration-200 ease-out transform",enterFrom:"transform opacity-0 -translate-y-12",enterTo:"transform opacity-100 translate-y-0",leave:"transition duration-75 ease-out transform",leaveFrom:"transform opacity-100 translate-y-0",leaveTo:"transform opacity-0 -translate-y-6"},{children:a}))}))}var se=r(8),ie=r.n(se),ue=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"bg-green-600";case"POST":return"bg-blue-600";case"PUT":return"bg-yellow-600";case"DELETE":return"bg-red-600";case"PATCH":return"bg-orange-600";default:return"bg-slate-600"}},ce=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"hover:bg-green-800 disabled:bg-green-700";case"POST":return"hover:bg-blue-800 disabled:bg-blue-700";case"PUT":return"hover:bg-yellow-800 disabled:bg-yellow-700";case"DELETE":return"hover:bg-red-800 disabled:bg-red-700";case"PATCH":return"hover:bg-orange-800 disabled:bg-orange-700";default:return"hover:bg-slate-800 disabled:bg-slate-700"}},de=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"text-green-600 dark:text-green-500";case"POST":return"text-blue-600 dark:text-blue-500";case"PUT":return"text-yellow-600 dark:text-yellow-500";case"DELETE":return"text-red-600 dark:text-red-500";case"PATCH":return"text-orange-600 dark:text-orange-500";default:return"text-slate-600 dark:text-slate-500"}},fe=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"border-green-600 dark:border-green-500";case"POST":return"border-blue-600 dark:border-blue-500";case"PUT":return"border-yellow-600 dark:border-yellow-500";case"DELETE":return"border-red-600 dark:border-red-500";case"PATCH":return"border-orange-600 dark:border-orange-500";default:return"border-slate-600 dark:border-slate-500"}},pe=function(){return pe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},pe.apply(this,arguments)};function ve(t){var r=t.onClick;return(0,e.jsxs)("div",pe({className:"relative"},{children:[(0,e.jsx)("button",pe({className:"w-full py-0.5 px-2 rounded text-left border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-600 dark:text-slate-200 hover:bg-slate-50 dark:hover:bg-slate-800 hover:border-slate-400 dark:hover:border-slate-500",onClick:r},{children:"Add Item"})),(0,e.jsx)("svg",pe({className:"hidden sm:block absolute right-2 top-[7px] h-3 fill-slate-500 dark:fill-slate-400 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512"},{children:(0,e.jsx)("path",{d:"M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"})}))]}))}var he=function(){return he=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},he.apply(this,arguments)},me=function(t){var r=t.options,n=t.value,a=t.onInputChange;return(0,e.jsxs)("div",he({className:"relative"},{children:[(0,e.jsxs)("select",he({className:"w-full py-0.5 px-2 rounded border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-600 dark:text-slate-200 hover:bg-slate-50 dark:hover:bg-zinc-800 hover:border-slate-400 dark:hover:border-slate-500 cursor-pointer",onChange:function(e){return a(e.target.value)},value:n||"Select"},{children:[(0,e.jsx)("option",he({disabled:!0},{children:"Select"})),r.map((function(t){return(0,e.jsx)("option",{children:t},t)}))]})),(0,e.jsx)(be,{})]}))},be=function(){return(0,e.jsx)("svg",he({className:"absolute right-2 top-[7px] h-3 fill-slate-500 dark:fill-slate-400 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 384 512"},{children:(0,e.jsx)("path",{d:"M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"})}))},xe=function(){return xe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},xe.apply(this,arguments)},ge=function(e,t,r){if(r||2===arguments.length)for(var n,a=0,o=t.length;a<o;a++)!n&&a in t||(n||(n=Array.prototype.slice.call(t,0,a)),n[a]=t[a]);return e.concat(n||Array.prototype.slice.call(t))};function ye(r){var n,a,l,s=r.param,i=r.value,u=r.onChangeParam,c=r.onDeleteArrayItem,d=r.parentInputs,f=void 0===d?[]:d,p="object"===s.type&&null!=s.properties,v="array"===s.type,h=(0,t.useState)(Boolean(s.required)&&p||v&&Array.isArray(i)&&i.length>0),m=h[0],b=h[1],x=(0,t.useState)(p?i:{}),g=x[0],y=x[1],w=(0,t.useState)(v&&Array.isArray(i)?i:[]),j=w[0],k=w[1];"string"==typeof s.type&&(l=null===(n=s.type)||void 0===n?void 0:n.toLowerCase());var C=function(e){u(f,s.name,e)},N=function(){var e=ge(ge([],j,!0),[{param:xe(xe({},s),{type:s.properties?"object":we(s.type)}),value:s.properties?{}:null}],!1);k(e),C(e.map((function(e){return e.value})))};return a="boolean"===l?(0,e.jsx)(me,{options:["true","false"],value:null!=i?i.toString():"",onInputChange:function(e){return C("true"===e)}}):"integer"===l||"number"===l?(0,e.jsx)("input",{className:"w-full py-0.5 px-2 rounded border border-slate-200 dark:border-slate-700 bg-white dark:bg-dark-input text-slate-700 dark:text-slate-200",type:"number",placeholder:s.placeholder,value:i,onChange:function(e){return C(parseInt(e.target.value,10))}}):"file"===l||"files"===l?(0,e.jsxs)("button",xe({className:"relative flex items-center px-2 w-full h-7 rounded border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-700 dark:text-slate-200 border-dashed hover:bg-slate-50 dark:hover:bg-slate-800"},{children:[(0,e.jsx)("input",{className:"z-5 absolute inset-0 opacity-0 cursor-pointer",type:"file",onChange:function(e){null!=e.target.files&&C(e.target.files[0])}}),(0,e.jsx)("svg",xe({className:"absolute right-2 top-[7px] h-3 fill-slate-500 dark:fill-slate-400 bg-border-slate-700 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},{children:(0,e.jsx)("path",{d:"M105.4 182.6c12.5 12.49 32.76 12.5 45.25 .001L224 109.3V352c0 17.67 14.33 32 32 32c17.67 0 32-14.33 32-32V109.3l73.38 73.38c12.49 12.49 32.75 12.49 45.25-.001c12.49-12.49 12.49-32.75 0-45.25l-128-128C272.4 3.125 264.2 0 256 0S239.6 3.125 233.4 9.375L105.4 137.4C92.88 149.9 92.88 170.1 105.4 182.6zM480 352h-160c0 35.35-28.65 64-64 64s-64-28.65-64-64H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96C512 366.3 497.7 352 480 352zM432 456c-13.2 0-24-10.8-24-24c0-13.2 10.8-24 24-24s24 10.8 24 24C456 445.2 445.2 456 432 456z"})})),(0,e.jsx)("span",xe({className:"w-full truncate text-left inline-block pointer-events-none"},{children:null!=i&&null!=i[s.name]?i[s.name].name:"Choose file"}))]})):p&&!v?(0,e.jsx)("button",xe({className:"relative flex items-center w-full h-6 justify-end ",onClick:function(){return b(!m)}},{children:(0,e.jsx)("span",xe({className:"fill-slate-500 dark:fill-slate-400 group-hover:fill-slate-700 dark:group-hover:fill-slate-200"},{children:m?(0,e.jsx)("svg",xe({className:"h-3 w-3 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},{children:(0,e.jsx)("path",{d:"M473 7c-9.4-9.4-24.6-9.4-33.9 0l-87 87L313 55c-6.9-6.9-17.2-8.9-26.2-5.2S272 62.3 272 72V216c0 13.3 10.7 24 24 24H440c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-39-39 87-87c9.4-9.4 9.4-24.6 0-33.9L473 7zM216 272H72c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39L7 439c-9.4 9.4-9.4 24.6 0 33.9l32 32c9.4 9.4 24.6 9.4 33.9 0l87-87 39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V296c0-13.3-10.7-24-24-24z"})})):(0,e.jsx)("svg",xe({className:"h-3 w-3 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},{children:(0,e.jsx)("path",{d:"M344 0H488c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0zM184 496H40c-13.3 0-24-10.7-24-24V328c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z"})}))}))})):v?0===j.length&&(0,e.jsx)(ve,{onClick:N}):s.enum?(0,e.jsx)(me,{options:s.enum,value:i,onInputChange:C}):(0,e.jsx)("input",{className:"w-full py-0.5 px-2 rounded border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-700 dark:text-slate-200",type:"text",placeholder:s.placeholder,value:i,onChange:function(e){return C(e.target.value)}}),(0,e.jsxs)("div",xe({className:o("text-[0.84rem]",(p&&m||j.length>0)&&"px-3 py-2 -mx-1.5 border border-slate-200 dark:border-slate-700 bg-white dark:bg-codeblock rounded-md")},{children:[(0,e.jsxs)("div",xe({className:"flex items-center space-x-2 group"},{children:[(0,e.jsxs)("div",xe({className:o("flex items-center flex-1 font-mono text-slate-600 dark:text-slate-300",p&&"cursor-pointer",c&&"invisible"),onClick:function(){return p&&b(!m)}},{children:[s.name,s.required&&(0,e.jsx)("span",xe({className:"text-red-600 dark:text-red-400"},{children:"*"}))]})),(0,e.jsx)("div",xe({className:o("flex-initial",c?"w-[calc(40%-1.05rem)] sm:w-[calc(33%-1.05rem)]":"w-2/5 sm:w-1/3")},{children:a})),c&&(0,e.jsx)("button",xe({className:"py-1 fill-red-600 dark:fill-red-400 hover:fill-red-800 dark:hover:fill-red-200",onClick:c},{children:(0,e.jsx)("svg",xe({className:"h-3",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512"},{children:(0,e.jsx)("path",{d:"M424 80C437.3 80 448 90.75 448 104C448 117.3 437.3 128 424 128H412.4L388.4 452.7C385.9 486.1 358.1 512 324.6 512H123.4C89.92 512 62.09 486.1 59.61 452.7L35.56 128H24C10.75 128 0 117.3 0 104C0 90.75 10.75 80 24 80H93.82L130.5 24.94C140.9 9.357 158.4 0 177.1 0H270.9C289.6 0 307.1 9.358 317.5 24.94L354.2 80H424zM177.1 48C174.5 48 171.1 49.34 170.5 51.56L151.5 80H296.5L277.5 51.56C276 49.34 273.5 48 270.9 48H177.1zM364.3 128H83.69L107.5 449.2C108.1 457.5 115.1 464 123.4 464H324.6C332.9 464 339.9 457.5 340.5 449.2L364.3 128z"})}))}))]})),m&&s.properties&&(0,e.jsx)("div",xe({className:"mt-1 pt-2 pb-1 border-t border-slate-100 dark:border-slate-700 space-y-2"},{children:s.properties.map((function(t){return(0,e.jsx)(ye,{param:t,value:(i||{})[t.name],onChangeParam:function(e,r,n){return function(e,t){var r,n=xe(xe({},g),((r={})[e]=t,r));y(n),C(n)}(t.name,n)},parentInputs:ge(ge([],f,!0),[s.name],!1)},t.name)}))})),j.length>0&&(0,e.jsxs)("div",xe({className:o("mt-1 pt-2 pb-1 space-y-2",!p&&"border-t border-slate-100 dark:border-slate-700")},{children:[j.map((function(t,r){return(0,e.jsx)(ye,{param:t.param,value:t.value,onChangeParam:function(e,t,n){return function(e,t){var r=j.map((function(r,n){return e===n?xe(xe({},r),{value:t}):r}));k(r),C(r.map((function(e){return e.value})))}(r,n)},onDeleteArrayItem:function(){return function(e){k(e);var t=e.length>0?e:void 0;C(null==t?void 0:t.map((function(e){return e.value})))}(j.filter((function(e,t){return r!==t})))}},"".concat(t.param.name).concat(r))})),(0,e.jsx)("div",xe({className:"flex items-center justify-end space-x-2 group"},{children:(0,e.jsx)("div",xe({className:"flex-initial w-2/5 sm:w-1/3"},{children:(0,e.jsx)(ve,{onClick:N})}))}))]}))]}))}var we=function(e){return e&&"array"!==e?e.replace(/\[\]/g,""):""},je=function(){return je=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},je.apply(this,arguments)},ke=function(e,t,r){if(r||2===arguments.length)for(var n,a=0,o=t.length;a<o;a++)!n&&a in t||(n||(n=Array.prototype.slice.call(t,0,a)),n[a]=t[a]);return e.concat(n||Array.prototype.slice.call(t))};function Ce(r){var n=r.method,a=r.paramGroups,l=r.paramValues,s=r.isSendingRequest,i=r.onChangeParamValues,u=r.onSendRequest,c=r.header,d=r.response,f=(0,t.useState)(a[0]),p=f[0],v=f[1];return(0,e.jsxs)("div",je({className:"mt-4 border border-slate-200 dark:border-slate-600 bg-slate-50 dark:bg-codeblock rounded-md truncate"},{children:[(0,e.jsxs)("div",je({className:"px-3.5 pt-3.5 pb-4"},{children:[c,(0,e.jsxs)("div",je({className:"text-sm"},{children:[(0,e.jsx)("div",je({className:"block"},{children:(0,e.jsx)("div",je({className:"border-b border-slate-200 dark:border-slate-600"},{children:(0,e.jsx)("nav",je({className:"-mb-px flex space-x-4","aria-label":"Tabs"},{children:a.map((function(t){return(0,e.jsx)("button",je({className:o((null==p?void 0:p.name)===t.name?"".concat(de(n)," ").concat(fe(n)):"border-transparent text-slate-500 hover:text-slate-700 hover:border-slate-300 dark:text-slate-400 dark:hover:text-slate-200","whitespace-nowrap py-2 border-b-2 font-medium text-[0.84rem]"),onClick:function(){return v(t)}},{children:t.name}),t.name)}))}))}))})),(0,e.jsx)("div",je({className:"mt-4 space-y-2"},{children:null==p?void 0:p.params.map((function(t,r){var n,a;return(0,e.jsx)(ye,{param:t,value:null!==(a=null===(n=l[p.name])||void 0===n?void 0:n[t.name])&&void 0!==a?a:"",onChangeParam:function(e,t,r){return function(e,t,r,n){var a,o,s=je(je({},l[e]),ie()(null!==(o=l[e])&&void 0!==o?o:{},ke(ke([],t,!0),[r],!1),n));i(je(je({},l),((a={})[e]=s,a)))}(p.name,e,t,r)}},"".concat(t.name).concat(r))}))})),(0,e.jsxs)("button",je({className:o("flex items-center py-1.5 px-3 rounded text-white font-medium space-x-2",ue(n),ce(n),p&&"mt-4"),disabled:s,onClick:u},{children:[(0,e.jsx)("svg",je({className:"fill-white h-3",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 384 512"},{children:(0,e.jsx)("path",{d:"M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z"})})),(0,e.jsx)("div",{children:s?"Sending...":"Send Request"})]}))]}))]})),s?null:d]}))}var Ne=function(){return Ne=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ne.apply(this,arguments)},Oe=function(t){var r=t.method;return(0,e.jsx)("span",Ne({className:o("inline-block text-white font-bold px-1.5 rounded-md text-[0.95rem]",ue(r))},{children:r}))},Pe=function(){return Pe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Pe.apply(this,arguments)};function Te(t){var r=t.baseUrls,n=t.defaultValue,a=t.onChange;return null==r||!Array.isArray(r)||r.length<=1?null:(0,e.jsxs)("div",Pe({className:"border-slate-400 dark:border-slate-400 relative select-none align-middle inline-flex rounded-md -top-px mx-1 w-5 h-[1.125rem] bg-white hover:bg-slate-100 dark:bg-slate-700 dark:hover:bg-slate-600 border hover:border-slate-400 dark:hover:border-slate-400 focus:outline-none cursor-pointer"},{children:[(0,e.jsxs)("select",Pe({"aria-label":"Select API base","aria-expanded":"false",className:"z-10 absolute inset-0 opacity-0 cursor-pointer",onChange:function(e){return a(e.target.value)},defaultValue:n},{children:[(0,e.jsx)("option",Pe({disabled:!0},{children:"Select API base"})),r.map((function(t){return(0,e.jsx)("option",{children:t},t)}))]})),(0,e.jsx)("svg",Pe({width:"20",height:"20",fill:"none",className:"transform absolute -top-0.5 -left-px rotate-90"},{children:(0,e.jsx)("path",{className:"stroke-slate-700 dark:stroke-slate-100",d:"M9 7l3 3-3 3",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}))]}))}var Ee=function(){return Ee=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ee.apply(this,arguments)},Se=function(t){var r=t.method,n=t.path,a=t.baseUrls,o=t.defaultBaseUrl,l=t.onBaseUrlChange;return(0,e.jsxs)("div",Ee({className:"text-sm md:text-base flex items-center space-x-2 mb-2"},{children:[(0,e.jsx)(Oe,{method:r}),a&&(0,e.jsx)(Te,{baseUrls:a,defaultValue:o,onChange:l}),(0,e.jsx)("div",Ee({className:"font-mono text-[0.95rem] overflow-auto"},{children:(0,e.jsx)("p",Ee({className:"inline-block text-slate-700 dark:text-slate-100 font-semibold"},{children:n}))}))]}))},Ie=function(){return Ie=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ie.apply(this,arguments)},Le={indigo:["bg-indigo-50 text-indigo-600 hover:bg-indigo-200 hover:text-indigo-700 focus:ring-indigo-500","text-indigo-300 group-hover:text-indigo-400"],pink:["bg-pink-50 text-pink-600 hover:bg-pink-100 hover:text-pink-700 focus:ring-pink-600","text-pink-300 group-hover:text-pink-400"],sky:["bg-sky-50 text-sky-600 hover:bg-sky-100 hover:text-sky-700 focus:ring-sky-600","text-sky-300 group-hover:text-sky-400"],blue:["bg-blue-50 text-blue-600 hover:bg-blue-100 hover:text-blue-700 focus:ring-blue-600","text-blue-300 group-hover:text-blue-400"],gray:["bg-slate-100 text-slate-700 hover:bg-slate-200 hover:text-slate-900 focus:ring-slate-500","text-slate-300 group-hover:text-slate-400"]},Ae=Ie(Ie({},Le),{gray:["dark:bg-slate-700 dark:text-slate-100 dark:hover:bg-slate-600 dark:hover:text-white dark:focus:ring-slate-500","dark:text-slate-500 dark:group-hover:text-slate-400"],sky:["dark:bg-sky-500 dark:text-sky-50 dark:hover:bg-sky-400 dark:hover:text-white dark:focus:ring-sky-200","dark:text-sky-300 dark:group-hover:text-sky-100"]});function Re(t){var r=t.as,n=t.color,a=void 0===n?"gray":n,l=t.darkColor,s=void 0===l?a:l,i=t.reverse,u=void 0!==i&&i,c=t.children,d=t.className,f=t.mRef,p=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r}(t,["as","color","darkColor","reverse","children","className","mRef"]),v="string"==typeof a?Le[a]:a,h="string"==typeof s?Ae[s]||[]:s,m=r||null!=p.href?"a":"button";return(0,e.jsxs)(m,Ie({className:o("group inline-flex items-center h-9 rounded-full text-sm font-semibold whitespace-nowrap px-3 focus:outline-none focus:ring-2",v[0],h[0],u&&"flex-row-reverse",d)},p,{ref:f},{children:[c,(0,e.jsx)("svg",Ie({className:o("overflow-visible",u?"mr-3":"ml-3",v[1],h[1]),width:"3",height:"6",viewBox:"0 0 3 6",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},{children:(0,e.jsx)("path",{d:u?"M3 0L0 3L3 6":"M0 0L3 3L0 6"})}))]}))}const Me=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/,_e=/^[a-zA-Z]:\\/;var Fe=function(){return Fe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Fe.apply(this,arguments)};function He(t){var r,n=t.title,a=t.icon,l=t.className,s=t.children,i=t.as,u=t.mRef,c=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r}(t,["title","icon","className","children","as","mRef"]),d=i||null!=c.href?"a":"div",f=function(e){if("string"!=typeof e)throw new TypeError(`Expected a \`string\`, got \`${typeof e}\``);return!_e.test(e)&&Me.test(e)}(null!==(r=c.href)&&void 0!==r?r:"")?{target:"_blank",rel:"noreferrer"}:{};return(0,e.jsxs)(d,Fe({className:o("block not-prose font-normal group relative my-2 ring-2 ring-transparent rounded-xl border border-slate-200 dark:border-slate-800 overflow-hidden px-6 py-5 w-full",c.href&&"cursor-pointer",l)},f,c,{ref:u},{children:[a?(0,e.jsx)("div",Fe({className:"h-6 w-6 fill-slate-800 dark:fill-slate-100 text-slate-800 dark:text-slate-100"},{children:a})):null,(0,e.jsx)("h2",Fe({className:o("font-semibold text-base text-slate-800 dark:text-white",null!=a&&"mt-4")},{children:n})),(0,e.jsx)("span",Fe({className:o("mt-1 font-normal",n?"text-slate-600 dark:text-slate-400":"text-slate-700 dark:text-slate-300")},{children:s}))]}))}var De=function(){return De=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},De.apply(this,arguments)};function ze(t){var r=t.children,n=t.cols,a=void 0===n?2:n;return(0,e.jsx)("div",De({className:"not-prose grid sm:grid-cols-".concat(a," gap-x-4")},{children:r}))}function Ve(e){return Ve="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ve(e)}var Ue=function e(t){var r;return["string","number"].includes(Ve(t))?t.toString():t instanceof Array?t.map(e).join(""):"object"===Ve(t)&&(null===(r=null==t?void 0:t.props)||void 0===r?void 0:r.children)?e(t.props.children):""};function Be(e){return function(e,t,r,n){return new(r||(r=Promise))((function(a,o){function l(e){try{i(n.next(e))}catch(e){o(e)}}function s(e){try{i(n.throw(e))}catch(e){o(e)}}function i(e){var t;e.done?a(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(l,s)}i((n=n.apply(e,t||[])).next())}))}(this,void 0,void 0,(function(){var t;return function(e,t){var r,n,a,o,l={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(s){return function(i){return function(s){if(r)throw new TypeError("Generator is already executing.");for(;o&&(o=0,s[0]&&(l=0)),l;)try{if(r=1,n&&(a=2&s[0]?n.return:s[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,s[1])).done)return a;switch(n=0,a&&(s=[2&s[0],a.value]),s[0]){case 0:case 1:a=s;break;case 4:return l.label++,{value:s[1],done:!1};case 5:l.label++,n=s[1],s=[0];continue;case 7:s=l.ops.pop(),l.trys.pop();continue;default:if(!((a=(a=l.trys).length>0&&a[a.length-1])||6!==s[0]&&2!==s[0])){l=0;continue}if(3===s[0]&&(!a||s[1]>a[0]&&s[1]<a[3])){l.label=s[1];break}if(6===s[0]&&l.label<a[1]){l.label=a[1],a=s;break}if(a&&l.label<a[2]){l.label=a[2],l.ops.push(s);break}a[2]&&l.ops.pop(),l.trys.pop();continue}s=t.call(e,l)}catch(e){s=[6,e],n=0}finally{r=a=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,i])}}}(this,(function(r){switch(r.label){case 0:if(e||console.warn("Called copyToClipboard() with empty text"),!navigator.clipboard)return console.error("The Clipboard API was unavailable. The Clipboard API is only available client-side in browsers using HTTPS."),[2];r.label=1;case 1:return r.trys.push([1,3,,4]),[4,navigator.clipboard.writeText(e)];case 2:return r.sent(),[2,"success"];case 3:return t=r.sent(),console.error("Failed to copy: ",t),[2,"error"];case 4:return[2]}}))}))}var $e=function(){return $e=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},$e.apply(this,arguments)};function Ge(r){var n=this,a=r.textToCopy,o=r.copiedTooltipColor,l=void 0===o?"#002937":o,s=(0,t.useState)(!0),i=s[0],u=s[1];return a?navigator.clipboard?(0,e.jsxs)("button",$e({className:"relative",onClick:function(){return function(e,t,r,n){return new(r||(r=Promise))((function(a,o){function l(e){try{i(n.next(e))}catch(e){o(e)}}function s(e){try{i(n.throw(e))}catch(e){o(e)}}function i(e){var t;e.done?a(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(l,s)}i((n=n.apply(e,t||[])).next())}))}(n,void 0,void 0,(function(){return function(e,t){var r,n,a,o,l={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(s){return function(i){return function(s){if(r)throw new TypeError("Generator is already executing.");for(;o&&(o=0,s[0]&&(l=0)),l;)try{if(r=1,n&&(a=2&s[0]?n.return:s[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,s[1])).done)return a;switch(n=0,a&&(s=[2&s[0],a.value]),s[0]){case 0:case 1:a=s;break;case 4:return l.label++,{value:s[1],done:!1};case 5:l.label++,n=s[1],s=[0];continue;case 7:s=l.ops.pop(),l.trys.pop();continue;default:if(!((a=(a=l.trys).length>0&&a[a.length-1])||6!==s[0]&&2!==s[0])){l=0;continue}if(3===s[0]&&(!a||s[1]>a[0]&&s[1]<a[3])){l.label=s[1];break}if(6===s[0]&&l.label<a[1]){l.label=a[1],a=s;break}if(a&&l.label<a[2]){l.label=a[2],l.ops.push(s);break}a[2]&&l.ops.pop(),l.trys.pop();continue}s=t.call(e,l)}catch(e){s=[6,e],n=0}finally{r=a=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,i])}}}(this,(function(e){switch(e.label){case 0:return[4,Be(a)];case 1:return"success"===e.sent()&&(u(!1),setTimeout((function(){u(!0)}),2e3)),[2]}}))}))}},{children:[(0,e.jsx)("svg",$e({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 384 512",className:"top-5 h-[1.15rem] fill-slate-500 hover:fill-slate-300 cursor-pointer"},{children:(0,e.jsx)("path",{d:"M320 64H280h-9.6C263 27.5 230.7 0 192 0s-71 27.5-78.4 64H104 64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM80 112v24c0 13.3 10.7 24 24 24h88 88c13.3 0 24-10.7 24-24V112h16c8.8 0 16 7.2 16 16V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V128c0-8.8 7.2-16 16-16H80zm88-32a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM136 272a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm40-16c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176zm0 96c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176zm-64 40a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"})})),(0,e.jsx)(qe,{hidden:i,copiedTooltipColor:l})]})):(console.warn("The browser's Clipboard API is unavailable. The Clipboard API is only available on HTTPS."),null):null}function qe(t){var r=t.hidden,n=t.copiedTooltipColor;return(0,e.jsx)("div",$e({className:o(r&&"hidden","absolute bottom-full left-1/2 mb-3.5 pb-1 -translate-x-1/2")},{children:(0,e.jsxs)("div",$e({className:"relative text-white text-xs leading-6 font-medium px-1.5 rounded-lg",style:{background:n},"data-reach-alert":"true"},{children:["Copied",(0,e.jsx)("svg",$e({"aria-hidden":"true",width:"16",height:"6",viewBox:"0 0 16 6",className:"absolute top-full left-1/2 -mt-px -ml-2",style:{color:n}},{children:(0,e.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 0H1V1.00366V1.00366V1.00371H1.01672C2.72058 1.0147 4.24225 2.74704 5.42685 4.72928C6.42941 6.40691 9.57154 6.4069 10.5741 4.72926C11.7587 2.74703 13.2803 1.0147 14.9841 1.00371H15V0Z",fill:"currentColor"})}))]}))}))}var We,Ze=function(){return Ze=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ze.apply(this,arguments)};function Qe(r){var n=r.filename,a=r.filenameColor,l=r.copiedTooltipColor,s=r.children,i=(0,t.useState)(!1),u=i[0],c=i[1];return(0,t.useEffect)((function(){c(!0)}),[]),(0,e.jsxs)("div",Ze({className:o("mt-5 mb-8 not-prose gray-frame",n&&"pt-2")},{children:[n?(0,e.jsx)(Ke,Ze({filename:n,filenameColor:a},{children:u?(0,e.jsx)(Ge,{textToCopy:Ue(s),copiedTooltipColor:null!=l?l:a}):void 0})):null,!n&&u&&(0,e.jsx)("div",Ze({className:"z-10 absolute top-5 right-5"},{children:(0,e.jsx)(Ge,{textToCopy:Ue(s),copiedTooltipColor:null!=l?l:a})})),(0,e.jsx)("div",Ze({className:"code-in-gray-frame children:!my-0 children:!shadow-none children:!bg-transparent",style:{fontVariantLigatures:"none"}},{children:u?s:null}))]}))}function Ke(t){var r=t.filename,n=t.filenameColor,a=t.children;return(0,e.jsxs)("div",Ze({className:"flex text-slate-400 text-xs leading-6"},{children:[(0,e.jsx)("div",Ze({className:"flex-none border-t border-b border-t-transparent px-4 py-1 flex items-center",style:{color:n,borderBottomColor:n}},{children:r})),(0,e.jsx)("div",Ze({className:"flex-auto flex items-center bg-codeblock-tabs border border-slate-500/30 rounded-t"},{children:a&&(0,e.jsx)("div",Ze({className:"flex-auto flex items-center justify-end px-4 space-x-4"},{children:a}))}))]}))}let Xe=0;function Ye(){return++Xe}let Je=null!=(We=t.useId)?We:function(){let e=R(),[r,n]=t.useState(e?Ye:null);return S((()=>{null===r&&n(Ye())}),[r]),null!=r?""+r:void 0};var et=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(et||{});function tt(e){return E?null:e instanceof Node?e.ownerDocument:null!=e&&e.hasOwnProperty("current")&&e.current instanceof Node?e.current.ownerDocument:document}let rt=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map((e=>`${e}:not([tabindex='-1'])`)).join(",");var nt,at=((nt=at||{})[nt.First=1]="First",nt[nt.Previous=2]="Previous",nt[nt.Next=4]="Next",nt[nt.Last=8]="Last",nt[nt.WrapAround=16]="WrapAround",nt[nt.NoScroll=32]="NoScroll",nt),ot=(e=>(e[e.Error=0]="Error",e[e.Overflow=1]="Overflow",e[e.Success=2]="Success",e[e.Underflow=3]="Underflow",e))(ot||{}),lt=(e=>(e[e.Previous=-1]="Previous",e[e.Next=1]="Next",e))(lt||{});function st(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(rt)).sort(((e,t)=>Math.sign((e.tabIndex||Number.MAX_SAFE_INTEGER)-(t.tabIndex||Number.MAX_SAFE_INTEGER))))}var it=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(it||{});function ut(e,t=0){var r;return e!==(null==(r=tt(e))?void 0:r.body)&&h(t,{0:()=>e.matches(rt),1(){let t=e;for(;null!==t;){if(t.matches(rt))return!0;t=t.parentElement}return!1}})}function ct(e){let t=tt(e);D().nextFrame((()=>{t&&!ut(t.activeElement,0)&&function(e){null==e||e.focus({preventScroll:!0})}(e)}))}let dt=["textarea","input"].join(",");function ft(e,t=(e=>e)){return e.slice().sort(((e,r)=>{let n=t(e),a=t(r);if(null===n||null===a)return 0;let o=n.compareDocumentPosition(a);return o&Node.DOCUMENT_POSITION_FOLLOWING?-1:o&Node.DOCUMENT_POSITION_PRECEDING?1:0}))}function pt(e,t,{sorted:r=!0,relativeTo:n=null,skipElements:a=[]}={}){let o=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e.ownerDocument,l=Array.isArray(e)?r?ft(e):e:st(e);a.length>0&&(l=l.filter((e=>!a.includes(e)))),n=null!=n?n:o.activeElement;let s,i=(()=>{if(5&t)return 1;if(10&t)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=(()=>{if(1&t)return 0;if(2&t)return Math.max(0,l.indexOf(n))-1;if(4&t)return Math.max(0,l.indexOf(n))+1;if(8&t)return l.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=32&t?{preventScroll:!0}:{},d=0,f=l.length;do{if(d>=f||d+f<=0)return 0;let e=u+d;if(16&t)e=(e+f)%f;else{if(e<0)return 3;if(e>=f)return 1}s=l[e],null==s||s.focus(c),d+=i}while(s!==o.activeElement);return 6&t&&function(e){var t,r;return null!=(r=null==(t=null==e?void 0:e.matches)?void 0:t.call(e,dt))&&r}(s)&&s.select(),s.hasAttribute("tabindex")||s.setAttribute("tabindex","0"),2}function vt(e){var t;if(e.type)return e.type;let r=null!=(t=e.as)?t:"button";return"string"==typeof r&&"button"===r.toLowerCase()?"button":void 0}function ht(e,r){let[n,a]=(0,t.useState)((()=>vt(e)));return S((()=>{a(vt(e))}),[e.type,e.as]),S((()=>{n||!r.current||r.current instanceof HTMLButtonElement&&!r.current.hasAttribute("type")&&a("button")}),[n,r]),n}var mt=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(mt||{});let bt=j((function(e,t){let{features:r=1,...n}=e;return g({ourProps:{ref:t,"aria-hidden":2==(2&r)||void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...4==(4&r)&&2!=(2&r)&&{display:"none"}}},theirProps:n,slot:{},defaultTag:"div",name:"Hidden"})}));function xt({onFocus:e}){let[r,n]=(0,t.useState)(!0);return r?t.createElement(bt,{as:"button",type:"button",features:mt.Focusable,onFocus:t=>{t.preventDefault();let r,a=50;r=requestAnimationFrame((function t(){if(!(a--<=0))return e()?(n(!1),void cancelAnimationFrame(r)):void(r=requestAnimationFrame(t));r&&cancelAnimationFrame(r)}))}}):null}var gt=(e=>(e[e.SetSelectedIndex=0]="SetSelectedIndex",e[e.RegisterTab=1]="RegisterTab",e[e.UnregisterTab=2]="UnregisterTab",e[e.RegisterPanel=3]="RegisterPanel",e[e.UnregisterPanel=4]="UnregisterPanel",e))(gt||{});let yt={0(e,t){let r=e.tabs.filter((e=>{var t;return!(null!=(t=e.current)&&t.hasAttribute("disabled"))}));if(t.index<0)return{...e,selectedIndex:e.tabs.indexOf(r[0])};if(t.index>e.tabs.length)return{...e,selectedIndex:e.tabs.indexOf(r[r.length-1])};let n=e.tabs.slice(0,t.index),a=[...e.tabs.slice(t.index),...n].find((e=>r.includes(e)));return a?{...e,selectedIndex:e.tabs.indexOf(a)}:e},1(e,t){var r;if(e.tabs.includes(t.tab))return e;let n=e.tabs[e.selectedIndex],a=ft([...e.tabs,t.tab],(e=>e.current)),o=null!=(r=a.indexOf(n))?r:e.selectedIndex;return-1===o&&(o=e.selectedIndex),{...e,tabs:a,selectedIndex:o}},2:(e,t)=>({...e,tabs:e.tabs.filter((e=>e!==t.tab))}),3:(e,t)=>e.panels.includes(t.panel)?e:{...e,panels:ft([...e.panels,t.panel],(e=>e.current))},4:(e,t)=>({...e,panels:e.panels.filter((e=>e!==t.panel))})},wt=(0,t.createContext)(null);function jt(e){let r=(0,t.useContext)(wt);if(null===r){let t=new Error(`<${e} /> is missing a parent <Tab.Group /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,jt),t}return r}wt.displayName="TabsSSRContext";let kt=(0,t.createContext)(null);function Ct(e){let r=(0,t.useContext)(kt);if(null===r){let t=new Error(`<${e} /> is missing a parent <Tab.Group /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Ct),t}return r}kt.displayName="TabsDataContext";let Nt=(0,t.createContext)(null);function Ot(e){let r=(0,t.useContext)(Nt);if(null===r){let t=new Error(`<${e} /> is missing a parent <Tab.Group /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Ot),t}return r}function Pt(e,t){return h(t.type,yt,e,t)}Nt.displayName="TabsActionsContext";let Tt=t.Fragment,Et=j((function(e,r){let{defaultIndex:n=0,vertical:a=!1,manual:o=!1,onChange:l,selectedIndex:s=null,...i}=e;const u=a?"vertical":"horizontal",c=o?"manual":"auto";let d=null!==s,f=F(r),[p,v]=(0,t.useReducer)(Pt,{selectedIndex:null!=s?s:n,tabs:[],panels:[]}),h=(0,t.useMemo)((()=>({selectedIndex:p.selectedIndex})),[p.selectedIndex]),m=L(l||(()=>{})),b=L(p.tabs),x=(0,t.useMemo)((()=>({orientation:u,activation:c,...p})),[u,c,p]),y=M((e=>(v({type:1,tab:e}),()=>v({type:2,tab:e})))),w=M((e=>(v({type:3,panel:e}),()=>v({type:4,panel:e})))),j=M((e=>{k.current!==e&&m.current(e),d||v({type:0,index:e})})),k=L(d?e.selectedIndex:p.selectedIndex),C=(0,t.useMemo)((()=>({registerTab:y,registerPanel:w,change:j})),[]);S((()=>{v({type:0,index:null!=s?s:n})}),[s]);let N=(0,t.useRef)({tabs:[],panels:[]}),O={ref:f};return t.createElement(wt.Provider,{value:N},t.createElement(Nt.Provider,{value:C},t.createElement(kt.Provider,{value:x},x.tabs.length<=0&&t.createElement(xt,{onFocus:()=>{var e,t;for(let r of b.current)if(0===(null==(e=r.current)?void 0:e.tabIndex))return null==(t=r.current)||t.focus(),!0;return!1}}),g({ourProps:O,theirProps:i,slot:h,defaultTag:Tt,name:"Tabs"}))))})),St=j((function(e,t){let{orientation:r,selectedIndex:n}=Ct("Tab.List");return g({ourProps:{ref:F(t),role:"tablist","aria-orientation":r},theirProps:e,slot:{selectedIndex:n},defaultTag:"div",name:"Tabs.List"})})),It=j((function(e,r){var n,a;let o=Je(),{id:l=`headlessui-tabs-tab-${o}`,...s}=e,{orientation:i,activation:u,selectedIndex:c,tabs:d,panels:f}=Ct("Tab"),p=Ot("Tab"),v=Ct("Tab"),m=jt("Tab"),b=(0,t.useRef)(null),x=F(b,r);S((()=>p.registerTab(b)),[p,b]);let y=m.current.tabs.indexOf(l);-1===y&&(y=m.current.tabs.push(l)-1);let w=d.indexOf(b);-1===w&&(w=y);let j=w===c,k=M((e=>{var t;let r=e();if(r===ot.Success&&"auto"===u){let e=null==(t=tt(b))?void 0:t.activeElement,r=v.tabs.findIndex((t=>t.current===e));-1!==r&&p.change(r)}return r})),C=M((e=>{let t=d.map((e=>e.current)).filter(Boolean);if(e.key===et.Space||e.key===et.Enter)return e.preventDefault(),e.stopPropagation(),void p.change(w);switch(e.key){case et.Home:case et.PageUp:return e.preventDefault(),e.stopPropagation(),k((()=>pt(t,at.First)));case et.End:case et.PageDown:return e.preventDefault(),e.stopPropagation(),k((()=>pt(t,at.Last)))}return k((()=>h(i,{vertical:()=>e.key===et.ArrowUp?pt(t,at.Previous|at.WrapAround):e.key===et.ArrowDown?pt(t,at.Next|at.WrapAround):ot.Error,horizontal:()=>e.key===et.ArrowLeft?pt(t,at.Previous|at.WrapAround):e.key===et.ArrowRight?pt(t,at.Next|at.WrapAround):ot.Error})))===ot.Success?e.preventDefault():void 0})),N=(0,t.useRef)(!1),O=M((()=>{var e;N.current||(N.current=!0,null==(e=b.current)||e.focus(),p.change(w),H((()=>{N.current=!1})))})),P=M((e=>{e.preventDefault()})),T=(0,t.useMemo)((()=>({selected:j})),[j]);return g({ourProps:{ref:x,onKeyDown:C,onMouseDown:P,onClick:O,id:l,role:"tab",type:ht(e,b),"aria-controls":null==(a=null==(n=f[w])?void 0:n.current)?void 0:a.id,"aria-selected":j,tabIndex:j?0:-1},theirProps:s,slot:T,defaultTag:"button",name:"Tabs.Tab"})})),Lt=j((function(e,r){let{selectedIndex:n}=Ct("Tab.Panels");return g({ourProps:{ref:F(r)},theirProps:e,slot:(0,t.useMemo)((()=>({selectedIndex:n})),[n]),defaultTag:"div",name:"Tabs.Panels"})})),At=b.RenderStrategy|b.Static,Rt=j((function(e,r){var n,a,o,l;let s=Je(),{id:i=`headlessui-tabs-panel-${s}`,...u}=e,{selectedIndex:c,tabs:d,panels:f}=Ct("Tab.Panel"),p=Ot("Tab.Panel"),v=jt("Tab.Panel"),h=(0,t.useRef)(null),m=F(h,r);S((()=>p.registerPanel(h)),[p,h]);let b=v.current.panels.indexOf(i);-1===b&&(b=v.current.panels.push(i)-1);let x=f.indexOf(h);-1===x&&(x=b);let y=x===c,w=(0,t.useMemo)((()=>({selected:y})),[y]),j={ref:m,id:i,role:"tabpanel","aria-labelledby":null==(a=null==(n=d[x])?void 0:n.current)?void 0:a.id,tabIndex:y?0:-1};return y||null!=(o=u.unmount)&&!o||null!=(l=u.static)&&l?g({ourProps:j,theirProps:u,slot:w,defaultTag:"div",features:At,visible:y,name:"Tabs.Panel"}):t.createElement(bt,{as:"span",...j})})),Mt=Object.assign(It,{Group:Et,List:St,Panels:Lt,Panel:Rt});var _t=function(){return _t=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},_t.apply(this,arguments)};function Ft(r){var n,a=r.children,l=r.selectedColor,s=r.copiedTooltipColor,i=r.isSmallText,u=(0,t.useState)(0),c=u[0],d=u[1],f=(0,t.useState)(!1),p=f[0],v=f[1];if((0,t.useEffect)((function(){v(!0)}),[]),null==a)return console.warn("CodeGroup has no children, expected at least one CodeBlock child."),null;if(Array.isArray(a)){if(0===a.length)return null}else a=[a];var h=a.filter((function(e,t){return t===c}))[0];return(0,e.jsxs)(Mt.Group,_t({as:"div",onChange:d,className:"not-prose gray-frame"},{children:[(0,e.jsxs)("div",_t({className:"flex text-xs leading-6 rounded-tl-xl pt-2"},{children:[(0,e.jsx)(Mt.List,_t({className:"flex"},{children:a.map((function(t,r){var n,a;return(0,e.jsx)(Ht,_t({myIndex:r,selectedIndex:c,selectedColor:l},{children:(null===(n=null==t?void 0:t.props)||void 0===n?void 0:n.filename)||"Filename"}),(null===(a=null==t?void 0:t.props)||void 0===a?void 0:a.filename)+"TabItem"+r)}))})),(0,e.jsx)("div",_t({className:o("flex-auto flex justify-end bg-codeblock-tabs border-y border-slate-500/30 pr-4 rounded-tr",c===a.length-1?"rounded-tl border-l":"")},{children:p&&(null==h?void 0:h.props)?(0,e.jsx)(Ge,{textToCopy:Ue(null===(n=null==h?void 0:h.props)||void 0===n?void 0:n.children),copiedTooltipColor:null!=s?s:l}):void 0}))]})),(0,e.jsx)(Mt.Panels,_t({className:"flex overflow-auto"},{children:a.map((function(t){var r,n;return(0,e.jsx)(Mt.Panel,_t({className:o("flex-none code-in-gray-frame",i&&"text-xs leading-5"),style:{fontVariantLigatures:"none"}},{children:p&&(null===(r=null==t?void 0:t.props)||void 0===r?void 0:r.children)}),null===(n=null==t?void 0:t.props)||void 0===n?void 0:n.filename)}))}))]}))}function Ht(t){var r=t.children,n=t.selectedIndex,a=t.myIndex,l=t.selectedColor,s=void 0===l?"#CBD5E1":l,i=n===a,u=i?null:n===a-1?"rounded":"normal",c=i?null:n===a+1?"rounded":"normal";return(0,e.jsxs)(Mt,_t({className:"flex items-center relative overflow-hidden px-4 py-1 text-slate-400 outline-none",style:i?{color:s}:{}},{children:[(0,e.jsx)("span",_t({className:"z-10"},{children:r})),!i&&(0,e.jsx)(Dt,{className:o("bg-codeblock-tabs border-y border-slate-500/30","rounded"===u&&"border-l rounded-tl","rounded"===c&&"border-r rounded-tr")}),"normal"===c&&(0,e.jsx)(Dt,{className:"inset-y-px border-r border-slate-200/5 z-20"}),i&&(0,e.jsx)("div",{className:"pointer-events-none absolute inset-0 border-b",style:{borderColor:s}})]}))}function Dt(t){var r=t.className;return(0,e.jsx)("div",{className:o("pointer-events-none absolute inset-0",r)})}var zt=function(){return zt=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},zt.apply(this,arguments)};function Vt(t){var r=t.children,n=t.icon,a=t.className,l=t.childrenClassName;return(0,e.jsx)("div",zt({className:o("px-5 py-4 mb-4 overflow-hidden rounded-xl",a)},{children:(0,e.jsxs)("div",zt({className:"flex items-start space-x-3"},{children:[(0,e.jsx)("div",zt({className:"mt-0.5 w-4"},{children:n})),(0,e.jsx)("div",zt({className:o("flex-1 text-sm prose overflow-x-auto",l)},{children:r}))]}))}))}function Ut(t){var r=t.children;return(0,e.jsx)(Vt,zt({icon:(0,e.jsx)("svg",zt({viewBox:"0 0 20 20",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",className:"flex-none w-5 h-5 text-zinc-400 dark:text-zinc-300","aria-label":"Info"},{children:(0,e.jsx)("path",{d:"M8 0C3.58125 0 0 3.58125 0 8C0 12.4187 3.58125 16 8 16C12.4187 16 16 12.4187 16 8C16 3.58125 12.4187 0 8 0ZM8 14.5C4.41563 14.5 1.5 11.5841 1.5 8C1.5 4.41594 4.41563 1.5 8 1.5C11.5844 1.5 14.5 4.41594 14.5 8C14.5 11.5841 11.5844 14.5 8 14.5ZM9.25 10.5H8.75V7.75C8.75 7.3375 8.41563 7 8 7H7C6.5875 7 6.25 7.3375 6.25 7.75C6.25 8.1625 6.5875 8.5 7 8.5H7.25V10.5H6.75C6.3375 10.5 6 10.8375 6 11.25C6 11.6625 6.3375 12 6.75 12H9.25C9.66406 12 10 11.6641 10 11.25C10 10.8359 9.66563 10.5 9.25 10.5ZM8 6C8.55219 6 9 5.55219 9 5C9 4.44781 8.55219 4 8 4C7.44781 4 7 4.44687 7 5C7 5.55313 7.44687 6 8 6Z"})})),className:"border border-zinc-500/20 bg-zinc-50/50 dark:bg-zinc-900 dark:border-zinc-500/30 dark:bg-zinc-500/10",childrenClassName:"text-zinc-900 dark:text-zinc-200"},{children:r}))}function Bt(t){var r=t.children;return(0,e.jsx)(Vt,zt({icon:(0,e.jsx)("svg",zt({className:"flex-none w-5 h-5 text-amber-400 dark:text-amber-300/80",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,"aria-label":"Warning"},{children:(0,e.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})})),className:"border border-amber-500/20 bg-amber-50/50 dark:border-amber-500/30 dark:bg-amber-500/10",childrenClassName:"text-amber-900 dark:text-amber-200"},{children:r}))}function $t(t){var r=t.children;return(0,e.jsx)(Vt,zt({icon:(0,e.jsx)("svg",zt({width:"14",height:"14",viewBox:"0 0 14 14",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",className:"w-4 h-4 text-sky-500","aria-label":"Note"},{children:(0,e.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 1.3C10.14 1.3 12.7 3.86 12.7 7C12.7 10.14 10.14 12.7 7 12.7C5.48908 12.6974 4.0408 12.096 2.97241 11.0276C1.90403 9.9592 1.30264 8.51092 1.3 7C1.3 3.86 3.86 1.3 7 1.3ZM7 0C3.14 0 0 3.14 0 7C0 10.86 3.14 14 7 14C10.86 14 14 10.86 14 7C14 3.14 10.86 0 7 0ZM8 3H6V8H8V3ZM8 9H6V11H8V9Z"})})),className:"border border-sky-500/20 bg-sky-50/50 dark:border-sky-500/30 dark:bg-sky-500/10",childrenClassName:"text-sky-900 dark:text-sky-200"},{children:r}))}function Gt(t){var r=t.children;return(0,e.jsx)(Vt,zt({icon:(0,e.jsx)("svg",zt({width:"11",height:"14",viewBox:"0 0 11 14",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",className:"text-emerald-600 dark:text-emerald-400/80 w-3.5 h-auto","aria-label":"Tip"},{children:(0,e.jsx)("path",{d:"M3.12794 12.4232C3.12794 12.5954 3.1776 12.7634 3.27244 12.907L3.74114 13.6095C3.88471 13.8248 4.21067 14 4.46964 14H6.15606C6.41415 14 6.74017 13.825 6.88373 13.6095L7.3508 12.9073C7.43114 12.7859 7.49705 12.569 7.49705 12.4232L7.50055 11.3513H3.12521L3.12794 12.4232ZM5.31288 0C2.52414 0.00875889 0.5 2.26889 0.5 4.78826C0.5 6.00188 0.949566 7.10829 1.69119 7.95492C2.14321 8.47011 2.84901 9.54727 3.11919 10.4557C3.12005 10.4625 3.12175 10.4698 3.12261 10.4771H7.50342C7.50427 10.4698 7.50598 10.463 7.50684 10.4557C7.77688 9.54727 8.48281 8.47011 8.93484 7.95492C9.67728 7.13181 10.1258 6.02703 10.1258 4.78826C10.1258 2.15486 7.9709 0.000106649 5.31288 0ZM7.94902 7.11267C7.52078 7.60079 6.99082 8.37878 6.6077 9.18794H4.02051C3.63739 8.37878 3.10743 7.60079 2.67947 7.11294C2.11997 6.47551 1.8126 5.63599 1.8126 4.78826C1.8126 3.09829 3.12794 1.31944 5.28827 1.3126C7.2435 1.3126 8.81315 2.88226 8.81315 4.78826C8.81315 5.63599 8.50688 6.47551 7.94902 7.11267ZM4.87534 2.18767C3.66939 2.18767 2.68767 3.16939 2.68767 4.37534C2.68767 4.61719 2.88336 4.81288 3.12521 4.81288C3.36705 4.81288 3.56274 4.61599 3.56274 4.37534C3.56274 3.6515 4.1515 3.06274 4.87534 3.06274C5.11719 3.06274 5.31288 2.86727 5.31288 2.62548C5.31288 2.38369 5.11599 2.18767 4.87534 2.18767Z"})})),className:"border border-emerald-500/20 bg-emerald-50/50 dark:border-emerald-500/30 dark:bg-emerald-500/10",childrenClassName:"text-emerald-900 dark:text-emerald-200"},{children:r}))}function qt(t){var r=t.children;return(0,e.jsx)(Vt,zt({icon:(0,e.jsx)("svg",zt({className:"text-green-600 dark:text-green-400/80 w-3.5 h-auto",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512","aria-label":"Check"},{children:(0,e.jsx)("path",{d:"M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z"})})),className:"border border-emerald-500/20 bg-emerald-50/50 dark:border-emerald-500/30 dark:bg-emerald-500/10",childrenClassName:"text-emerald-900 dark:text-emerald-200"},{children:r}))}var Wt=function(){return Wt=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Wt.apply(this,arguments)},Zt={none:"",md:"p-8"};function Qt(t){var r=t.as,n=void 0===r?"div":r,a=t.caption,l=t.style,s=t.className,i=t.containerClassName,u=t.html,c=t.children,d=t.hint,f=t.padding,p=void 0===f?"md":f,v=t.lightOnly,h=void 0!==v&&v,m=Zt[p];return(0,e.jsxs)("div",Wt({className:i},{children:[void 0!==d&&(0,e.jsxs)("div",Wt({className:"not-prose mb-4 flex items-center space-x-2"},{children:[(0,e.jsx)("svg",Wt({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512",className:"flex-none w-4 h-4 fill-slate-400 dark:fill-slate-300"},{children:(0,e.jsx)("path",{d:"M224 320c0 17.69 14.33 32 32 32h64c17.67 0 32-14.31 32-32s-14.33-32-32-32h-64C238.3 288 224 302.3 224 320zM267.6 256H352c17.67 0 32-14.31 32-32s-14.33-32-32-32h-80v40C272 240.5 270.3 248.5 267.6 256zM272 160H480c17.67 0 32-14.31 32-32s-14.33-32-32-32h-208.8C271.5 98.66 272 101.3 272 104V160zM320 416c0-17.69-14.33-32-32-32H224c-17.67 0-32 14.31-32 32s14.33 32 32 32h64C305.7 448 320 433.7 320 416zM202.1 355.8C196 345.6 192 333.3 192 320c0-5.766 1.08-11.24 2.51-16.55C157.4 300.6 128 269.9 128 232V159.1C128 151.2 135.2 144 143.1 144S160 151.2 159.1 159.1l0 69.72C159.1 245.2 171.3 271.1 200 271.1C222.1 271.1 240 254.1 240 232v-128C240 81.91 222.1 64 200 64H136.6C103.5 64 72.03 80 52.47 106.8L26.02 143.2C9.107 166.5 0 194.5 0 223.3V312C0 387.1 60.89 448 136 448h32.88C163.4 438.6 160 427.7 160 416C160 388.1 178 364.6 202.1 355.8z"})})),(0,e.jsx)("p",Wt({className:"text-slate-700 text-sm font-medium dark:text-slate-200"},{children:d}))]})),(0,e.jsxs)(n,Wt({style:l,className:o("not-prose relative bg-slate-50 rounded-xl overflow-hidden",!h&&"dark:bg-slate-800/25")},{children:[(0,e.jsx)("div",{style:{backgroundPosition:"10px 10px"},className:o("absolute inset-0 bg-grid-slate-100 [mask-image:linear-gradient(0deg,#fff,rgba(255,255,255,0.6))]",!h&&"dark:bg-grid-slate-700/25 dark:[mask-image:linear-gradient(0deg,rgba(255,255,255,0.1),rgba(255,255,255,0.5))]")}),(0,e.jsx)("div",Wt({className:o("relative rounded-xl overflow-auto flex justify-center",m,s)},u?{dangerouslySetInnerHTML:{__html:u}}:{children:c})),a&&(0,e.jsx)("div",Wt({className:o("relative rounded-xl overflow-auto flex justify-center -mt-2 pt-0 px-8 pb-7 text-sm text-slate-700 dark:text-slate-400",s)},{children:(0,e.jsx)("p",{children:a})})),(0,e.jsx)("div",{className:o("absolute inset-0 pointer-events-none border border-black/5 rounded-xl",!h&&"dark:border-white/5")})]}))]}))}var Kt=function(){return Kt=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Kt.apply(this,arguments)};function Xt(t){return(0,e.jsx)(Yt,Kt({},t))}function Yt(t){var r=t.name,n=t.type,a=t.defaultValue,l=t.required,s=void 0!==l&&l,i=t.optional,u=void 0!==i&&i,c=t.hidden,d=void 0!==c&&c,f=t.nameClasses,p=t.children;return d?null:(0,e.jsxs)("div",Kt({className:o("pb-3 mb-4 border-b border-zinc-100 dark:border-zinc-800")},{children:[(0,e.jsxs)("div",Kt({className:"flex font-mono text-sm"},{children:[r&&(0,e.jsxs)("div",Kt({className:"py-0.5 flex-1 space-x-2 truncate"},{children:[(0,e.jsx)("span",Kt({className:o("rounded-md px-1.5 py-px border border-zinc-300 dark:brightness-[1.35] dark:border-zinc-800 bg-zinc-50 dark:bg-background-dark font-medium",f,f&&!f.includes("text-")||!f?"dark:text-slate-200":void 0)},{children:r})),s&&(0,e.jsx)("span",Kt({className:"text-slate-500 dark:text-slate-300"},{children:"Required"})),u&&(0,e.jsx)("span",Kt({className:"text-slate-500 dark:text-slate-300"},{children:"Optional"})),a&&(0,e.jsxs)("span",Kt({className:"text-slate-500 dark:text-slate-300"},{children:["Default: ",a]}))]})),n&&(0,e.jsx)("div",Kt({className:"text-slate-600 dark:text-slate-300"},{children:n}))]})),(0,e.jsx)("div",Kt({className:"mt-2 prose-sm prose-slate dark:prose-dark"},{children:p}))]}))}var Jt=(e=>(e[e.First=0]="First",e[e.Previous=1]="Previous",e[e.Next=2]="Next",e[e.Last=3]="Last",e[e.Specific=4]="Specific",e[e.Nothing=5]="Nothing",e))(Jt||{});function er(e,r,n){let a=L(r);(0,t.useEffect)((()=>{function t(e){a.current(e)}return document.addEventListener(e,t,n),()=>document.removeEventListener(e,t,n)}),[e,n])}function tr(e,r,n=!0){let a=(0,t.useRef)(!1);function o(t,n){if(!a.current||t.defaultPrevented)return;let o=function e(t){return"function"==typeof t?e(t()):Array.isArray(t)||t instanceof Set?t:[t]}(e),l=n(t);if(null!==l&&l.getRootNode().contains(l)){for(let e of o){if(null===e)continue;let r=e instanceof HTMLElement?e:e.current;if(null!=r&&r.contains(l)||t.composed&&t.composedPath().includes(r))return}return!ut(l,it.Loose)&&-1!==l.tabIndex&&t.preventDefault(),r(t,l)}}(0,t.useEffect)((()=>{requestAnimationFrame((()=>{a.current=n}))}),[n]);let l=(0,t.useRef)(null);er("mousedown",(e=>{var t,r;a.current&&(l.current=(null==(r=null==(t=e.composedPath)?void 0:t.call(e))?void 0:r[0])||e.target)}),!0),er("click",(e=>{!l.current||(o(e,(()=>l.current)),l.current=null)}),!0),er("blur",(e=>o(e,(()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null))),!0)}function rr(e){return[e.screenX,e.screenY]}var nr=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(nr||{}),ar=(e=>(e[e.Pointer=0]="Pointer",e[e.Other=1]="Other",e))(ar||{}),or=(e=>(e[e.OpenMenu=0]="OpenMenu",e[e.CloseMenu=1]="CloseMenu",e[e.GoToItem=2]="GoToItem",e[e.Search=3]="Search",e[e.ClearSearch=4]="ClearSearch",e[e.RegisterItem=5]="RegisterItem",e[e.UnregisterItem=6]="UnregisterItem",e))(or||{});function lr(e,t=(e=>e)){let r=null!==e.activeItemIndex?e.items[e.activeItemIndex]:null,n=ft(t(e.items.slice()),(e=>e.dataRef.current.domRef.current)),a=r?n.indexOf(r):null;return-1===a&&(a=null),{items:n,activeItemIndex:a}}let sr={1:e=>1===e.menuState?e:{...e,activeItemIndex:null,menuState:1},0:e=>0===e.menuState?e:{...e,menuState:0},2:(e,t)=>{var r;let n=lr(e),a=function(e,t){let r=t.resolveItems();if(r.length<=0)return null;let n=t.resolveActiveIndex(),a=null!=n?n:-1,o=(()=>{switch(e.focus){case 0:return r.findIndex((e=>!t.resolveDisabled(e)));case 1:{let e=r.slice().reverse().findIndex(((e,r,n)=>!(-1!==a&&n.length-r-1>=a||t.resolveDisabled(e))));return-1===e?e:r.length-1-e}case 2:return r.findIndex(((e,r)=>!(r<=a||t.resolveDisabled(e))));case 3:{let e=r.slice().reverse().findIndex((e=>!t.resolveDisabled(e)));return-1===e?e:r.length-1-e}case 4:return r.findIndex((r=>t.resolveId(r)===e.id));case 5:return null;default:!function(e){throw new Error("Unexpected object: "+e)}(e)}})();return-1===o?n:o}(t,{resolveItems:()=>n.items,resolveActiveIndex:()=>n.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});return{...e,...n,searchQuery:"",activeItemIndex:a,activationTrigger:null!=(r=t.trigger)?r:1}},3:(e,t)=>{let r=""!==e.searchQuery?0:1,n=e.searchQuery+t.value.toLowerCase(),a=(null!==e.activeItemIndex?e.items.slice(e.activeItemIndex+r).concat(e.items.slice(0,e.activeItemIndex+r)):e.items).find((e=>{var t;return(null==(t=e.dataRef.current.textValue)?void 0:t.startsWith(n))&&!e.dataRef.current.disabled})),o=a?e.items.indexOf(a):-1;return-1===o||o===e.activeItemIndex?{...e,searchQuery:n}:{...e,searchQuery:n,activeItemIndex:o,activationTrigger:1}},4:e=>""===e.searchQuery?e:{...e,searchQuery:"",searchActiveItemIndex:null},5:(e,t)=>{let r=lr(e,(e=>[...e,{id:t.id,dataRef:t.dataRef}]));return{...e,...r}},6:(e,t)=>{let r=lr(e,(e=>{let r=e.findIndex((e=>e.id===t.id));return-1!==r&&e.splice(r,1),e}));return{...e,...r,activationTrigger:1}}},ir=(0,t.createContext)(null);function ur(e){let r=(0,t.useContext)(ir);if(null===r){let t=new Error(`<${e} /> is missing a parent <Menu /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,ur),t}return r}function cr(e,t){return h(t.type,sr,e,t)}ir.displayName="MenuContext";let dr=t.Fragment,fr=j((function(e,r){let n=(0,t.useReducer)(cr,{menuState:1,buttonRef:(0,t.createRef)(),itemsRef:(0,t.createRef)(),items:[],searchQuery:"",activeItemIndex:null,activationTrigger:1}),[{menuState:a,itemsRef:o,buttonRef:l},s]=n,i=F(r);tr([l,o],((e,t)=>{var r;s({type:1}),ut(t,it.Loose)||(e.preventDefault(),null==(r=l.current)||r.focus())}),0===a);let u=M((()=>{s({type:1})})),c=(0,t.useMemo)((()=>({open:0===a,close:u})),[a,u]),d=e,f={ref:i};return t.createElement(ir.Provider,{value:n},t.createElement(T,{value:h(a,{0:O.Open,1:O.Closed})},g({ourProps:f,theirProps:d,slot:c,defaultTag:dr,name:"Menu"})))})),pr=j((function(e,r){var n;let a=Je(),{id:o=`headlessui-menu-button-${a}`,...l}=e,[s,i]=ur("Menu.Button"),u=F(s.buttonRef,r),c=U(),d=M((e=>{switch(e.key){case et.Space:case et.Enter:case et.ArrowDown:e.preventDefault(),e.stopPropagation(),i({type:0}),c.nextFrame((()=>i({type:2,focus:Jt.First})));break;case et.ArrowUp:e.preventDefault(),e.stopPropagation(),i({type:0}),c.nextFrame((()=>i({type:2,focus:Jt.Last})))}})),f=M((e=>{e.key===et.Space&&e.preventDefault()})),p=M((t=>{if(function(e){let t=e.parentElement,r=null;for(;t&&!(t instanceof HTMLFieldSetElement);)t instanceof HTMLLegendElement&&(r=t),t=t.parentElement;let n=""===(null==t?void 0:t.getAttribute("disabled"));return(!n||!function(e){if(!e)return!1;let t=e.previousElementSibling;for(;null!==t;){if(t instanceof HTMLLegendElement)return!1;t=t.previousElementSibling}return!0}(r))&&n}(t.currentTarget))return t.preventDefault();e.disabled||(0===s.menuState?(i({type:1}),c.nextFrame((()=>{var e;return null==(e=s.buttonRef.current)?void 0:e.focus({preventScroll:!0})}))):(t.preventDefault(),i({type:0})))})),v=(0,t.useMemo)((()=>({open:0===s.menuState})),[s]);return g({ourProps:{ref:u,id:o,type:ht(e,s.buttonRef),"aria-haspopup":"menu","aria-controls":null==(n=s.itemsRef.current)?void 0:n.id,"aria-expanded":e.disabled?void 0:0===s.menuState,onKeyDown:d,onKeyUp:f,onClick:p},theirProps:l,slot:v,defaultTag:"button",name:"Menu.Button"})})),vr=b.RenderStrategy|b.Static,hr=j((function(e,r){var n,a;let o=Je(),{id:l=`headlessui-menu-items-${o}`,...s}=e,[i,u]=ur("Menu.Items"),c=F(i.itemsRef,r),d=function(...e){return(0,t.useMemo)((()=>tt(...e)),[...e])}(i.itemsRef),f=U(),p=P(),v=null!==p?p===O.Open:0===i.menuState;(0,t.useEffect)((()=>{let e=i.itemsRef.current;!e||0===i.menuState&&e!==(null==d?void 0:d.activeElement)&&e.focus({preventScroll:!0})}),[i.menuState,i.itemsRef,d]),function({container:e,accept:r,walk:n,enabled:a=!0}){let o=(0,t.useRef)(r),l=(0,t.useRef)(n);(0,t.useEffect)((()=>{o.current=r,l.current=n}),[r,n]),S((()=>{if(!e||!a)return;let t=tt(e);if(!t)return;let r=o.current,n=l.current,s=Object.assign((e=>r(e)),{acceptNode:r}),i=t.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,s,!1);for(;i.nextNode();)n(i.currentNode)}),[e,a,o,l])}({container:i.itemsRef.current,enabled:0===i.menuState,accept:e=>"menuitem"===e.getAttribute("role")?NodeFilter.FILTER_REJECT:e.hasAttribute("role")?NodeFilter.FILTER_SKIP:NodeFilter.FILTER_ACCEPT,walk(e){e.setAttribute("role","none")}});let h=M((e=>{var t,r;switch(f.dispose(),e.key){case et.Space:if(""!==i.searchQuery)return e.preventDefault(),e.stopPropagation(),u({type:3,value:e.key});case et.Enter:if(e.preventDefault(),e.stopPropagation(),u({type:1}),null!==i.activeItemIndex){let{dataRef:e}=i.items[i.activeItemIndex];null==(r=null==(t=e.current)?void 0:t.domRef.current)||r.click()}ct(i.buttonRef.current);break;case et.ArrowDown:return e.preventDefault(),e.stopPropagation(),u({type:2,focus:Jt.Next});case et.ArrowUp:return e.preventDefault(),e.stopPropagation(),u({type:2,focus:Jt.Previous});case et.Home:case et.PageUp:return e.preventDefault(),e.stopPropagation(),u({type:2,focus:Jt.First});case et.End:case et.PageDown:return e.preventDefault(),e.stopPropagation(),u({type:2,focus:Jt.Last});case et.Escape:e.preventDefault(),e.stopPropagation(),u({type:1}),D().nextFrame((()=>{var e;return null==(e=i.buttonRef.current)?void 0:e.focus({preventScroll:!0})}));break;case et.Tab:e.preventDefault(),e.stopPropagation(),u({type:1}),D().nextFrame((()=>{!function(e,t){pt(st(),t,{relativeTo:e})}(i.buttonRef.current,e.shiftKey?at.Previous:at.Next)}));break;default:1===e.key.length&&(u({type:3,value:e.key}),f.setTimeout((()=>u({type:4})),350))}})),m=M((e=>{e.key===et.Space&&e.preventDefault()})),b=(0,t.useMemo)((()=>({open:0===i.menuState})),[i]);return g({ourProps:{"aria-activedescendant":null===i.activeItemIndex||null==(n=i.items[i.activeItemIndex])?void 0:n.id,"aria-labelledby":null==(a=i.buttonRef.current)?void 0:a.id,id:l,onKeyDown:h,onKeyUp:m,role:"menu",tabIndex:0,ref:c},theirProps:s,slot:b,defaultTag:"div",features:vr,visible:v,name:"Menu.Items"})})),mr=t.Fragment,br=j((function(e,r){let n=Je(),{id:a=`headlessui-menu-item-${n}`,disabled:o=!1,...l}=e,[s,i]=ur("Menu.Item"),u=null!==s.activeItemIndex&&s.items[s.activeItemIndex].id===a,c=(0,t.useRef)(null),d=F(r,c);S((()=>{if(0!==s.menuState||!u||0===s.activationTrigger)return;let e=D();return e.requestAnimationFrame((()=>{var e,t;null==(t=null==(e=c.current)?void 0:e.scrollIntoView)||t.call(e,{block:"nearest"})})),e.dispose}),[c,u,s.menuState,s.activationTrigger,s.activeItemIndex]);let f=(0,t.useRef)({disabled:o,domRef:c});S((()=>{f.current.disabled=o}),[f,o]),S((()=>{var e,t;f.current.textValue=null==(t=null==(e=c.current)?void 0:e.textContent)?void 0:t.toLowerCase()}),[f,c]),S((()=>(i({type:5,id:a,dataRef:f}),()=>i({type:6,id:a}))),[f,a]);let p=M((()=>{i({type:1})})),v=M((e=>{if(o)return e.preventDefault();i({type:1}),ct(s.buttonRef.current)})),h=M((()=>{if(o)return i({type:2,focus:Jt.Nothing});i({type:2,focus:Jt.Specific,id:a})})),m=function(){let e=(0,t.useRef)([-1,-1]);return{wasMoved(t){let r=rr(t);return(e.current[0]!==r[0]||e.current[1]!==r[1])&&(e.current=r,!0)},update(t){e.current=rr(t)}}}(),b=M((e=>m.update(e))),x=M((e=>{!m.wasMoved(e)||o||u||i({type:2,focus:Jt.Specific,id:a,trigger:0})})),y=M((e=>{!m.wasMoved(e)||o||!u||i({type:2,focus:Jt.Nothing})})),w=(0,t.useMemo)((()=>({active:u,disabled:o,close:p})),[u,o,p]);return g({ourProps:{id:a,ref:d,role:"menuitem",tabIndex:!0===o?void 0:-1,"aria-disabled":!0===o||void 0,disabled:void 0,onClick:v,onFocus:h,onPointerEnter:b,onMouseEnter:b,onPointerMove:x,onMouseMove:x,onPointerLeave:y,onMouseLeave:y},theirProps:l,slot:w,defaultTag:mr,name:"Menu.Item"})})),xr=Object.assign(fr,{Button:pr,Items:hr,Item:br});var gr=function(){return gr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},gr.apply(this,arguments)};function yr(r){var n=r.options,a=r.onChange,l=r.defaultOption,s=r.selectedOptionClass,i=l,u=Array.isArray(n)&&n.length>0;null==l&&u&&(i=n[0]);var c=(0,t.useState)(i),d=c[0],f=c[1];return u?(0,e.jsx)("div",gr({className:"relative"},{children:(0,e.jsxs)(xr,{children:[(0,e.jsxs)(xr.Button,gr({className:"text-xs text-slate-500 dark:text-slate-400 leading-5 font-semibold !bg-zinc-400/10 rounded-full py-1 px-3 flex items-center space-x-2 hover:bg-zinc-400/20"},{children:[d,(0,e.jsx)("svg",gr({width:"6",height:"3",className:"ml-2 overflow-visible","aria-hidden":"true"},{children:(0,e.jsx)("path",{d:"M0 0L3 3L6 0",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})}))]})),(0,e.jsx)(xr.Items,gr({className:"absolute top-full mt-1 py-2 w-40 rounded-lg bg-white shadow text-sm leading-6 font-semibold text-slate-700 dark:bg-zinc-800 dark:text-slate-300"},{children:n.map((function(t){return(0,e.jsx)(xr.Item,gr({disabled:t===d},{children:function(r){var n=r.active;return(0,e.jsxs)("a",gr({className:o("flex items-center justify-between px-3 py-1 cursor-pointer",n&&"bg-zinc-50 text-slate-900 dark:bg-zinc-600/30 dark:text-white",t===d&&s),onClick:function(){return function(e){f(e),a&&a(e)}(t)}},{children:[t,t===d&&(0,e.jsx)("svg",gr({width:"24",height:"24",fill:"none","aria-hidden":"true"},{children:(0,e.jsx)("path",{d:"m7.75 12.75 2.25 2.5 6.25-6.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})}))]}))}}),t)}))}))]})})):null}var wr=function(){return wr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},wr.apply(this,arguments)};function jr(t){var r=t.title,n=t.isActive,a=void 0===n||n,l=t.children;return(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("h2",wr({className:o("flex text-sm leading-6 font-semibold whitespace-nowrap pt-3 pb-2.5 -mb-px max-w-max border-b",a?"text-primary dark:text-primary-light border-current":"text-slate-900 border-transparent hover:border-slate-300 dark:text-slate-200 dark:hover:border-slate-700")},{children:r})),l?(0,e.jsx)("div",wr({className:"prose dark:prose-dark"},{children:l})):null]})}var kr=function(){return kr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},kr.apply(this,arguments)};function Cr(r){var n,a,o=r.children,l=(0,t.useState)(0),s=l[0],i=l[1],u=t.Children.toArray(o),c=null===(a=null===(n=u[s])||void 0===n?void 0:n.props)||void 0===a?void 0:a.children;return(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("ul",kr({className:"not-prose mb-6 pb-[1px] flex-none min-w-full overflow-auto border-b border-slate-200 space-x-6 flex dark:border-slate-200/10"},{children:u.map((function(t,r){var n,a;return(0,e.jsx)("li",kr({className:"cursor-pointer",onClick:function(){return i(r)}},{children:(0,e.jsx)(jr,{title:null!==(a=null===(n=null==t?void 0:t.props)||void 0===n?void 0:n.title)&&void 0!==a?a:"Tab Title",isActive:r===s})}))}))})),(0,e.jsx)("div",kr({className:"prose dark:prose-dark"},{children:c}))]})}var Nr=function(){return Nr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Nr.apply(this,arguments)};function Or(t){var r=t.tip,n=t.children;return n?(0,e.jsxs)("span",Nr({className:"group z-10 inline relative"},{children:[Pr(n),(0,e.jsx)("span",Nr({className:"hidden group-hover:flex w-fit lg:whitespace-nowrap absolute bottom-full left-1/2 mb-0.5 pb-1 -translate-x-1/2 bg-codeblock text-center text-slate-50 text-xs px-1.5 py-1 rounded-lg border border-slate-50"},{children:r}))]})):null}function Pr(r){return(0,t.isValidElement)(r)?r:(0,e.jsx)("span",Nr({className:"underline decoration-dotted decoration-2 underline-offset-4 decoration-zinc-400 dark:decoration-zinc-500"},{children:r}))}var Tr=function(){return Tr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Tr.apply(this,arguments)};const Er=function(r){var n=r.title,a=r.description,l=r.defaultOpen,s=void 0!==l&&l,u=r.onChange,c=r.children,d=(0,t.useState)(s),f=d[0],p=d[1];return(0,e.jsxs)("div",Tr({role:"listitem",className:""},{children:[(0,e.jsx)(i,{title:n,description:a,open:f,setOpen:function(e){p(e),u&&u(e)}}),(0,e.jsx)("div",Tr({id:n+"Children",className:o("mt-2 pt-2 mb-4 mx-[6px] px-4 border-l border-slate-100 dark:border-slate-800",!f&&"hidden")},{children:c}))]}),n)}})(),module.exports=n})();
|
|
2
|
+
(()=>{var e={8:(e,t,r)=>{var n,a="__lodash_hash_undefined__",o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,l=/^\w*$/,i=/^\./,s=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,c=/\\(\\)?/g,u=/^\[object .+?Constructor\]$/,d=/^(?:0|[1-9]\d*)$/,f="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,p="object"==typeof self&&self&&self.Object===Object&&self,v=f||p||Function("return this")(),h=Array.prototype,m=Function.prototype,b=Object.prototype,x=v["__core-js_shared__"],g=(n=/[^.]+$/.exec(x&&x.keys&&x.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",y=m.toString,w=b.hasOwnProperty,j=b.toString,k=RegExp("^"+y.call(w).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),C=v.Symbol,N=h.splice,O=_(v,"Map"),P=_(Object,"create"),T=C?C.prototype:void 0,E=T?T.toString:void 0;function S(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function I(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function L(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function A(e,t,r){var n=e[t];w.call(e,t)&&U(n,r)&&(void 0!==r||t in e)||(e[t]=r)}function R(e,t){for(var r=e.length;r--;)if(U(e[r][0],t))return r;return-1}function M(e,t){var r,n,a=e.__data__;return("string"==(n=typeof(r=t))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?a["string"==typeof t?"string":"hash"]:a.map}function _(e,t){var r=function(e,t){return null==e?void 0:e[t]}(e,t);return function(e){if(!B(e)||g&&g in e)return!1;var t=function(e){var t=B(e)?j.call(e):"";return"[object Function]"==t||"[object GeneratorFunction]"==t}(e)||function(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}(e)?k:u;return t.test(function(e){if(null!=e){try{return y.call(e)}catch(e){}try{return e+""}catch(e){}}return""}(e))}(r)?r:void 0}function F(e,t){return!!(t=null==t?9007199254740991:t)&&("number"==typeof e||d.test(e))&&e>-1&&e%1==0&&e<t}S.prototype.clear=function(){this.__data__=P?P(null):{}},S.prototype.delete=function(e){return this.has(e)&&delete this.__data__[e]},S.prototype.get=function(e){var t=this.__data__;if(P){var r=t[e];return r===a?void 0:r}return w.call(t,e)?t[e]:void 0},S.prototype.has=function(e){var t=this.__data__;return P?void 0!==t[e]:w.call(t,e)},S.prototype.set=function(e,t){return this.__data__[e]=P&&void 0===t?a:t,this},I.prototype.clear=function(){this.__data__=[]},I.prototype.delete=function(e){var t=this.__data__,r=R(t,e);return!(r<0||(r==t.length-1?t.pop():N.call(t,r,1),0))},I.prototype.get=function(e){var t=this.__data__,r=R(t,e);return r<0?void 0:t[r][1]},I.prototype.has=function(e){return R(this.__data__,e)>-1},I.prototype.set=function(e,t){var r=this.__data__,n=R(r,e);return n<0?r.push([e,t]):r[n][1]=t,this},L.prototype.clear=function(){this.__data__={hash:new S,map:new(O||I),string:new S}},L.prototype.delete=function(e){return M(this,e).delete(e)},L.prototype.get=function(e){return M(this,e).get(e)},L.prototype.has=function(e){return M(this,e).has(e)},L.prototype.set=function(e,t){return M(this,e).set(e,t),this};var H=D((function(e){var t;e=null==(t=e)?"":function(e){if("string"==typeof e)return e;if($(e))return E?E.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(t);var r=[];return i.test(e)&&r.push(""),e.replace(s,(function(e,t,n,a){r.push(n?a.replace(c,"$1"):t||e)})),r}));function z(e){if("string"==typeof e||$(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function D(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError("Expected a function");var r=function(){var n=arguments,a=t?t.apply(this,n):n[0],o=r.cache;if(o.has(a))return o.get(a);var l=e.apply(this,n);return r.cache=o.set(a,l),l};return r.cache=new(D.Cache||L),r}function U(e,t){return e===t||e!=e&&t!=t}D.Cache=L;var V=Array.isArray;function B(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function $(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==j.call(e)}e.exports=function(e,t,r){return null==e?e:function(e,t,r,n){if(!B(e))return e;t=function(e,t){if(V(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!$(e))||l.test(e)||!o.test(e)||null!=t&&e in Object(t)}(t,e)?[t]:function(e){return V(e)?e:H(e)}(t);for(var a=-1,i=t.length,s=i-1,c=e;null!=c&&++a<i;){var u=z(t[a]),d=r;if(a!=s){var f=c[u];void 0===(d=n?n(f,u,c):void 0)&&(d=B(f)?f:F(t[a+1])?[]:{})}A(c,u,d),c=c[u]}return e}(e,t,r)}},455:(e,t,r)=>{"use strict";var n=r(258),a=Symbol.for("react.element"),o=Symbol.for("react.fragment"),l=Object.prototype.hasOwnProperty,i=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function c(e,t,r){var n,o={},c=null,u=null;for(n in void 0!==r&&(c=""+r),void 0!==t.key&&(c=""+t.key),void 0!==t.ref&&(u=t.ref),t)l.call(t,n)&&!s.hasOwnProperty(n)&&(o[n]=t[n]);if(e&&e.defaultProps)for(n in t=e.defaultProps)void 0===o[n]&&(o[n]=t[n]);return{$$typeof:a,type:e,key:c,ref:u,props:o,_owner:i.current}}t.Fragment=o,t.jsx=c,t.jsxs=c},557:(e,t,r)=>{"use strict";e.exports=r(455)},258:e=>{"use strict";e.exports=require("react")}},t={};function r(n){var a=t[n];if(void 0!==a)return a.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,r),o.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};(()=>{"use strict";r.r(n),r.d(n,{Accordion:()=>f,AccordionGroup:()=>v,ApiPlayground:()=>Ce,AppearFromTop:()=>le,Button:()=>Re,Card:()=>He,CardGroup:()=>De,Check:()=>qt,CodeBlock:()=>Qe,CodeGroup:()=>Ft,Expandable:()=>Er,Frame:()=>Qt,Info:()=>Vt,Note:()=>$t,Param:()=>Xt,PillSelect:()=>yr,RequestMethodBubble:()=>Oe,RequestPathHeader:()=>Se,Tab:()=>jr,Tabs:()=>Cr,Tip:()=>Gt,Tooltip:()=>Or,Warning:()=>Bt});var e=r(557),t=r(258);function a(e){var t,r,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(r=a(e[t]))&&(n&&(n+=" "),n+=r);else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}const o=function(){for(var e,t,r=0,n="";r<arguments.length;)(e=arguments[r++])&&(t=a(e))&&(n&&(n+=" "),n+=t);return n};var l=function(){return l=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},l.apply(this,arguments)};function i(t){var r=t.open;return(0,e.jsx)("svg",l({xmlns:"http://www.w3.org/2000/svg",className:o("h-3 w-3 transition",r&&"duration-200 rotate-90 -mt-1",!r&&"duration-75"),viewBox:"0 0 256 512",fill:"currentColor"},{children:(0,e.jsx)("path",{d:"M118.6 105.4l128 127.1C252.9 239.6 256 247.8 256 255.1s-3.125 16.38-9.375 22.63l-128 127.1c-9.156 9.156-22.91 11.9-34.88 6.943S64 396.9 64 383.1V128c0-12.94 7.781-24.62 19.75-29.58S109.5 96.23 118.6 105.4z"})}))}const s=function(t){var r=t.title,n=t.description,a=t.open,o=t.setOpen;return(0,e.jsxs)("button",l({onClick:function(){return o(!a)},className:"not-prose mt-1.5 flex flex-row items-center content-center w-full py-1 text-slate-700 hover:text-slate-900 dark:text-slate-400 dark:hover:text-slate-200 ".concat(a?"":"rounded-b-xl"),"aria-controls":r+"Children","aria-expanded":a},{children:[(0,e.jsx)(i,{open:a}),(0,e.jsxs)("div",l({className:"ml-2 leading-tight text-left"},{children:[(0,e.jsxs)("p",l({className:"m-0"},{children:[a?"Hide":"Show"," ",r]})),n?(0,e.jsx)("p",l({className:"m-0"},{children:n})):null]}))]}))};var c=function(){return c=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},c.apply(this,arguments)};const u=function(t){var r=t.title,n=t.description,a=t.open,l=t.setOpen,s=t.icon,u=t.coverClass;return(0,e.jsxs)("button",c({onClick:function(){return l(!a)},className:o("not-prose flex flex-row items-center content-center w-full",u),"aria-controls":r+"Children","aria-expanded":a},{children:[(0,e.jsx)("div",c({className:"mr-0.5"},{children:(0,e.jsx)(i,{open:a})})),s?(0,e.jsx)("div",c({className:"h-4 w-4 fill-slate-800 dark:fill-slate-100 text-slate-800 dark:text-slate-100"},{children:s})):null,(0,e.jsxs)("div",c({className:"leading-tight text-left"},{children:[(0,e.jsx)("p",c({className:"m-0 font-medium text-slate-900 dark:text-slate-200"},{children:r})),n?(0,e.jsx)("p",c({className:"m-0 text-slate-900 dark:text-slate-200"},{children:n})):null]}))]}))};var d=function(){return d=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},d.apply(this,arguments)};const f=function(r){var n=r.title,a=r.description,l=r.defaultOpen,i=void 0!==l&&l,s=r.icon,c=r.onChange,f=r.variant,p=void 0===f?"rounded":f,v=r.children,h=(0,t.useState)(Boolean(i)),m=h[0],b=h[1],x=function(e){return"minimalist"===e?{parentClass:"",coverClass:"[&>div]:ml-2 py-1 text-slate-700 hover:text-slate-900 dark:text-slate-400 dark:hover:text-slate-200",contentClass:"mt-2 pt-1 mb-4 mx-[7px] px-4 border-l border-zinc-100 dark:border-zinc-800"}:{parentClass:"border dark:border-zinc-800 rounded-xl mb-3 overflow-hidden",coverClass:"py-4 px-5 space-x-2 hover:bg-slate-100 hover:dark:bg-slate-800 rounded-t-xl",contentClass:"mt-2 mb-4 mx-6"}}(p),g=x.parentClass,y=x.coverClass,w=x.contentClass;return(0,e.jsxs)("div",d({role:"listitem",className:g},{children:[(0,e.jsx)(u,{title:n,description:a,open:m,setOpen:function(e){b(e),c&&c(e)},icon:s,coverClass:y}),(0,e.jsx)("div",d({className:o(w,!m&&"hidden")},{children:v}))]}),n)};var p=function(){return p=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},p.apply(this,arguments)};const v=function(t){var r=t.children;return(0,e.jsx)("div",p({className:"[&>div]:border-0 [&>div]:rounded-none [&>div>button]:rounded-none [&>div]:mb-0 overflow-hidden mt-0 mb-3 rounded-xl prose prose-slate dark:prose-dark divide-y divide-inherit border dark:border-zinc-800",role:"list"},{children:r}))};function h(e,t,...r){if(e in t){let n=t[e];return"function"==typeof n?n(...r):n}let n=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map((e=>`"${e}"`)).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(n,h),n}var m,b=((m=b||{})[m.None=0]="None",m[m.RenderStrategy=1]="RenderStrategy",m[m.Static=2]="Static",m),x=(e=>(e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden",e))(x||{});function g({ourProps:e,theirProps:t,slot:r,defaultTag:n,features:a,visible:o=!0,name:l}){let i=w(t,e);if(o)return y(i,r,n,l);let s=null!=a?a:0;if(2&s){let{static:e=!1,...t}=i;if(e)return y(t,r,n,l)}if(1&s){let{unmount:e=!0,...t}=i;return h(e?0:1,{0:()=>null,1:()=>y({...t,hidden:!0,style:{display:"none"}},r,n,l)})}return y(i,r,n,l)}function y(e,r={},n,a){let{as:o=n,children:l,refName:i="ref",...s}=C(e,["unmount","static"]),c=void 0!==e.ref?{[i]:e.ref}:{},u="function"==typeof l?l(r):l;s.className&&"function"==typeof s.className&&(s.className=s.className(r));let d={};if(r){let e=!1,t=[];for(let[n,a]of Object.entries(r))"boolean"==typeof a&&(e=!0),!0===a&&t.push(n);e&&(d["data-headlessui-state"]=t.join(" "))}if(o===t.Fragment&&Object.keys(k(s)).length>0){if(!(0,t.isValidElement)(u)||Array.isArray(u)&&u.length>1)throw new Error(['Passing props on "Fragment"!',"",`The current component <${a} /> is rendering a "Fragment".`,"However we need to passthrough the following props:",Object.keys(s).map((e=>` - ${e}`)).join("\n"),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".',"Render a single element as the child so that we can forward the props onto that element."].map((e=>` - ${e}`)).join("\n")].join("\n"));return(0,t.cloneElement)(u,Object.assign({},w(u.props,k(C(s,["ref"]))),d,c,function(...e){return{ref:e.every((e=>null==e))?void 0:t=>{for(let r of e)null!=r&&("function"==typeof r?r(t):r.current=t)}}}(u.ref,c.ref)))}return(0,t.createElement)(o,Object.assign({},C(s,["ref"]),o!==t.Fragment&&c,o!==t.Fragment&&d),u)}function w(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},r={};for(let n of e)for(let e in n)e.startsWith("on")&&"function"==typeof n[e]?(null!=r[e]||(r[e]=[]),r[e].push(n[e])):t[e]=n[e];if(t.disabled||t["aria-disabled"])return Object.assign(t,Object.fromEntries(Object.keys(r).map((e=>[e,void 0]))));for(let e in r)Object.assign(t,{[e](t,...n){let a=r[e];for(let e of a){if((t instanceof Event||(null==t?void 0:t.nativeEvent)instanceof Event)&&t.defaultPrevented)return;e(t,...n)}}});return t}function j(e){var r;return Object.assign((0,t.forwardRef)(e),{displayName:null!=(r=e.displayName)?r:e.name})}function k(e){let t=Object.assign({},e);for(let e in t)void 0===t[e]&&delete t[e];return t}function C(e,t=[]){let r=Object.assign({},e);for(let e of t)e in r&&delete r[e];return r}let N=(0,t.createContext)(null);N.displayName="OpenClosedContext";var O=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(O||{});function P(){return(0,t.useContext)(N)}function T({value:e,children:r}){return t.createElement(N.Provider,{value:e},r)}const E="undefined"==typeof window||"undefined"==typeof document;let S=E?t.useEffect:t.useLayoutEffect;function I(){let e=(0,t.useRef)(!1);return S((()=>(e.current=!0,()=>{e.current=!1})),[]),e}function L(e){let r=(0,t.useRef)(e);return S((()=>{r.current=e}),[e]),r}let A={serverHandoffComplete:!1};function R(){let[e,r]=(0,t.useState)(A.serverHandoffComplete);return(0,t.useEffect)((()=>{!0!==e&&r(!0)}),[e]),(0,t.useEffect)((()=>{!1===A.serverHandoffComplete&&(A.serverHandoffComplete=!0)}),[]),e}let M=function(e){let r=L(e);return t.useCallback(((...e)=>r.current(...e)),[r])},_=Symbol();function F(...e){let r=(0,t.useRef)(e);(0,t.useEffect)((()=>{r.current=e}),[e]);let n=M((e=>{for(let t of r.current)null!=t&&("function"==typeof t?t(e):t.current=e)}));return e.every((e=>null==e||(null==e?void 0:e[_])))?void 0:n}function H(e){"function"==typeof queueMicrotask?queueMicrotask(e):Promise.resolve().then(e).catch((e=>setTimeout((()=>{throw e}))))}function z(){let e=[],t=[],r={enqueue(e){t.push(e)},addEventListener:(e,t,n,a)=>(e.addEventListener(t,n,a),r.add((()=>e.removeEventListener(t,n,a)))),requestAnimationFrame(...e){let t=requestAnimationFrame(...e);return r.add((()=>cancelAnimationFrame(t)))},nextFrame:(...e)=>r.requestAnimationFrame((()=>r.requestAnimationFrame(...e))),setTimeout(...e){let t=setTimeout(...e);return r.add((()=>clearTimeout(t)))},microTask(...e){let t={current:!0};return H((()=>{t.current&&e[0]()})),r.add((()=>{t.current=!1}))},add:t=>(e.push(t),()=>{let r=e.indexOf(t);if(r>=0){let[t]=e.splice(r,1);t()}}),dispose(){for(let t of e.splice(0))t()},async workQueue(){for(let e of t.splice(0))await e()}};return r}function D(e,...t){e&&t.length>0&&e.classList.add(...t)}function U(e,...t){e&&t.length>0&&e.classList.remove(...t)}function V(){let[e]=(0,t.useState)(z);return(0,t.useEffect)((()=>()=>e.dispose()),[e]),e}function B({container:e,direction:t,classes:r,onStart:n,onStop:a}){let o=I(),l=V(),i=L(t);S((()=>{let t=z();l.add(t.dispose);let s=e.current;if(s&&"idle"!==i.current&&o.current)return t.dispose(),n.current(i.current),t.add(function(e,t,r,n){let a=r?"enter":"leave",o=z(),l=void 0!==n?function(e){let t={called:!1};return(...r)=>{if(!t.called)return t.called=!0,e(...r)}}(n):()=>{};"enter"===a&&(e.removeAttribute("hidden"),e.style.display="");let i=h(a,{enter:()=>t.enter,leave:()=>t.leave}),s=h(a,{enter:()=>t.enterTo,leave:()=>t.leaveTo}),c=h(a,{enter:()=>t.enterFrom,leave:()=>t.leaveFrom});return U(e,...t.enter,...t.enterTo,...t.enterFrom,...t.leave,...t.leaveFrom,...t.leaveTo,...t.entered),D(e,...i,...c),o.nextFrame((()=>{U(e,...c),D(e,...s),function(e,t){let r=z();if(!e)return r.dispose;let{transitionDuration:n,transitionDelay:a}=getComputedStyle(e),[o,l]=[n,a].map((e=>{let[t=0]=e.split(",").filter(Boolean).map((e=>e.includes("ms")?parseFloat(e):1e3*parseFloat(e))).sort(((e,t)=>t-e));return t}));if(o+l!==0){let n=r.addEventListener(e,"transitionend",(e=>{e.target===e.currentTarget&&(t(),n())}))}else t();r.add((()=>t())),r.dispose}(e,(()=>(U(e,...i),D(e,...t.entered),l())))})),o.dispose}(s,r.current,"enter"===i.current,(()=>{t.dispose(),a.current(i.current)}))),t.dispose}),[t])}function $(...e){return e.filter(Boolean).join(" ")}function G(e=""){return e.split(" ").filter((e=>e.trim().length>1))}let q=(0,t.createContext)(null);q.displayName="TransitionContext";var W=(e=>(e.Visible="visible",e.Hidden="hidden",e))(W||{});let Z=(0,t.createContext)(null);function Q(e){return"children"in e?Q(e.children):e.current.filter((({el:e})=>null!==e.current)).filter((({state:e})=>"visible"===e)).length>0}function K(e,r){let n=L(e),a=(0,t.useRef)([]),o=I(),l=V(),i=M(((e,t=x.Hidden)=>{let r=a.current.findIndex((({el:t})=>t===e));-1!==r&&(h(t,{[x.Unmount](){a.current.splice(r,1)},[x.Hidden](){a.current[r].state="hidden"}}),l.microTask((()=>{var e;!Q(a)&&o.current&&(null==(e=n.current)||e.call(n))})))})),s=M((e=>{let t=a.current.find((({el:t})=>t===e));return t?"visible"!==t.state&&(t.state="visible"):a.current.push({el:e,state:"visible"}),()=>i(e,x.Unmount)})),c=(0,t.useRef)([]),u=(0,t.useRef)(Promise.resolve()),d=(0,t.useRef)({enter:[],leave:[],idle:[]}),f=M(((e,t,n)=>{c.current.splice(0),r&&(r.chains.current[t]=r.chains.current[t].filter((([t])=>t!==e))),null==r||r.chains.current[t].push([e,new Promise((e=>{c.current.push(e)}))]),null==r||r.chains.current[t].push([e,new Promise((e=>{Promise.all(d.current[t].map((([e,t])=>t))).then((()=>e()))}))]),"enter"===t?u.current=u.current.then((()=>null==r?void 0:r.wait.current)).then((()=>n(t))):n(t)})),p=M(((e,t,r)=>{Promise.all(d.current[t].splice(0).map((([e,t])=>t))).then((()=>{var e;null==(e=c.current.shift())||e()})).then((()=>r(t)))}));return(0,t.useMemo)((()=>({children:a,register:s,unregister:i,onStart:f,onStop:p,wait:u,chains:d})),[s,i,a,f,p,d,u])}function X(){}Z.displayName="NestingContext";let Y=["beforeEnter","afterEnter","beforeLeave","afterLeave"];function J(e){var t;let r={};for(let n of Y)r[n]=null!=(t=e[n])?t:X;return r}let ee=b.RenderStrategy,te=j((function(e,r){let{beforeEnter:n,afterEnter:a,beforeLeave:o,afterLeave:l,enter:i,enterFrom:s,enterTo:c,entered:u,leave:d,leaveFrom:f,leaveTo:p,...v}=e,m=(0,t.useRef)(null),b=F(m,r),y=v.unmount?x.Unmount:x.Hidden,{show:w,appear:j,initial:k}=function(){let e=(0,t.useContext)(q);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),[C,N]=(0,t.useState)(w?"visible":"hidden"),P=function(){let e=(0,t.useContext)(Z);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),{register:E,unregister:S}=P,I=(0,t.useRef)(null);(0,t.useEffect)((()=>E(m)),[E,m]),(0,t.useEffect)((()=>{if(y===x.Hidden&&m.current)return w&&"visible"!==C?void N("visible"):h(C,{hidden:()=>S(m),visible:()=>E(m)})}),[C,m,E,S,w,y]);let A=L({enter:G(i),enterFrom:G(s),enterTo:G(c),entered:G(u),leave:G(d),leaveFrom:G(f),leaveTo:G(p)}),_=function(e){let r=(0,t.useRef)(J(e));return(0,t.useEffect)((()=>{r.current=J(e)}),[e]),r}({beforeEnter:n,afterEnter:a,beforeLeave:o,afterLeave:l}),H=R();(0,t.useEffect)((()=>{if(H&&"visible"===C&&null===m.current)throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}),[m,C,H]);let z=k&&!j,D=!H||z||I.current===w?"idle":w?"enter":"leave",U=M((e=>h(e,{enter:()=>_.current.beforeEnter(),leave:()=>_.current.beforeLeave(),idle:()=>{}}))),V=M((e=>h(e,{enter:()=>_.current.afterEnter(),leave:()=>_.current.afterLeave(),idle:()=>{}}))),W=K((()=>{N("hidden"),S(m)}),P);B({container:m,classes:A,direction:D,onStart:L((e=>{W.onStart(m,e,U)})),onStop:L((e=>{W.onStop(m,e,V),"leave"===e&&!Q(W)&&(N("hidden"),S(m))}))}),(0,t.useEffect)((()=>{!z||(y===x.Hidden?I.current=null:I.current=w)}),[w,z,C]);let X=v,Y={ref:b};return j&&w&&("undefined"==typeof window||"undefined"==typeof document)&&(X={...X,className:$(v.className,...A.current.enter,...A.current.enterFrom)}),t.createElement(Z.Provider,{value:W},t.createElement(T,{value:h(C,{visible:O.Open,hidden:O.Closed})},g({ourProps:Y,theirProps:X,defaultTag:"div",features:ee,visible:"visible"===C,name:"Transition.Child"})))})),re=j((function(e,r){let{show:n,appear:a=!1,unmount:o,...l}=e,i=(0,t.useRef)(null),s=F(i,r);R();let c=P();if(void 0===n&&null!==c&&(n=h(c,{[O.Open]:!0,[O.Closed]:!1})),![!0,!1].includes(n))throw new Error("A <Transition /> is used but it is missing a `show={true | false}` prop.");let[u,d]=(0,t.useState)(n?"visible":"hidden"),f=K((()=>{d("hidden")})),[p,v]=(0,t.useState)(!0),m=(0,t.useRef)([n]);S((()=>{!1!==p&&m.current[m.current.length-1]!==n&&(m.current.push(n),v(!1))}),[m,n]);let b=(0,t.useMemo)((()=>({show:n,appear:a,initial:p})),[n,a,p]);(0,t.useEffect)((()=>{if(n)d("visible");else if(Q(f)){let e=i.current;if(!e)return;let t=e.getBoundingClientRect();0===t.x&&0===t.y&&0===t.width&&0===t.height&&d("hidden")}else d("hidden")}),[n,f]);let x={unmount:o};return t.createElement(Z.Provider,{value:f},t.createElement(q.Provider,{value:b},g({ourProps:{...x,as:t.Fragment,children:t.createElement(te,{ref:s,...x,...l})},theirProps:{},defaultTag:t.Fragment,features:ee,visible:"visible"===u,name:"Transition"})))})),ne=j((function(e,r){let n=null!==(0,t.useContext)(q),a=null!==P();return t.createElement(t.Fragment,null,!n&&a?t.createElement(re,{ref:r,...e}):t.createElement(te,{ref:r,...e}))})),ae=Object.assign(re,{Child:ne,Root:re});var oe=function(){return oe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},oe.apply(this,arguments)};function le(t){var r=t.show,n=t.className,a=t.children;return(0,e.jsx)("div",oe({className:"overflow-hidden relative"},{children:(0,e.jsx)(ae,oe({show:r,className:n,enter:"transition duration-200 ease-out transform",enterFrom:"transform opacity-0 -translate-y-12",enterTo:"transform opacity-100 translate-y-0",leave:"transition duration-75 ease-out transform",leaveFrom:"transform opacity-100 translate-y-0",leaveTo:"transform opacity-0 -translate-y-6"},{children:a}))}))}var ie=r(8),se=r.n(ie),ce=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"bg-green-600";case"POST":return"bg-blue-600";case"PUT":return"bg-yellow-600";case"DELETE":return"bg-red-600";case"PATCH":return"bg-orange-600";default:return"bg-slate-600"}},ue=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"hover:bg-green-800 disabled:bg-green-700";case"POST":return"hover:bg-blue-800 disabled:bg-blue-700";case"PUT":return"hover:bg-yellow-800 disabled:bg-yellow-700";case"DELETE":return"hover:bg-red-800 disabled:bg-red-700";case"PATCH":return"hover:bg-orange-800 disabled:bg-orange-700";default:return"hover:bg-slate-800 disabled:bg-slate-700"}},de=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"text-green-600 dark:text-green-500";case"POST":return"text-blue-600 dark:text-blue-500";case"PUT":return"text-yellow-600 dark:text-yellow-500";case"DELETE":return"text-red-600 dark:text-red-500";case"PATCH":return"text-orange-600 dark:text-orange-500";default:return"text-slate-600 dark:text-slate-500"}},fe=function(e){switch(null==e?void 0:e.toUpperCase()){case"GET":return"border-green-600 dark:border-green-500";case"POST":return"border-blue-600 dark:border-blue-500";case"PUT":return"border-yellow-600 dark:border-yellow-500";case"DELETE":return"border-red-600 dark:border-red-500";case"PATCH":return"border-orange-600 dark:border-orange-500";default:return"border-slate-600 dark:border-slate-500"}},pe=function(){return pe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},pe.apply(this,arguments)};function ve(t){var r=t.onClick;return(0,e.jsxs)("div",pe({className:"relative"},{children:[(0,e.jsx)("button",pe({className:"w-full py-0.5 px-2 rounded text-left border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-600 dark:text-slate-200 hover:bg-slate-50 dark:hover:bg-slate-800 hover:border-slate-400 dark:hover:border-slate-500",onClick:r},{children:"Add Item"})),(0,e.jsx)("svg",pe({className:"hidden sm:block absolute right-2 top-[7px] h-3 fill-slate-500 dark:fill-slate-400 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512"},{children:(0,e.jsx)("path",{d:"M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"})}))]}))}var he=function(){return he=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},he.apply(this,arguments)},me=function(t){var r=t.options,n=t.value,a=t.onInputChange;return(0,e.jsxs)("div",he({className:"relative"},{children:[(0,e.jsxs)("select",he({className:"w-full py-0.5 px-2 rounded border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-600 dark:text-slate-200 hover:bg-slate-50 dark:hover:bg-zinc-800 hover:border-slate-400 dark:hover:border-slate-500 cursor-pointer",onChange:function(e){return a(e.target.value)},value:n||"Select"},{children:[(0,e.jsx)("option",he({disabled:!0},{children:"Select"})),r.map((function(t){return(0,e.jsx)("option",{children:t},t)}))]})),(0,e.jsx)(be,{})]}))},be=function(){return(0,e.jsx)("svg",he({className:"absolute right-2 top-[7px] h-3 fill-slate-500 dark:fill-slate-400 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 384 512"},{children:(0,e.jsx)("path",{d:"M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"})}))},xe=function(){return xe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},xe.apply(this,arguments)},ge=function(e,t,r){if(r||2===arguments.length)for(var n,a=0,o=t.length;a<o;a++)!n&&a in t||(n||(n=Array.prototype.slice.call(t,0,a)),n[a]=t[a]);return e.concat(n||Array.prototype.slice.call(t))};function ye(r){var n,a,l,i=r.param,s=r.value,c=r.onChangeParam,u=r.onDeleteArrayItem,d=r.parentInputs,f=void 0===d?[]:d,p="object"===i.type&&null!=i.properties,v="array"===i.type,h=(0,t.useState)(Boolean(i.required)&&p||v&&Array.isArray(s)&&s.length>0),m=h[0],b=h[1],x=(0,t.useState)(p?s:{}),g=x[0],y=x[1],w=(0,t.useState)(v&&Array.isArray(s)?s:[]),j=w[0],k=w[1];"string"==typeof i.type&&(l=null===(n=i.type)||void 0===n?void 0:n.toLowerCase());var C=function(e){c(f,i.name,e)},N=function(){var e=ge(ge([],j,!0),[{param:xe(xe({},i),{type:i.properties?"object":we(i.type)}),value:i.properties?{}:null}],!1);k(e),C(e.map((function(e){return e.value})))};return a="boolean"===l?(0,e.jsx)(me,{options:["true","false"],value:null!=s?s.toString():"",onInputChange:function(e){return C("true"===e)}}):"integer"===l||"number"===l?(0,e.jsx)("input",{className:"w-full py-0.5 px-2 rounded border border-slate-200 dark:border-slate-700 bg-white dark:bg-dark-input text-slate-700 dark:text-slate-200",type:"number",placeholder:i.placeholder,value:s,onChange:function(e){return C(parseInt(e.target.value,10))}}):"file"===l||"files"===l?(0,e.jsxs)("button",xe({className:"relative flex items-center px-2 w-full h-7 rounded border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-700 dark:text-slate-200 border-dashed hover:bg-slate-50 dark:hover:bg-slate-800"},{children:[(0,e.jsx)("input",{className:"z-5 absolute inset-0 opacity-0 cursor-pointer",type:"file",onChange:function(e){null!=e.target.files&&C(e.target.files[0])}}),(0,e.jsx)("svg",xe({className:"absolute right-2 top-[7px] h-3 fill-slate-500 dark:fill-slate-400 bg-border-slate-700 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},{children:(0,e.jsx)("path",{d:"M105.4 182.6c12.5 12.49 32.76 12.5 45.25 .001L224 109.3V352c0 17.67 14.33 32 32 32c17.67 0 32-14.33 32-32V109.3l73.38 73.38c12.49 12.49 32.75 12.49 45.25-.001c12.49-12.49 12.49-32.75 0-45.25l-128-128C272.4 3.125 264.2 0 256 0S239.6 3.125 233.4 9.375L105.4 137.4C92.88 149.9 92.88 170.1 105.4 182.6zM480 352h-160c0 35.35-28.65 64-64 64s-64-28.65-64-64H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96C512 366.3 497.7 352 480 352zM432 456c-13.2 0-24-10.8-24-24c0-13.2 10.8-24 24-24s24 10.8 24 24C456 445.2 445.2 456 432 456z"})})),(0,e.jsx)("span",xe({className:"w-full truncate text-left inline-block pointer-events-none"},{children:null!=s&&null!=s[i.name]?s[i.name].name:"Choose file"}))]})):p&&!v?(0,e.jsx)("button",xe({className:"relative flex items-center w-full h-6 justify-end ",onClick:function(){return b(!m)}},{children:(0,e.jsx)("span",xe({className:"fill-slate-500 dark:fill-slate-400 group-hover:fill-slate-700 dark:group-hover:fill-slate-200"},{children:m?(0,e.jsx)("svg",xe({className:"h-3 w-3 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},{children:(0,e.jsx)("path",{d:"M473 7c-9.4-9.4-24.6-9.4-33.9 0l-87 87L313 55c-6.9-6.9-17.2-8.9-26.2-5.2S272 62.3 272 72V216c0 13.3 10.7 24 24 24H440c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-39-39 87-87c9.4-9.4 9.4-24.6 0-33.9L473 7zM216 272H72c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39L7 439c-9.4 9.4-9.4 24.6 0 33.9l32 32c9.4 9.4 24.6 9.4 33.9 0l87-87 39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V296c0-13.3-10.7-24-24-24z"})})):(0,e.jsx)("svg",xe({className:"h-3 w-3 pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},{children:(0,e.jsx)("path",{d:"M344 0H488c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0zM184 496H40c-13.3 0-24-10.7-24-24V328c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z"})}))}))})):v?0===j.length&&(0,e.jsx)(ve,{onClick:N}):i.enum?(0,e.jsx)(me,{options:i.enum,value:s,onInputChange:C}):(0,e.jsx)("input",{className:"w-full py-0.5 px-2 rounded border border-slate-200 dark:border-slate-600 bg-white dark:bg-dark-input text-slate-700 dark:text-slate-200",type:"text",placeholder:i.placeholder,value:s,onChange:function(e){return C(e.target.value)}}),(0,e.jsxs)("div",xe({className:o("text-[0.84rem]",(p&&m||j.length>0)&&"px-3 py-2 -mx-1.5 border border-slate-200 dark:border-slate-700 bg-white dark:bg-codeblock rounded-md")},{children:[(0,e.jsxs)("div",xe({className:"flex items-center space-x-2 group"},{children:[(0,e.jsxs)("div",xe({className:o("flex items-center flex-1 font-mono text-slate-600 dark:text-slate-300",p&&"cursor-pointer",u&&"invisible"),onClick:function(){return p&&b(!m)}},{children:[i.name,i.required&&(0,e.jsx)("span",xe({className:"text-red-600 dark:text-red-400"},{children:"*"}))]})),(0,e.jsx)("div",xe({className:o("flex-initial",u?"w-[calc(40%-1.05rem)] sm:w-[calc(33%-1.05rem)]":"w-2/5 sm:w-1/3")},{children:a})),u&&(0,e.jsx)("button",xe({className:"py-1 fill-red-600 dark:fill-red-400 hover:fill-red-800 dark:hover:fill-red-200",onClick:u},{children:(0,e.jsx)("svg",xe({className:"h-3",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512"},{children:(0,e.jsx)("path",{d:"M424 80C437.3 80 448 90.75 448 104C448 117.3 437.3 128 424 128H412.4L388.4 452.7C385.9 486.1 358.1 512 324.6 512H123.4C89.92 512 62.09 486.1 59.61 452.7L35.56 128H24C10.75 128 0 117.3 0 104C0 90.75 10.75 80 24 80H93.82L130.5 24.94C140.9 9.357 158.4 0 177.1 0H270.9C289.6 0 307.1 9.358 317.5 24.94L354.2 80H424zM177.1 48C174.5 48 171.1 49.34 170.5 51.56L151.5 80H296.5L277.5 51.56C276 49.34 273.5 48 270.9 48H177.1zM364.3 128H83.69L107.5 449.2C108.1 457.5 115.1 464 123.4 464H324.6C332.9 464 339.9 457.5 340.5 449.2L364.3 128z"})}))}))]})),m&&i.properties&&(0,e.jsx)("div",xe({className:"mt-1 pt-2 pb-1 border-t border-slate-100 dark:border-slate-700 space-y-2"},{children:i.properties.map((function(t){return(0,e.jsx)(ye,{param:t,value:(s||{})[t.name],onChangeParam:function(e,r,n){return function(e,t){var r,n=xe(xe({},g),((r={})[e]=t,r));y(n),C(n)}(t.name,n)},parentInputs:ge(ge([],f,!0),[i.name],!1)},t.name)}))})),j.length>0&&(0,e.jsxs)("div",xe({className:o("mt-1 pt-2 pb-1 space-y-2",!p&&"border-t border-slate-100 dark:border-slate-700")},{children:[j.map((function(t,r){return(0,e.jsx)(ye,{param:t.param,value:t.value,onChangeParam:function(e,t,n){return function(e,t){var r=j.map((function(r,n){return e===n?xe(xe({},r),{value:t}):r}));k(r),C(r.map((function(e){return e.value})))}(r,n)},onDeleteArrayItem:function(){return function(e){k(e);var t=e.length>0?e:void 0;C(null==t?void 0:t.map((function(e){return e.value})))}(j.filter((function(e,t){return r!==t})))}},"".concat(t.param.name).concat(r))})),(0,e.jsx)("div",xe({className:"flex items-center justify-end space-x-2 group"},{children:(0,e.jsx)("div",xe({className:"flex-initial w-2/5 sm:w-1/3"},{children:(0,e.jsx)(ve,{onClick:N})}))}))]}))]}))}var we=function(e){return e&&"array"!==e?e.replace(/\[\]/g,""):""},je=function(){return je=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},je.apply(this,arguments)},ke=function(e,t,r){if(r||2===arguments.length)for(var n,a=0,o=t.length;a<o;a++)!n&&a in t||(n||(n=Array.prototype.slice.call(t,0,a)),n[a]=t[a]);return e.concat(n||Array.prototype.slice.call(t))};function Ce(r){var n=r.method,a=r.paramGroups,l=r.paramValues,i=r.isSendingRequest,s=r.onChangeParamValues,c=r.onSendRequest,u=r.header,d=r.response,f=(0,t.useState)(a[0]),p=f[0],v=f[1];return(0,e.jsxs)("div",je({className:"mt-4 border border-slate-200 dark:border-slate-600 bg-slate-50 dark:bg-codeblock rounded-md truncate"},{children:[(0,e.jsxs)("div",je({className:"px-3.5 pt-3.5 pb-4"},{children:[u,(0,e.jsxs)("div",je({className:"text-sm"},{children:[(0,e.jsx)("div",je({className:"block"},{children:(0,e.jsx)("div",je({className:"border-b border-slate-200 dark:border-slate-600"},{children:(0,e.jsx)("nav",je({className:"-mb-px flex space-x-4","aria-label":"Tabs"},{children:a.map((function(t){return(0,e.jsx)("button",je({className:o((null==p?void 0:p.name)===t.name?"".concat(de(n)," ").concat(fe(n)):"border-transparent text-slate-500 hover:text-slate-700 hover:border-slate-300 dark:text-slate-400 dark:hover:text-slate-200","whitespace-nowrap py-2 border-b-2 font-medium text-[0.84rem]"),onClick:function(){return v(t)}},{children:t.name}),t.name)}))}))}))})),(0,e.jsx)("div",je({className:"mt-4 space-y-2"},{children:null==p?void 0:p.params.map((function(t,r){var n,a;return(0,e.jsx)(ye,{param:t,value:null!==(a=null===(n=l[p.name])||void 0===n?void 0:n[t.name])&&void 0!==a?a:"",onChangeParam:function(e,t,r){return function(e,t,r,n){var a,o,i=je(je({},l[e]),se()(null!==(o=l[e])&&void 0!==o?o:{},ke(ke([],t,!0),[r],!1),n));s(je(je({},l),((a={})[e]=i,a)))}(p.name,e,t,r)}},"".concat(t.name).concat(r))}))})),(0,e.jsxs)("button",je({className:o("flex items-center py-1.5 px-3 rounded text-white font-medium space-x-2",ce(n),ue(n),p&&"mt-4"),disabled:i,onClick:c},{children:[(0,e.jsx)("svg",je({className:"fill-white h-3",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 384 512"},{children:(0,e.jsx)("path",{d:"M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z"})})),(0,e.jsx)("div",{children:i?"Sending...":"Send Request"})]}))]}))]})),i?null:d]}))}var Ne=function(){return Ne=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ne.apply(this,arguments)},Oe=function(t){var r=t.method;return(0,e.jsx)("span",Ne({className:o("inline-block text-white font-bold px-1.5 rounded-md text-[0.95rem]",ce(r))},{children:r}))},Pe=function(){return Pe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Pe.apply(this,arguments)};function Te(t){var r=t.baseUrls,n=t.defaultValue,a=t.onChange;return null==r||!Array.isArray(r)||r.length<=1?null:(0,e.jsxs)("div",Pe({className:"border-slate-400 dark:border-slate-400 relative select-none align-middle inline-flex rounded-md -top-px mx-1 w-5 h-[1.125rem] bg-white hover:bg-slate-100 dark:bg-slate-700 dark:hover:bg-slate-600 border hover:border-slate-400 dark:hover:border-slate-400 focus:outline-none cursor-pointer"},{children:[(0,e.jsxs)("select",Pe({"aria-label":"Select API base","aria-expanded":"false",className:"z-10 absolute inset-0 opacity-0 cursor-pointer",onChange:function(e){return a(e.target.value)},defaultValue:n},{children:[(0,e.jsx)("option",Pe({disabled:!0},{children:"Select API base"})),r.map((function(t){return(0,e.jsx)("option",{children:t},t)}))]})),(0,e.jsx)("svg",Pe({width:"20",height:"20",fill:"none",className:"transform absolute -top-0.5 -left-px rotate-90"},{children:(0,e.jsx)("path",{className:"stroke-slate-700 dark:stroke-slate-100",d:"M9 7l3 3-3 3",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}))]}))}var Ee=function(){return Ee=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ee.apply(this,arguments)},Se=function(t){var r=t.method,n=t.path,a=t.baseUrls,o=t.defaultBaseUrl,l=t.onBaseUrlChange;return(0,e.jsxs)("div",Ee({className:"text-sm md:text-base flex items-center space-x-2 mb-2"},{children:[(0,e.jsx)(Oe,{method:r}),a&&(0,e.jsx)(Te,{baseUrls:a,defaultValue:o,onChange:l}),(0,e.jsx)("div",Ee({className:"font-mono text-[0.95rem] overflow-auto"},{children:(0,e.jsx)("p",Ee({className:"inline-block text-slate-700 dark:text-slate-100 font-semibold"},{children:n}))}))]}))},Ie=function(){return Ie=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ie.apply(this,arguments)},Le={indigo:["bg-indigo-50 text-indigo-600 hover:bg-indigo-200 hover:text-indigo-700 focus:ring-indigo-500","text-indigo-300 group-hover:text-indigo-400"],pink:["bg-pink-50 text-pink-600 hover:bg-pink-100 hover:text-pink-700 focus:ring-pink-600","text-pink-300 group-hover:text-pink-400"],sky:["bg-sky-50 text-sky-600 hover:bg-sky-100 hover:text-sky-700 focus:ring-sky-600","text-sky-300 group-hover:text-sky-400"],blue:["bg-blue-50 text-blue-600 hover:bg-blue-100 hover:text-blue-700 focus:ring-blue-600","text-blue-300 group-hover:text-blue-400"],gray:["bg-slate-100 text-slate-700 hover:bg-slate-200 hover:text-slate-900 focus:ring-slate-500","text-slate-300 group-hover:text-slate-400"]},Ae=Ie(Ie({},Le),{gray:["dark:bg-slate-700 dark:text-slate-100 dark:hover:bg-slate-600 dark:hover:text-white dark:focus:ring-slate-500","dark:text-slate-500 dark:group-hover:text-slate-400"],sky:["dark:bg-sky-500 dark:text-sky-50 dark:hover:bg-sky-400 dark:hover:text-white dark:focus:ring-sky-200","dark:text-sky-300 dark:group-hover:text-sky-100"]});function Re(t){var r=t.as,n=t.color,a=void 0===n?"gray":n,l=t.darkColor,i=void 0===l?a:l,s=t.reverse,c=void 0!==s&&s,u=t.children,d=t.className,f=t.mRef,p=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r}(t,["as","color","darkColor","reverse","children","className","mRef"]),v="string"==typeof a?Le[a]:a,h="string"==typeof i?Ae[i]||[]:i,m=r||null!=p.href?"a":"button";return(0,e.jsxs)(m,Ie({className:o("group inline-flex items-center h-9 rounded-full text-sm font-semibold whitespace-nowrap px-3 focus:outline-none focus:ring-2",v[0],h[0],c&&"flex-row-reverse",d)},p,{ref:f},{children:[u,(0,e.jsx)("svg",Ie({className:o("overflow-visible",c?"mr-3":"ml-3",v[1],h[1]),width:"3",height:"6",viewBox:"0 0 3 6",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},{children:(0,e.jsx)("path",{d:c?"M3 0L0 3L3 6":"M0 0L3 3L0 6"})}))]}))}const Me=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/,_e=/^[a-zA-Z]:\\/;var Fe=function(){return Fe=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Fe.apply(this,arguments)};function He(t){var r,n=t.title,a=t.icon,l=t.className,i=t.children,s=t.as,c=t.mRef,u=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r}(t,["title","icon","className","children","as","mRef"]),d=s||null!=u.href?"a":"div",f=function(e){if("string"!=typeof e)throw new TypeError(`Expected a \`string\`, got \`${typeof e}\``);return!_e.test(e)&&Me.test(e)}(null!==(r=u.href)&&void 0!==r?r:"")?{target:"_blank",rel:"noreferrer"}:{};return(0,e.jsxs)(d,Fe({className:o("block not-prose font-normal group relative my-2 ring-2 ring-transparent rounded-xl border border-zinc-200 dark:border-zinc-800 overflow-hidden px-6 py-5 w-full",u.href&&"cursor-pointer",l)},f,u,{ref:c},{children:[a?(0,e.jsx)("div",Fe({className:"h-6 w-6 fill-slate-800 dark:fill-slate-100 text-slate-800 dark:text-slate-100"},{children:a})):null,(0,e.jsx)("h2",Fe({className:o("font-semibold text-base text-slate-800 dark:text-white",null!=a&&"mt-4")},{children:n})),(0,e.jsx)("span",Fe({className:o("mt-1 font-normal",n?"text-slate-600 dark:text-slate-400":"text-slate-700 dark:text-slate-300")},{children:i}))]}))}var ze=function(){return ze=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},ze.apply(this,arguments)};function De(t){var r=t.children,n=t.cols,a=void 0===n?2:n;return(0,e.jsx)("div",ze({className:"not-prose grid sm:grid-cols-".concat(a," gap-x-4")},{children:r}))}function Ue(e){return Ue="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ue(e)}var Ve=function e(t){var r;return["string","number"].includes(Ue(t))?t.toString():t instanceof Array?t.map(e).join(""):"object"===Ue(t)&&(null===(r=null==t?void 0:t.props)||void 0===r?void 0:r.children)?e(t.props.children):""};function Be(e){return function(e,t,r,n){return new(r||(r=Promise))((function(a,o){function l(e){try{s(n.next(e))}catch(e){o(e)}}function i(e){try{s(n.throw(e))}catch(e){o(e)}}function s(e){var t;e.done?a(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(l,i)}s((n=n.apply(e,t||[])).next())}))}(this,void 0,void 0,(function(){var t;return function(e,t){var r,n,a,o,l={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return o={next:i(0),throw:i(1),return:i(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function i(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;o&&(o=0,i[0]&&(l=0)),l;)try{if(r=1,n&&(a=2&i[0]?n.return:i[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,i[1])).done)return a;switch(n=0,a&&(i=[2&i[0],a.value]),i[0]){case 0:case 1:a=i;break;case 4:return l.label++,{value:i[1],done:!1};case 5:l.label++,n=i[1],i=[0];continue;case 7:i=l.ops.pop(),l.trys.pop();continue;default:if(!((a=(a=l.trys).length>0&&a[a.length-1])||6!==i[0]&&2!==i[0])){l=0;continue}if(3===i[0]&&(!a||i[1]>a[0]&&i[1]<a[3])){l.label=i[1];break}if(6===i[0]&&l.label<a[1]){l.label=a[1],a=i;break}if(a&&l.label<a[2]){l.label=a[2],l.ops.push(i);break}a[2]&&l.ops.pop(),l.trys.pop();continue}i=t.call(e,l)}catch(e){i=[6,e],n=0}finally{r=a=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}}(this,(function(r){switch(r.label){case 0:if(e||console.warn("Called copyToClipboard() with empty text"),!navigator.clipboard)return console.error("The Clipboard API was unavailable. The Clipboard API is only available client-side in browsers using HTTPS."),[2];r.label=1;case 1:return r.trys.push([1,3,,4]),[4,navigator.clipboard.writeText(e)];case 2:return r.sent(),[2,"success"];case 3:return t=r.sent(),console.error("Failed to copy: ",t),[2,"error"];case 4:return[2]}}))}))}var $e=function(){return $e=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},$e.apply(this,arguments)};function Ge(r){var n=this,a=r.textToCopy,o=r.tooltipColor,l=void 0===o?"#002937":o,i=r.copiedTooltipColor,s=void 0===i?l:i,c=(0,t.useState)(!0),u=c[0],d=c[1];return a?"undefined"==typeof window||(null===navigator||void 0===navigator?void 0:navigator.clipboard)?(0,e.jsxs)("button",$e({"aria-label":"Copy code to clipboard",className:"relative group",onClick:function(){return function(e,t,r,n){return new(r||(r=Promise))((function(a,o){function l(e){try{s(n.next(e))}catch(e){o(e)}}function i(e){try{s(n.throw(e))}catch(e){o(e)}}function s(e){var t;e.done?a(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(l,i)}s((n=n.apply(e,t||[])).next())}))}(n,void 0,void 0,(function(){return function(e,t){var r,n,a,o,l={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return o={next:i(0),throw:i(1),return:i(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function i(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;o&&(o=0,i[0]&&(l=0)),l;)try{if(r=1,n&&(a=2&i[0]?n.return:i[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,i[1])).done)return a;switch(n=0,a&&(i=[2&i[0],a.value]),i[0]){case 0:case 1:a=i;break;case 4:return l.label++,{value:i[1],done:!1};case 5:l.label++,n=i[1],i=[0];continue;case 7:i=l.ops.pop(),l.trys.pop();continue;default:if(!((a=(a=l.trys).length>0&&a[a.length-1])||6!==i[0]&&2!==i[0])){l=0;continue}if(3===i[0]&&(!a||i[1]>a[0]&&i[1]<a[3])){l.label=i[1];break}if(6===i[0]&&l.label<a[1]){l.label=a[1],a=i;break}if(a&&l.label<a[2]){l.label=a[2],l.ops.push(i);break}a[2]&&l.ops.pop(),l.trys.pop();continue}i=t.call(e,l)}catch(e){i=[6,e],n=0}finally{r=a=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}}(this,(function(e){switch(e.label){case 0:return[4,Be(a)];case 1:return"success"===e.sent()&&(d(!1),setTimeout((function(){d(!0)}),2e3)),[2]}}))}))}},{children:[(0,e.jsx)("svg",$e({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 384 512",className:"top-5 h-[1.15rem] fill-slate-500 hover:fill-slate-300 cursor-pointer"},{children:(0,e.jsx)("path",{d:"M320 64H280h-9.6C263 27.5 230.7 0 192 0s-71 27.5-78.4 64H104 64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM80 112v24c0 13.3 10.7 24 24 24h88 88c13.3 0 24-10.7 24-24V112h16c8.8 0 16 7.2 16 16V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V128c0-8.8 7.2-16 16-16H80zm88-32a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM136 272a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm40-16c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176zm0 96c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176zm-64 40a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"})})),(0,e.jsx)(qe,$e({color:u?l:s,className:"".concat(u?"invisible":void 0," group-hover:visible")},{children:u?"Copy":"Copied"}))]})):(console.warn("The browser's Clipboard API is unavailable. The Clipboard API is only available on HTTPS."),null):null}function qe(t){var r=t.color,n=t.className,a=t.children;return(0,e.jsx)("div",$e({className:o("absolute bottom-full left-1/2 mb-3.5 pb-1 -translate-x-1/2",n)},{children:(0,e.jsxs)("div",$e({className:"relative whitespace-nowrap text-white text-xs leading-6 font-medium px-1.5 rounded-lg",style:{background:r},"data-reach-alert":"true"},{children:[a,(0,e.jsx)("div",{className:"absolute border-solid",style:{top:"100%",left:"50%",marginLeft:"-6px",borderWidth:"6px",borderColor:"".concat(r," transparent transparent transparent")}})]}))}))}var We,Ze=function(){return Ze=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ze.apply(this,arguments)};function Qe(t){var r=t.filename,n=t.filenameColor,a=t.tooltipColor,l=t.copiedTooltipColor,i=t.children,s=function(){var t;return(0,e.jsx)(Ge,{textToCopy:Ve(i),tooltipColor:null!=a?a:n,copiedTooltipColor:null!==(t=null!=l?l:a)&&void 0!==t?t:n})};return(0,e.jsxs)("div",Ze({className:o("mt-5 mb-8 not-prose gray-frame",r&&"pt-2")},{children:[r?(0,e.jsx)(Ke,Ze({filename:r,filenameColor:n},{children:(0,e.jsx)(s,{})})):null,!r&&(0,e.jsx)("div",Ze({className:"z-10 absolute top-5 right-5"},{children:(0,e.jsx)(s,{})})),(0,e.jsx)("div",Ze({className:"code-in-gray-frame children:!my-0 children:!shadow-none children:!bg-transparent",style:{fontVariantLigatures:"none"}},{children:i}))]}))}function Ke(t){var r=t.filename,n=t.filenameColor,a=t.children;return(0,e.jsxs)("div",Ze({className:"flex text-slate-400 text-xs leading-6"},{children:[(0,e.jsx)("div",Ze({className:"flex-none border-t border-b border-t-transparent px-4 py-1 flex items-center",style:{color:n,borderBottomColor:n}},{children:r})),(0,e.jsx)("div",Ze({className:"flex-auto flex items-center bg-codeblock-tabs border border-slate-500/30 rounded-t"},{children:a&&(0,e.jsx)("div",Ze({className:"flex-auto flex items-center justify-end px-4 space-x-4"},{children:a}))}))]}))}let Xe=0;function Ye(){return++Xe}let Je=null!=(We=t.useId)?We:function(){let e=R(),[r,n]=t.useState(e?Ye:null);return S((()=>{null===r&&n(Ye())}),[r]),null!=r?""+r:void 0};var et=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(et||{});function tt(e){return E?null:e instanceof Node?e.ownerDocument:null!=e&&e.hasOwnProperty("current")&&e.current instanceof Node?e.current.ownerDocument:document}let rt=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map((e=>`${e}:not([tabindex='-1'])`)).join(",");var nt,at=((nt=at||{})[nt.First=1]="First",nt[nt.Previous=2]="Previous",nt[nt.Next=4]="Next",nt[nt.Last=8]="Last",nt[nt.WrapAround=16]="WrapAround",nt[nt.NoScroll=32]="NoScroll",nt),ot=(e=>(e[e.Error=0]="Error",e[e.Overflow=1]="Overflow",e[e.Success=2]="Success",e[e.Underflow=3]="Underflow",e))(ot||{}),lt=(e=>(e[e.Previous=-1]="Previous",e[e.Next=1]="Next",e))(lt||{});function it(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(rt)).sort(((e,t)=>Math.sign((e.tabIndex||Number.MAX_SAFE_INTEGER)-(t.tabIndex||Number.MAX_SAFE_INTEGER))))}var st=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(st||{});function ct(e,t=0){var r;return e!==(null==(r=tt(e))?void 0:r.body)&&h(t,{0:()=>e.matches(rt),1(){let t=e;for(;null!==t;){if(t.matches(rt))return!0;t=t.parentElement}return!1}})}function ut(e){let t=tt(e);z().nextFrame((()=>{t&&!ct(t.activeElement,0)&&function(e){null==e||e.focus({preventScroll:!0})}(e)}))}let dt=["textarea","input"].join(",");function ft(e,t=(e=>e)){return e.slice().sort(((e,r)=>{let n=t(e),a=t(r);if(null===n||null===a)return 0;let o=n.compareDocumentPosition(a);return o&Node.DOCUMENT_POSITION_FOLLOWING?-1:o&Node.DOCUMENT_POSITION_PRECEDING?1:0}))}function pt(e,t,{sorted:r=!0,relativeTo:n=null,skipElements:a=[]}={}){let o=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e.ownerDocument,l=Array.isArray(e)?r?ft(e):e:it(e);a.length>0&&(l=l.filter((e=>!a.includes(e)))),n=null!=n?n:o.activeElement;let i,s=(()=>{if(5&t)return 1;if(10&t)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=(()=>{if(1&t)return 0;if(2&t)return Math.max(0,l.indexOf(n))-1;if(4&t)return Math.max(0,l.indexOf(n))+1;if(8&t)return l.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=32&t?{preventScroll:!0}:{},d=0,f=l.length;do{if(d>=f||d+f<=0)return 0;let e=c+d;if(16&t)e=(e+f)%f;else{if(e<0)return 3;if(e>=f)return 1}i=l[e],null==i||i.focus(u),d+=s}while(i!==o.activeElement);return 6&t&&function(e){var t,r;return null!=(r=null==(t=null==e?void 0:e.matches)?void 0:t.call(e,dt))&&r}(i)&&i.select(),i.hasAttribute("tabindex")||i.setAttribute("tabindex","0"),2}function vt(e){var t;if(e.type)return e.type;let r=null!=(t=e.as)?t:"button";return"string"==typeof r&&"button"===r.toLowerCase()?"button":void 0}function ht(e,r){let[n,a]=(0,t.useState)((()=>vt(e)));return S((()=>{a(vt(e))}),[e.type,e.as]),S((()=>{n||!r.current||r.current instanceof HTMLButtonElement&&!r.current.hasAttribute("type")&&a("button")}),[n,r]),n}var mt=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(mt||{});let bt=j((function(e,t){let{features:r=1,...n}=e;return g({ourProps:{ref:t,"aria-hidden":2==(2&r)||void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...4==(4&r)&&2!=(2&r)&&{display:"none"}}},theirProps:n,slot:{},defaultTag:"div",name:"Hidden"})}));function xt({onFocus:e}){let[r,n]=(0,t.useState)(!0);return r?t.createElement(bt,{as:"button",type:"button",features:mt.Focusable,onFocus:t=>{t.preventDefault();let r,a=50;r=requestAnimationFrame((function t(){if(!(a--<=0))return e()?(n(!1),void cancelAnimationFrame(r)):void(r=requestAnimationFrame(t));r&&cancelAnimationFrame(r)}))}}):null}var gt=(e=>(e[e.SetSelectedIndex=0]="SetSelectedIndex",e[e.RegisterTab=1]="RegisterTab",e[e.UnregisterTab=2]="UnregisterTab",e[e.RegisterPanel=3]="RegisterPanel",e[e.UnregisterPanel=4]="UnregisterPanel",e))(gt||{});let yt={0(e,t){let r=e.tabs.filter((e=>{var t;return!(null!=(t=e.current)&&t.hasAttribute("disabled"))}));if(t.index<0)return{...e,selectedIndex:e.tabs.indexOf(r[0])};if(t.index>e.tabs.length)return{...e,selectedIndex:e.tabs.indexOf(r[r.length-1])};let n=e.tabs.slice(0,t.index),a=[...e.tabs.slice(t.index),...n].find((e=>r.includes(e)));return a?{...e,selectedIndex:e.tabs.indexOf(a)}:e},1(e,t){var r;if(e.tabs.includes(t.tab))return e;let n=e.tabs[e.selectedIndex],a=ft([...e.tabs,t.tab],(e=>e.current)),o=null!=(r=a.indexOf(n))?r:e.selectedIndex;return-1===o&&(o=e.selectedIndex),{...e,tabs:a,selectedIndex:o}},2:(e,t)=>({...e,tabs:e.tabs.filter((e=>e!==t.tab))}),3:(e,t)=>e.panels.includes(t.panel)?e:{...e,panels:ft([...e.panels,t.panel],(e=>e.current))},4:(e,t)=>({...e,panels:e.panels.filter((e=>e!==t.panel))})},wt=(0,t.createContext)(null);function jt(e){let r=(0,t.useContext)(wt);if(null===r){let t=new Error(`<${e} /> is missing a parent <Tab.Group /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,jt),t}return r}wt.displayName="TabsSSRContext";let kt=(0,t.createContext)(null);function Ct(e){let r=(0,t.useContext)(kt);if(null===r){let t=new Error(`<${e} /> is missing a parent <Tab.Group /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Ct),t}return r}kt.displayName="TabsDataContext";let Nt=(0,t.createContext)(null);function Ot(e){let r=(0,t.useContext)(Nt);if(null===r){let t=new Error(`<${e} /> is missing a parent <Tab.Group /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Ot),t}return r}function Pt(e,t){return h(t.type,yt,e,t)}Nt.displayName="TabsActionsContext";let Tt=t.Fragment,Et=j((function(e,r){let{defaultIndex:n=0,vertical:a=!1,manual:o=!1,onChange:l,selectedIndex:i=null,...s}=e;const c=a?"vertical":"horizontal",u=o?"manual":"auto";let d=null!==i,f=F(r),[p,v]=(0,t.useReducer)(Pt,{selectedIndex:null!=i?i:n,tabs:[],panels:[]}),h=(0,t.useMemo)((()=>({selectedIndex:p.selectedIndex})),[p.selectedIndex]),m=L(l||(()=>{})),b=L(p.tabs),x=(0,t.useMemo)((()=>({orientation:c,activation:u,...p})),[c,u,p]),y=M((e=>(v({type:1,tab:e}),()=>v({type:2,tab:e})))),w=M((e=>(v({type:3,panel:e}),()=>v({type:4,panel:e})))),j=M((e=>{k.current!==e&&m.current(e),d||v({type:0,index:e})})),k=L(d?e.selectedIndex:p.selectedIndex),C=(0,t.useMemo)((()=>({registerTab:y,registerPanel:w,change:j})),[]);S((()=>{v({type:0,index:null!=i?i:n})}),[i]);let N=(0,t.useRef)({tabs:[],panels:[]}),O={ref:f};return t.createElement(wt.Provider,{value:N},t.createElement(Nt.Provider,{value:C},t.createElement(kt.Provider,{value:x},x.tabs.length<=0&&t.createElement(xt,{onFocus:()=>{var e,t;for(let r of b.current)if(0===(null==(e=r.current)?void 0:e.tabIndex))return null==(t=r.current)||t.focus(),!0;return!1}}),g({ourProps:O,theirProps:s,slot:h,defaultTag:Tt,name:"Tabs"}))))})),St=j((function(e,t){let{orientation:r,selectedIndex:n}=Ct("Tab.List");return g({ourProps:{ref:F(t),role:"tablist","aria-orientation":r},theirProps:e,slot:{selectedIndex:n},defaultTag:"div",name:"Tabs.List"})})),It=j((function(e,r){var n,a;let o=Je(),{id:l=`headlessui-tabs-tab-${o}`,...i}=e,{orientation:s,activation:c,selectedIndex:u,tabs:d,panels:f}=Ct("Tab"),p=Ot("Tab"),v=Ct("Tab"),m=jt("Tab"),b=(0,t.useRef)(null),x=F(b,r);S((()=>p.registerTab(b)),[p,b]);let y=m.current.tabs.indexOf(l);-1===y&&(y=m.current.tabs.push(l)-1);let w=d.indexOf(b);-1===w&&(w=y);let j=w===u,k=M((e=>{var t;let r=e();if(r===ot.Success&&"auto"===c){let e=null==(t=tt(b))?void 0:t.activeElement,r=v.tabs.findIndex((t=>t.current===e));-1!==r&&p.change(r)}return r})),C=M((e=>{let t=d.map((e=>e.current)).filter(Boolean);if(e.key===et.Space||e.key===et.Enter)return e.preventDefault(),e.stopPropagation(),void p.change(w);switch(e.key){case et.Home:case et.PageUp:return e.preventDefault(),e.stopPropagation(),k((()=>pt(t,at.First)));case et.End:case et.PageDown:return e.preventDefault(),e.stopPropagation(),k((()=>pt(t,at.Last)))}return k((()=>h(s,{vertical:()=>e.key===et.ArrowUp?pt(t,at.Previous|at.WrapAround):e.key===et.ArrowDown?pt(t,at.Next|at.WrapAround):ot.Error,horizontal:()=>e.key===et.ArrowLeft?pt(t,at.Previous|at.WrapAround):e.key===et.ArrowRight?pt(t,at.Next|at.WrapAround):ot.Error})))===ot.Success?e.preventDefault():void 0})),N=(0,t.useRef)(!1),O=M((()=>{var e;N.current||(N.current=!0,null==(e=b.current)||e.focus(),p.change(w),H((()=>{N.current=!1})))})),P=M((e=>{e.preventDefault()})),T=(0,t.useMemo)((()=>({selected:j})),[j]);return g({ourProps:{ref:x,onKeyDown:C,onMouseDown:P,onClick:O,id:l,role:"tab",type:ht(e,b),"aria-controls":null==(a=null==(n=f[w])?void 0:n.current)?void 0:a.id,"aria-selected":j,tabIndex:j?0:-1},theirProps:i,slot:T,defaultTag:"button",name:"Tabs.Tab"})})),Lt=j((function(e,r){let{selectedIndex:n}=Ct("Tab.Panels");return g({ourProps:{ref:F(r)},theirProps:e,slot:(0,t.useMemo)((()=>({selectedIndex:n})),[n]),defaultTag:"div",name:"Tabs.Panels"})})),At=b.RenderStrategy|b.Static,Rt=j((function(e,r){var n,a,o,l;let i=Je(),{id:s=`headlessui-tabs-panel-${i}`,...c}=e,{selectedIndex:u,tabs:d,panels:f}=Ct("Tab.Panel"),p=Ot("Tab.Panel"),v=jt("Tab.Panel"),h=(0,t.useRef)(null),m=F(h,r);S((()=>p.registerPanel(h)),[p,h]);let b=v.current.panels.indexOf(s);-1===b&&(b=v.current.panels.push(s)-1);let x=f.indexOf(h);-1===x&&(x=b);let y=x===u,w=(0,t.useMemo)((()=>({selected:y})),[y]),j={ref:m,id:s,role:"tabpanel","aria-labelledby":null==(a=null==(n=d[x])?void 0:n.current)?void 0:a.id,tabIndex:y?0:-1};return y||null!=(o=c.unmount)&&!o||null!=(l=c.static)&&l?g({ourProps:j,theirProps:c,slot:w,defaultTag:"div",features:At,visible:y,name:"Tabs.Panel"}):t.createElement(bt,{as:"span",...j})})),Mt=Object.assign(It,{Group:Et,List:St,Panels:Lt,Panel:Rt});var _t=function(){return _t=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},_t.apply(this,arguments)};function Ft(r){var n,a,l=r.children,i=r.selectedColor,s=r.tooltipColor,c=r.copiedTooltipColor,u=r.isSmallText,d=(0,t.useState)(0),f=d[0],p=d[1],v=(0,t.useState)(!1),h=v[0],m=v[1];if((0,t.useEffect)((function(){m(!0)}),[]),null==l)return console.warn("CodeGroup has no children, expected at least one CodeBlock child."),null;if(Array.isArray(l)){if(0===l.length)return null}else l=[l];var b=l.filter((function(e,t){return t===f}))[0];return(0,e.jsxs)(Mt.Group,_t({as:"div",onChange:p,className:"not-prose gray-frame"},{children:[(0,e.jsxs)("div",_t({className:"flex text-xs leading-6 rounded-tl-xl pt-2"},{children:[(0,e.jsx)(Mt.List,_t({className:"flex"},{children:l.map((function(t,r){var n,a;return(0,e.jsx)(Ht,_t({myIndex:r,selectedIndex:f,selectedColor:i},{children:(null===(n=null==t?void 0:t.props)||void 0===n?void 0:n.filename)||"Filename"}),(null===(a=null==t?void 0:t.props)||void 0===a?void 0:a.filename)+"TabItem"+r)}))})),(0,e.jsx)("div",_t({className:o("flex-auto flex justify-end bg-codeblock-tabs border-y border-slate-500/30 pr-4 rounded-tr",f===l.length-1?"rounded-tl border-l":"")},{children:h&&(null==b?void 0:b.props)?(0,e.jsx)(Ge,{textToCopy:Ve(null===(n=null==b?void 0:b.props)||void 0===n?void 0:n.children),tooltipColor:null!=s?s:i,copiedTooltipColor:null!==(a=null!=c?c:s)&&void 0!==a?a:i}):void 0}))]})),(0,e.jsx)(Mt.Panels,_t({className:"flex overflow-auto"},{children:l.map((function(t){var r,n;return(0,e.jsx)(Mt.Panel,_t({className:o("flex-none code-in-gray-frame",u&&"text-xs leading-5"),style:{fontVariantLigatures:"none"}},{children:h&&(null===(r=null==t?void 0:t.props)||void 0===r?void 0:r.children)}),null===(n=null==t?void 0:t.props)||void 0===n?void 0:n.filename)}))}))]}))}function Ht(t){var r=t.children,n=t.selectedIndex,a=t.myIndex,l=t.selectedColor,i=void 0===l?"#CBD5E1":l,s=n===a,c=s?null:n===a-1?"rounded":"normal",u=s?null:n===a+1?"rounded":"normal";return(0,e.jsxs)(Mt,_t({className:"flex items-center relative overflow-hidden px-4 py-1 text-slate-400 outline-none",style:s?{color:i}:{}},{children:[(0,e.jsx)("span",_t({className:"z-10"},{children:r})),!s&&(0,e.jsx)(zt,{className:o("bg-codeblock-tabs border-y border-slate-500/30","rounded"===c&&"border-l rounded-tl","rounded"===u&&"border-r rounded-tr")}),"normal"===u&&(0,e.jsx)(zt,{className:"inset-y-px border-r border-slate-200/5 z-20"}),s&&(0,e.jsx)("div",{className:"pointer-events-none absolute inset-0 border-b",style:{borderColor:i}})]}))}function zt(t){var r=t.className;return(0,e.jsx)("div",{className:o("pointer-events-none absolute inset-0",r)})}var Dt=function(){return Dt=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Dt.apply(this,arguments)};function Ut(t){var r=t.children,n=t.icon,a=t.className,l=t.childrenClassName;return(0,e.jsx)("div",Dt({className:o("px-5 py-4 mb-4 overflow-hidden rounded-xl",a)},{children:(0,e.jsxs)("div",Dt({className:"flex items-start space-x-3"},{children:[(0,e.jsx)("div",Dt({className:"mt-0.5 w-4"},{children:n})),(0,e.jsx)("div",Dt({className:o("flex-1 text-sm prose overflow-x-auto",l)},{children:r}))]}))}))}function Vt(t){var r=t.children;return(0,e.jsx)(Ut,Dt({icon:(0,e.jsx)("svg",Dt({viewBox:"0 0 20 20",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",className:"flex-none w-5 h-5 text-zinc-400 dark:text-zinc-300","aria-label":"Info"},{children:(0,e.jsx)("path",{d:"M8 0C3.58125 0 0 3.58125 0 8C0 12.4187 3.58125 16 8 16C12.4187 16 16 12.4187 16 8C16 3.58125 12.4187 0 8 0ZM8 14.5C4.41563 14.5 1.5 11.5841 1.5 8C1.5 4.41594 4.41563 1.5 8 1.5C11.5844 1.5 14.5 4.41594 14.5 8C14.5 11.5841 11.5844 14.5 8 14.5ZM9.25 10.5H8.75V7.75C8.75 7.3375 8.41563 7 8 7H7C6.5875 7 6.25 7.3375 6.25 7.75C6.25 8.1625 6.5875 8.5 7 8.5H7.25V10.5H6.75C6.3375 10.5 6 10.8375 6 11.25C6 11.6625 6.3375 12 6.75 12H9.25C9.66406 12 10 11.6641 10 11.25C10 10.8359 9.66563 10.5 9.25 10.5ZM8 6C8.55219 6 9 5.55219 9 5C9 4.44781 8.55219 4 8 4C7.44781 4 7 4.44687 7 5C7 5.55313 7.44687 6 8 6Z"})})),className:"border border-zinc-500/20 bg-zinc-50/50 dark:bg-zinc-900 dark:border-zinc-500/30 dark:bg-zinc-500/10",childrenClassName:"text-zinc-900 dark:text-zinc-200"},{children:r}))}function Bt(t){var r=t.children;return(0,e.jsx)(Ut,Dt({icon:(0,e.jsx)("svg",Dt({className:"flex-none w-5 h-5 text-amber-400 dark:text-amber-300/80",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,"aria-label":"Warning"},{children:(0,e.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})})),className:"border border-amber-500/20 bg-amber-50/50 dark:border-amber-500/30 dark:bg-amber-500/10",childrenClassName:"text-amber-900 dark:text-amber-200"},{children:r}))}function $t(t){var r=t.children;return(0,e.jsx)(Ut,Dt({icon:(0,e.jsx)("svg",Dt({width:"14",height:"14",viewBox:"0 0 14 14",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",className:"w-4 h-4 text-sky-500","aria-label":"Note"},{children:(0,e.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 1.3C10.14 1.3 12.7 3.86 12.7 7C12.7 10.14 10.14 12.7 7 12.7C5.48908 12.6974 4.0408 12.096 2.97241 11.0276C1.90403 9.9592 1.30264 8.51092 1.3 7C1.3 3.86 3.86 1.3 7 1.3ZM7 0C3.14 0 0 3.14 0 7C0 10.86 3.14 14 7 14C10.86 14 14 10.86 14 7C14 3.14 10.86 0 7 0ZM8 3H6V8H8V3ZM8 9H6V11H8V9Z"})})),className:"border border-sky-500/20 bg-sky-50/50 dark:border-sky-500/30 dark:bg-sky-500/10",childrenClassName:"text-sky-900 dark:text-sky-200"},{children:r}))}function Gt(t){var r=t.children;return(0,e.jsx)(Ut,Dt({icon:(0,e.jsx)("svg",Dt({width:"11",height:"14",viewBox:"0 0 11 14",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",className:"text-emerald-600 dark:text-emerald-400/80 w-3.5 h-auto","aria-label":"Tip"},{children:(0,e.jsx)("path",{d:"M3.12794 12.4232C3.12794 12.5954 3.1776 12.7634 3.27244 12.907L3.74114 13.6095C3.88471 13.8248 4.21067 14 4.46964 14H6.15606C6.41415 14 6.74017 13.825 6.88373 13.6095L7.3508 12.9073C7.43114 12.7859 7.49705 12.569 7.49705 12.4232L7.50055 11.3513H3.12521L3.12794 12.4232ZM5.31288 0C2.52414 0.00875889 0.5 2.26889 0.5 4.78826C0.5 6.00188 0.949566 7.10829 1.69119 7.95492C2.14321 8.47011 2.84901 9.54727 3.11919 10.4557C3.12005 10.4625 3.12175 10.4698 3.12261 10.4771H7.50342C7.50427 10.4698 7.50598 10.463 7.50684 10.4557C7.77688 9.54727 8.48281 8.47011 8.93484 7.95492C9.67728 7.13181 10.1258 6.02703 10.1258 4.78826C10.1258 2.15486 7.9709 0.000106649 5.31288 0ZM7.94902 7.11267C7.52078 7.60079 6.99082 8.37878 6.6077 9.18794H4.02051C3.63739 8.37878 3.10743 7.60079 2.67947 7.11294C2.11997 6.47551 1.8126 5.63599 1.8126 4.78826C1.8126 3.09829 3.12794 1.31944 5.28827 1.3126C7.2435 1.3126 8.81315 2.88226 8.81315 4.78826C8.81315 5.63599 8.50688 6.47551 7.94902 7.11267ZM4.87534 2.18767C3.66939 2.18767 2.68767 3.16939 2.68767 4.37534C2.68767 4.61719 2.88336 4.81288 3.12521 4.81288C3.36705 4.81288 3.56274 4.61599 3.56274 4.37534C3.56274 3.6515 4.1515 3.06274 4.87534 3.06274C5.11719 3.06274 5.31288 2.86727 5.31288 2.62548C5.31288 2.38369 5.11599 2.18767 4.87534 2.18767Z"})})),className:"border border-emerald-500/20 bg-emerald-50/50 dark:border-emerald-500/30 dark:bg-emerald-500/10",childrenClassName:"text-emerald-900 dark:text-emerald-200"},{children:r}))}function qt(t){var r=t.children;return(0,e.jsx)(Ut,Dt({icon:(0,e.jsx)("svg",Dt({className:"text-green-600 dark:text-green-400/80 w-3.5 h-auto",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512","aria-label":"Check"},{children:(0,e.jsx)("path",{d:"M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z"})})),className:"border border-emerald-500/20 bg-emerald-50/50 dark:border-emerald-500/30 dark:bg-emerald-500/10",childrenClassName:"text-emerald-900 dark:text-emerald-200"},{children:r}))}var Wt=function(){return Wt=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Wt.apply(this,arguments)},Zt={none:"",md:"p-8"};function Qt(t){var r=t.as,n=void 0===r?"div":r,a=t.caption,l=t.style,i=t.className,s=t.containerClassName,c=t.html,u=t.children,d=t.hint,f=t.padding,p=void 0===f?"md":f,v=t.lightOnly,h=void 0!==v&&v,m=Zt[p];return(0,e.jsxs)("div",Wt({className:s},{children:[void 0!==d&&(0,e.jsxs)("div",Wt({className:"not-prose mb-4 flex items-center space-x-2"},{children:[(0,e.jsx)("svg",Wt({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512",className:"flex-none w-4 h-4 fill-slate-400 dark:fill-slate-300"},{children:(0,e.jsx)("path",{d:"M224 320c0 17.69 14.33 32 32 32h64c17.67 0 32-14.31 32-32s-14.33-32-32-32h-64C238.3 288 224 302.3 224 320zM267.6 256H352c17.67 0 32-14.31 32-32s-14.33-32-32-32h-80v40C272 240.5 270.3 248.5 267.6 256zM272 160H480c17.67 0 32-14.31 32-32s-14.33-32-32-32h-208.8C271.5 98.66 272 101.3 272 104V160zM320 416c0-17.69-14.33-32-32-32H224c-17.67 0-32 14.31-32 32s14.33 32 32 32h64C305.7 448 320 433.7 320 416zM202.1 355.8C196 345.6 192 333.3 192 320c0-5.766 1.08-11.24 2.51-16.55C157.4 300.6 128 269.9 128 232V159.1C128 151.2 135.2 144 143.1 144S160 151.2 159.1 159.1l0 69.72C159.1 245.2 171.3 271.1 200 271.1C222.1 271.1 240 254.1 240 232v-128C240 81.91 222.1 64 200 64H136.6C103.5 64 72.03 80 52.47 106.8L26.02 143.2C9.107 166.5 0 194.5 0 223.3V312C0 387.1 60.89 448 136 448h32.88C163.4 438.6 160 427.7 160 416C160 388.1 178 364.6 202.1 355.8z"})})),(0,e.jsx)("p",Wt({className:"text-slate-700 text-sm font-medium dark:text-slate-200"},{children:d}))]})),(0,e.jsxs)(n,Wt({style:l,className:o("not-prose relative bg-slate-50 rounded-xl overflow-hidden",!h&&"dark:bg-slate-800/25")},{children:[(0,e.jsx)("div",{style:{backgroundPosition:"10px 10px"},className:o("absolute inset-0 bg-grid-slate-100 [mask-image:linear-gradient(0deg,#fff,rgba(255,255,255,0.6))]",!h&&"dark:bg-grid-slate-700/25 dark:[mask-image:linear-gradient(0deg,rgba(255,255,255,0.1),rgba(255,255,255,0.5))]")}),(0,e.jsx)("div",Wt({className:o("relative rounded-xl overflow-auto flex justify-center",m,i)},c?{dangerouslySetInnerHTML:{__html:c}}:{children:u})),a&&(0,e.jsx)("div",Wt({className:o("relative rounded-xl overflow-auto flex justify-center -mt-2 pt-0 px-8 pb-7 text-sm text-slate-700 dark:text-slate-400",i)},{children:(0,e.jsx)("p",{children:a})})),(0,e.jsx)("div",{className:o("absolute inset-0 pointer-events-none border border-black/5 rounded-xl",!h&&"dark:border-white/5")})]}))]}))}var Kt=function(){return Kt=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Kt.apply(this,arguments)};function Xt(t){return(0,e.jsx)(Yt,Kt({},t))}function Yt(t){var r=t.name,n=t.type,a=t.defaultValue,l=t.required,i=void 0!==l&&l,s=t.optional,c=void 0!==s&&s,u=t.hidden,d=void 0!==u&&u,f=t.nameClasses,p=t.children;return d?null:(0,e.jsxs)("div",Kt({className:o("pb-3 mb-4 border-b border-zinc-100 dark:border-zinc-800")},{children:[(0,e.jsxs)("div",Kt({className:"flex font-mono text-sm"},{children:[r&&(0,e.jsxs)("div",Kt({className:"py-0.5 flex-1 space-x-2 truncate"},{children:[(0,e.jsx)("span",Kt({className:o("rounded-md px-1.5 py-px border border-zinc-300 dark:brightness-[1.35] dark:border-zinc-800 bg-zinc-50 dark:bg-background-dark font-medium",f,f&&!f.includes("text-")||!f?"dark:text-slate-200":void 0)},{children:r})),i&&(0,e.jsx)("span",Kt({className:"text-slate-500 dark:text-slate-300"},{children:"Required"})),c&&(0,e.jsx)("span",Kt({className:"text-slate-500 dark:text-slate-300"},{children:"Optional"})),a&&(0,e.jsxs)("span",Kt({className:"text-slate-500 dark:text-slate-300"},{children:["Default: ",a]}))]})),n&&(0,e.jsx)("div",Kt({className:"text-slate-600 dark:text-slate-300"},{children:n}))]})),(0,e.jsx)("div",Kt({className:"mt-2 prose-sm prose-slate dark:prose-dark"},{children:p}))]}))}var Jt=(e=>(e[e.First=0]="First",e[e.Previous=1]="Previous",e[e.Next=2]="Next",e[e.Last=3]="Last",e[e.Specific=4]="Specific",e[e.Nothing=5]="Nothing",e))(Jt||{});function er(e,r,n){let a=L(r);(0,t.useEffect)((()=>{function t(e){a.current(e)}return document.addEventListener(e,t,n),()=>document.removeEventListener(e,t,n)}),[e,n])}function tr(e,r,n=!0){let a=(0,t.useRef)(!1);function o(t,n){if(!a.current||t.defaultPrevented)return;let o=function e(t){return"function"==typeof t?e(t()):Array.isArray(t)||t instanceof Set?t:[t]}(e),l=n(t);if(null!==l&&l.getRootNode().contains(l)){for(let e of o){if(null===e)continue;let r=e instanceof HTMLElement?e:e.current;if(null!=r&&r.contains(l)||t.composed&&t.composedPath().includes(r))return}return!ct(l,st.Loose)&&-1!==l.tabIndex&&t.preventDefault(),r(t,l)}}(0,t.useEffect)((()=>{requestAnimationFrame((()=>{a.current=n}))}),[n]);let l=(0,t.useRef)(null);er("mousedown",(e=>{var t,r;a.current&&(l.current=(null==(r=null==(t=e.composedPath)?void 0:t.call(e))?void 0:r[0])||e.target)}),!0),er("click",(e=>{!l.current||(o(e,(()=>l.current)),l.current=null)}),!0),er("blur",(e=>o(e,(()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null))),!0)}function rr(e){return[e.screenX,e.screenY]}var nr=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(nr||{}),ar=(e=>(e[e.Pointer=0]="Pointer",e[e.Other=1]="Other",e))(ar||{}),or=(e=>(e[e.OpenMenu=0]="OpenMenu",e[e.CloseMenu=1]="CloseMenu",e[e.GoToItem=2]="GoToItem",e[e.Search=3]="Search",e[e.ClearSearch=4]="ClearSearch",e[e.RegisterItem=5]="RegisterItem",e[e.UnregisterItem=6]="UnregisterItem",e))(or||{});function lr(e,t=(e=>e)){let r=null!==e.activeItemIndex?e.items[e.activeItemIndex]:null,n=ft(t(e.items.slice()),(e=>e.dataRef.current.domRef.current)),a=r?n.indexOf(r):null;return-1===a&&(a=null),{items:n,activeItemIndex:a}}let ir={1:e=>1===e.menuState?e:{...e,activeItemIndex:null,menuState:1},0:e=>0===e.menuState?e:{...e,menuState:0},2:(e,t)=>{var r;let n=lr(e),a=function(e,t){let r=t.resolveItems();if(r.length<=0)return null;let n=t.resolveActiveIndex(),a=null!=n?n:-1,o=(()=>{switch(e.focus){case 0:return r.findIndex((e=>!t.resolveDisabled(e)));case 1:{let e=r.slice().reverse().findIndex(((e,r,n)=>!(-1!==a&&n.length-r-1>=a||t.resolveDisabled(e))));return-1===e?e:r.length-1-e}case 2:return r.findIndex(((e,r)=>!(r<=a||t.resolveDisabled(e))));case 3:{let e=r.slice().reverse().findIndex((e=>!t.resolveDisabled(e)));return-1===e?e:r.length-1-e}case 4:return r.findIndex((r=>t.resolveId(r)===e.id));case 5:return null;default:!function(e){throw new Error("Unexpected object: "+e)}(e)}})();return-1===o?n:o}(t,{resolveItems:()=>n.items,resolveActiveIndex:()=>n.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});return{...e,...n,searchQuery:"",activeItemIndex:a,activationTrigger:null!=(r=t.trigger)?r:1}},3:(e,t)=>{let r=""!==e.searchQuery?0:1,n=e.searchQuery+t.value.toLowerCase(),a=(null!==e.activeItemIndex?e.items.slice(e.activeItemIndex+r).concat(e.items.slice(0,e.activeItemIndex+r)):e.items).find((e=>{var t;return(null==(t=e.dataRef.current.textValue)?void 0:t.startsWith(n))&&!e.dataRef.current.disabled})),o=a?e.items.indexOf(a):-1;return-1===o||o===e.activeItemIndex?{...e,searchQuery:n}:{...e,searchQuery:n,activeItemIndex:o,activationTrigger:1}},4:e=>""===e.searchQuery?e:{...e,searchQuery:"",searchActiveItemIndex:null},5:(e,t)=>{let r=lr(e,(e=>[...e,{id:t.id,dataRef:t.dataRef}]));return{...e,...r}},6:(e,t)=>{let r=lr(e,(e=>{let r=e.findIndex((e=>e.id===t.id));return-1!==r&&e.splice(r,1),e}));return{...e,...r,activationTrigger:1}}},sr=(0,t.createContext)(null);function cr(e){let r=(0,t.useContext)(sr);if(null===r){let t=new Error(`<${e} /> is missing a parent <Menu /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,cr),t}return r}function ur(e,t){return h(t.type,ir,e,t)}sr.displayName="MenuContext";let dr=t.Fragment,fr=j((function(e,r){let n=(0,t.useReducer)(ur,{menuState:1,buttonRef:(0,t.createRef)(),itemsRef:(0,t.createRef)(),items:[],searchQuery:"",activeItemIndex:null,activationTrigger:1}),[{menuState:a,itemsRef:o,buttonRef:l},i]=n,s=F(r);tr([l,o],((e,t)=>{var r;i({type:1}),ct(t,st.Loose)||(e.preventDefault(),null==(r=l.current)||r.focus())}),0===a);let c=M((()=>{i({type:1})})),u=(0,t.useMemo)((()=>({open:0===a,close:c})),[a,c]),d=e,f={ref:s};return t.createElement(sr.Provider,{value:n},t.createElement(T,{value:h(a,{0:O.Open,1:O.Closed})},g({ourProps:f,theirProps:d,slot:u,defaultTag:dr,name:"Menu"})))})),pr=j((function(e,r){var n;let a=Je(),{id:o=`headlessui-menu-button-${a}`,...l}=e,[i,s]=cr("Menu.Button"),c=F(i.buttonRef,r),u=V(),d=M((e=>{switch(e.key){case et.Space:case et.Enter:case et.ArrowDown:e.preventDefault(),e.stopPropagation(),s({type:0}),u.nextFrame((()=>s({type:2,focus:Jt.First})));break;case et.ArrowUp:e.preventDefault(),e.stopPropagation(),s({type:0}),u.nextFrame((()=>s({type:2,focus:Jt.Last})))}})),f=M((e=>{e.key===et.Space&&e.preventDefault()})),p=M((t=>{if(function(e){let t=e.parentElement,r=null;for(;t&&!(t instanceof HTMLFieldSetElement);)t instanceof HTMLLegendElement&&(r=t),t=t.parentElement;let n=""===(null==t?void 0:t.getAttribute("disabled"));return(!n||!function(e){if(!e)return!1;let t=e.previousElementSibling;for(;null!==t;){if(t instanceof HTMLLegendElement)return!1;t=t.previousElementSibling}return!0}(r))&&n}(t.currentTarget))return t.preventDefault();e.disabled||(0===i.menuState?(s({type:1}),u.nextFrame((()=>{var e;return null==(e=i.buttonRef.current)?void 0:e.focus({preventScroll:!0})}))):(t.preventDefault(),s({type:0})))})),v=(0,t.useMemo)((()=>({open:0===i.menuState})),[i]);return g({ourProps:{ref:c,id:o,type:ht(e,i.buttonRef),"aria-haspopup":"menu","aria-controls":null==(n=i.itemsRef.current)?void 0:n.id,"aria-expanded":e.disabled?void 0:0===i.menuState,onKeyDown:d,onKeyUp:f,onClick:p},theirProps:l,slot:v,defaultTag:"button",name:"Menu.Button"})})),vr=b.RenderStrategy|b.Static,hr=j((function(e,r){var n,a;let o=Je(),{id:l=`headlessui-menu-items-${o}`,...i}=e,[s,c]=cr("Menu.Items"),u=F(s.itemsRef,r),d=function(...e){return(0,t.useMemo)((()=>tt(...e)),[...e])}(s.itemsRef),f=V(),p=P(),v=null!==p?p===O.Open:0===s.menuState;(0,t.useEffect)((()=>{let e=s.itemsRef.current;!e||0===s.menuState&&e!==(null==d?void 0:d.activeElement)&&e.focus({preventScroll:!0})}),[s.menuState,s.itemsRef,d]),function({container:e,accept:r,walk:n,enabled:a=!0}){let o=(0,t.useRef)(r),l=(0,t.useRef)(n);(0,t.useEffect)((()=>{o.current=r,l.current=n}),[r,n]),S((()=>{if(!e||!a)return;let t=tt(e);if(!t)return;let r=o.current,n=l.current,i=Object.assign((e=>r(e)),{acceptNode:r}),s=t.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,i,!1);for(;s.nextNode();)n(s.currentNode)}),[e,a,o,l])}({container:s.itemsRef.current,enabled:0===s.menuState,accept:e=>"menuitem"===e.getAttribute("role")?NodeFilter.FILTER_REJECT:e.hasAttribute("role")?NodeFilter.FILTER_SKIP:NodeFilter.FILTER_ACCEPT,walk(e){e.setAttribute("role","none")}});let h=M((e=>{var t,r;switch(f.dispose(),e.key){case et.Space:if(""!==s.searchQuery)return e.preventDefault(),e.stopPropagation(),c({type:3,value:e.key});case et.Enter:if(e.preventDefault(),e.stopPropagation(),c({type:1}),null!==s.activeItemIndex){let{dataRef:e}=s.items[s.activeItemIndex];null==(r=null==(t=e.current)?void 0:t.domRef.current)||r.click()}ut(s.buttonRef.current);break;case et.ArrowDown:return e.preventDefault(),e.stopPropagation(),c({type:2,focus:Jt.Next});case et.ArrowUp:return e.preventDefault(),e.stopPropagation(),c({type:2,focus:Jt.Previous});case et.Home:case et.PageUp:return e.preventDefault(),e.stopPropagation(),c({type:2,focus:Jt.First});case et.End:case et.PageDown:return e.preventDefault(),e.stopPropagation(),c({type:2,focus:Jt.Last});case et.Escape:e.preventDefault(),e.stopPropagation(),c({type:1}),z().nextFrame((()=>{var e;return null==(e=s.buttonRef.current)?void 0:e.focus({preventScroll:!0})}));break;case et.Tab:e.preventDefault(),e.stopPropagation(),c({type:1}),z().nextFrame((()=>{!function(e,t){pt(it(),t,{relativeTo:e})}(s.buttonRef.current,e.shiftKey?at.Previous:at.Next)}));break;default:1===e.key.length&&(c({type:3,value:e.key}),f.setTimeout((()=>c({type:4})),350))}})),m=M((e=>{e.key===et.Space&&e.preventDefault()})),b=(0,t.useMemo)((()=>({open:0===s.menuState})),[s]);return g({ourProps:{"aria-activedescendant":null===s.activeItemIndex||null==(n=s.items[s.activeItemIndex])?void 0:n.id,"aria-labelledby":null==(a=s.buttonRef.current)?void 0:a.id,id:l,onKeyDown:h,onKeyUp:m,role:"menu",tabIndex:0,ref:u},theirProps:i,slot:b,defaultTag:"div",features:vr,visible:v,name:"Menu.Items"})})),mr=t.Fragment,br=j((function(e,r){let n=Je(),{id:a=`headlessui-menu-item-${n}`,disabled:o=!1,...l}=e,[i,s]=cr("Menu.Item"),c=null!==i.activeItemIndex&&i.items[i.activeItemIndex].id===a,u=(0,t.useRef)(null),d=F(r,u);S((()=>{if(0!==i.menuState||!c||0===i.activationTrigger)return;let e=z();return e.requestAnimationFrame((()=>{var e,t;null==(t=null==(e=u.current)?void 0:e.scrollIntoView)||t.call(e,{block:"nearest"})})),e.dispose}),[u,c,i.menuState,i.activationTrigger,i.activeItemIndex]);let f=(0,t.useRef)({disabled:o,domRef:u});S((()=>{f.current.disabled=o}),[f,o]),S((()=>{var e,t;f.current.textValue=null==(t=null==(e=u.current)?void 0:e.textContent)?void 0:t.toLowerCase()}),[f,u]),S((()=>(s({type:5,id:a,dataRef:f}),()=>s({type:6,id:a}))),[f,a]);let p=M((()=>{s({type:1})})),v=M((e=>{if(o)return e.preventDefault();s({type:1}),ut(i.buttonRef.current)})),h=M((()=>{if(o)return s({type:2,focus:Jt.Nothing});s({type:2,focus:Jt.Specific,id:a})})),m=function(){let e=(0,t.useRef)([-1,-1]);return{wasMoved(t){let r=rr(t);return(e.current[0]!==r[0]||e.current[1]!==r[1])&&(e.current=r,!0)},update(t){e.current=rr(t)}}}(),b=M((e=>m.update(e))),x=M((e=>{!m.wasMoved(e)||o||c||s({type:2,focus:Jt.Specific,id:a,trigger:0})})),y=M((e=>{!m.wasMoved(e)||o||!c||s({type:2,focus:Jt.Nothing})})),w=(0,t.useMemo)((()=>({active:c,disabled:o,close:p})),[c,o,p]);return g({ourProps:{id:a,ref:d,role:"menuitem",tabIndex:!0===o?void 0:-1,"aria-disabled":!0===o||void 0,disabled:void 0,onClick:v,onFocus:h,onPointerEnter:b,onMouseEnter:b,onPointerMove:x,onMouseMove:x,onPointerLeave:y,onMouseLeave:y},theirProps:l,slot:w,defaultTag:mr,name:"Menu.Item"})})),xr=Object.assign(fr,{Button:pr,Items:hr,Item:br});var gr=function(){return gr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},gr.apply(this,arguments)};function yr(r){var n=r.options,a=r.onChange,l=r.defaultOption,i=r.selectedOptionClass,s=l,c=Array.isArray(n)&&n.length>0;null==l&&c&&(s=n[0]);var u=(0,t.useState)(s),d=u[0],f=u[1];return c?(0,e.jsx)("div",gr({className:"relative"},{children:(0,e.jsxs)(xr,{children:[(0,e.jsxs)(xr.Button,gr({className:"text-xs text-slate-500 dark:text-slate-400 leading-5 font-semibold !bg-zinc-400/10 rounded-full py-1 px-3 flex items-center space-x-2 hover:bg-zinc-400/20"},{children:[d,(0,e.jsx)("svg",gr({width:"6",height:"3",className:"ml-2 overflow-visible","aria-hidden":"true"},{children:(0,e.jsx)("path",{d:"M0 0L3 3L6 0",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})}))]})),(0,e.jsx)(xr.Items,gr({className:"absolute top-full mt-1 py-2 w-40 rounded-lg bg-white shadow text-sm leading-6 font-semibold text-slate-700 dark:bg-zinc-800 dark:text-slate-300"},{children:n.map((function(t){return(0,e.jsx)(xr.Item,gr({disabled:t===d},{children:function(r){var n=r.active;return(0,e.jsxs)("a",gr({className:o("flex items-center justify-between px-3 py-1 cursor-pointer",n&&"bg-zinc-50 text-slate-900 dark:bg-zinc-600/30 dark:text-white",t===d&&i),onClick:function(){return function(e){f(e),a&&a(e)}(t)}},{children:[t,t===d&&(0,e.jsx)("svg",gr({width:"24",height:"24",fill:"none","aria-hidden":"true"},{children:(0,e.jsx)("path",{d:"m7.75 12.75 2.25 2.5 6.25-6.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})}))]}))}}),t)}))}))]})})):null}var wr=function(){return wr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},wr.apply(this,arguments)};function jr(t){var r=t.title,n=t.isActive,a=void 0===n||n,l=t.children;return(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("h2",wr({className:o("flex text-sm leading-6 font-semibold whitespace-nowrap pt-3 pb-2.5 -mb-px max-w-max border-b",a?"text-primary dark:text-primary-light border-current":"text-slate-900 border-transparent hover:border-slate-300 dark:text-slate-200 dark:hover:border-slate-700")},{children:r})),l?(0,e.jsx)("div",wr({className:"prose dark:prose-dark"},{children:l})):null]})}var kr=function(){return kr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},kr.apply(this,arguments)};function Cr(r){var n,a,o=r.children,l=(0,t.useState)(0),i=l[0],s=l[1],c=t.Children.toArray(o),u=null===(a=null===(n=c[i])||void 0===n?void 0:n.props)||void 0===a?void 0:a.children;return(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("ul",kr({className:"not-prose mb-6 pb-[1px] flex-none min-w-full overflow-auto border-b border-zinc-200 space-x-6 flex dark:border-zinc-200/10"},{children:c.map((function(t,r){var n,a;return(0,e.jsx)("li",kr({className:"cursor-pointer",onClick:function(){return s(r)}},{children:(0,e.jsx)(jr,{title:null!==(a=null===(n=null==t?void 0:t.props)||void 0===n?void 0:n.title)&&void 0!==a?a:"Tab Title",isActive:r===i})}))}))})),(0,e.jsx)("div",kr({className:"prose dark:prose-dark"},{children:u}))]})}var Nr=function(){return Nr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Nr.apply(this,arguments)};function Or(t){var r=t.tip,n=t.children;return n?(0,e.jsxs)("span",Nr({className:"group z-10 inline relative"},{children:[Pr(n),(0,e.jsx)("span",Nr({className:"hidden group-hover:flex w-fit lg:whitespace-nowrap absolute bottom-full left-1/2 mb-0.5 pb-1 -translate-x-1/2 bg-codeblock text-center text-slate-50 text-xs px-1.5 py-1 rounded-lg border border-zinc-50"},{children:r}))]})):null}function Pr(r){return(0,t.isValidElement)(r)?r:(0,e.jsx)("span",Nr({className:"underline decoration-dotted decoration-2 underline-offset-4 decoration-zinc-400 dark:decoration-zinc-500"},{children:r}))}var Tr=function(){return Tr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Tr.apply(this,arguments)};const Er=function(r){var n=r.title,a=r.description,l=r.defaultOpen,i=void 0!==l&&l,c=r.onChange,u=r.children,d=(0,t.useState)(i),f=d[0],p=d[1];return(0,e.jsxs)("div",Tr({role:"listitem",className:""},{children:[(0,e.jsx)(s,{title:n,description:a,open:f,setOpen:function(e){p(e),c&&c(e)}}),(0,e.jsx)("div",Tr({id:n+"Children",className:o("mt-2 pt-2 mb-4 mx-[6px] px-4 border-l border-zinc-100 dark:border-zinc-800",!f&&"hidden")},{children:u}))]}),n)}})(),module.exports=n})();
|
package/dist/main.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--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{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--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: }.prose{color:#334155;max-width:none}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:600;text-decoration:none}.prose :where(strong):not(:where([class~=not-prose] *)){color:#0f172a;font-weight:600}.prose :where(a strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:none;margin-bottom:1.25em;margin-top:1.25em;padding-left:0}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:#f1f5f9;border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:.6666666666666666em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.4;margin-bottom:.6em;margin-top:2.4em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.125em;font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:2em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){font-feature-settings:none;color:var(--tw-prose-code);font-size:.875em;font-variant-ligatures:none;font-weight:500}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:inherit;font-weight:inherit}.prose :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.75rem;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);color:#f8fafc;display:flex;font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:2.2857142857142856em;margin-top:1.4285714285714286em;overflow-x:auto;padding:1.25rem}.prose :where(pre code):not(:where([class~=not-prose] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;flex:none;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;min-width:100%;padding:0}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875rem;line-height:1.25rem;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:#e2e8f0;border-bottom-width:1px;color:#334155}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding:0 .5714286em .5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:#f1f5f9;border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:1px}.prose :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.prose :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}.prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:1.75em;position:relative}.prose :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose :where(h1,h2,h3):not(:where([class~=not-prose] *)){letter-spacing:-.025em}.prose :where(h1 small,h2 small,h3 small,h4 small):not(:where([class~=not-prose] *)){color:#64748b;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:500}.prose :where(h2 small):not(:where([class~=not-prose] *)){font-size:1.125rem;line-height:1.75rem}.prose :where(h3 small):not(:where([class~=not-prose] *)){font-size:1rem;line-height:1.5rem}.prose :where(h4 small):not(:where([class~=not-prose] *)){font-size:.875rem;line-height:1.25rem}.prose :where(h1,h2,h3,h4):not(:where([class~=not-prose] *)){scroll-margin-top:var(--scroll-mt)}.prose :where(ul>li):not(:where([class~=not-prose] *)):before{background-color:#cbd5e1;border-radius:999px;content:"";height:.125em;left:0;position:absolute;top:.8125em;width:.75em}.prose :where(a:hover):not(:where([class~=not-prose] *)){border-bottom-width:2px}.prose :where(kbd):not(:where([class~=not-prose] *)){font-feature-settings:none;background:#f1f5f9;border-color:#e2e8f0;border-radius:4px;border-width:1px;color:#334155;font-size:.875em;font-variant-ligatures:none;font-weight:500;margin:0 1px;padding:.125em .25em}.prose :where(p+pre):not(:where([class~=not-prose] *)){margin-top:-.2857142857142857em}.prose :where(pre+pre):not(:where([class~=not-prose] *)){margin-top:-1.1428571428571428em}.prose :where(tbody code):not(:where([class~=not-prose] *)){font-size:.75rem}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.prose-sm :where(ol):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8333333em;margin-top:.8333333em}.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-2xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-slate{--tw-prose-body:#334155;--tw-prose-headings:#0f172a;--tw-prose-lead:#475569;--tw-prose-links:#0f172a;--tw-prose-bold:#0f172a;--tw-prose-counters:#64748b;--tw-prose-bullets:#cbd5e1;--tw-prose-hr:#e2e8f0;--tw-prose-quotes:#0f172a;--tw-prose-quote-borders:#e2e8f0;--tw-prose-captions:#64748b;--tw-prose-code:#0f172a;--tw-prose-pre-code:#e2e8f0;--tw-prose-pre-bg:#1e293b;--tw-prose-th-borders:#cbd5e1;--tw-prose-td-borders:#e2e8f0;--tw-prose-invert-body:#cbd5e1;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#94a3b8;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#94a3b8;--tw-prose-invert-bullets:#475569;--tw-prose-invert-hr:#334155;--tw-prose-invert-quotes:#f1f5f9;--tw-prose-invert-quote-borders:#334155;--tw-prose-invert-captions:#94a3b8;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#cbd5e1;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#475569;--tw-prose-invert-td-borders:#334155}.gray-frame{--tw-bg-opacity:1;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);background-color:rgba(22,27,34,var(--tw-bg-opacity));border-radius:.75rem;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);position:relative}.dark .gray-frame{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-inset:inset;--tw-ring-color:hsla(0,0%,100%,.1);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.code-in-gray-frame{--tw-text-opacity:1;color:rgba(248,250,252,var(--tw-text-opacity));font-size:.875rem;line-height:1.5rem;min-width:100%;overflow-x:auto;padding:1.25rem}.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.absolute{position:absolute}.relative{position:relative}.inset-0{bottom:0;left:0;right:0;top:0}.inset-y-px{bottom:1px;top:1px}.top-full{top:100%}.bottom-full{bottom:100%}.left-1\/2{left:50%}.-top-px{top:-1px}.-top-0\.5{top:-.125rem}.-left-px{left:-1px}.-top-0{top:0}.top-5{top:1.25rem}.right-5{right:1.25rem}.right-2{right:.5rem}.top-\[7px\]{top:7px}.z-10{z-index:10}.z-20{z-index:20}.m-0{margin:0}.my-2{margin-bottom:.5rem;margin-top:.5rem}.mx-\[7px\]{margin-left:7px;margin-right:7px}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-\[6px\]{margin-left:6px;margin-right:6px}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.mr-3{margin-right:.75rem}.ml-3{margin-left:.75rem}.mb-4{margin-bottom:1rem}.mt-0\.5{margin-top:.125rem}.mt-0{margin-top:0}.mt-4{margin-top:1rem}.mt-1{margin-top:.25rem}.-mt-2{margin-top:-.5rem}.mt-2{margin-top:.5rem}.ml-2{margin-left:.5rem}.mb-0\.5{margin-bottom:.125rem}.mb-0{margin-bottom:0}.mr-0\.5{margin-right:.125rem}.mr-0{margin-right:0}.mb-3{margin-bottom:.75rem}.-mb-px{margin-bottom:-1px}.mb-2{margin-bottom:.5rem}.mt-5{margin-top:1.25rem}.mb-8{margin-bottom:2rem}.mb-3\.5{margin-bottom:.875rem}.-mt-px{margin-top:-1px}.-ml-2{margin-left:-.5rem}.mt-1\.5{margin-top:.375rem}.-mt-1{margin-top:-.25rem}.mb-6{margin-bottom:1.5rem}.ml-16{margin-left:4rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-9{height:2.25rem}.h-5{height:1.25rem}.h-4{height:1rem}.h-auto{height:auto}.h-6{height:1.5rem}.h-3{height:.75rem}.h-\[1\.125rem\]{height:1.125rem}.h-\[1\.15rem\]{height:1.15rem}.h-7{height:1.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-full{width:100%}.w-6{width:1.5rem}.w-40{width:10rem}.w-fit{width:-moz-fit-content;width:fit-content}.w-\[calc\(40\%-1\.05rem\)\]{width:calc(40% - 1.05rem)}.w-2\/5{width:40%}.min-w-full{min-width:100%}.max-w-max{max-width:-moz-max-content;max-width:max-content}.max-w-md{max-width:28rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-auto{flex:1 1 auto}.flex-initial{flex:0 1 auto}.-translate-y-12{--tw-translate-y:-3rem}.-translate-y-12,.translate-y-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-0{--tw-translate-y:0px}.-translate-y-6{--tw-translate-y:-1.5rem}.-translate-x-1\/2,.-translate-y-6{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-1\/2{--tw-translate-x:-50%}.rotate-90{--tw-rotate:90deg}.rotate-90,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.content-center{align-content:center}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-inherit>:not([hidden])~:not([hidden]){border-color:inherit}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-xl{border-radius:.75rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded{border-radius:.25rem}.rounded-t-xl{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-b-xl{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.rounded-tl-xl{border-top-left-radius:.75rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-tl{border-top-left-radius:.25rem}.border{border-width:1px}.border-0{border-width:0}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-l{border-left-width:1px}.border-b-2{border-bottom-width:2px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-zinc-500\/20{border-color:hsla(240,4%,46%,.2)}.border-amber-500\/20{border-color:rgba(245,158,11,.2)}.border-sky-500\/20{border-color:rgba(14,165,233,.2)}.border-emerald-500\/20{border-color:rgba(16,185,129,.2)}.border-slate-200{--tw-border-opacity:1;border-color:rgba(226,232,240,var(--tw-border-opacity))}.border-black\/5{border-color:rgba(0,0,0,.05)}.border-zinc-100{--tw-border-opacity:1;border-color:rgba(244,244,245,var(--tw-border-opacity))}.border-zinc-300{--tw-border-opacity:1;border-color:rgba(212,212,216,var(--tw-border-opacity))}.border-slate-50{--tw-border-opacity:1;border-color:rgba(248,250,252,var(--tw-border-opacity))}.border-slate-100{--tw-border-opacity:1;border-color:rgba(241,245,249,var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-slate-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.border-slate-500\/30{border-color:rgba(100,116,139,.3)}.border-slate-200\/5{border-color:rgba(226,232,240,.05)}.border-current{border-color:currentColor}.border-green-600{--tw-border-opacity:1;border-color:rgba(22,163,74,var(--tw-border-opacity))}.border-blue-600{--tw-border-opacity:1;border-color:rgba(37,99,235,var(--tw-border-opacity))}.border-yellow-600{--tw-border-opacity:1;border-color:rgba(202,138,4,var(--tw-border-opacity))}.border-red-600{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.border-orange-600{--tw-border-opacity:1;border-color:rgba(234,88,12,var(--tw-border-opacity))}.border-slate-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.border-red-200{--tw-border-opacity:1;border-color:rgba(254,202,202,var(--tw-border-opacity))}.border-t-transparent{border-top-color:transparent}.bg-indigo-50{--tw-bg-opacity:1;background-color:rgba(238,242,255,var(--tw-bg-opacity))}.bg-pink-50{--tw-bg-opacity:1;background-color:rgba(253,242,248,var(--tw-bg-opacity))}.bg-sky-50{--tw-bg-opacity:1;background-color:rgba(240,249,255,var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.bg-zinc-50\/50{background-color:hsla(0,0%,98%,.5)}.bg-amber-50\/50{background-color:rgba(255,251,235,.5)}.bg-sky-50\/50{background-color:rgba(240,249,255,.5)}.bg-emerald-50\/50{background-color:rgba(236,253,245,.5)}.bg-slate-50{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.bg-zinc-50{--tw-bg-opacity:1;background-color:rgba(250,250,250,var(--tw-bg-opacity))}.\!bg-zinc-400\/10{background-color:hsla(240,5%,65%,.1)!important}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-codeblock{--tw-bg-opacity:1;background-color:rgba(22,27,34,var(--tw-bg-opacity))}.bg-codeblock-tabs{--tw-bg-opacity:1;background-color:rgba(33,38,45,var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgba(22,163,74,var(--tw-bg-opacity))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.bg-yellow-600{--tw-bg-opacity:1;background-color:rgba(202,138,4,var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.bg-orange-600{--tw-bg-opacity:1;background-color:rgba(234,88,12,var(--tw-bg-opacity))}.bg-slate-600{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.bg-purple-100{--tw-bg-opacity:1;background-color:rgba(243,232,255,var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.fill-slate-800{fill:#1e293b}.fill-slate-400{fill:#94a3b8}.fill-white{fill:#fff}.fill-slate-500{fill:#64748b}.fill-red-600{fill:#dc2626}.stroke-slate-700{stroke:#334155}.p-8{padding:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.px-8{padding-left:2rem;padding-right:2rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-px{padding-bottom:1px;padding-top:1px}.px-1{padding-left:.25rem;padding-right:.25rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.pt-0{padding-top:0}.pb-7{padding-bottom:1.75rem}.pb-3{padding-bottom:.75rem}.pb-1{padding-bottom:.25rem}.pt-1{padding-top:.25rem}.pt-3\.5{padding-top:.875rem}.pb-4{padding-bottom:1rem}.pt-3{padding-top:.75rem}.pt-2{padding-top:.5rem}.pr-4{padding-right:1rem}.pb-2\.5{padding-bottom:.625rem}.pb-2{padding-bottom:.5rem}.pb-\[1px\]{padding-bottom:1px}.text-left{text-align:left}.text-center{text-align:center}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-sm{font-size:.875rem;line-height:1.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-xs{font-size:.75rem;line-height:1rem}.text-\[0\.84rem\]{font-size:.84rem}.text-\[0\.95rem\]{font-size:.95rem}.font-semibold{font-weight:600}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-bold{font-weight:700}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-tight{line-height:1.25}.text-indigo-600{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.text-indigo-300{--tw-text-opacity:1;color:rgba(165,180,252,var(--tw-text-opacity))}.text-pink-600{--tw-text-opacity:1;color:rgba(219,39,119,var(--tw-text-opacity))}.text-pink-300{--tw-text-opacity:1;color:rgba(249,168,212,var(--tw-text-opacity))}.text-sky-600{--tw-text-opacity:1;color:rgba(2,132,199,var(--tw-text-opacity))}.text-sky-300{--tw-text-opacity:1;color:rgba(125,211,252,var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.text-blue-300{--tw-text-opacity:1;color:rgba(147,197,253,var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.text-slate-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.text-zinc-400{--tw-text-opacity:1;color:rgba(161,161,170,var(--tw-text-opacity))}.text-zinc-900{--tw-text-opacity:1;color:rgba(24,24,27,var(--tw-text-opacity))}.text-amber-400{--tw-text-opacity:1;color:rgba(251,191,36,var(--tw-text-opacity))}.text-amber-900{--tw-text-opacity:1;color:rgba(120,53,15,var(--tw-text-opacity))}.text-sky-500{--tw-text-opacity:1;color:rgba(14,165,233,var(--tw-text-opacity))}.text-sky-900{--tw-text-opacity:1;color:rgba(12,74,110,var(--tw-text-opacity))}.text-emerald-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-emerald-900{--tw-text-opacity:1;color:rgba(6,78,59,var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgba(22,163,74,var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity:1;color:rgba(30,41,59,var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.text-slate-50{--tw-text-opacity:1;color:rgba(248,250,252,var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.text-yellow-600{--tw-text-opacity:1;color:rgba(202,138,4,var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgba(234,88,12,var(--tw-text-opacity))}.text-pink-700{--tw-text-opacity:1;color:rgba(190,24,93,var(--tw-text-opacity))}.text-purple-600{--tw-text-opacity:1;color:rgba(147,51,234,var(--tw-text-opacity))}.text-purple-500{--tw-text-opacity:1;color:rgba(168,85,247,var(--tw-text-opacity))}.underline{text-decoration-line:underline}.decoration-zinc-400{text-decoration-color:#a1a1aa}.decoration-dotted{text-decoration-style:dotted}.decoration-2{text-decoration-thickness:2px}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-transparent{--tw-ring-color:transparent}.filter{filter: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)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.duration-75{transition-duration:75ms}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.bg-grid-slate-100{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 fill=%27none%27 stroke=%27%23f1f5f9%27%3E%3Cpath d=%27M0 .5h31.5V32%27/%3E%3C/svg%3E")}.\[mask-image\:linear-gradient\(0deg\2c \#fff\2c rgba\(255\2c 255\2c 255\2c 0\.6\)\)\]{-webkit-mask-image:linear-gradient(0deg,#fff,hsla(0,0%,100%,.6));mask-image:linear-gradient(0deg,#fff,hsla(0,0%,100%,.6))}select{-moz-appearance:none;-webkit-appearance:none;appearance:none}.hover\:border-slate-300:hover{--tw-border-opacity:1;border-color:rgba(203,213,225,var(--tw-border-opacity))}.hover\:border-slate-400:hover{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.hover\:border-red-800:hover{--tw-border-opacity:1;border-color:rgba(153,27,27,var(--tw-border-opacity))}.hover\:bg-indigo-200:hover{--tw-bg-opacity:1;background-color:rgba(199,210,254,var(--tw-bg-opacity))}.hover\:bg-pink-100:hover{--tw-bg-opacity:1;background-color:rgba(252,231,243,var(--tw-bg-opacity))}.hover\:bg-sky-100:hover{--tw-bg-opacity:1;background-color:rgba(224,242,254,var(--tw-bg-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.hover\:bg-zinc-400\/20:hover{background-color:hsla(240,5%,65%,.2)}.hover\:bg-slate-100:hover{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.hover\:bg-green-800:hover{--tw-bg-opacity:1;background-color:rgba(22,101,52,var(--tw-bg-opacity))}.hover\:bg-blue-800:hover{--tw-bg-opacity:1;background-color:rgba(30,64,175,var(--tw-bg-opacity))}.hover\:bg-yellow-800:hover{--tw-bg-opacity:1;background-color:rgba(133,77,14,var(--tw-bg-opacity))}.hover\:bg-red-800:hover{--tw-bg-opacity:1;background-color:rgba(153,27,27,var(--tw-bg-opacity))}.hover\:bg-orange-800:hover{--tw-bg-opacity:1;background-color:rgba(154,52,18,var(--tw-bg-opacity))}.hover\:bg-slate-800:hover{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.hover\:bg-purple-200:hover{--tw-bg-opacity:1;background-color:rgba(233,213,255,var(--tw-bg-opacity))}.hover\:fill-slate-300:hover{fill:#cbd5e1}.hover\:fill-red-800:hover{fill:#991b1b}.hover\:text-indigo-700:hover{--tw-text-opacity:1;color:rgba(67,56,202,var(--tw-text-opacity))}.hover\:text-pink-700:hover{--tw-text-opacity:1;color:rgba(190,24,93,var(--tw-text-opacity))}.hover\:text-sky-700:hover{--tw-text-opacity:1;color:rgba(3,105,161,var(--tw-text-opacity))}.hover\:text-blue-700:hover{--tw-text-opacity:1;color:rgba(29,78,216,var(--tw-text-opacity))}.hover\:text-slate-900:hover{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.hover\:text-slate-700:hover{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.hover\:text-purple-700:hover{--tw-text-opacity:1;color:rgba(126,34,206,var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring-indigo-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(99,102,241,var(--tw-ring-opacity))}.focus\:ring-pink-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.focus\:ring-sky-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.focus\:ring-slate-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.focus\:ring-purple-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(168,85,247,var(--tw-ring-opacity))}.disabled\:bg-green-700:disabled{--tw-bg-opacity:1;background-color:rgba(21,128,61,var(--tw-bg-opacity))}.disabled\:bg-blue-700:disabled{--tw-bg-opacity:1;background-color:rgba(29,78,216,var(--tw-bg-opacity))}.disabled\:bg-yellow-700:disabled{--tw-bg-opacity:1;background-color:rgba(161,98,7,var(--tw-bg-opacity))}.disabled\:bg-red-700:disabled{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.disabled\:bg-orange-700:disabled{--tw-bg-opacity:1;background-color:rgba(194,65,12,var(--tw-bg-opacity))}.disabled\:bg-slate-700:disabled{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.group:hover .group-hover\:flex{display:flex}.group:hover .group-hover\:fill-slate-700{fill:#334155}.group:hover .group-hover\:text-indigo-400{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.group:hover .group-hover\:text-pink-400{--tw-text-opacity:1;color:rgba(244,114,182,var(--tw-text-opacity))}.group:hover .group-hover\:text-sky-400{--tw-text-opacity:1;color:rgba(56,189,248,var(--tw-text-opacity))}.group:hover .group-hover\:text-blue-400{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.group:hover .group-hover\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.group:hover .group-hover\:text-purple-600{--tw-text-opacity:1;color:rgba(147,51,234,var(--tw-text-opacity))}:where(.children\:\!my-0)>:where(:not(.not-children)){margin-bottom:0!important;margin-top:0!important}:where(.children\:\!bg-transparent)>:where(:not(.not-children)){background-color:transparent!important}:where(.children\:\!shadow-none)>:where(:not(.not-children)){--tw-shadow:0 0 transparent!important;--tw-shadow-colored:0 0 transparent!important;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow)!important;box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.dark .dark\:border-zinc-500\/30{border-color:hsla(240,4%,46%,.3)}.dark .dark\:border-amber-500\/30{border-color:rgba(245,158,11,.3)}.dark .dark\:border-sky-500\/30{border-color:rgba(14,165,233,.3)}.dark .dark\:border-emerald-500\/30{border-color:rgba(16,185,129,.3)}.dark .dark\:border-slate-800{--tw-border-opacity:1;border-color:rgba(30,41,59,var(--tw-border-opacity))}.dark .dark\:border-white\/5{border-color:hsla(0,0%,100%,.05)}.dark .dark\:border-zinc-800{--tw-border-opacity:1;border-color:rgba(39,39,42,var(--tw-border-opacity))}.dark .dark\:border-slate-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.dark .dark\:border-slate-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:border-slate-200\/10{border-color:rgba(226,232,240,.1)}.dark .dark\:border-green-500{--tw-border-opacity:1;border-color:rgba(34,197,94,var(--tw-border-opacity))}.dark .dark\:border-blue-500{--tw-border-opacity:1;border-color:rgba(59,130,246,var(--tw-border-opacity))}.dark .dark\:border-yellow-500{--tw-border-opacity:1;border-color:rgba(234,179,8,var(--tw-border-opacity))}.dark .dark\:border-red-500{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.dark .dark\:border-orange-500{--tw-border-opacity:1;border-color:rgba(249,115,22,var(--tw-border-opacity))}.dark .dark\:border-slate-500{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:border-slate-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:border-red-600{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.dark .dark\:bg-slate-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:bg-sky-500{--tw-bg-opacity:1;background-color:rgba(14,165,233,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-900{--tw-bg-opacity:1;background-color:rgba(24,24,27,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-500\/10{background-color:hsla(240,4%,46%,.1)}.dark .dark\:bg-amber-500\/10{background-color:rgba(245,158,11,.1)}.dark .dark\:bg-sky-500\/10{background-color:rgba(14,165,233,.1)}.dark .dark\:bg-emerald-500\/10{background-color:rgba(16,185,129,.1)}.dark .dark\:bg-slate-800\/25{background-color:rgba(30,41,59,.25)}.dark .dark\:bg-zinc-800{--tw-bg-opacity:1;background-color:rgba(39,39,42,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-600\/30{background-color:rgba(82,82,91,.3)}.dark .dark\:bg-codeblock{--tw-bg-opacity:1;background-color:rgba(22,27,34,var(--tw-bg-opacity))}.dark .dark\:bg-dark-input{--tw-bg-opacity:1;background-color:rgba(48,54,61,var(--tw-bg-opacity))}.dark .dark\:fill-slate-100{fill:#f1f5f9}.dark .dark\:fill-slate-300{fill:#cbd5e1}.dark .dark\:fill-slate-400{fill:#94a3b8}.dark .dark\:fill-red-400{fill:#f87171}.dark .dark\:stroke-slate-100{stroke:#f1f5f9}.dark .dark\:text-slate-100{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.dark .dark\:text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.dark .dark\:text-sky-50{--tw-text-opacity:1;color:rgba(240,249,255,var(--tw-text-opacity))}.dark .dark\:text-sky-300{--tw-text-opacity:1;color:rgba(125,211,252,var(--tw-text-opacity))}.dark .dark\:text-zinc-300{--tw-text-opacity:1;color:rgba(212,212,216,var(--tw-text-opacity))}.dark .dark\:text-zinc-200{--tw-text-opacity:1;color:rgba(228,228,231,var(--tw-text-opacity))}.dark .dark\:text-amber-300\/80{color:rgba(252,211,77,.8)}.dark .dark\:text-amber-200{--tw-text-opacity:1;color:rgba(253,230,138,var(--tw-text-opacity))}.dark .dark\:text-sky-200{--tw-text-opacity:1;color:rgba(186,230,253,var(--tw-text-opacity))}.dark .dark\:text-emerald-400\/80{color:rgba(52,211,153,.8)}.dark .dark\:text-emerald-200{--tw-text-opacity:1;color:rgba(167,243,208,var(--tw-text-opacity))}.dark .dark\:text-green-400\/80{color:rgba(74,222,128,.8)}.dark .dark\:text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.dark .dark\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .dark\:text-slate-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.dark .dark\:text-slate-200{--tw-text-opacity:1;color:rgba(226,232,240,var(--tw-text-opacity))}.dark .dark\:text-green-500{--tw-text-opacity:1;color:rgba(34,197,94,var(--tw-text-opacity))}.dark .dark\:text-blue-500{--tw-text-opacity:1;color:rgba(59,130,246,var(--tw-text-opacity))}.dark .dark\:text-yellow-500{--tw-text-opacity:1;color:rgba(234,179,8,var(--tw-text-opacity))}.dark .dark\:text-red-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.dark .dark\:text-orange-500{--tw-text-opacity:1;color:rgba(249,115,22,var(--tw-text-opacity))}.dark .dark\:text-red-400{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.dark .dark\:text-pink-300{--tw-text-opacity:1;color:rgba(249,168,212,var(--tw-text-opacity))}.dark .dark\:decoration-zinc-500{text-decoration-color:#71717a}.dark .dark\:prose-dark{color:#94a3b8}.dark .dark\:prose-dark :where(h1,h2,h3,h4,thead th):not(:where([class~=not-prose] *)){color:#e2e8f0}.dark .dark\:prose-dark :where(h1 small,h2 small,h3 small,h4 small):not(:where([class~=not-prose] *)){color:#94a3b8}.dark .dark\:prose-dark :where(kbd):not(:where([class~=not-prose] *)){background:#334155;border-color:#475569;color:#e2e8f0}.dark .dark\:prose-dark :where(code):not(:where([class~=not-prose] *)){color:#e2e8f0}.dark .dark\:prose-dark :where(hr):not(:where([class~=not-prose] *)){border-color:#e2e8f0;opacity:.05}.dark .dark\:prose-dark :where(pre):not(:where([class~=not-prose] *)){box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.1)}.dark .dark\:prose-dark :where(a):not(:where([class~=not-prose] *)){color:#fff}.dark .dark\:prose-dark :where(strong):not(:where([class~=not-prose] *)){color:#e2e8f0}.dark .dark\:prose-dark :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:rgba(148,163,184,.2);color:#cbd5e1}.dark .dark\:prose-dark :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:rgba(148,163,184,.1)}.dark .dark\:brightness-\[1\.35\]{--tw-brightness:brightness(1.35);filter: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)}.dark .dark\:bg-grid-slate-700\/25{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 fill=%27none%27 stroke=%27rgb%2851 65 85 / 0.25%29%27%3E%3Cpath d=%27M0 .5h31.5V32%27/%3E%3C/svg%3E")}.dark .dark\:\[mask-image\:linear-gradient\(0deg\2c rgba\(255\2c 255\2c 255\2c 0\.1\)\2c rgba\(255\2c 255\2c 255\2c 0\.5\)\)\]{-webkit-mask-image:linear-gradient(0deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,.5));mask-image:linear-gradient(0deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,.5))}.dark .dark\:hover\:border-slate-400:hover{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:hover\:border-slate-700:hover{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:hover\:border-slate-500:hover{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:hover\:border-red-400:hover{--tw-border-opacity:1;border-color:rgba(248,113,113,var(--tw-border-opacity))}.dark .dark\:hover\:bg-slate-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-sky-400:hover{--tw-bg-opacity:1;background-color:rgba(56,189,248,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-slate-800:hover,.dark .hover\:dark\:bg-slate-800:hover{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-zinc-800:hover{--tw-bg-opacity:1;background-color:rgba(39,39,42,var(--tw-bg-opacity))}.dark .dark\:hover\:fill-red-200:hover{fill:#fecaca}.dark .dark\:hover\:text-white:hover{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.dark .dark\:hover\:text-slate-200:hover{--tw-text-opacity:1;color:rgba(226,232,240,var(--tw-text-opacity))}.dark .dark\:focus\:ring-slate-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.dark .dark\:focus\:ring-sky-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(186,230,253,var(--tw-ring-opacity))}.dark .group:hover .dark\:group-hover\:fill-slate-200{fill:#e2e8f0}.dark .group:hover .dark\:group-hover\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .group:hover .dark\:group-hover\:text-sky-100{--tw-text-opacity:1;color:rgba(224,242,254,var(--tw-text-opacity))}@media (min-width:640px){.sm\:block{display:block}.sm\:w-\[calc\(33\%-1\.05rem\)\]{width:calc(33% - 1.05rem)}.sm\:w-1\/3{width:33.333333%}.sm\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width:768px){.md\:text-base{font-size:1rem;line-height:1.5rem}}@media (min-width:1024px){.lg\:whitespace-nowrap{white-space:nowrap}}.\[\&\>div\]\:mb-0>div{margin-bottom:0}.\[\&\>div\]\:ml-2>div{margin-left:.5rem}.\[\&\>div\]\:rounded-none>div{border-radius:0}.\[\&\>div\]\:border-0>div{border-width:0}.\[\&\>div\>button\]\:rounded-none>div>button{border-radius:0}
|
|
1
|
+
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--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{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--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: }.prose{color:#334155;max-width:none}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:600;text-decoration:none}.prose :where(strong):not(:where([class~=not-prose] *)){color:#0f172a;font-weight:600}.prose :where(a strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:none;margin-bottom:1.25em;margin-top:1.25em;padding-left:0}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:#f1f5f9;border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:.6666666666666666em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.4;margin-bottom:.6em;margin-top:2.4em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.125em;font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:2em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){font-feature-settings:none;color:var(--tw-prose-code);font-size:.875em;font-variant-ligatures:none;font-weight:500}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:inherit;font-weight:inherit}.prose :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.75rem;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);color:#f8fafc;display:flex;font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:2.2857142857142856em;margin-top:1.4285714285714286em;overflow-x:auto;padding:1.25rem}.prose :where(pre code):not(:where([class~=not-prose] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;flex:none;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;min-width:100%;padding:0}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875rem;line-height:1.25rem;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:#e2e8f0;border-bottom-width:1px;color:#334155}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding:0 .5714286em .5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:#f1f5f9;border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:1px}.prose :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.prose :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}.prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:1.75em;position:relative}.prose :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose :where(h1,h2,h3):not(:where([class~=not-prose] *)){letter-spacing:-.025em}.prose :where(h1 small,h2 small,h3 small,h4 small):not(:where([class~=not-prose] *)){color:#64748b;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:500}.prose :where(h2 small):not(:where([class~=not-prose] *)){font-size:1.125rem;line-height:1.75rem}.prose :where(h3 small):not(:where([class~=not-prose] *)){font-size:1rem;line-height:1.5rem}.prose :where(h4 small):not(:where([class~=not-prose] *)){font-size:.875rem;line-height:1.25rem}.prose :where(h1,h2,h3,h4):not(:where([class~=not-prose] *)){scroll-margin-top:var(--scroll-mt)}.prose :where(ul>li):not(:where([class~=not-prose] *)):before{background-color:#cbd5e1;border-radius:999px;content:"";height:.125em;left:0;position:absolute;top:.8125em;width:.75em}.prose :where(a:hover):not(:where([class~=not-prose] *)){border-bottom-width:2px}.prose :where(kbd):not(:where([class~=not-prose] *)){font-feature-settings:none;background:#f1f5f9;border-color:#e2e8f0;border-radius:4px;border-width:1px;color:#334155;font-size:.875em;font-variant-ligatures:none;font-weight:500;margin:0 1px;padding:.125em .25em}.prose :where(p+pre):not(:where([class~=not-prose] *)){margin-top:-.2857142857142857em}.prose :where(pre+pre):not(:where([class~=not-prose] *)){margin-top:-1.1428571428571428em}.prose :where(tbody code):not(:where([class~=not-prose] *)){font-size:.75rem}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.prose-sm :where(ol):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8333333em;margin-top:.8333333em}.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-2xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-slate{--tw-prose-body:#334155;--tw-prose-headings:#0f172a;--tw-prose-lead:#475569;--tw-prose-links:#0f172a;--tw-prose-bold:#0f172a;--tw-prose-counters:#64748b;--tw-prose-bullets:#cbd5e1;--tw-prose-hr:#e2e8f0;--tw-prose-quotes:#0f172a;--tw-prose-quote-borders:#e2e8f0;--tw-prose-captions:#64748b;--tw-prose-code:#0f172a;--tw-prose-pre-code:#e2e8f0;--tw-prose-pre-bg:#1e293b;--tw-prose-th-borders:#cbd5e1;--tw-prose-td-borders:#e2e8f0;--tw-prose-invert-body:#cbd5e1;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#94a3b8;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#94a3b8;--tw-prose-invert-bullets:#475569;--tw-prose-invert-hr:#334155;--tw-prose-invert-quotes:#f1f5f9;--tw-prose-invert-quote-borders:#334155;--tw-prose-invert-captions:#94a3b8;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#cbd5e1;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#475569;--tw-prose-invert-td-borders:#334155}.gray-frame{--tw-bg-opacity:1;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);background-color:rgba(22,27,34,var(--tw-bg-opacity));border-radius:.75rem;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);position:relative}.dark .gray-frame{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-inset:inset;--tw-ring-color:hsla(0,0%,100%,.1);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.code-in-gray-frame{--tw-text-opacity:1;color:rgba(248,250,252,var(--tw-text-opacity));font-size:.875rem;line-height:1.5rem;min-width:100%;overflow-x:auto;padding:1.25rem}.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.absolute{position:absolute}.relative{position:relative}.inset-0{bottom:0;left:0;right:0;top:0}.inset-y-px{bottom:1px;top:1px}.top-full{top:100%}.bottom-full{bottom:100%}.left-1\/2{left:50%}.-top-px{top:-1px}.-top-0\.5{top:-.125rem}.-left-px{left:-1px}.-top-0{top:0}.top-5{top:1.25rem}.right-5{right:1.25rem}.right-2{right:.5rem}.top-\[7px\]{top:7px}.z-10{z-index:10}.z-20{z-index:20}.m-0{margin:0}.my-2{margin-bottom:.5rem;margin-top:.5rem}.mx-\[7px\]{margin-left:7px;margin-right:7px}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-\[6px\]{margin-left:6px;margin-right:6px}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.mr-3{margin-right:.75rem}.ml-3{margin-left:.75rem}.mb-4{margin-bottom:1rem}.mt-0\.5{margin-top:.125rem}.mt-0{margin-top:0}.mt-4{margin-top:1rem}.mt-1{margin-top:.25rem}.-mt-2{margin-top:-.5rem}.mt-2{margin-top:.5rem}.ml-2{margin-left:.5rem}.mb-0\.5{margin-bottom:.125rem}.mb-0{margin-bottom:0}.mr-0\.5{margin-right:.125rem}.mr-0{margin-right:0}.mb-3{margin-bottom:.75rem}.-mb-px{margin-bottom:-1px}.mb-2{margin-bottom:.5rem}.mt-5{margin-top:1.25rem}.mb-8{margin-bottom:2rem}.mb-3\.5{margin-bottom:.875rem}.mt-1\.5{margin-top:.375rem}.-mt-1{margin-top:-.25rem}.mb-6{margin-bottom:1.5rem}.ml-16{margin-left:4rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-9{height:2.25rem}.h-5{height:1.25rem}.h-4{height:1rem}.h-auto{height:auto}.h-6{height:1.5rem}.h-3{height:.75rem}.h-\[1\.125rem\]{height:1.125rem}.h-\[1\.15rem\]{height:1.15rem}.h-7{height:1.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-full{width:100%}.w-6{width:1.5rem}.w-40{width:10rem}.w-fit{width:-moz-fit-content;width:fit-content}.w-\[calc\(40\%-1\.05rem\)\]{width:calc(40% - 1.05rem)}.w-2\/5{width:40%}.min-w-full{min-width:100%}.max-w-max{max-width:-moz-max-content;max-width:max-content}.max-w-md{max-width:28rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-auto{flex:1 1 auto}.flex-initial{flex:0 1 auto}.-translate-y-12{--tw-translate-y:-3rem}.-translate-y-12,.translate-y-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-0{--tw-translate-y:0px}.-translate-y-6{--tw-translate-y:-1.5rem}.-translate-x-1\/2,.-translate-y-6{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-1\/2{--tw-translate-x:-50%}.rotate-90{--tw-rotate:90deg}.rotate-90,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.content-center{align-content:center}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-inherit>:not([hidden])~:not([hidden]){border-color:inherit}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-xl{border-radius:.75rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded{border-radius:.25rem}.rounded-t-xl{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-b-xl{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.rounded-tl-xl{border-top-left-radius:.75rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-tl{border-top-left-radius:.25rem}.border{border-width:1px}.border-0{border-width:0}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-l{border-left-width:1px}.border-b-2{border-bottom-width:2px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-solid{border-style:solid}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-zinc-500\/20{border-color:hsla(240,4%,46%,.2)}.border-amber-500\/20{border-color:rgba(245,158,11,.2)}.border-sky-500\/20{border-color:rgba(14,165,233,.2)}.border-emerald-500\/20{border-color:rgba(16,185,129,.2)}.border-zinc-200{--tw-border-opacity:1;border-color:rgba(228,228,231,var(--tw-border-opacity))}.border-black\/5{border-color:rgba(0,0,0,.05)}.border-zinc-100{--tw-border-opacity:1;border-color:rgba(244,244,245,var(--tw-border-opacity))}.border-zinc-300{--tw-border-opacity:1;border-color:rgba(212,212,216,var(--tw-border-opacity))}.border-zinc-50{--tw-border-opacity:1;border-color:rgba(250,250,250,var(--tw-border-opacity))}.border-slate-200{--tw-border-opacity:1;border-color:rgba(226,232,240,var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-slate-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.border-slate-500\/30{border-color:rgba(100,116,139,.3)}.border-slate-200\/5{border-color:rgba(226,232,240,.05)}.border-current{border-color:currentColor}.border-green-600{--tw-border-opacity:1;border-color:rgba(22,163,74,var(--tw-border-opacity))}.border-blue-600{--tw-border-opacity:1;border-color:rgba(37,99,235,var(--tw-border-opacity))}.border-yellow-600{--tw-border-opacity:1;border-color:rgba(202,138,4,var(--tw-border-opacity))}.border-red-600{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.border-orange-600{--tw-border-opacity:1;border-color:rgba(234,88,12,var(--tw-border-opacity))}.border-slate-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.border-slate-100{--tw-border-opacity:1;border-color:rgba(241,245,249,var(--tw-border-opacity))}.border-red-200{--tw-border-opacity:1;border-color:rgba(254,202,202,var(--tw-border-opacity))}.border-t-transparent{border-top-color:transparent}.bg-indigo-50{--tw-bg-opacity:1;background-color:rgba(238,242,255,var(--tw-bg-opacity))}.bg-pink-50{--tw-bg-opacity:1;background-color:rgba(253,242,248,var(--tw-bg-opacity))}.bg-sky-50{--tw-bg-opacity:1;background-color:rgba(240,249,255,var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.bg-zinc-50\/50{background-color:hsla(0,0%,98%,.5)}.bg-amber-50\/50{background-color:rgba(255,251,235,.5)}.bg-sky-50\/50{background-color:rgba(240,249,255,.5)}.bg-emerald-50\/50{background-color:rgba(236,253,245,.5)}.bg-slate-50{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.bg-zinc-50{--tw-bg-opacity:1;background-color:rgba(250,250,250,var(--tw-bg-opacity))}.\!bg-zinc-400\/10{background-color:hsla(240,5%,65%,.1)!important}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-codeblock{--tw-bg-opacity:1;background-color:rgba(22,27,34,var(--tw-bg-opacity))}.bg-codeblock-tabs{--tw-bg-opacity:1;background-color:rgba(33,38,45,var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgba(22,163,74,var(--tw-bg-opacity))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.bg-yellow-600{--tw-bg-opacity:1;background-color:rgba(202,138,4,var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.bg-orange-600{--tw-bg-opacity:1;background-color:rgba(234,88,12,var(--tw-bg-opacity))}.bg-slate-600{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.bg-purple-100{--tw-bg-opacity:1;background-color:rgba(243,232,255,var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.fill-slate-800{fill:#1e293b}.fill-slate-400{fill:#94a3b8}.fill-white{fill:#fff}.fill-slate-500{fill:#64748b}.fill-red-600{fill:#dc2626}.stroke-slate-700{stroke:#334155}.p-8{padding:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.px-8{padding-left:2rem;padding-right:2rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-px{padding-bottom:1px;padding-top:1px}.px-1{padding-left:.25rem;padding-right:.25rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.pt-0{padding-top:0}.pb-7{padding-bottom:1.75rem}.pb-3{padding-bottom:.75rem}.pb-1{padding-bottom:.25rem}.pt-1{padding-top:.25rem}.pt-3\.5{padding-top:.875rem}.pb-4{padding-bottom:1rem}.pt-3{padding-top:.75rem}.pt-2{padding-top:.5rem}.pr-4{padding-right:1rem}.pb-2\.5{padding-bottom:.625rem}.pb-2{padding-bottom:.5rem}.pb-\[1px\]{padding-bottom:1px}.text-left{text-align:left}.text-center{text-align:center}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-sm{font-size:.875rem;line-height:1.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-xs{font-size:.75rem;line-height:1rem}.text-\[0\.84rem\]{font-size:.84rem}.text-\[0\.95rem\]{font-size:.95rem}.font-semibold{font-weight:600}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-bold{font-weight:700}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-tight{line-height:1.25}.text-indigo-600{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.text-indigo-300{--tw-text-opacity:1;color:rgba(165,180,252,var(--tw-text-opacity))}.text-pink-600{--tw-text-opacity:1;color:rgba(219,39,119,var(--tw-text-opacity))}.text-pink-300{--tw-text-opacity:1;color:rgba(249,168,212,var(--tw-text-opacity))}.text-sky-600{--tw-text-opacity:1;color:rgba(2,132,199,var(--tw-text-opacity))}.text-sky-300{--tw-text-opacity:1;color:rgba(125,211,252,var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.text-blue-300{--tw-text-opacity:1;color:rgba(147,197,253,var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.text-slate-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.text-zinc-400{--tw-text-opacity:1;color:rgba(161,161,170,var(--tw-text-opacity))}.text-zinc-900{--tw-text-opacity:1;color:rgba(24,24,27,var(--tw-text-opacity))}.text-amber-400{--tw-text-opacity:1;color:rgba(251,191,36,var(--tw-text-opacity))}.text-amber-900{--tw-text-opacity:1;color:rgba(120,53,15,var(--tw-text-opacity))}.text-sky-500{--tw-text-opacity:1;color:rgba(14,165,233,var(--tw-text-opacity))}.text-sky-900{--tw-text-opacity:1;color:rgba(12,74,110,var(--tw-text-opacity))}.text-emerald-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-emerald-900{--tw-text-opacity:1;color:rgba(6,78,59,var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgba(22,163,74,var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity:1;color:rgba(30,41,59,var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.text-slate-50{--tw-text-opacity:1;color:rgba(248,250,252,var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.text-yellow-600{--tw-text-opacity:1;color:rgba(202,138,4,var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgba(234,88,12,var(--tw-text-opacity))}.text-pink-700{--tw-text-opacity:1;color:rgba(190,24,93,var(--tw-text-opacity))}.text-purple-600{--tw-text-opacity:1;color:rgba(147,51,234,var(--tw-text-opacity))}.text-purple-500{--tw-text-opacity:1;color:rgba(168,85,247,var(--tw-text-opacity))}.underline{text-decoration-line:underline}.decoration-zinc-400{text-decoration-color:#a1a1aa}.decoration-dotted{text-decoration-style:dotted}.decoration-2{text-decoration-thickness:2px}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-transparent{--tw-ring-color:transparent}.filter{filter: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)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.duration-75{transition-duration:75ms}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.bg-grid-slate-100{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 fill=%27none%27 stroke=%27%23f1f5f9%27%3E%3Cpath d=%27M0 .5h31.5V32%27/%3E%3C/svg%3E")}.\[mask-image\:linear-gradient\(0deg\2c \#fff\2c rgba\(255\2c 255\2c 255\2c 0\.6\)\)\]{-webkit-mask-image:linear-gradient(0deg,#fff,hsla(0,0%,100%,.6));mask-image:linear-gradient(0deg,#fff,hsla(0,0%,100%,.6))}select{-moz-appearance:none;-webkit-appearance:none;appearance:none}.hover\:border-slate-300:hover{--tw-border-opacity:1;border-color:rgba(203,213,225,var(--tw-border-opacity))}.hover\:border-slate-400:hover{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.hover\:border-red-800:hover{--tw-border-opacity:1;border-color:rgba(153,27,27,var(--tw-border-opacity))}.hover\:bg-indigo-200:hover{--tw-bg-opacity:1;background-color:rgba(199,210,254,var(--tw-bg-opacity))}.hover\:bg-pink-100:hover{--tw-bg-opacity:1;background-color:rgba(252,231,243,var(--tw-bg-opacity))}.hover\:bg-sky-100:hover{--tw-bg-opacity:1;background-color:rgba(224,242,254,var(--tw-bg-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.hover\:bg-zinc-400\/20:hover{background-color:hsla(240,5%,65%,.2)}.hover\:bg-slate-100:hover{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.hover\:bg-green-800:hover{--tw-bg-opacity:1;background-color:rgba(22,101,52,var(--tw-bg-opacity))}.hover\:bg-blue-800:hover{--tw-bg-opacity:1;background-color:rgba(30,64,175,var(--tw-bg-opacity))}.hover\:bg-yellow-800:hover{--tw-bg-opacity:1;background-color:rgba(133,77,14,var(--tw-bg-opacity))}.hover\:bg-red-800:hover{--tw-bg-opacity:1;background-color:rgba(153,27,27,var(--tw-bg-opacity))}.hover\:bg-orange-800:hover{--tw-bg-opacity:1;background-color:rgba(154,52,18,var(--tw-bg-opacity))}.hover\:bg-slate-800:hover{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.hover\:bg-purple-200:hover{--tw-bg-opacity:1;background-color:rgba(233,213,255,var(--tw-bg-opacity))}.hover\:fill-slate-300:hover{fill:#cbd5e1}.hover\:fill-red-800:hover{fill:#991b1b}.hover\:text-indigo-700:hover{--tw-text-opacity:1;color:rgba(67,56,202,var(--tw-text-opacity))}.hover\:text-pink-700:hover{--tw-text-opacity:1;color:rgba(190,24,93,var(--tw-text-opacity))}.hover\:text-sky-700:hover{--tw-text-opacity:1;color:rgba(3,105,161,var(--tw-text-opacity))}.hover\:text-blue-700:hover{--tw-text-opacity:1;color:rgba(29,78,216,var(--tw-text-opacity))}.hover\:text-slate-900:hover{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.hover\:text-slate-700:hover{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.hover\:text-purple-700:hover{--tw-text-opacity:1;color:rgba(126,34,206,var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring-indigo-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(99,102,241,var(--tw-ring-opacity))}.focus\:ring-pink-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.focus\:ring-sky-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.focus\:ring-slate-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.focus\:ring-purple-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(168,85,247,var(--tw-ring-opacity))}.disabled\:bg-green-700:disabled{--tw-bg-opacity:1;background-color:rgba(21,128,61,var(--tw-bg-opacity))}.disabled\:bg-blue-700:disabled{--tw-bg-opacity:1;background-color:rgba(29,78,216,var(--tw-bg-opacity))}.disabled\:bg-yellow-700:disabled{--tw-bg-opacity:1;background-color:rgba(161,98,7,var(--tw-bg-opacity))}.disabled\:bg-red-700:disabled{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.disabled\:bg-orange-700:disabled{--tw-bg-opacity:1;background-color:rgba(194,65,12,var(--tw-bg-opacity))}.disabled\:bg-slate-700:disabled{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.group:hover .group-hover\:visible{visibility:visible}.group:hover .group-hover\:flex{display:flex}.group:hover .group-hover\:fill-slate-700{fill:#334155}.group:hover .group-hover\:text-indigo-400{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.group:hover .group-hover\:text-pink-400{--tw-text-opacity:1;color:rgba(244,114,182,var(--tw-text-opacity))}.group:hover .group-hover\:text-sky-400{--tw-text-opacity:1;color:rgba(56,189,248,var(--tw-text-opacity))}.group:hover .group-hover\:text-blue-400{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.group:hover .group-hover\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.group:hover .group-hover\:text-purple-600{--tw-text-opacity:1;color:rgba(147,51,234,var(--tw-text-opacity))}:where(.children\:\!my-0)>:where(:not(.not-children)){margin-bottom:0!important;margin-top:0!important}:where(.children\:\!bg-transparent)>:where(:not(.not-children)){background-color:transparent!important}:where(.children\:\!shadow-none)>:where(:not(.not-children)){--tw-shadow:0 0 transparent!important;--tw-shadow-colored:0 0 transparent!important;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow)!important;box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.dark .dark\:border-zinc-500\/30{border-color:hsla(240,4%,46%,.3)}.dark .dark\:border-amber-500\/30{border-color:rgba(245,158,11,.3)}.dark .dark\:border-sky-500\/30{border-color:rgba(14,165,233,.3)}.dark .dark\:border-emerald-500\/30{border-color:rgba(16,185,129,.3)}.dark .dark\:border-zinc-800{--tw-border-opacity:1;border-color:rgba(39,39,42,var(--tw-border-opacity))}.dark .dark\:border-white\/5{border-color:hsla(0,0%,100%,.05)}.dark .dark\:border-slate-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.dark .dark\:border-slate-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:border-zinc-200\/10{border-color:hsla(240,6%,90%,.1)}.dark .dark\:border-green-500{--tw-border-opacity:1;border-color:rgba(34,197,94,var(--tw-border-opacity))}.dark .dark\:border-blue-500{--tw-border-opacity:1;border-color:rgba(59,130,246,var(--tw-border-opacity))}.dark .dark\:border-yellow-500{--tw-border-opacity:1;border-color:rgba(234,179,8,var(--tw-border-opacity))}.dark .dark\:border-red-500{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.dark .dark\:border-orange-500{--tw-border-opacity:1;border-color:rgba(249,115,22,var(--tw-border-opacity))}.dark .dark\:border-slate-500{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:border-slate-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:border-red-600{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.dark .dark\:bg-slate-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:bg-sky-500{--tw-bg-opacity:1;background-color:rgba(14,165,233,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-900{--tw-bg-opacity:1;background-color:rgba(24,24,27,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-500\/10{background-color:hsla(240,4%,46%,.1)}.dark .dark\:bg-amber-500\/10{background-color:rgba(245,158,11,.1)}.dark .dark\:bg-sky-500\/10{background-color:rgba(14,165,233,.1)}.dark .dark\:bg-emerald-500\/10{background-color:rgba(16,185,129,.1)}.dark .dark\:bg-slate-800\/25{background-color:rgba(30,41,59,.25)}.dark .dark\:bg-zinc-800{--tw-bg-opacity:1;background-color:rgba(39,39,42,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-600\/30{background-color:rgba(82,82,91,.3)}.dark .dark\:bg-codeblock{--tw-bg-opacity:1;background-color:rgba(22,27,34,var(--tw-bg-opacity))}.dark .dark\:bg-dark-input{--tw-bg-opacity:1;background-color:rgba(48,54,61,var(--tw-bg-opacity))}.dark .dark\:fill-slate-100{fill:#f1f5f9}.dark .dark\:fill-slate-300{fill:#cbd5e1}.dark .dark\:fill-slate-400{fill:#94a3b8}.dark .dark\:fill-red-400{fill:#f87171}.dark .dark\:stroke-slate-100{stroke:#f1f5f9}.dark .dark\:text-slate-100{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.dark .dark\:text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.dark .dark\:text-sky-50{--tw-text-opacity:1;color:rgba(240,249,255,var(--tw-text-opacity))}.dark .dark\:text-sky-300{--tw-text-opacity:1;color:rgba(125,211,252,var(--tw-text-opacity))}.dark .dark\:text-zinc-300{--tw-text-opacity:1;color:rgba(212,212,216,var(--tw-text-opacity))}.dark .dark\:text-zinc-200{--tw-text-opacity:1;color:rgba(228,228,231,var(--tw-text-opacity))}.dark .dark\:text-amber-300\/80{color:rgba(252,211,77,.8)}.dark .dark\:text-amber-200{--tw-text-opacity:1;color:rgba(253,230,138,var(--tw-text-opacity))}.dark .dark\:text-sky-200{--tw-text-opacity:1;color:rgba(186,230,253,var(--tw-text-opacity))}.dark .dark\:text-emerald-400\/80{color:rgba(52,211,153,.8)}.dark .dark\:text-emerald-200{--tw-text-opacity:1;color:rgba(167,243,208,var(--tw-text-opacity))}.dark .dark\:text-green-400\/80{color:rgba(74,222,128,.8)}.dark .dark\:text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.dark .dark\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .dark\:text-slate-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.dark .dark\:text-slate-200{--tw-text-opacity:1;color:rgba(226,232,240,var(--tw-text-opacity))}.dark .dark\:text-green-500{--tw-text-opacity:1;color:rgba(34,197,94,var(--tw-text-opacity))}.dark .dark\:text-blue-500{--tw-text-opacity:1;color:rgba(59,130,246,var(--tw-text-opacity))}.dark .dark\:text-yellow-500{--tw-text-opacity:1;color:rgba(234,179,8,var(--tw-text-opacity))}.dark .dark\:text-red-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.dark .dark\:text-orange-500{--tw-text-opacity:1;color:rgba(249,115,22,var(--tw-text-opacity))}.dark .dark\:text-red-400{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.dark .dark\:text-pink-300{--tw-text-opacity:1;color:rgba(249,168,212,var(--tw-text-opacity))}.dark .dark\:decoration-zinc-500{text-decoration-color:#71717a}.dark .dark\:prose-dark{color:#94a3b8}.dark .dark\:prose-dark :where(h1,h2,h3,h4,thead th):not(:where([class~=not-prose] *)){color:#e2e8f0}.dark .dark\:prose-dark :where(h1 small,h2 small,h3 small,h4 small):not(:where([class~=not-prose] *)){color:#94a3b8}.dark .dark\:prose-dark :where(kbd):not(:where([class~=not-prose] *)){background:#334155;border-color:#475569;color:#e2e8f0}.dark .dark\:prose-dark :where(code):not(:where([class~=not-prose] *)){color:#e2e8f0}.dark .dark\:prose-dark :where(hr):not(:where([class~=not-prose] *)){border-color:#e2e8f0;opacity:.05}.dark .dark\:prose-dark :where(pre):not(:where([class~=not-prose] *)){box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.1)}.dark .dark\:prose-dark :where(a):not(:where([class~=not-prose] *)){color:#fff}.dark .dark\:prose-dark :where(strong):not(:where([class~=not-prose] *)){color:#e2e8f0}.dark .dark\:prose-dark :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:rgba(148,163,184,.2);color:#cbd5e1}.dark .dark\:prose-dark :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:rgba(148,163,184,.1)}.dark .dark\:brightness-\[1\.35\]{--tw-brightness:brightness(1.35);filter: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)}.dark .dark\:bg-grid-slate-700\/25{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 fill=%27none%27 stroke=%27rgb%2851 65 85 / 0.25%29%27%3E%3Cpath d=%27M0 .5h31.5V32%27/%3E%3C/svg%3E")}.dark .dark\:\[mask-image\:linear-gradient\(0deg\2c rgba\(255\2c 255\2c 255\2c 0\.1\)\2c rgba\(255\2c 255\2c 255\2c 0\.5\)\)\]{-webkit-mask-image:linear-gradient(0deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,.5));mask-image:linear-gradient(0deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,.5))}.dark .dark\:hover\:border-slate-400:hover{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:hover\:border-slate-700:hover{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:hover\:border-slate-500:hover{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:hover\:border-red-400:hover{--tw-border-opacity:1;border-color:rgba(248,113,113,var(--tw-border-opacity))}.dark .dark\:hover\:bg-slate-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-sky-400:hover{--tw-bg-opacity:1;background-color:rgba(56,189,248,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-slate-800:hover,.dark .hover\:dark\:bg-slate-800:hover{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-zinc-800:hover{--tw-bg-opacity:1;background-color:rgba(39,39,42,var(--tw-bg-opacity))}.dark .dark\:hover\:fill-red-200:hover{fill:#fecaca}.dark .dark\:hover\:text-white:hover{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.dark .dark\:hover\:text-slate-200:hover{--tw-text-opacity:1;color:rgba(226,232,240,var(--tw-text-opacity))}.dark .dark\:focus\:ring-slate-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.dark .dark\:focus\:ring-sky-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(186,230,253,var(--tw-ring-opacity))}.dark .group:hover .dark\:group-hover\:fill-slate-200{fill:#e2e8f0}.dark .group:hover .dark\:group-hover\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .group:hover .dark\:group-hover\:text-sky-100{--tw-text-opacity:1;color:rgba(224,242,254,var(--tw-text-opacity))}@media (min-width:640px){.sm\:block{display:block}.sm\:w-\[calc\(33\%-1\.05rem\)\]{width:calc(33% - 1.05rem)}.sm\:w-1\/3{width:33.333333%}.sm\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width:768px){.md\:text-base{font-size:1rem;line-height:1.5rem}}@media (min-width:1024px){.lg\:whitespace-nowrap{white-space:nowrap}}.\[\&\>div\]\:mb-0>div{margin-bottom:0}.\[\&\>div\]\:ml-2>div{margin-left:.5rem}.\[\&\>div\]\:rounded-none>div{border-radius:0}.\[\&\>div\]\:border-0>div{border-width:0}.\[\&\>div\>button\]\:rounded-none>div>button{border-radius:0}
|