@mintlify/msft-sdk 0.1.9 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/content-components/code-block.js +45 -42
- package/dist/components/content-components/code-block.js.map +1 -1
- package/dist/components/content-components/code-block.module.css.js +24 -20
- package/dist/components/content-components/code-block.module.css.js.map +1 -1
- package/dist/components/content-components/home.js +43 -11
- package/dist/components/content-components/home.js.map +1 -1
- package/dist/components/content-components/home.module.css.js +56 -54
- package/dist/components/content-components/home.module.css.js.map +1 -1
- package/dist/components/nav-tree/index.js +62 -50
- package/dist/components/nav-tree/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as m, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import T, { useState as N, useEffect as j } from "react";
|
|
3
|
-
import
|
|
3
|
+
import f from "prismjs";
|
|
4
4
|
import "prismjs/components/prism-javascript.js";
|
|
5
5
|
import "prismjs/components/prism-typescript.js";
|
|
6
6
|
import "prismjs/components/prism-python.js";
|
|
@@ -10,73 +10,76 @@ import "prismjs/components/prism-markdown.js";
|
|
|
10
10
|
import "prismjs/components/prism-csharp.js";
|
|
11
11
|
import "prismjs/components/prism-powershell.js";
|
|
12
12
|
import { getNodeText as A } from "../../utils/get-node-text.js";
|
|
13
|
-
import {
|
|
13
|
+
import { ClipboardCheckmarkRegular as k, Copy20Regular as I } from "@fluentui/react-icons";
|
|
14
14
|
import { capitalize as R } from "../../utils/string.js";
|
|
15
15
|
import o from "./code-block.module.css.js";
|
|
16
16
|
function S() {
|
|
17
|
-
const [
|
|
18
|
-
return { isCopied:
|
|
17
|
+
const [r, c] = N(!1);
|
|
18
|
+
return { isCopied: r, copy: async (h) => {
|
|
19
19
|
try {
|
|
20
|
-
await navigator.clipboard.writeText(
|
|
21
|
-
} catch (
|
|
22
|
-
console.error("Failed to copy to clipboard:",
|
|
20
|
+
await navigator.clipboard.writeText(h), c(!0), setTimeout(() => c(!1), 2e3);
|
|
21
|
+
} catch (n) {
|
|
22
|
+
console.error("Failed to copy to clipboard:", n);
|
|
23
23
|
}
|
|
24
24
|
} };
|
|
25
25
|
}
|
|
26
26
|
function K({
|
|
27
|
-
children:
|
|
27
|
+
children: r,
|
|
28
28
|
className: c,
|
|
29
|
-
fileName:
|
|
30
|
-
language:
|
|
29
|
+
fileName: l,
|
|
30
|
+
language: h
|
|
31
31
|
}) {
|
|
32
|
-
const [
|
|
32
|
+
const [n, y] = N(""), { isCopied: u, copy: b } = S(), t = h || (c == null ? void 0 : c.replace(/^language-/, "")) || "text", i = A(r), v = !!l, g = T.useMemo(() => {
|
|
33
33
|
var p, C;
|
|
34
|
-
if (typeof
|
|
34
|
+
if (typeof r != "object" || r == null)
|
|
35
35
|
return !1;
|
|
36
|
-
const
|
|
37
|
-
for (const a of
|
|
36
|
+
const s = Array.isArray(r) ? r : [r];
|
|
37
|
+
for (const a of s)
|
|
38
38
|
if (typeof a == "object" && a != null && "props" in a && ((p = a.props) != null && p.children)) {
|
|
39
|
-
const
|
|
40
|
-
for (const d of
|
|
39
|
+
const $ = Array.isArray(a.props.children) ? a.props.children : [a.props.children];
|
|
40
|
+
for (const d of $)
|
|
41
41
|
if (typeof d == "object" && d != null && "props" in d && ((C = d.props) != null && C.className))
|
|
42
42
|
return !0;
|
|
43
43
|
}
|
|
44
44
|
return !1;
|
|
45
|
-
}, [
|
|
45
|
+
}, [r]);
|
|
46
46
|
j(() => {
|
|
47
47
|
if (!g)
|
|
48
48
|
try {
|
|
49
|
-
const
|
|
50
|
-
|
|
51
|
-
} catch (
|
|
52
|
-
console.error("Failed to highlight code:",
|
|
49
|
+
const s = f.languages[t] || f.languages.plaintext, p = f.highlight(i, s, t);
|
|
50
|
+
y(p);
|
|
51
|
+
} catch (s) {
|
|
52
|
+
console.error("Failed to highlight code:", s), y(i);
|
|
53
53
|
}
|
|
54
|
-
}, [
|
|
55
|
-
const
|
|
56
|
-
b(
|
|
54
|
+
}, [i, t, g]);
|
|
55
|
+
const x = () => {
|
|
56
|
+
b(i);
|
|
57
57
|
};
|
|
58
|
-
return /* @__PURE__ */
|
|
59
|
-
|
|
60
|
-
/* @__PURE__ */
|
|
61
|
-
/* @__PURE__ */
|
|
62
|
-
/* @__PURE__ */
|
|
63
|
-
/* @__PURE__ */
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
58
|
+
return /* @__PURE__ */ m("div", { className: v ? o.container : void 0, children: [
|
|
59
|
+
l && /* @__PURE__ */ e("span", { className: o.fileName, children: l }),
|
|
60
|
+
/* @__PURE__ */ m("div", { className: `${o.codeWrapper} not-prose`, children: [
|
|
61
|
+
/* @__PURE__ */ m("div", { className: o.header, children: [
|
|
62
|
+
/* @__PURE__ */ e("span", { className: o.language, children: R(t) }),
|
|
63
|
+
/* @__PURE__ */ m("div", { className: o.copyButtonWrapper, children: [
|
|
64
|
+
u && /* @__PURE__ */ e("div", { className: o.tooltip, children: "Copied!" }),
|
|
65
|
+
/* @__PURE__ */ e(
|
|
66
|
+
"button",
|
|
67
|
+
{
|
|
68
|
+
onClick: x,
|
|
69
|
+
className: o.copyButton,
|
|
70
|
+
"aria-label": u ? "Copied" : "Copy code",
|
|
71
|
+
children: u ? /* @__PURE__ */ e(k, { className: o.copiedIcon }) : /* @__PURE__ */ e(I, { className: o.copyIcon })
|
|
72
|
+
}
|
|
73
|
+
)
|
|
74
|
+
] })
|
|
72
75
|
] }),
|
|
73
|
-
/* @__PURE__ */
|
|
76
|
+
/* @__PURE__ */ e("div", { className: `${o.scrollContainer} code-scrollbar`, children: /* @__PURE__ */ e("pre", { className: o.pre, children: g ? /* @__PURE__ */ e("code", { className: `language-${t} ${o.code}`, children: r }) : n ? /* @__PURE__ */ e(
|
|
74
77
|
"code",
|
|
75
78
|
{
|
|
76
79
|
className: `language-${t} ${o.code}`,
|
|
77
|
-
dangerouslySetInnerHTML: { __html:
|
|
80
|
+
dangerouslySetInnerHTML: { __html: n }
|
|
78
81
|
}
|
|
79
|
-
) : /* @__PURE__ */
|
|
82
|
+
) : /* @__PURE__ */ e("code", { className: `language-${t} ${o.code}`, children: i }) }) })
|
|
80
83
|
] })
|
|
81
84
|
] });
|
|
82
85
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-block.js","sources":["../../../src/components/content-components/code-block.tsx"],"sourcesContent":["import React, { useEffect, useState } from \"react\";\nimport Prism from \"prismjs\";\nimport \"prismjs/components/prism-javascript.js\";\nimport \"prismjs/components/prism-typescript.js\";\nimport \"prismjs/components/prism-python.js\";\nimport \"prismjs/components/prism-bash.js\";\nimport \"prismjs/components/prism-json.js\";\nimport \"prismjs/components/prism-markdown.js\";\nimport \"prismjs/components/prism-csharp.js\";\nimport \"prismjs/components/prism-powershell.js\";\nimport { getNodeText } from \"../../utils/get-node-text\";\nimport { Copy20Regular,
|
|
1
|
+
{"version":3,"file":"code-block.js","sources":["../../../src/components/content-components/code-block.tsx"],"sourcesContent":["import React, { useEffect, useState } from \"react\";\nimport Prism from \"prismjs\";\nimport \"prismjs/components/prism-javascript.js\";\nimport \"prismjs/components/prism-typescript.js\";\nimport \"prismjs/components/prism-python.js\";\nimport \"prismjs/components/prism-bash.js\";\nimport \"prismjs/components/prism-json.js\";\nimport \"prismjs/components/prism-markdown.js\";\nimport \"prismjs/components/prism-csharp.js\";\nimport \"prismjs/components/prism-powershell.js\";\nimport { getNodeText } from \"../../utils/get-node-text\";\nimport { Copy20Regular, ClipboardCheckmarkRegular } from \"@fluentui/react-icons\";\nimport { capitalize } from \"../../utils/string\";\nimport styles from \"./code-block.module.css\";\n\ninterface CodeBlockProps {\n children: React.ReactNode;\n className?: string;\n language?: string;\n fileName?: string;\n}\n\nfunction useCopyToClipboard() {\n const [isCopied, setIsCopied] = useState(false);\n\n const copy = async (text: string) => {\n try {\n await navigator.clipboard.writeText(text);\n setIsCopied(true);\n setTimeout(() => setIsCopied(false), 2000);\n } catch (error) {\n console.error(\"Failed to copy to clipboard:\", error);\n }\n };\n\n return { isCopied, copy };\n}\n\nexport function CodeBlock({\n children,\n className,\n fileName,\n language,\n}: CodeBlockProps) {\n const [highlightedCode, setHighlightedCode] = useState<string>(\"\");\n const { isCopied, copy } = useCopyToClipboard();\n const lang = language || className?.replace(/^language-/, \"\") || \"text\";\n const codeText = getNodeText(children);\n const showContainer = !!fileName;\n\n const isSSRHighlighted = React.useMemo(() => {\n if (typeof children !== \"object\" || children == null) {\n return false;\n }\n\n const childrenArray = Array.isArray(children) ? children : [children];\n for (const child of childrenArray) {\n if (\n typeof child === \"object\" &&\n child != null &&\n \"props\" in child &&\n child.props?.children\n ) {\n const codeChildren = Array.isArray(child.props.children)\n ? child.props.children\n : [child.props.children];\n\n for (const codeChild of codeChildren) {\n if (\n typeof codeChild === \"object\" &&\n codeChild != null &&\n \"props\" in codeChild &&\n codeChild.props?.className\n ) {\n return true;\n }\n }\n }\n }\n return false;\n }, [children]);\n\n useEffect(() => {\n if (isSSRHighlighted) {\n return;\n }\n\n try {\n const grammar = Prism.languages[lang] || Prism.languages.plaintext;\n const html = Prism.highlight(codeText, grammar, lang);\n setHighlightedCode(html);\n } catch (error) {\n console.error(\"Failed to highlight code:\", error);\n setHighlightedCode(codeText);\n }\n }, [codeText, lang, isSSRHighlighted]);\n\n const handleCopy = () => {\n copy(codeText);\n };\n\n return (\n <div className={showContainer ? styles.container : undefined}>\n {fileName && <span className={styles.fileName}>{fileName}</span>}\n <div className={`${styles.codeWrapper} not-prose`}>\n <div className={styles.header}>\n <span className={styles.language}>{capitalize(lang)}</span>\n <div className={styles.copyButtonWrapper}>\n {isCopied && (\n <div className={styles.tooltip}>\n Copied!\n </div>\n )}\n <button\n onClick={handleCopy}\n className={styles.copyButton}\n aria-label={isCopied ? \"Copied\" : \"Copy code\"}\n >\n {isCopied ? (\n <ClipboardCheckmarkRegular className={styles.copiedIcon} />\n ) : (\n <Copy20Regular className={styles.copyIcon} />\n )}\n </button>\n </div>\n </div>\n <div className={`${styles.scrollContainer} code-scrollbar`}>\n <pre className={styles.pre}>\n {isSSRHighlighted ? (\n <code className={`language-${lang} ${styles.code}`}>\n {children}\n </code>\n ) : highlightedCode ? (\n <code\n className={`language-${lang} ${styles.code}`}\n dangerouslySetInnerHTML={{ __html: highlightedCode }}\n />\n ) : (\n <code className={`language-${lang} ${styles.code}`}>\n {codeText}\n </code>\n )}\n </pre>\n </div>\n </div>\n </div>\n );\n}\n"],"names":["useCopyToClipboard","isCopied","setIsCopied","useState","text","error","CodeBlock","children","className","fileName","language","highlightedCode","setHighlightedCode","copy","lang","codeText","getNodeText","showContainer","isSSRHighlighted","React","childrenArray","child","_a","codeChildren","codeChild","_b","useEffect","grammar","Prism","html","handleCopy","styles","jsx","jsxs","capitalize","ClipboardCheckmarkRegular","Copy20Regular"],"mappings":"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"}
|
|
@@ -1,28 +1,32 @@
|
|
|
1
|
-
const
|
|
2
|
-
container:
|
|
3
|
-
fileName:
|
|
1
|
+
const o = "_container_vund7_1", n = "_fileName_vund7_20", c = "_codeWrapper_vund7_27", e = "_header_vund7_37", t = "_language_vund7_46", _ = "_copyButtonWrapper_vund7_56", p = "_copyButton_vund7_56", r = "_tooltip_vund7_78", a = "_copyIcon_vund7_141", d = "_copiedIcon_vund7_146", u = "_scrollContainer_vund7_156", s = "_pre_vund7_160", l = "_code_vund7_27", i = {
|
|
2
|
+
container: o,
|
|
3
|
+
fileName: n,
|
|
4
4
|
codeWrapper: c,
|
|
5
|
-
header:
|
|
6
|
-
language:
|
|
7
|
-
|
|
5
|
+
header: e,
|
|
6
|
+
language: t,
|
|
7
|
+
copyButtonWrapper: _,
|
|
8
|
+
copyButton: p,
|
|
9
|
+
tooltip: r,
|
|
8
10
|
copyIcon: a,
|
|
9
|
-
copiedIcon:
|
|
10
|
-
scrollContainer:
|
|
11
|
-
pre:
|
|
12
|
-
code:
|
|
11
|
+
copiedIcon: d,
|
|
12
|
+
scrollContainer: u,
|
|
13
|
+
pre: s,
|
|
14
|
+
code: l
|
|
13
15
|
};
|
|
14
16
|
export {
|
|
15
|
-
|
|
17
|
+
l as code,
|
|
16
18
|
c as codeWrapper,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
o as container,
|
|
20
|
+
d as copiedIcon,
|
|
21
|
+
p as copyButton,
|
|
22
|
+
_ as copyButtonWrapper,
|
|
20
23
|
a as copyIcon,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
i as default,
|
|
25
|
+
n as fileName,
|
|
26
|
+
e as header,
|
|
27
|
+
t as language,
|
|
28
|
+
s as pre,
|
|
29
|
+
u as scrollContainer,
|
|
30
|
+
r as tooltip
|
|
27
31
|
};
|
|
28
32
|
//# sourceMappingURL=code-block.module.css.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-block.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"code-block.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as s, jsx as a } from "react/jsx-runtime";
|
|
2
2
|
import e from "./home.module.css.js";
|
|
3
|
-
import { FlowSparkleRegular as r, ChatSparkleRegular as n, AgentsRegular as i, DatabaseRegular as
|
|
3
|
+
import { FlowSparkleRegular as r, ChatSparkleRegular as n, AgentsRegular as i, DatabaseRegular as t } from "@fluentui/react-icons";
|
|
4
4
|
const d = () => /* @__PURE__ */ s("div", { className: e.homeContainer, children: [
|
|
5
5
|
/* @__PURE__ */ s("section", { className: e.heroSection, children: [
|
|
6
6
|
/* @__PURE__ */ a(
|
|
@@ -54,32 +54,32 @@ const d = () => /* @__PURE__ */ s("div", { className: e.homeContainer, children:
|
|
|
54
54
|
/* @__PURE__ */ a("p", { className: e.cardDescription, children: "Launch image generation models in Foundry playground. Easily integrate with code samples." })
|
|
55
55
|
] }),
|
|
56
56
|
/* @__PURE__ */ s("div", { className: e.card, children: [
|
|
57
|
-
/* @__PURE__ */ a("div", { className: e.cardIcon, children: /* @__PURE__ */ a(
|
|
57
|
+
/* @__PURE__ */ a("div", { className: e.cardIcon, children: /* @__PURE__ */ a(t, {}) }),
|
|
58
58
|
/* @__PURE__ */ a("h3", { className: e.cardTitle, children: "Generate Images with Azure OpenAI" }),
|
|
59
59
|
/* @__PURE__ */ a("p", { className: e.cardDescription, children: "Deploy image generation models in Foundry playground. Includes code samples for quick integration." })
|
|
60
60
|
] })
|
|
61
61
|
] })
|
|
62
62
|
] }),
|
|
63
63
|
/* @__PURE__ */ s("section", { className: e.exploreSection, children: [
|
|
64
|
-
/* @__PURE__ */
|
|
64
|
+
/* @__PURE__ */ s("div", { className: e.sectionHeader, children: [
|
|
65
|
+
/* @__PURE__ */ a("h2", { className: e.sectionTitle, children: "Explore models from popular providers" }),
|
|
66
|
+
/* @__PURE__ */ a("button", { className: e.viewAllButton, children: "View all models" })
|
|
67
|
+
] }),
|
|
65
68
|
/* @__PURE__ */ s("div", { className: e.modelCardsContainer, children: [
|
|
66
69
|
/* @__PURE__ */ s("div", { className: e.modelCard, children: [
|
|
67
70
|
/* @__PURE__ */ a("div", { className: e.modelIcon, children: /* @__PURE__ */ a("img", { src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20AI%20logo.svg", alt: "OpenAI" }) }),
|
|
68
71
|
/* @__PURE__ */ a("h3", { className: e.modelTitle, children: "GPT-5" }),
|
|
69
|
-
/* @__PURE__ */ a("p", { className: e.modelDescription, children: "GPT-5 unifies frontier reasoning and advanced coding with high-performance" })
|
|
70
|
-
/* @__PURE__ */ a("button", { className: e.modelButton, children: "Check out model" })
|
|
72
|
+
/* @__PURE__ */ a("p", { className: e.modelDescription, children: "GPT-5 unifies frontier reasoning and advanced coding with high-performance" })
|
|
71
73
|
] }),
|
|
72
74
|
/* @__PURE__ */ s("div", { className: e.modelCard, children: [
|
|
73
75
|
/* @__PURE__ */ a("div", { className: e.modelIcon, children: /* @__PURE__ */ a("img", { src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/DeepSeek.svg", alt: "DeepSeek" }) }),
|
|
74
76
|
/* @__PURE__ */ a("h3", { className: e.modelTitle, children: "Introducing DeepSeek-R1-0528" }),
|
|
75
|
-
/* @__PURE__ */ a("p", { className: e.modelDescription, children: "Improved reasoning, fewer hallucinations, better coding and functions" })
|
|
76
|
-
/* @__PURE__ */ a("button", { className: e.modelButton, children: "Check out model" })
|
|
77
|
+
/* @__PURE__ */ a("p", { className: e.modelDescription, children: "Improved reasoning, fewer hallucinations, better coding and functions" })
|
|
77
78
|
] }),
|
|
78
79
|
/* @__PURE__ */ s("div", { className: e.modelCard, children: [
|
|
79
80
|
/* @__PURE__ */ a("div", { className: e.modelIcon, children: /* @__PURE__ */ a("img", { src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20AI%20logo.svg", alt: "Sora" }) }),
|
|
80
81
|
/* @__PURE__ */ a("h3", { className: e.modelTitle, children: "Sora" }),
|
|
81
|
-
/* @__PURE__ */ a("p", { className: e.modelDescription, children: "Generate up to 20s 1080p videos with Sora and its unique API: text-to-video now, image..." })
|
|
82
|
-
/* @__PURE__ */ a("button", { className: e.modelButton, children: "Check out model" })
|
|
82
|
+
/* @__PURE__ */ a("p", { className: e.modelDescription, children: "Generate up to 20s 1080p videos with Sora and its unique API: text-to-video now, image..." })
|
|
83
83
|
] })
|
|
84
84
|
] })
|
|
85
85
|
] }),
|
|
@@ -103,7 +103,7 @@ const d = () => /* @__PURE__ */ s("div", { className: e.homeContainer, children:
|
|
|
103
103
|
}
|
|
104
104
|
)
|
|
105
105
|
] }),
|
|
106
|
-
/* @__PURE__ */ s("a", { href: "https://github.com", className: e.footerLink, target: "_blank", rel: "noopener noreferrer", children: [
|
|
106
|
+
/* @__PURE__ */ s("a", { href: "https://github.com/azure-ai-foundry", className: e.footerLink, target: "_blank", rel: "noopener noreferrer", children: [
|
|
107
107
|
"GitHub",
|
|
108
108
|
/* @__PURE__ */ s("div", { className: e.externalIcon, children: [
|
|
109
109
|
/* @__PURE__ */ a("img", { className: e.externalIconLight, src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg" }),
|
|
@@ -135,7 +135,7 @@ const d = () => /* @__PURE__ */ s("div", { className: e.homeContainer, children:
|
|
|
135
135
|
}
|
|
136
136
|
)
|
|
137
137
|
] }),
|
|
138
|
-
/* @__PURE__ */ s("a", { href: "https://discord.com", className: e.footerLink, target: "_blank", rel: "noopener noreferrer", children: [
|
|
138
|
+
/* @__PURE__ */ s("a", { href: "https://discord.com/invite/azureaifoundry", className: e.footerLink, target: "_blank", rel: "noopener noreferrer", children: [
|
|
139
139
|
"Discord",
|
|
140
140
|
/* @__PURE__ */ s("div", { className: e.externalIcon, children: [
|
|
141
141
|
/* @__PURE__ */ a("img", { className: e.externalIconLight, src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg" }),
|
|
@@ -147,6 +147,38 @@ const d = () => /* @__PURE__ */ s("div", { className: e.homeContainer, children:
|
|
|
147
147
|
/* @__PURE__ */ a("br", {}),
|
|
148
148
|
" with our Discord community."
|
|
149
149
|
] })
|
|
150
|
+
] }),
|
|
151
|
+
/* @__PURE__ */ s("div", { className: e.footerItem, children: [
|
|
152
|
+
/* @__PURE__ */ s("div", { className: e.footerIcon, children: [
|
|
153
|
+
/* @__PURE__ */ a(
|
|
154
|
+
"img",
|
|
155
|
+
{
|
|
156
|
+
className: e.footerIconLight,
|
|
157
|
+
src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Shape.svg",
|
|
158
|
+
alt: "Discord"
|
|
159
|
+
}
|
|
160
|
+
),
|
|
161
|
+
/* @__PURE__ */ a(
|
|
162
|
+
"img",
|
|
163
|
+
{
|
|
164
|
+
className: e.footerIconDark,
|
|
165
|
+
src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Shape%20(1).svg",
|
|
166
|
+
alt: "Discord"
|
|
167
|
+
}
|
|
168
|
+
)
|
|
169
|
+
] }),
|
|
170
|
+
/* @__PURE__ */ s("a", { href: "https://devblogs.microsoft.com/foundry/", className: e.footerLink, target: "_blank", rel: "noopener noreferrer", children: [
|
|
171
|
+
"Blog",
|
|
172
|
+
/* @__PURE__ */ s("div", { className: e.externalIcon, children: [
|
|
173
|
+
/* @__PURE__ */ a("img", { className: e.externalIconLight, src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg" }),
|
|
174
|
+
/* @__PURE__ */ a("img", { className: e.externalIconDark, src: "https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20(1).svg" })
|
|
175
|
+
] })
|
|
176
|
+
] }),
|
|
177
|
+
/* @__PURE__ */ s("p", { className: e.footerDescription, children: [
|
|
178
|
+
"Read updates and insights on ",
|
|
179
|
+
/* @__PURE__ */ a("br", {}),
|
|
180
|
+
" Foundry DevBlog."
|
|
181
|
+
] })
|
|
150
182
|
] })
|
|
151
183
|
] })
|
|
152
184
|
] });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"home.js","sources":["../../../src/components/content-components/home.tsx"],"sourcesContent":["import React from 'react';\nimport styles from './home.module.css';\nimport { AgentsRegular,\n FlowSparkleRegular,\n ChatSparkleRegular,\n DatabaseRegular,\n } from '@fluentui/react-icons';\n\nexport const Home = () => {\n return (\n <div className={styles.homeContainer}>\n {/* Foundry quick start section */}\n <section className={styles.heroSection}>\n <div\n className={`${styles.heroBackground} ${styles.heroBackgroundLight}`}\n style={{\n backgroundImage: 'url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/landing-background-light.svg)',\n height: '24rem'\n }}\n />\n <div\n className={`${styles.heroBackground} ${styles.heroBackgroundDark}`}\n style={{\n backgroundImage: 'url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/landing-background-dark.svg)',\n height: '24rem'\n }}\n />\n <div className={styles.heroContent}>\n <h1 className={styles.heroTitle}>Foundry quick start</h1>\n <p className={styles.heroDescription}>\n Learn how to get started with Azure AI Foundry by <br /> creating a project, deploying a model, and running <br /> your first chat completion.\n </p>\n <button className={styles.heroButton}>Get started</button>\n </div>\n </section>\n\n {/* Learn more section */}\n <section className={styles.learnSection}>\n <h2 className={styles.sectionTitle}>Learn more</h2>\n <div className={styles.cardsGrid}>\n <div className={styles.card}>\n <div className={styles.cardIcon}><FlowSparkleRegular /></div>\n <h3 className={styles.cardTitle}>Build your first AI app</h3>\n <p className={styles.cardDescription}>\n Create a Foundry project and deploy a model. Includes SDK samples for multiple programming languages.\n </p>\n </div>\n \n <div className={styles.card}>\n <div className={styles.cardIcon}><ChatSparkleRegular /></div>\n <h3 className={styles.cardTitle}>Get answers in chat playground</h3>\n <p className={styles.cardDescription}>\n Interact with deployed models in the playground. Configure prompts and test responses in a no-code UI.\n </p>\n </div>\n \n <div className={styles.card}>\n <div className={styles.cardIcon}><AgentsRegular /></div>\n <h3 className={styles.cardTitle}>Develop an AI agent</h3>\n <p className={styles.cardDescription}>\n Launch image generation models in Foundry playground. Easily integrate with code samples.\n </p>\n </div>\n \n <div className={styles.card}>\n <div className={styles.cardIcon}><DatabaseRegular /></div>\n <h3 className={styles.cardTitle}>Generate Images with Azure OpenAI</h3>\n <p className={styles.cardDescription}>\n Deploy image generation models in Foundry playground. Includes code samples for quick integration.\n </p>\n </div>\n </div>\n </section>\n\n {/* Explore models section */}\n <section className={styles.exploreSection}>\n <h2 className={styles.sectionTitle}>Explore models from popular providers</h2>\n <div className={styles.modelCardsContainer}>\n <div className={styles.modelCard}>\n <div className={styles.modelIcon}><img src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20AI%20logo.svg\" alt=\"OpenAI\" /></div>\n <h3 className={styles.modelTitle}>GPT-5</h3>\n <p className={styles.modelDescription}>\n GPT-5 unifies frontier reasoning and advanced coding with high-performance\n </p>\n <button className={styles.modelButton}>Check out model</button>\n </div>\n\n <div className={styles.modelCard}>\n <div className={styles.modelIcon}><img src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/DeepSeek.svg\" alt=\"DeepSeek\" /></div>\n <h3 className={styles.modelTitle}>Introducing DeepSeek-R1-0528</h3>\n <p className={styles.modelDescription}>\n Improved reasoning, fewer hallucinations, better coding and functions\n </p>\n <button className={styles.modelButton}>Check out model</button>\n </div>\n\n <div className={styles.modelCard}>\n <div className={styles.modelIcon}><img src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20AI%20logo.svg\" alt=\"Sora\" /></div>\n <h3 className={styles.modelTitle}>Sora</h3>\n <p className={styles.modelDescription}>\n Generate up to 20s 1080p videos with Sora and its unique API: text-to-video now, image...\n </p>\n <button className={styles.modelButton}>Check out model</button>\n </div>\n </div>\n </section>\n\n {/* Footer section */}\n <section className={styles.footerSection}>\n <div className={styles.footerItem}>\n <div className={styles.footerIcon}>\n <img \n className={styles.footerIconLight} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Github.svg\" \n alt=\"GitHub\" \n />\n <img \n className={styles.footerIconDark} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Github-dark.svg\" \n alt=\"GitHub\" \n />\n </div>\n <a href=\"https://github.com\" className={styles.footerLink} target=\"_blank\" rel=\"noopener noreferrer\">\n GitHub\n <div className={styles.externalIcon}>\n <img className={styles.externalIconLight} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg\" />\n <img className={styles.externalIconDark} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20(1).svg\" />\n </div>\n </a>\n <p className={styles.footerDescription}>Get the latest SDK updates and <br /> code samples on GitHub.</p>\n </div>\n <div className={styles.footerItem}>\n <div className={styles.footerIcon}>\n <img \n className={styles.footerIconLight} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Discord_Light.svg\" \n alt=\"Discord\" \n />\n <img \n className={styles.footerIconDark} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Discord_Dark.svg\" \n alt=\"Discord\" \n />\n </div>\n <a href=\"https://discord.com\" className={styles.footerLink} target=\"_blank\" rel=\"noopener noreferrer\">\n Discord\n <div className={styles.externalIcon}>\n <img className={styles.externalIconLight} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg\" />\n <img className={styles.externalIconDark} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20(1).svg\" />\n </div>\n </a>\n <p className={styles.footerDescription}>Have questions? Join and connect <br /> with our Discord community.</p>\n </div>\n </section>\n </div>\n );\n};\n\n"],"names":["Home","jsxs","styles","jsx","FlowSparkleRegular","ChatSparkleRegular","AgentsRegular","DatabaseRegular"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"home.js","sources":["../../../src/components/content-components/home.tsx"],"sourcesContent":["import React from 'react';\nimport styles from './home.module.css';\nimport { AgentsRegular,\n FlowSparkleRegular,\n ChatSparkleRegular,\n DatabaseRegular,\n } from '@fluentui/react-icons';\n\nexport const Home = () => {\n return (\n <div className={styles.homeContainer}>\n {/* Foundry quick start section */}\n <section className={styles.heroSection}>\n <div\n className={`${styles.heroBackground} ${styles.heroBackgroundLight}`}\n style={{\n backgroundImage: 'url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/landing-background-light.svg)',\n height: '24rem'\n }}\n />\n <div\n className={`${styles.heroBackground} ${styles.heroBackgroundDark}`}\n style={{\n backgroundImage: 'url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/landing-background-dark.svg)',\n height: '24rem'\n }}\n />\n <div className={styles.heroContent}>\n <h1 className={styles.heroTitle}>Foundry quick start</h1>\n <p className={styles.heroDescription}>\n Learn how to get started with Azure AI Foundry by <br /> creating a project, deploying a model, and running <br /> your first chat completion.\n </p>\n <button className={styles.heroButton}>Get started</button>\n </div>\n </section>\n\n {/* Learn more section */}\n <section className={styles.learnSection}>\n <h2 className={styles.sectionTitle}>Learn more</h2>\n <div className={styles.cardsGrid}>\n <div className={styles.card}>\n <div className={styles.cardIcon}><FlowSparkleRegular /></div>\n <h3 className={styles.cardTitle}>Build your first AI app</h3>\n <p className={styles.cardDescription}>\n Create a Foundry project and deploy a model. Includes SDK samples for multiple programming languages.\n </p>\n </div>\n \n <div className={styles.card}>\n <div className={styles.cardIcon}><ChatSparkleRegular /></div>\n <h3 className={styles.cardTitle}>Get answers in chat playground</h3>\n <p className={styles.cardDescription}>\n Interact with deployed models in the playground. Configure prompts and test responses in a no-code UI.\n </p>\n </div>\n \n <div className={styles.card}>\n <div className={styles.cardIcon}><AgentsRegular /></div>\n <h3 className={styles.cardTitle}>Develop an AI agent</h3>\n <p className={styles.cardDescription}>\n Launch image generation models in Foundry playground. Easily integrate with code samples.\n </p>\n </div>\n \n <div className={styles.card}>\n <div className={styles.cardIcon}><DatabaseRegular /></div>\n <h3 className={styles.cardTitle}>Generate Images with Azure OpenAI</h3>\n <p className={styles.cardDescription}>\n Deploy image generation models in Foundry playground. Includes code samples for quick integration.\n </p>\n </div>\n </div>\n </section>\n\n {/* Explore models section */}\n <section className={styles.exploreSection}>\n <div className={styles.sectionHeader}>\n <h2 className={styles.sectionTitle}>Explore models from popular providers</h2>\n <button className={styles.viewAllButton}>View all models</button>\n </div>\n <div className={styles.modelCardsContainer}>\n <div className={styles.modelCard}>\n <div className={styles.modelIcon}><img src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20AI%20logo.svg\" alt=\"OpenAI\" /></div>\n <h3 className={styles.modelTitle}>GPT-5</h3>\n <p className={styles.modelDescription}>\n GPT-5 unifies frontier reasoning and advanced coding with high-performance\n </p>\n </div>\n\n <div className={styles.modelCard}>\n <div className={styles.modelIcon}><img src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/DeepSeek.svg\" alt=\"DeepSeek\" /></div>\n <h3 className={styles.modelTitle}>Introducing DeepSeek-R1-0528</h3>\n <p className={styles.modelDescription}>\n Improved reasoning, fewer hallucinations, better coding and functions\n </p>\n </div>\n\n <div className={styles.modelCard}>\n <div className={styles.modelIcon}><img src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20AI%20logo.svg\" alt=\"Sora\" /></div>\n <h3 className={styles.modelTitle}>Sora</h3>\n <p className={styles.modelDescription}>\n Generate up to 20s 1080p videos with Sora and its unique API: text-to-video now, image...\n </p>\n </div>\n </div>\n </section>\n\n {/* Footer section */}\n <section className={styles.footerSection}>\n <div className={styles.footerItem}>\n <div className={styles.footerIcon}>\n <img \n className={styles.footerIconLight} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Github.svg\" \n alt=\"GitHub\" \n />\n <img \n className={styles.footerIconDark} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Github-dark.svg\" \n alt=\"GitHub\" \n />\n </div>\n <a href=\"https://github.com/azure-ai-foundry\" className={styles.footerLink} target=\"_blank\" rel=\"noopener noreferrer\">\n GitHub\n <div className={styles.externalIcon}>\n <img className={styles.externalIconLight} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg\" />\n <img className={styles.externalIconDark} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20(1).svg\" />\n </div>\n </a>\n <p className={styles.footerDescription}>Get the latest SDK updates and <br /> code samples on GitHub.</p>\n </div>\n <div className={styles.footerItem}>\n <div className={styles.footerIcon}>\n <img \n className={styles.footerIconLight} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Discord_Light.svg\" \n alt=\"Discord\" \n />\n <img \n className={styles.footerIconDark} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Discord_Dark.svg\" \n alt=\"Discord\" \n />\n </div>\n <a href=\"https://discord.com/invite/azureaifoundry\" className={styles.footerLink} target=\"_blank\" rel=\"noopener noreferrer\">\n Discord\n <div className={styles.externalIcon}>\n <img className={styles.externalIconLight} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg\" />\n <img className={styles.externalIconDark} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20(1).svg\" />\n </div>\n </a>\n <p className={styles.footerDescription}>Have questions? Join and connect <br /> with our Discord community.</p>\n </div>\n <div className={styles.footerItem}>\n <div className={styles.footerIcon}>\n <img \n className={styles.footerIconLight} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Shape.svg\" \n alt=\"Discord\" \n />\n <img \n className={styles.footerIconDark} \n src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Shape%20(1).svg\" \n alt=\"Discord\" \n />\n </div>\n <a href=\"https://devblogs.microsoft.com/foundry/\" className={styles.footerLink} target=\"_blank\" rel=\"noopener noreferrer\">\n Blog\n <div className={styles.externalIcon}>\n <img className={styles.externalIconLight} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open.svg\" />\n <img className={styles.externalIconDark} src=\"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Open%20(1).svg\" />\n </div>\n </a>\n <p className={styles.footerDescription}>Read updates and insights on <br /> Foundry DevBlog.</p>\n </div>\n </section>\n </div>\n );\n};\n\n"],"names":["Home","jsxs","styles","jsx","FlowSparkleRegular","ChatSparkleRegular","AgentsRegular","DatabaseRegular"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const o = "
|
|
1
|
+
const o = "_homeContainer_kkusu_18", e = "_heroSection_kkusu_37", t = "_heroBackground_kkusu_54", n = "_heroBackgroundLight_kkusu_70", r = "_heroBackgroundDark_kkusu_78", c = "_heroContent_kkusu_86", _ = "_heroTitle_kkusu_98", s = "_heroDescription_kkusu_110", k = "_heroButton_kkusu_121", u = "_learnSection_kkusu_139", i = "_sectionHeader_kkusu_149", a = "_sectionTitle_kkusu_158", d = "_viewAllButton_kkusu_173", l = "_cardsGrid_kkusu_199", h = "_card_kkusu_199", I = "_cardIcon_kkusu_233", f = "_cardTitle_kkusu_254", m = "_cardDescription_kkusu_266", D = "_exploreSection_kkusu_279", g = "_modelCardsContainer_kkusu_288", p = "_modelCard_kkusu_288", B = "_modelIcon_kkusu_320", C = "_modelTitle_kkusu_343", x = "_modelDescription_kkusu_356", L = "_footerSection_kkusu_382", S = "_footerItem_kkusu_393", T = "_footerIcon_kkusu_400", v = "_footerIconLight_kkusu_412", w = "_footerIconDark_kkusu_420", A = "_footerLink_kkusu_428", G = "_externalIconLight_kkusu_441", H = "_externalIconDark_kkusu_449", y = "_externalIcon_kkusu_441", b = "_footerDescription_kkusu_484", j = {
|
|
2
2
|
homeContainer: o,
|
|
3
3
|
heroSection: e,
|
|
4
4
|
heroBackground: t,
|
|
@@ -6,67 +6,69 @@ const o = "_homeContainer_jdam0_18", e = "_heroSection_jdam0_37", t = "_heroBack
|
|
|
6
6
|
heroBackgroundDark: r,
|
|
7
7
|
heroContent: c,
|
|
8
8
|
heroTitle: _,
|
|
9
|
-
heroDescription:
|
|
10
|
-
heroButton:
|
|
11
|
-
learnSection:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
9
|
+
heroDescription: s,
|
|
10
|
+
heroButton: k,
|
|
11
|
+
learnSection: u,
|
|
12
|
+
sectionHeader: i,
|
|
13
|
+
sectionTitle: a,
|
|
14
|
+
viewAllButton: d,
|
|
15
|
+
cardsGrid: l,
|
|
16
|
+
card: h,
|
|
17
|
+
cardIcon: I,
|
|
18
|
+
cardTitle: f,
|
|
19
|
+
cardDescription: m,
|
|
20
|
+
exploreSection: D,
|
|
21
|
+
modelCardsContainer: g,
|
|
22
|
+
modelCard: p,
|
|
23
|
+
modelIcon: B,
|
|
24
|
+
modelTitle: C,
|
|
25
|
+
modelDescription: x,
|
|
26
|
+
footerSection: L,
|
|
27
|
+
footerItem: S,
|
|
28
|
+
footerIcon: T,
|
|
29
|
+
footerIconLight: v,
|
|
30
|
+
footerIconDark: w,
|
|
31
|
+
footerLink: A,
|
|
32
|
+
externalIconLight: G,
|
|
33
|
+
externalIconDark: H,
|
|
34
|
+
externalIcon: y,
|
|
35
|
+
footerDescription: b
|
|
35
36
|
};
|
|
36
37
|
export {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
38
|
+
h as card,
|
|
39
|
+
m as cardDescription,
|
|
40
|
+
I as cardIcon,
|
|
41
|
+
f as cardTitle,
|
|
42
|
+
l as cardsGrid,
|
|
43
|
+
j as default,
|
|
44
|
+
D as exploreSection,
|
|
45
|
+
y as externalIcon,
|
|
46
|
+
H as externalIconDark,
|
|
47
|
+
G as externalIconLight,
|
|
48
|
+
b as footerDescription,
|
|
49
|
+
T as footerIcon,
|
|
50
|
+
w as footerIconDark,
|
|
51
|
+
v as footerIconLight,
|
|
52
|
+
S as footerItem,
|
|
53
|
+
A as footerLink,
|
|
54
|
+
L as footerSection,
|
|
54
55
|
t as heroBackground,
|
|
55
56
|
r as heroBackgroundDark,
|
|
56
57
|
n as heroBackgroundLight,
|
|
57
|
-
|
|
58
|
+
k as heroButton,
|
|
58
59
|
c as heroContent,
|
|
59
|
-
|
|
60
|
+
s as heroDescription,
|
|
60
61
|
e as heroSection,
|
|
61
62
|
_ as heroTitle,
|
|
62
63
|
o as homeContainer,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
64
|
+
u as learnSection,
|
|
65
|
+
p as modelCard,
|
|
66
|
+
g as modelCardsContainer,
|
|
67
|
+
x as modelDescription,
|
|
68
|
+
B as modelIcon,
|
|
69
|
+
C as modelTitle,
|
|
70
|
+
i as sectionHeader,
|
|
71
|
+
a as sectionTitle,
|
|
72
|
+
d as viewAllButton
|
|
71
73
|
};
|
|
72
74
|
//# sourceMappingURL=home.module.css.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"home.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"home.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useState as
|
|
1
|
+
import { jsxs as l, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { useState as f } from "react";
|
|
3
|
+
import { DropdownMenu as g } from "./dropdown-menu.js";
|
|
3
4
|
import e from "./nav-tree.module.css.js";
|
|
4
5
|
/* empty css */
|
|
5
|
-
function
|
|
6
|
-
return /* @__PURE__ */
|
|
6
|
+
function N() {
|
|
7
|
+
return /* @__PURE__ */ l("div", { className: e.externalIcon, children: [
|
|
7
8
|
/* @__PURE__ */ r(
|
|
8
9
|
"svg",
|
|
9
10
|
{
|
|
@@ -42,36 +43,36 @@ function g() {
|
|
|
42
43
|
)
|
|
43
44
|
] });
|
|
44
45
|
}
|
|
45
|
-
function
|
|
46
|
-
const
|
|
47
|
-
return
|
|
48
|
-
/* @__PURE__ */
|
|
46
|
+
function u({ item: n, activeId: c, level: s = 0 }) {
|
|
47
|
+
const p = s === 0 ? !0 : n.expanded ?? !1, [t, m] = f(p), a = n.children && n.children.length > 0, o = a && !n.href, d = n.href && c === n.href, C = n.icon;
|
|
48
|
+
return o && s === 0 ? /* @__PURE__ */ l("div", { className: e.group, role: "group", "aria-label": n.toc_title, children: [
|
|
49
|
+
/* @__PURE__ */ l("div", { className: e.groupHeader, children: [
|
|
49
50
|
C && /* @__PURE__ */ r(C, { className: e.groupIcon, "aria-hidden": "true" }),
|
|
50
51
|
/* @__PURE__ */ r("span", { children: n.toc_title })
|
|
51
52
|
] }),
|
|
52
|
-
|
|
53
|
-
|
|
53
|
+
a && n.children && /* @__PURE__ */ r("ul", { className: e.list, role: "list", children: n.children.map((i, h) => /* @__PURE__ */ r(
|
|
54
|
+
u,
|
|
54
55
|
{
|
|
55
|
-
item:
|
|
56
|
+
item: i,
|
|
56
57
|
activeId: c,
|
|
57
58
|
level: s + 1
|
|
58
59
|
},
|
|
59
|
-
`${
|
|
60
|
+
`${i.href}-${h}`
|
|
60
61
|
)) })
|
|
61
|
-
] }) :
|
|
62
|
-
/* @__PURE__ */
|
|
62
|
+
] }) : o && s > 0 ? /* @__PURE__ */ l("li", { className: e.listItem, children: [
|
|
63
|
+
/* @__PURE__ */ l(
|
|
63
64
|
"button",
|
|
64
65
|
{
|
|
65
|
-
onClick: () =>
|
|
66
|
-
"aria-expanded":
|
|
67
|
-
"aria-label": `${
|
|
66
|
+
onClick: () => m(!t),
|
|
67
|
+
"aria-expanded": t,
|
|
68
|
+
"aria-label": `${t ? "Collapse" : "Expand"} ${n.toc_title} section`,
|
|
68
69
|
className: e.expandButton,
|
|
69
70
|
children: [
|
|
70
71
|
/* @__PURE__ */ r("span", { children: n.toc_title }),
|
|
71
72
|
/* @__PURE__ */ r(
|
|
72
73
|
"svg",
|
|
73
74
|
{
|
|
74
|
-
className: `${e.chevron} ${
|
|
75
|
+
className: `${e.chevron} ${t ? e.chevronExpanded : e.chevronCollapsed}`,
|
|
75
76
|
fill: "none",
|
|
76
77
|
stroke: "currentColor",
|
|
77
78
|
viewBox: "0 0 24 24",
|
|
@@ -90,16 +91,16 @@ function p({ item: n, activeId: c, level: s = 0 }) {
|
|
|
90
91
|
]
|
|
91
92
|
}
|
|
92
93
|
),
|
|
93
|
-
|
|
94
|
-
|
|
94
|
+
a && t && n.children && /* @__PURE__ */ r("ul", { className: e.nestedList, role: "group", children: n.children.map((i, h) => /* @__PURE__ */ r(
|
|
95
|
+
u,
|
|
95
96
|
{
|
|
96
|
-
item:
|
|
97
|
+
item: i,
|
|
97
98
|
activeId: c,
|
|
98
99
|
level: s + 1
|
|
99
100
|
},
|
|
100
|
-
`${
|
|
101
|
+
`${i.href}-${h}`
|
|
101
102
|
)) })
|
|
102
|
-
] }) : /* @__PURE__ */
|
|
103
|
+
] }) : /* @__PURE__ */ l("li", { className: e.listItem, children: [
|
|
103
104
|
/* @__PURE__ */ r(
|
|
104
105
|
"a",
|
|
105
106
|
{
|
|
@@ -109,55 +110,65 @@ function p({ item: n, activeId: c, level: s = 0 }) {
|
|
|
109
110
|
children: n.toc_title
|
|
110
111
|
}
|
|
111
112
|
),
|
|
112
|
-
|
|
113
|
-
|
|
113
|
+
a && t && n.children && /* @__PURE__ */ r("ul", { className: e.nestedList, role: "group", children: n.children.map((i, h) => /* @__PURE__ */ r(
|
|
114
|
+
u,
|
|
114
115
|
{
|
|
115
|
-
item:
|
|
116
|
+
item: i,
|
|
116
117
|
activeId: c,
|
|
117
118
|
level: s + 1
|
|
118
119
|
},
|
|
119
|
-
`${
|
|
120
|
+
`${i.href}-${h}`
|
|
120
121
|
)) })
|
|
121
122
|
] });
|
|
122
123
|
}
|
|
123
|
-
function
|
|
124
|
+
function V({
|
|
124
125
|
navTree: n,
|
|
125
126
|
activeId: c,
|
|
126
127
|
className: s = "",
|
|
127
|
-
dropdown:
|
|
128
|
-
activeHref:
|
|
129
|
-
theme:
|
|
130
|
-
bottomLinks:
|
|
128
|
+
dropdown: p,
|
|
129
|
+
activeHref: t,
|
|
130
|
+
theme: m,
|
|
131
|
+
bottomLinks: a
|
|
131
132
|
}) {
|
|
132
|
-
return !n || n.items.length === 0 ? null : (console.log("bottomLinks",
|
|
133
|
+
return !n || n.items.length === 0 ? null : (console.log("bottomLinks", a), /* @__PURE__ */ l(
|
|
133
134
|
"nav",
|
|
134
135
|
{
|
|
135
|
-
className: `${e.nav} ${s} ${
|
|
136
|
+
className: `${e.nav} ${s} ${m === "dark" ? "dark" : ""}`,
|
|
136
137
|
"aria-label": "Documentation navigation",
|
|
137
138
|
children: [
|
|
138
|
-
/* @__PURE__ */
|
|
139
|
-
p
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
139
|
+
/* @__PURE__ */ l("div", { className: e.navContent, children: [
|
|
140
|
+
p && /* @__PURE__ */ r(
|
|
141
|
+
g,
|
|
142
|
+
{
|
|
143
|
+
dropdown: p,
|
|
144
|
+
activeHref: t,
|
|
145
|
+
className: e.group
|
|
146
|
+
}
|
|
147
|
+
),
|
|
148
|
+
n.items.map((o, d) => /* @__PURE__ */ r(
|
|
149
|
+
u,
|
|
150
|
+
{
|
|
151
|
+
item: o,
|
|
152
|
+
activeId: c
|
|
153
|
+
},
|
|
154
|
+
`${o.href}-${d}`
|
|
155
|
+
))
|
|
156
|
+
] }),
|
|
157
|
+
a && a.length > 0 && /* @__PURE__ */ l("div", { className: e.bottomSection, children: [
|
|
147
158
|
/* @__PURE__ */ r("div", { className: e.divider }),
|
|
148
|
-
/* @__PURE__ */ r("div", { className: e.bottomLinks, children:
|
|
149
|
-
const C =
|
|
150
|
-
return /* @__PURE__ */
|
|
159
|
+
/* @__PURE__ */ r("div", { className: e.bottomLinks, children: a.map((o, d) => {
|
|
160
|
+
const C = o.icon;
|
|
161
|
+
return /* @__PURE__ */ l(
|
|
151
162
|
"a",
|
|
152
163
|
{
|
|
153
|
-
href:
|
|
164
|
+
href: o.href,
|
|
154
165
|
target: "_blank",
|
|
155
166
|
rel: "noopener noreferrer",
|
|
156
167
|
className: e.bottomLink,
|
|
157
168
|
children: [
|
|
158
169
|
/* @__PURE__ */ r(C, { className: e.bottomLinkIcon }),
|
|
159
|
-
/* @__PURE__ */ r("span", { children:
|
|
160
|
-
/* @__PURE__ */ r(
|
|
170
|
+
/* @__PURE__ */ r("span", { children: o.label }),
|
|
171
|
+
/* @__PURE__ */ r(N, {})
|
|
161
172
|
]
|
|
162
173
|
},
|
|
163
174
|
d
|
|
@@ -169,6 +180,7 @@ function w({
|
|
|
169
180
|
));
|
|
170
181
|
}
|
|
171
182
|
export {
|
|
172
|
-
|
|
183
|
+
g as DropdownMenu,
|
|
184
|
+
V as NavTree
|
|
173
185
|
};
|
|
174
186
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/components/nav-tree/index.tsx"],"sourcesContent":["import React, { useState } from \"react\";\nimport type { NavItem, NavTreeData } from \"../../types\";\nimport { DropdownConfig } from \"./dropdown-menu\";\nimport styles from \"./nav-tree.module.css\";\nexport { DropdownMenu } from \"./dropdown-menu\";\nexport type { DropdownConfig, DropdownItem } from \"./dropdown-menu\";\nexport { MobileNavTree } from \"./mobile-nav\";\nexport type { MobileNavTreeProps } from \"./mobile-nav\";\nimport \"../../styles.css\";\n\nexport interface BottomLinkConfig {\n href: string;\n label: string;\n icon: React.ComponentType<{ className?: string }>;\n}\n\ninterface NavTreeProps {\n navTree: NavTreeData;\n activeId?: string;\n className?: string;\n dropdown?: DropdownConfig;\n activeHref?: string;\n theme?: \"light\" | \"dark\" | \"system\";\n bottomLinks?: BottomLinkConfig[];\n}\n\ninterface TreeItemProps {\n item: NavItem;\n activeId?: string;\n level?: number;\n}\n\nfunction ExternalIcon() {\n return (\n <div className={styles.externalIcon}>\n <svg\n className={styles.externalIconLight}\n width=\"12\"\n height=\"12\"\n viewBox=\"0 0 12 12\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M2.49999 1C1.67157 1 0.999995 1.67157 0.999995 2.5V9.5C0.999995 10.3284 1.67157 11 2.49999 11H9.49996C10.3284 11 10.9999 10.3284 10.9999 9.5V7.26923C10.9999 6.99309 11.2238 6.76923 11.4999 6.76923C11.7761 6.76923 11.9999 6.99309 11.9999 7.26923V9.5C11.9999 10.8807 10.8807 12 9.49996 12H2.49999C1.11928 12 0 10.8807 0 9.5V2.5C0 1.11929 1.11928 0 2.49999 0H4.73075C5.00689 0 5.23074 0.223858 5.23074 0.5C5.23074 0.776142 5.00689 1 4.73075 1H2.49999ZM6.76926 0.5C6.76926 0.223858 6.99311 0 7.26925 0H11.5C11.7761 0 12 0.223858 12 0.5V4.73077C12 5.00691 11.7761 5.23077 11.5 5.23077C11.2239 5.23077 11 5.00691 11 4.73077V1.70711L7.6228 5.08433C7.42754 5.27959 7.11096 5.27959 6.9157 5.08433C6.72044 4.88906 6.72044 4.57248 6.9157 4.37722L10.2929 1H7.26925C6.99311 1 6.76926 0.776142 6.76926 0.5Z\"\n fill=\"#707070\"\n />\n </svg>\n <svg\n className={styles.externalIconDark}\n width=\"12\"\n height=\"12\"\n viewBox=\"0 0 12 12\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M2.49999 1C1.67157 1 0.999995 1.67157 0.999995 2.5V9.5C0.999995 10.3284 1.67157 11 2.49999 11H9.49996C10.3284 11 10.9999 10.3284 10.9999 9.5V7.26923C10.9999 6.99309 11.2238 6.76923 11.4999 6.76923C11.7761 6.76923 11.9999 6.99309 11.9999 7.26923V9.5C11.9999 10.8807 10.8807 12 9.49996 12H2.49999C1.11928 12 0 10.8807 0 9.5V2.5C0 1.11929 1.11928 0 2.49999 0H4.73075C5.00689 0 5.23074 0.223858 5.23074 0.5C5.23074 0.776142 5.00689 1 4.73075 1H2.49999ZM6.76926 0.5C6.76926 0.223858 6.99311 0 7.26925 0H11.5C11.7761 0 12 0.223858 12 0.5V4.73077C12 5.00691 11.7761 5.23077 11.5 5.23077C11.2239 5.23077 11 5.00691 11 4.73077V1.70711L7.6228 5.08433C7.42754 5.27959 7.11096 5.27959 6.9157 5.08433C6.72044 4.88906 6.72044 4.57248 6.9157 4.37722L10.2929 1H7.26925C6.99311 1 6.76926 0.776142 6.76926 0.5Z\"\n fill=\"#999999\"\n />\n </svg>\n </div>\n );\n}\n\nfunction TreeItemComponent({ item, activeId, level = 0 }: TreeItemProps) {\n const defaultExpanded = level === 0 ? true : item.expanded ?? false;\n const [isExpanded, setIsExpanded] = useState(defaultExpanded);\n const hasChildren = item.children && item.children.length > 0;\n const isGroup = hasChildren && !item.href;\n const isActive = item.href && activeId === item.href;\n const Icon = item.icon;\n\n if (isGroup && level === 0) {\n return (\n <div className={styles.group} role=\"group\" aria-label={item.toc_title}>\n <div className={styles.groupHeader}>\n {Icon && <Icon className={styles.groupIcon} aria-hidden=\"true\" />}\n <span>{item.toc_title}</span>\n </div>\n {hasChildren && item.children && (\n <ul className={styles.list} role=\"list\">\n {item.children.map((child, index) => (\n <TreeItemComponent\n key={`${child.href}-${index}`}\n item={child}\n activeId={activeId}\n level={level + 1}\n />\n ))}\n </ul>\n )}\n </div>\n );\n }\n\n if (isGroup && level > 0) {\n return (\n <li className={styles.listItem}>\n <button\n onClick={() => setIsExpanded(!isExpanded)}\n aria-expanded={isExpanded}\n aria-label={`${isExpanded ? \"Collapse\" : \"Expand\"} ${\n item.toc_title\n } section`}\n className={styles.expandButton}\n >\n <span>{item.toc_title}</span>\n <svg\n className={`${styles.chevron} ${\n isExpanded ? styles.chevronExpanded : styles.chevronCollapsed\n }`}\n fill=\"none\"\n stroke=\"currentColor\"\n viewBox=\"0 0 24 24\"\n aria-hidden=\"true\"\n >\n <path\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M9 5l7 7-7 7\"\n />\n </svg>\n </button>\n {hasChildren && isExpanded && item.children && (\n <ul className={styles.nestedList} role=\"group\">\n {item.children.map((child, index) => (\n <TreeItemComponent\n key={`${child.href}-${index}`}\n item={child}\n activeId={activeId}\n level={level + 1}\n />\n ))}\n </ul>\n )}\n </li>\n );\n }\n\n return (\n <li className={styles.listItem}>\n <a\n href={item.href}\n aria-current={isActive ? \"page\" : undefined}\n className={`${styles.link} ${isActive ? styles.linkActive : \"\"}`}\n >\n {item.toc_title}\n </a>\n {hasChildren && isExpanded && item.children && (\n <ul className={styles.nestedList} role=\"group\">\n {item.children.map((child, index) => (\n <TreeItemComponent\n key={`${child.href}-${index}`}\n item={child}\n activeId={activeId}\n level={level + 1}\n />\n ))}\n </ul>\n )}\n </li>\n );\n}\n\nexport function NavTree({\n navTree,\n activeId,\n className = \"\",\n dropdown,\n activeHref,\n theme,\n bottomLinks,\n}: NavTreeProps) {\n if (!navTree || navTree.items.length === 0) {\n return null;\n }\n\n console.log(\"bottomLinks\", bottomLinks);\n\n return (\n <nav\n className={`${styles.nav} ${className} ${theme === \"dark\" ? \"dark\" : \"\"}`}\n aria-label=\"Documentation navigation\"\n >\n <div className={styles.navContent}>\n {/* {dropdown && (\n <DropdownMenu\n dropdown={dropdown}\n activeHref={activeHref}\n className={styles.group}\n />\n )} */}\n {navTree.items.map((item, index) => (\n <TreeItemComponent\n key={`${item.href}-${index}`}\n item={item}\n activeId={activeId}\n />\n ))}\n </div>\n {bottomLinks && bottomLinks.length > 0 && (\n <div className={styles.bottomSection}>\n <div className={styles.divider}></div>\n <div className={styles.bottomLinks}>\n {bottomLinks.map((link, index) => {\n const Icon = link.icon;\n return (\n <a\n key={index}\n href={link.href}\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n className={styles.bottomLink}\n >\n <Icon className={styles.bottomLinkIcon} />\n <span>{link.label}</span>\n <ExternalIcon />\n </a>\n );\n })}\n </div>\n </div>\n )}\n </nav>\n );\n}\n"],"names":["ExternalIcon","jsxs","styles","jsx","TreeItemComponent","item","activeId","level","defaultExpanded","isExpanded","setIsExpanded","useState","hasChildren","isGroup","isActive","Icon","child","index","NavTree","navTree","className","dropdown","activeHref","theme","bottomLinks","link"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/components/nav-tree/index.tsx"],"sourcesContent":["import React, { useState } from \"react\";\nimport type { NavItem, NavTreeData } from \"../../types\";\nimport { DropdownConfig, DropdownMenu } from \"./dropdown-menu\";\nimport styles from \"./nav-tree.module.css\";\nexport { DropdownMenu } from \"./dropdown-menu\";\nexport type { DropdownConfig, DropdownItem } from \"./dropdown-menu\";\nexport { MobileNavTree } from \"./mobile-nav\";\nexport type { MobileNavTreeProps } from \"./mobile-nav\";\nimport \"../../styles.css\";\n\nexport interface BottomLinkConfig {\n href: string;\n label: string;\n icon: React.ComponentType<{ className?: string }>;\n}\n\ninterface NavTreeProps {\n navTree: NavTreeData;\n activeId?: string;\n className?: string;\n dropdown?: DropdownConfig;\n activeHref?: string;\n theme?: \"light\" | \"dark\" | \"system\";\n bottomLinks?: BottomLinkConfig[];\n}\n\ninterface TreeItemProps {\n item: NavItem;\n activeId?: string;\n level?: number;\n}\n\nfunction ExternalIcon() {\n return (\n <div className={styles.externalIcon}>\n <svg\n className={styles.externalIconLight}\n width=\"12\"\n height=\"12\"\n viewBox=\"0 0 12 12\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M2.49999 1C1.67157 1 0.999995 1.67157 0.999995 2.5V9.5C0.999995 10.3284 1.67157 11 2.49999 11H9.49996C10.3284 11 10.9999 10.3284 10.9999 9.5V7.26923C10.9999 6.99309 11.2238 6.76923 11.4999 6.76923C11.7761 6.76923 11.9999 6.99309 11.9999 7.26923V9.5C11.9999 10.8807 10.8807 12 9.49996 12H2.49999C1.11928 12 0 10.8807 0 9.5V2.5C0 1.11929 1.11928 0 2.49999 0H4.73075C5.00689 0 5.23074 0.223858 5.23074 0.5C5.23074 0.776142 5.00689 1 4.73075 1H2.49999ZM6.76926 0.5C6.76926 0.223858 6.99311 0 7.26925 0H11.5C11.7761 0 12 0.223858 12 0.5V4.73077C12 5.00691 11.7761 5.23077 11.5 5.23077C11.2239 5.23077 11 5.00691 11 4.73077V1.70711L7.6228 5.08433C7.42754 5.27959 7.11096 5.27959 6.9157 5.08433C6.72044 4.88906 6.72044 4.57248 6.9157 4.37722L10.2929 1H7.26925C6.99311 1 6.76926 0.776142 6.76926 0.5Z\"\n fill=\"#707070\"\n />\n </svg>\n <svg\n className={styles.externalIconDark}\n width=\"12\"\n height=\"12\"\n viewBox=\"0 0 12 12\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M2.49999 1C1.67157 1 0.999995 1.67157 0.999995 2.5V9.5C0.999995 10.3284 1.67157 11 2.49999 11H9.49996C10.3284 11 10.9999 10.3284 10.9999 9.5V7.26923C10.9999 6.99309 11.2238 6.76923 11.4999 6.76923C11.7761 6.76923 11.9999 6.99309 11.9999 7.26923V9.5C11.9999 10.8807 10.8807 12 9.49996 12H2.49999C1.11928 12 0 10.8807 0 9.5V2.5C0 1.11929 1.11928 0 2.49999 0H4.73075C5.00689 0 5.23074 0.223858 5.23074 0.5C5.23074 0.776142 5.00689 1 4.73075 1H2.49999ZM6.76926 0.5C6.76926 0.223858 6.99311 0 7.26925 0H11.5C11.7761 0 12 0.223858 12 0.5V4.73077C12 5.00691 11.7761 5.23077 11.5 5.23077C11.2239 5.23077 11 5.00691 11 4.73077V1.70711L7.6228 5.08433C7.42754 5.27959 7.11096 5.27959 6.9157 5.08433C6.72044 4.88906 6.72044 4.57248 6.9157 4.37722L10.2929 1H7.26925C6.99311 1 6.76926 0.776142 6.76926 0.5Z\"\n fill=\"#999999\"\n />\n </svg>\n </div>\n );\n}\n\nfunction TreeItemComponent({ item, activeId, level = 0 }: TreeItemProps) {\n const defaultExpanded = level === 0 ? true : item.expanded ?? false;\n const [isExpanded, setIsExpanded] = useState(defaultExpanded);\n const hasChildren = item.children && item.children.length > 0;\n const isGroup = hasChildren && !item.href;\n const isActive = item.href && activeId === item.href;\n const Icon = item.icon;\n\n if (isGroup && level === 0) {\n return (\n <div className={styles.group} role=\"group\" aria-label={item.toc_title}>\n <div className={styles.groupHeader}>\n {Icon && <Icon className={styles.groupIcon} aria-hidden=\"true\" />}\n <span>{item.toc_title}</span>\n </div>\n {hasChildren && item.children && (\n <ul className={styles.list} role=\"list\">\n {item.children.map((child, index) => (\n <TreeItemComponent\n key={`${child.href}-${index}`}\n item={child}\n activeId={activeId}\n level={level + 1}\n />\n ))}\n </ul>\n )}\n </div>\n );\n }\n\n if (isGroup && level > 0) {\n return (\n <li className={styles.listItem}>\n <button\n onClick={() => setIsExpanded(!isExpanded)}\n aria-expanded={isExpanded}\n aria-label={`${isExpanded ? \"Collapse\" : \"Expand\"} ${\n item.toc_title\n } section`}\n className={styles.expandButton}\n >\n <span>{item.toc_title}</span>\n <svg\n className={`${styles.chevron} ${\n isExpanded ? styles.chevronExpanded : styles.chevronCollapsed\n }`}\n fill=\"none\"\n stroke=\"currentColor\"\n viewBox=\"0 0 24 24\"\n aria-hidden=\"true\"\n >\n <path\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M9 5l7 7-7 7\"\n />\n </svg>\n </button>\n {hasChildren && isExpanded && item.children && (\n <ul className={styles.nestedList} role=\"group\">\n {item.children.map((child, index) => (\n <TreeItemComponent\n key={`${child.href}-${index}`}\n item={child}\n activeId={activeId}\n level={level + 1}\n />\n ))}\n </ul>\n )}\n </li>\n );\n }\n\n return (\n <li className={styles.listItem}>\n <a\n href={item.href}\n aria-current={isActive ? \"page\" : undefined}\n className={`${styles.link} ${isActive ? styles.linkActive : \"\"}`}\n >\n {item.toc_title}\n </a>\n {hasChildren && isExpanded && item.children && (\n <ul className={styles.nestedList} role=\"group\">\n {item.children.map((child, index) => (\n <TreeItemComponent\n key={`${child.href}-${index}`}\n item={child}\n activeId={activeId}\n level={level + 1}\n />\n ))}\n </ul>\n )}\n </li>\n );\n}\n\nexport function NavTree({\n navTree,\n activeId,\n className = \"\",\n dropdown,\n activeHref,\n theme,\n bottomLinks,\n}: NavTreeProps) {\n if (!navTree || navTree.items.length === 0) {\n return null;\n }\n\n console.log(\"bottomLinks\", bottomLinks);\n\n return (\n <nav\n className={`${styles.nav} ${className} ${theme === \"dark\" ? \"dark\" : \"\"}`}\n aria-label=\"Documentation navigation\"\n >\n <div className={styles.navContent}>\n {dropdown && (\n <DropdownMenu\n dropdown={dropdown}\n activeHref={activeHref}\n className={styles.group}\n />\n )}\n {navTree.items.map((item, index) => (\n <TreeItemComponent\n key={`${item.href}-${index}`}\n item={item}\n activeId={activeId}\n />\n ))}\n </div>\n {bottomLinks && bottomLinks.length > 0 && (\n <div className={styles.bottomSection}>\n <div className={styles.divider}></div>\n <div className={styles.bottomLinks}>\n {bottomLinks.map((link, index) => {\n const Icon = link.icon;\n return (\n <a\n key={index}\n href={link.href}\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n className={styles.bottomLink}\n >\n <Icon className={styles.bottomLinkIcon} />\n <span>{link.label}</span>\n <ExternalIcon />\n </a>\n );\n })}\n </div>\n </div>\n )}\n </nav>\n );\n}\n"],"names":["ExternalIcon","jsxs","styles","jsx","TreeItemComponent","item","activeId","level","defaultExpanded","isExpanded","setIsExpanded","useState","hasChildren","isGroup","isActive","Icon","child","index","NavTree","navTree","className","dropdown","activeHref","theme","bottomLinks","DropdownMenu","link"],"mappings":";;;;;AAgCA,SAASA,IAAe;AACtB,SACE,gBAAAC,EAAC,OAAA,EAAI,WAAWC,EAAO,cACrB,UAAA;AAAA,IAAA,gBAAAC;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,WAAWD,EAAO;AAAA,QAClB,OAAM;AAAA,QACN,QAAO;AAAA,QACP,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,OAAM;AAAA,QAEN,UAAA,gBAAAC;AAAA,UAAC;AAAA,UAAA;AAAA,YACC,GAAE;AAAA,YACF,MAAK;AAAA,UAAA;AAAA,QAAA;AAAA,MACP;AAAA,IAAA;AAAA,IAEF,gBAAAA;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,WAAWD,EAAO;AAAA,QAClB,OAAM;AAAA,QACN,QAAO;AAAA,QACP,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,OAAM;AAAA,QAEN,UAAA,gBAAAC;AAAA,UAAC;AAAA,UAAA;AAAA,YACC,GAAE;AAAA,YACF,MAAK;AAAA,UAAA;AAAA,QAAA;AAAA,MACP;AAAA,IAAA;AAAA,EACF,GACF;AAEJ;AAEA,SAASC,EAAkB,EAAE,MAAAC,GAAM,UAAAC,GAAU,OAAAC,IAAQ,KAAoB;AACvE,QAAMC,IAAkBD,MAAU,IAAI,KAAOF,EAAK,YAAY,IACxD,CAACI,GAAYC,CAAa,IAAIC,EAASH,CAAe,GACtDI,IAAcP,EAAK,YAAYA,EAAK,SAAS,SAAS,GACtDQ,IAAUD,KAAe,CAACP,EAAK,MAC/BS,IAAWT,EAAK,QAAQC,MAAaD,EAAK,MAC1CU,IAAOV,EAAK;AAElB,SAAIQ,KAAWN,MAAU,IAErB,gBAAAN,EAAC,SAAI,WAAWC,EAAO,OAAO,MAAK,SAAQ,cAAYG,EAAK,WAC1D,UAAA;AAAA,IAAA,gBAAAJ,EAAC,OAAA,EAAI,WAAWC,EAAO,aACpB,UAAA;AAAA,MAAAa,uBAASA,GAAA,EAAK,WAAWb,EAAO,WAAW,eAAY,QAAO;AAAA,MAC/D,gBAAAC,EAAC,QAAA,EAAM,UAAAE,EAAK,UAAA,CAAU;AAAA,IAAA,GACxB;AAAA,IACCO,KAAeP,EAAK,YACnB,gBAAAF,EAAC,QAAG,WAAWD,EAAO,MAAM,MAAK,QAC9B,UAAAG,EAAK,SAAS,IAAI,CAACW,GAAOC,MACzB,gBAAAd;AAAA,MAACC;AAAA,MAAA;AAAA,QAEC,MAAMY;AAAA,QACN,UAAAV;AAAA,QACA,OAAOC,IAAQ;AAAA,MAAA;AAAA,MAHV,GAAGS,EAAM,IAAI,IAAIC,CAAK;AAAA,IAAA,CAK9B,EAAA,CACH;AAAA,EAAA,GAEJ,IAIAJ,KAAWN,IAAQ,IAEnB,gBAAAN,EAAC,MAAA,EAAG,WAAWC,EAAO,UACpB,UAAA;AAAA,IAAA,gBAAAD;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,SAAS,MAAMS,EAAc,CAACD,CAAU;AAAA,QACxC,iBAAeA;AAAA,QACf,cAAY,GAAGA,IAAa,aAAa,QAAQ,IAC/CJ,EAAK,SACP;AAAA,QACA,WAAWH,EAAO;AAAA,QAElB,UAAA;AAAA,UAAA,gBAAAC,EAAC,QAAA,EAAM,YAAK,UAAA,CAAU;AAAA,UACtB,gBAAAA;AAAA,YAAC;AAAA,YAAA;AAAA,cACC,WAAW,GAAGD,EAAO,OAAO,IAC1BO,IAAaP,EAAO,kBAAkBA,EAAO,gBAC/C;AAAA,cACA,MAAK;AAAA,cACL,QAAO;AAAA,cACP,SAAQ;AAAA,cACR,eAAY;AAAA,cAEZ,UAAA,gBAAAC;AAAA,gBAAC;AAAA,gBAAA;AAAA,kBACC,eAAc;AAAA,kBACd,gBAAe;AAAA,kBACf,aAAa;AAAA,kBACb,GAAE;AAAA,gBAAA;AAAA,cAAA;AAAA,YACJ;AAAA,UAAA;AAAA,QACF;AAAA,MAAA;AAAA,IAAA;AAAA,IAEDS,KAAeH,KAAcJ,EAAK,YACjC,gBAAAF,EAAC,QAAG,WAAWD,EAAO,YAAY,MAAK,SACpC,UAAAG,EAAK,SAAS,IAAI,CAACW,GAAOC,MACzB,gBAAAd;AAAA,MAACC;AAAA,MAAA;AAAA,QAEC,MAAMY;AAAA,QACN,UAAAV;AAAA,QACA,OAAOC,IAAQ;AAAA,MAAA;AAAA,MAHV,GAAGS,EAAM,IAAI,IAAIC,CAAK;AAAA,IAAA,CAK9B,EAAA,CACH;AAAA,EAAA,GAEJ,IAKF,gBAAAhB,EAAC,MAAA,EAAG,WAAWC,EAAO,UACpB,UAAA;AAAA,IAAA,gBAAAC;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,MAAME,EAAK;AAAA,QACX,gBAAcS,IAAW,SAAS;AAAA,QAClC,WAAW,GAAGZ,EAAO,IAAI,IAAIY,IAAWZ,EAAO,aAAa,EAAE;AAAA,QAE7D,UAAAG,EAAK;AAAA,MAAA;AAAA,IAAA;AAAA,IAEPO,KAAeH,KAAcJ,EAAK,YACjC,gBAAAF,EAAC,QAAG,WAAWD,EAAO,YAAY,MAAK,SACpC,UAAAG,EAAK,SAAS,IAAI,CAACW,GAAOC,MACzB,gBAAAd;AAAA,MAACC;AAAA,MAAA;AAAA,QAEC,MAAMY;AAAA,QACN,UAAAV;AAAA,QACA,OAAOC,IAAQ;AAAA,MAAA;AAAA,MAHV,GAAGS,EAAM,IAAI,IAAIC,CAAK;AAAA,IAAA,CAK9B,EAAA,CACH;AAAA,EAAA,GAEJ;AAEJ;AAEO,SAASC,EAAQ;AAAA,EACtB,SAAAC;AAAA,EACA,UAAAb;AAAA,EACA,WAAAc,IAAY;AAAA,EACZ,UAAAC;AAAA,EACA,YAAAC;AAAA,EACA,OAAAC;AAAA,EACA,aAAAC;AACF,GAAiB;AACf,SAAI,CAACL,KAAWA,EAAQ,MAAM,WAAW,IAChC,QAGT,QAAQ,IAAI,eAAeK,CAAW,GAGpC,gBAAAvB;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW,GAAGC,EAAO,GAAG,IAAIkB,CAAS,IAAIG,MAAU,SAAS,SAAS,EAAE;AAAA,MACvE,cAAW;AAAA,MAEX,UAAA;AAAA,QAAA,gBAAAtB,EAAC,OAAA,EAAI,WAAWC,EAAO,YACpB,UAAA;AAAA,UAAAmB,KACC,gBAAAlB;AAAA,YAACsB;AAAA,YAAA;AAAA,cACC,UAAAJ;AAAA,cACA,YAAAC;AAAA,cACA,WAAWpB,EAAO;AAAA,YAAA;AAAA,UAAA;AAAA,UAGrBiB,EAAQ,MAAM,IAAI,CAACd,GAAMY,MACxB,gBAAAd;AAAA,YAACC;AAAA,YAAA;AAAA,cAEC,MAAAC;AAAA,cACA,UAAAC;AAAA,YAAA;AAAA,YAFK,GAAGD,EAAK,IAAI,IAAIY,CAAK;AAAA,UAAA,CAI7B;AAAA,QAAA,GACH;AAAA,QACCO,KAAeA,EAAY,SAAS,uBAClC,OAAA,EAAI,WAAWtB,EAAO,eACrB,UAAA;AAAA,UAAA,gBAAAC,EAAC,OAAA,EAAI,WAAWD,EAAO,QAAA,CAAS;AAAA,UAChC,gBAAAC,EAAC,SAAI,WAAWD,EAAO,aACpB,UAAAsB,EAAY,IAAI,CAACE,GAAMT,MAAU;AAChC,kBAAMF,IAAOW,EAAK;AAClB,mBACE,gBAAAzB;AAAA,cAAC;AAAA,cAAA;AAAA,gBAEC,MAAMyB,EAAK;AAAA,gBACX,QAAO;AAAA,gBACP,KAAI;AAAA,gBACJ,WAAWxB,EAAO;AAAA,gBAElB,UAAA;AAAA,kBAAA,gBAAAC,EAACY,GAAA,EAAK,WAAWb,EAAO,eAAA,CAAgB;AAAA,kBACxC,gBAAAC,EAAC,QAAA,EAAM,UAAAuB,EAAK,MAAA,CAAM;AAAA,oCACjB1B,GAAA,CAAA,CAAa;AAAA,gBAAA;AAAA,cAAA;AAAA,cARTiB;AAAA,YAAA;AAAA,UAWX,CAAC,EAAA,CACH;AAAA,QAAA,EAAA,CACF;AAAA,MAAA;AAAA,IAAA;AAAA,EAAA;AAIR;"}
|
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos.ttf";@import"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos-SemiBold.ttf";._container_1hsml_1{min-width:0;color:#424242}.dark ._container_1hsml_1{color:#d6d6d6}._prose_1ka1h_1{color:#424242;max-width:none;line-height:1.75}.dark ._prose_1ka1h_1{color:#d6d6d6}._prose_1ka1h_1 :where(p):not(:where([class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}._prose_1ka1h_1 :where([class~=lead]):not(:where([class~=not-prose] *)){color:#4b5563;font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}._prose_1ka1h_1 :where(a):not(:where([class~=not-prose] *)){color:#111827;text-decoration:underline;font-weight:500}._prose_1ka1h_1 :where(strong):not(:where([class~=not-prose] *)){color:#111827;font-weight:600}._prose_1ka1h_1 :where(a strong):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}._prose_1ka1h_1 :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}._prose_1ka1h_1 :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}._prose_1ka1h_1 :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}._prose_1ka1h_1 :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}._prose_1ka1h_1 :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}._prose_1ka1h_1 :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}._prose_1ka1h_1 :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}._prose_1ka1h_1 :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}._prose_1ka1h_1 :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}._prose_1ka1h_1 :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}._prose_1ka1h_1 :where(ol>li):not(:where([class~=not-prose] *))::marker{font-weight:400;color:#6b7280}._prose_1ka1h_1 :where(ul>li):not(:where([class~=not-prose] *))::marker{color:#d1d5db}._prose_1ka1h_1 :where(hr):not(:where([class~=not-prose] *)){border-color:#e5e7eb;border-top-width:1px;margin-top:3em;margin-bottom:3em}._prose_1ka1h_1 :where(blockquote):not(:where([class~=not-prose] *)){font-weight:500;font-style:italic;color:#111827;border-left-width:.25rem;border-left-color:#e5e7eb;quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}._prose_1ka1h_1 :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}._prose_1ka1h_1 :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}._prose_1ka1h_1 :where(h1):not(:where([class~=not-prose] *)){color:#111827;font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}._prose_1ka1h_1 :where(h1 strong):not(:where([class~=not-prose] *)){font-weight:900;color:inherit}._prose_1ka1h_1 :where(h2):not(:where([class~=not-prose] *)){color:#111827;font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}._prose_1ka1h_1 :where(h2 strong):not(:where([class~=not-prose] *)){font-weight:800;color:inherit}._prose_1ka1h_1 :where(h3):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}._prose_1ka1h_1 :where(h3 strong):not(:where([class~=not-prose] *)){font-weight:700;color:inherit}._prose_1ka1h_1 :where(h4):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}._prose_1ka1h_1 :where(h4 strong):not(:where([class~=not-prose] *)){font-weight:700;color:inherit}._prose_1ka1h_1 :where(img):not(:where([class~=not-prose] *)){margin-top:2em;margin-bottom:2em}._prose_1ka1h_1 :where(figure>*):not(:where([class~=not-prose] *)){margin-top:0;margin-bottom:0}._prose_1ka1h_1 :where(figcaption):not(:where([class~=not-prose] *)){color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}._prose_1ka1h_1 :where(code):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;font-size:.875em}._prose_1ka1h_1 :where(a code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h2 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h3 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(pre):not(:where([class~=not-prose] *)){color:#e5e7eb;background-color:#1f2937;overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding:.8571429em 1.1428571em}._prose_1ka1h_1 :where(pre code):not(:where([class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}._prose_1ka1h_1 :where(pre code):not(:where([class~=not-prose] *)):before{content:none}._prose_1ka1h_1 :where(pre code):not(:where([class~=not-prose] *)):after{content:none}._prose_1ka1h_1 :where(table):not(:where([class~=not-prose] *)){width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}._prose_1ka1h_1 :where(thead):not(:where([class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:#d1d5db}._prose_1ka1h_1 :where(thead th):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}._prose_1ka1h_1 :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:#e5e7eb}._prose_1ka1h_1 :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}._prose_1ka1h_1 :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:baseline}._prose_1ka1h_1 :where(tfoot):not(:where([class~=not-prose] *)){border-top-width:1px;border-top-color:#d1d5db}._prose_1ka1h_1 :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}._prose_1ka1h_1 :where(video):not(:where([class~=not-prose] *)){margin-top:2em;margin-bottom:2em}._prose_1ka1h_1 :where(figure):not(:where([class~=not-prose] *)){margin-top:2em;margin-bottom:2em}._prose_1ka1h_1 :where(li):not(:where([class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}._prose_1ka1h_1 :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}._prose_1ka1h_1 :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ul>li p):not(:where([class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ul>li>*:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ul>li>*:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ol>li>*:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ol>li>*:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}._prose_1ka1h_1 :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}._prose_1ka1h_1 :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}._prose_1ka1h_1 :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}._prose_1ka1h_1 :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}._prose_1ka1h_1 :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}._prose_1ka1h_1 :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}._prose_1ka1h_1 :where(._prose_1ka1h_1>:first-child):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(._prose_1ka1h_1>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}._prose_1ka1h_1>:last-child:not(:where([class~=not-prose] *)){margin-bottom:0}.dark ._prose_1ka1h_1 :where([class~=lead]):not(:where([class~=not-prose] *)){color:#9ca3af}.dark ._prose_1ka1h_1 :where(a):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(strong):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(ol>li):not(:where([class~=not-prose] *))::marker{color:#9ca3af}.dark ._prose_1ka1h_1 :where(ul>li):not(:where([class~=not-prose] *))::marker{color:#6b7280}.dark ._prose_1ka1h_1 :where(hr):not(:where([class~=not-prose] *)){border-color:#374151}.dark ._prose_1ka1h_1 :where(blockquote):not(:where([class~=not-prose] *)){color:#fff;border-left-color:#374151}.dark ._prose_1ka1h_1 :where(h1):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(h2):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(h3):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(h4):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(figcaption):not(:where([class~=not-prose] *)){color:#9ca3af}.dark ._prose_1ka1h_1 :where(code):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(pre):not(:where([class~=not-prose] *)){color:#e5e7eb;background-color:#1f2937}.dark ._prose_1ka1h_1 :where(thead th):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:#4b5563}.dark ._prose_1ka1h_1 :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:#6b7280}.dark ._prose_1ka1h_1 :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:#6b7280}._overlay_oaifl_1{position:fixed;top:0;right:0;bottom:0;left:0;z-index:50;display:flex;align-items:center;justify-content:center;padding:1rem;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}._modal_oaifl_12{position:relative;width:100%;max-width:80rem;max-height:90vh;overflow:auto;background-color:#fff;border-radius:1rem;box-shadow:0 25px 50px -12px #00000040;border:1px solid #e5e7eb}.dark ._modal_oaifl_12{background-color:#1f1f1f;border-color:#ffffff1a}._header_oaifl_29{position:sticky;top:0;right:0;z-index:10;display:flex;justify-content:flex-end;padding:.5rem 1rem;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}._closeButton_oaifl_40{padding:.5rem;border-radius:.5rem;background:transparent;border:none;cursor:pointer}._closeButton_oaifl_40:hover{background-color:#f3f4f6}.dark ._closeButton_oaifl_40:hover{background-color:#141414}._closeIcon_oaifl_56{height:1.25rem;width:1.25rem;color:#374151}.dark ._closeIcon_oaifl_56{color:#fff}._content_oaifl_66{padding:1rem 1.5rem}._container_1yfm4_1{position:relative;display:block;margin-bottom:1rem;margin-top:2rem}._expandButton_1yfm4_8{margin-left:auto;display:flex;align-items:center;gap:.5rem;padding:.25rem .5rem;border-radius:.5rem;background:transparent;border:none;cursor:pointer}._expandButton_1yfm4_8:hover{background-color:#f3f4f6}.dark ._expandButton_1yfm4_8:hover{background-color:#2d2d2d}._expandIcon_1yfm4_28{height:1rem;width:1rem;color:#374151}.dark ._expandIcon_1yfm4_28{color:#e5e7eb}._expandText_1yfm4_38{font-size:.875rem;color:#374151}.dark ._expandText_1yfm4_38{color:#e5e7eb}._scrollContainer_1yfm4_47{margin-top:.5rem;overflow-x:auto}._table_1yfm4_52{margin-top:.5rem;border-collapse:collapse;font-size:.875rem;width:100%;border-radius:.75rem;overflow:hidden;background-color:#f9fafb}.dark ._table_1yfm4_52{background-color:#2d2d2d}._tableHeader_1yfm4_66{color:#374151;background-color:#f9fafb}.dark ._tableHeader_1yfm4_66{color:#d1d5db;background-color:#2d2d2d}._tableHeader_1yfm4_66 tr{border:0}._tableFooter_1yfm4_80{border-top:1px solid #e5e7eb;background-color:#f9fafb80;font-weight:500}.dark ._tableFooter_1yfm4_80{border-top-color:#4b5563;background-color:#2d2d2d80}._tableFooter_1yfm4_80 tr:last-child{border-bottom:0}._tableRow_1yfm4_95{border:1px solid #f9fafb}.dark ._tableRow_1yfm4_95{border-color:#2d2d2d}._tableHead_1yfm4_66{height:2rem;background-color:#f9fafb;overflow:hidden;padding:.5rem 1.5rem;text-align:left;font-weight:600;color:#374151}.dark ._tableHead_1yfm4_66{background-color:#2d2d2d;color:#d1d5db}._tableHead_1yfm4_66:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}._tableHead_1yfm4_66:last-child{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}._tableCell_1yfm4_128{background-color:#fff;border-color:#f9fafb;padding:.75rem 1.5rem;color:#141414}.dark ._tableCell_1yfm4_128{background-color:#252525;border-color:#2d2d2d;color:#e5e7eb}._tableCell_1yfm4_128:first-child{border-left:4px solid transparent}._tableCell_1yfm4_128:last-child{border-right:4px solid transparent}tbody>tr:first-child>._tableCell_1yfm4_128:first-child{border-top-left-radius:.75rem}tbody>tr:first-child>._tableCell_1yfm4_128:last-child{border-top-right-radius:.75rem}tbody>tr:last-child>._tableCell_1yfm4_128:first-child{border-bottom-left-radius:.75rem}tbody>tr:last-child>._tableCell_1yfm4_128:last-child{border-bottom-right-radius:.75rem}tbody>tr:last-child>._tableCell_1yfm4_128{border-bottom:4px solid transparent}._tableCaption_1yfm4_169{margin-top:1rem;font-size:.875rem;color:#6b7280}.dark ._tableCaption_1yfm4_169{color:#9ca3af}._inlineCode_16wxq_1{font-weight:500;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.875rem;background-color:#f3f4f6;box-shadow:0 0 0 1px #9ca3af4d;padding:.125rem .375rem;border-radius:.25rem}.dark ._inlineCode_16wxq_1{background-color:#1f1f1f;box-shadow:0 0 0 1px #37415180}._paragraph_16wxq_17{line-height:1.75}._blockquote_16wxq_21{border-left:4px solid #e5e7eb;padding-left:1.5rem;margin-bottom:1rem}.dark ._blockquote_16wxq_21{border-left-color:#fff3}._container_2biqe_1{display:flex;flex-direction:column;gap:.5rem;margin-top:1rem;margin-bottom:1rem;border:1px solid #e5e5e5;padding:.625rem .5rem .5rem;border-radius:.75rem;overflow:hidden}.dark ._container_2biqe_1{border-color:#262626}._fileName_2biqe_20{font-size:.875rem;font-weight:500;padding-left:.5rem;padding-right:.5rem}._codeWrapper_2biqe_27{position:relative;border-radius:.75rem;background-color:#f5f5f5}.dark ._codeWrapper_2biqe_27{background-color:#141414}._header_2biqe_37{display:flex;align-items:center;justify-content:space-between;padding-left:.75rem;padding-right:.75rem;padding-top:.5rem}._language_2biqe_46{font-size:.75rem;font-weight:500;color:#737373}.dark ._language_2biqe_46{color:#a3a3a3}._copyButton_2biqe_56{display:flex;align-items:center;gap:.375rem;padding:.25rem .5rem;font-size:.75rem;color:#737373;border-radius:.25rem;transition-property:color;transition-duration:.15s;border:none;background:transparent;cursor:pointer}.dark ._copyButton_2biqe_56{color:#a3a3a3}._copyButton_2biqe_56:hover{color:#171717}.dark ._copyButton_2biqe_56:hover{color:#fafafa}._copyIcon_2biqe_86{width:1.25rem;height:1.25rem}._copiedIcon_2biqe_91{width:1.25rem;height:1.25rem;color:#16a34a}.dark ._copiedIcon_2biqe_91{color:#4ade80}._scrollContainer_2biqe_101{overflow-x:auto}._pre_2biqe_105{padding:.5rem .75rem .75rem;margin:0;white-space:pre;font-size:.875rem}._code_2biqe_27{display:block;color:#24292e}.dark ._code_2biqe_27{color:#e6edf3}._link_1rr6d_1{text-decoration:underline}._srOnly_1rr6d_5{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}._callout_1k3jj_1{margin-top:1rem;margin-bottom:1rem;display:flex;gap:.5rem;padding:.625rem .75rem;border-radius:.5rem;border-width:1px;overflow:hidden}._iconContainer_1k3jj_12{display:flex;align-items:flex-start;justify-content:center;margin-top:2px}._icon_1k3jj_12{width:1.25rem;height:1.25rem;flex-shrink:0}._content_1k3jj_25{font-size:.875rem;min-width:0;width:100%}._content_1k3jj_25>p:first-of-type{margin-bottom:0;font-weight:600}._content_1k3jj_25>p:nth-of-type(2){margin-top:.5rem}._tip_1k3jj_40{background-color:#f1faf1;border-color:#9fd89f;color:#0c5e0c}.dark ._tip_1k3jj_40{background-color:#052505;border-color:#54b054;color:#54b054}._note_1k3jj_52{background-color:#f5f5f5;border-color:#d1d1d1;color:#242424}.dark ._note_1k3jj_52{background-color:#141414;border-color:#666;color:#fff}._warning_1k3jj_64{background-color:#fff9f5;border-color:#fdcfb4;color:#8a3707}.dark ._warning_1k3jj_64{background-color:#4a1e04;border-color:#de590b;color:#faa06b}._caution_1k3jj_76{background-color:#fdf3f4;border-color:#eeacb2;color:#960b18}.dark ._caution_1k3jj_76{background-color:#3b0509;border-color:#c50f1f;color:#dc626d}._important_1k3jj_88{background-color:#e1cefc;border-color:#8251ee;color:#643fb2}.dark ._important_1k3jj_88{background-color:#1a1326;border-color:#9263f1;color:#9263f1}._nextstepaction_1k3jj_100{background-color:#f9fafb;border-color:#d1d1d1;color:#141414}.dark ._nextstepaction_1k3jj_100{background-color:#141414;border-color:#666;color:#fff}._nextstepaction_1k3jj_100 ._icon_1k3jj_12{color:#616161}.dark ._nextstepaction_1k3jj_100 ._icon_1k3jj_12{color:#fff}._paramName_b3gwo_1{display:inline-block;margin-top:.5rem;margin-right:.25rem;padding:.125rem .375rem;font-size:.875rem;font-weight:600;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;border-radius:.25rem;background-color:#f3f4f6}.dark ._paramName_b3gwo_1{background-color:#2d2d2d}._details_d3x6c_1{margin-top:1rem;margin-bottom:1rem;border:1px solid #e5e7eb;border-radius:.5rem;overflow:hidden}.dark ._details_d3x6c_1{border-color:#ffffff1a}._summary_d3x6c_13{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;cursor:pointer;list-style:none;font-size:.875rem;font-weight:600;color:#111827}.dark ._summary_d3x6c_13{color:#fff}._summary_d3x6c_13:hover{background-color:#f9fafb}.dark ._summary_d3x6c_13:hover{background-color:#ffffff0d}._icon_d3x6c_37{transition:transform .15s;flex-shrink:0}._iconOpen_d3x6c_42{transform:rotate(0)}._iconClosed_d3x6c_46{transform:rotate(-90deg)}._content_d3x6c_50{flex:1}._body_d3x6c_54{padding:.5rem .75rem 1rem;border-top:1px solid #e5e7eb}.dark ._body_d3x6c_54{border-top-color:#ffffff1a}._container_1099y_1{margin-top:1.5rem;margin-bottom:1.5rem}._tabList_1099y_6{display:flex;gap:.25rem;border-bottom:1px solid #e5e7eb;margin-bottom:1rem;overflow-x:auto}.dark ._tabList_1099y_6{border-bottom-color:#374151}._tab_1099y_6{padding:.5rem 1rem;font-size:.875rem;font-weight:500;border-bottom:2px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;background:transparent;cursor:pointer;transition:all .15s}._tab_1099y_6:focus{outline:none}._tab_1099y_6:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #75b6e7;outline-offset:2px}._tabActive_1099y_39{border-bottom-color:#0078d4;color:#0078d4}.dark ._tabActive_1099y_39{border-bottom-color:#75b6e7;color:#75b6e7}._tabInactive_1099y_49{border-bottom-color:transparent;color:#4b5563}.dark ._tabInactive_1099y_49{color:#9ca3af}._tabInactive_1099y_49:hover{color:#111827;border-bottom-color:#d1d5db}.dark ._tabInactive_1099y_49:hover{color:#e5e7eb;border-bottom-color:#4b5563}._tabContent_1099y_68{display:flex;align-items:center;gap:.5rem}._panel_1099y_74{outline:none}._panelHidden_1099y_81{display:none}._nav_kxe04_1{display:flex;flex-direction:column;gap:.5rem;height:100%;min-height:0}._navContent_kxe04_9{flex:1;overflow-y:auto;overflow-x:hidden;min-height:0;scrollbar-gutter:stable;padding-right:1rem;scrollbar-width:thin}._navContent_kxe04_9::-webkit-scrollbar{width:.25rem}._navContent_kxe04_9::-webkit-scrollbar-track{background:transparent}._navContent_kxe04_9::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}._navContent_kxe04_9::-webkit-scrollbar-thumb:hover{background-color:#0000004d}.dark ._navContent_kxe04_9::-webkit-scrollbar-thumb{background-color:#fff3}.dark ._navContent_kxe04_9::-webkit-scrollbar-thumb:hover{background-color:#ffffff4d}._navContent_kxe04_9{scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.2) transparent}.dark ._navContent_kxe04_9{scrollbar-color:rgba(255,255,255,.2) transparent}._group_kxe04_55{margin-bottom:1.5rem}._groupHeader_kxe04_59{font-size:.875rem;font-weight:600;color:#141414;margin-bottom:.75rem;display:flex;align-items:flex-start;gap:.5rem;padding-left:.75rem}.dark ._groupHeader_kxe04_59{color:#fff}._groupIcon_kxe04_74{width:1.25rem;height:1.25rem}._list_kxe04_79{display:flex;flex-direction:column;gap:.25rem}._listItem_kxe04_85{list-style:none}._expandButton_kxe04_89{position:relative;text-align:left;width:100%;display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;font-size:.875rem;border-radius:.5rem;transition:all .15s;background:transparent;border:none;cursor:pointer;color:#4b5563}.dark ._expandButton_kxe04_89{color:#9ca3af}._expandButton_kxe04_89:hover{background-color:#4b55630d;color:#141414}.dark ._expandButton_kxe04_89:hover{background-color:#4b55630d;color:#e5e7eb}._expandButton_kxe04_89:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._chevron_kxe04_126{width:1rem;height:1rem;transition:transform .15s;color:#6b7280}.dark ._chevron_kxe04_126{color:#9ca3af}._chevronExpanded_kxe04_137{transform:rotate(90deg)}._chevronCollapsed_kxe04_141{transform:rotate(0)}._link_kxe04_145{position:relative;display:block;padding:.5rem .75rem;font-size:.875rem;border-radius:.75rem;transition:all .15s;text-decoration:none;color:#4b5563}.dark ._link_kxe04_145{color:#9ca3af}._link_kxe04_145:hover{background-color:#4b55630d;color:#141414}.dark ._link_kxe04_145:hover{background-color:#4b55630d;color:#e5e7eb}._link_kxe04_145:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._linkActive_kxe04_175{background-color:#e6e6e6;color:#643fb2;font-weight:500}.dark ._linkActive_kxe04_175{background-color:#2e2e2e;color:#c9aaf9}._nestedList_kxe04_186{margin-top:.25rem;margin-left:.75rem;display:flex;flex-direction:column;gap:.25rem;padding-left:.75rem}._bottomSection_kxe04_195{flex-shrink:0;width:100%;background-color:#f0f0f0;margin-top:auto}.dark ._bottomSection_kxe04_195{background-color:#0f0f0f}._divider_kxe04_206{height:1px;width:100%;background-color:#d1d1d1;margin-bottom:.75rem}.dark ._divider_kxe04_206{background-color:#666}._bottomLinks_kxe04_217{display:flex;flex-direction:column;gap:.75rem;padding:.75rem}._bottomLink_kxe04_217{display:flex;align-items:center;gap:.5rem;font-size:.875rem;text-decoration:none;color:#4b5563}.dark ._bottomLink_kxe04_217{color:#9ca3af}._bottomLink_kxe04_217:hover{color:#141414}.dark ._bottomLink_kxe04_217:hover{color:#e5e7eb}._bottomLinkIcon_kxe04_245{width:1.25rem;height:1.25rem;flex-shrink:0}._externalIcon_kxe04_251{margin-left:auto}._externalIconLight_kxe04_255{display:block}.dark ._externalIconLight_kxe04_255,._externalIconDark_kxe04_263{display:none}.dark ._externalIconDark_kxe04_263{display:block}:root{--scroll-mt: 3rem}body{font-family:Aptos,sans-serif;font-size:14px;color:#424242}.dark body{color:#d6d6d6}h1,h2,h3,h4,h5,h6{scroll-margin-top:var(--scroll-mt);font-family:Aptos SemiBold,sans-serif;font-weight:400;font-size:28px;color:#242424}.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6{color:#fff}p{font-family:Aptos,sans-serif;font-size:14px;line-height:20px;color:#424242}.dark p{color:#d6d6d6}iframe{width:100%;aspect-ratio:attr(width) / attr(height)}iframe:not([width]):not([height]){aspect-ratio:16 / 9}.code-scrollbar::-webkit-scrollbar{height:8px;width:8px}.code-scrollbar::-webkit-scrollbar-track{background:transparent}.code-scrollbar::-webkit-scrollbar-thumb{background:#0003;border-radius:4px}.code-scrollbar::-webkit-scrollbar-thumb:hover{background:#0000004d}:is(.dark *)::-webkit-scrollbar-thumb{background:#fff3}:is(.dark *)::-webkit-scrollbar-thumb:hover{background:#ffffff4d}.token.comment,.token.prolog,.token.doctype,.token.cdata{color:#6a737d}:is(.dark *) .token.comment,:is(.dark *) .token.prolog,:is(.dark *) .token.doctype,:is(.dark *) .token.cdata{color:#8b949e}.token.punctuation{color:#24292e}:is(.dark *) .token.punctuation{color:#e6edf3}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.deleted{color:#005cc5}:is(.dark *) .token.property,:is(.dark *) .token.tag,:is(.dark *) .token.boolean,:is(.dark *) .token.number,:is(.dark *) .token.constant,:is(.dark *) .token.symbol,:is(.dark *) .token.deleted{color:#79c0ff}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted{color:#032f62}:is(.dark *) .token.selector,:is(.dark *) .token.attr-name,:is(.dark *) .token.string,:is(.dark *) .token.char,:is(.dark *) .token.builtin,:is(.dark *) .token.inserted{color:#a5d6ff}.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string{color:#d73a49}:is(.dark *) .token.operator,:is(.dark *) .token.entity,:is(.dark *) .token.url,:is(.dark *) .language-css .token.string,:is(.dark *) .style .token.string{color:#ff7b72}.token.atrule,.token.attr-value,.token.keyword{color:#d73a49}:is(.dark *) .token.atrule,:is(.dark *) .token.attr-value,:is(.dark *) .token.keyword{color:#ff7b72}.token.function,.token.class-name{color:#6f42c1}:is(.dark *) .token.function,:is(.dark *) .token.class-name{color:#d2a8ff}.token.regex,.token.important,.token.variable{color:#e36209}:is(.dark *) .token.regex,:is(.dark *) .token.important,:is(.dark *) .token.variable{color:#ffa657}._list_1pkqz_1{display:flex;flex-direction:column;gap:.25rem;font-size:.875rem;color:#6b7280;font-weight:500;position:relative;padding-left:.15rem}.dark ._list_1pkqz_1{color:#9ca3af}._list_1pkqz_1:before{content:"";position:absolute;left:.15rem;top:0;bottom:0;width:3px;background-color:#f2f3f3;border-radius:9999px}.dark ._list_1pkqz_1:before{background-color:#222223}._listItem_1pkqz_32{position:relative}._activeIndicator_1pkqz_36{position:absolute;left:0;top:0;bottom:0;width:3px;border-radius:9999px;background-color:#643fb2;z-index:1}.dark ._activeIndicator_1pkqz_36{background-color:#c9aaf9}._link_1pkqz_51{display:block;padding-left:1.5rem;line-height:1.625;transition:color .15s;text-decoration:none}._linkActive_1pkqz_59{color:#643fb2}.dark ._linkActive_1pkqz_59{color:#c9aaf9}._linkInactive_1pkqz_67:hover{color:#111827}.dark ._linkInactive_1pkqz_67:hover{color:#d1d5db}._container_19j54_1{display:flex;align-items:center;flex-shrink:0}._mainButton_19j54_7{border-radius:.75rem;padding:.375rem .75rem;border:1px solid #e5e7eb;background-color:#fff;color:#374151;cursor:pointer;display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:500}._mainButton_19j54_7:hover{background-color:#4b55630d}.dark ._mainButton_19j54_7{border-color:#ffffff12;background-color:#1a1a1a;color:#d1d5db}.dark ._mainButton_19j54_7:hover{background-color:#e5e7eb0d}._mainButton_19j54_7._split_19j54_35{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0}._mainButton_19j54_7._copied_19j54_41{color:#6b7280}.dark ._mainButton_19j54_7._copied_19j54_41{color:#9ca3af}._buttonContent_19j54_49{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:500;color:#242424}.dark ._buttonContent_19j54_49{color:#dbdbdb}._icon_19j54_62{width:1.25rem;height:1.25rem;color:#424242}.dark ._icon_19j54_62{color:#b2b2b2}._dropdownToggle_19j54_72{border-radius:0;border-top-right-radius:.75rem;border-bottom-right-radius:.75rem;padding:.375rem .5rem;border:1px solid #e5e7eb;background-color:#fff;color:#374151;cursor:pointer}._dropdownToggle_19j54_72:hover{background-color:#4b55630d}.dark ._dropdownToggle_19j54_72{border-color:#ffffff12;background-color:#1a1a1a;color:#d1d5db}.dark ._dropdownToggle_19j54_72:hover{background-color:#e5e7eb0d}._chevron_19j54_97{width:1rem;height:1rem;transition:transform .15s}._chevron_19j54_97._open_19j54_103{transform:rotate(180deg)}._dropdownWrapper_19j54_107{position:relative}._dropdown_19j54_72{position:absolute;right:0;top:100%;margin-top:.25rem;z-index:50;max-height:420px;padding:.375rem;min-width:240px;border:1px solid #e5e7eb;background-color:#fff;border-radius:.75rem;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;overflow-y:auto}.dark ._dropdown_19j54_72{border-color:#ffffff12;background-color:#1a1a1a}._dropdownItem_19j54_133{width:100%;display:flex;align-items:center;gap:.75rem;padding:.5rem .625rem;cursor:pointer;border-radius:.75rem;transition:background-color .15s;border:none;background:none}._dropdownItem_19j54_133:hover{background-color:#4b55630d}.dark ._dropdownItem_19j54_133:hover{background-color:#e5e7eb0d}._dropdownIconWrapper_19j54_154{border:1px solid #e5e7eb;border-radius:.5rem;padding:.25rem;flex-shrink:0}.dark ._dropdownIconWrapper_19j54_154{border-color:#ffffff12}._dropdownIcon_19j54_154{width:1.25rem;height:1.25rem;color:#424242}.dark ._dropdownIcon_19j54_154{color:#b2b2b2}._dropdownItemContent_19j54_175{display:flex;flex-direction:column;flex:1;min-width:0;text-align:left}._dropdownItemTitle_19j54_183{font-size:.875rem;font-weight:500;color:#1f2937;display:flex;align-items:center;gap:.375rem}.dark ._dropdownItemTitle_19j54_183{color:#d1d5db}._externalIcon_19j54_196{width:.75rem;height:.75rem;color:#6b7280;flex-shrink:0}.dark ._externalIcon_19j54_196{color:#9ca3af}._dropdownItemDescription_19j54_207{font-size:.75rem;color:#6b7280;margin-top:.125rem}.dark ._dropdownItemDescription_19j54_207{color:#9ca3af}@media (max-width: 640px){._dropdown_19j54_72{right:auto;left:0;transform:translate(-123px)}}._pageContainer_kdrdg_1{padding-right:.5rem;background-color:#f0f0f0}.dark ._pageContainer_kdrdg_1{background-color:#0f0f0f}._sidebar_kdrdg_10{position:fixed;z-index:10;left:0;top:3.5rem;bottom:0;width:16.5rem;overflow:hidden}@media (max-width: 1023px){._sidebar_kdrdg_10{display:none}}@media (min-width: 1024px){._sidebar_kdrdg_10{display:block}}._sidebarInner_kdrdg_32{padding:1rem;height:100%;display:flex;flex-direction:column}._mainWrapper_kdrdg_39{display:flex;border-radius:1rem;height:calc(100vh - 4.5rem)}._mainContent_kdrdg_45{flex:1;padding:2rem;overflow-y:auto;overflow-x:hidden;border-radius:1rem;background-color:#fff;border:1px solid rgba(229,231,235,.7);scrollbar-gutter:stable;overscroll-behavior:contain}._mainContent_kdrdg_45::-webkit-scrollbar{width:.25rem}._mainContent_kdrdg_45::-webkit-scrollbar-track{background:transparent}._mainContent_kdrdg_45::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}._mainContent_kdrdg_45::-webkit-scrollbar-thumb:hover{background-color:#0000004d}.dark ._mainContent_kdrdg_45::-webkit-scrollbar-thumb{background-color:#fff3}.dark ._mainContent_kdrdg_45::-webkit-scrollbar-thumb:hover{background-color:#ffffff4d}._mainContent_kdrdg_45{scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.2) transparent}.dark ._mainContent_kdrdg_45{scrollbar-color:rgba(255,255,255,.2) transparent}._mainContentNoTopPadding_kdrdg_93{padding-top:0}@media (min-width: 1024px){._mainContent_kdrdg_45{margin-left:16.5rem;padding-left:4rem;padding-right:4rem;padding-top:3rem}._mainContentNoTopPadding_kdrdg_93{padding-top:0}}.dark ._mainContent_kdrdg_45{background-color:#1f1f1f;border-color:#ffffff12}._contentWrapper_kdrdg_115{display:flex;flex-direction:row-reverse;gap:3rem;justify-content:center;margin-left:auto;margin-right:auto;width:100%}._tocSidebar_kdrdg_125{width:16rem;flex-shrink:0;margin-left:2rem}@media (max-width: 1279px){._tocSidebar_kdrdg_125{display:none}}@media (min-width: 1280px){._tocSidebar_kdrdg_125{display:block}}._tocInner_kdrdg_143{position:sticky;top:.5rem;padding:0 .5rem 1.5rem;max-height:calc(100vh - 3.5rem);overflow-y:auto}._tocHeader_kdrdg_151{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}._tocIcon_kdrdg_158{width:1rem;height:1rem;color:#4b5563}.dark ._tocIcon_kdrdg_158{color:#9ca3af}._tocTitle_kdrdg_168{font-size:.875rem;font-weight:600;color:#141414}.dark ._tocTitle_kdrdg_168{color:#fff}._contentArea_kdrdg_178{width:100%;overflow-x:visible;max-width:42rem}._contentAreaFullWidth_kdrdg_184{max-width:none}._header_kdrdg_188{margin-bottom:2rem}._headerInner_kdrdg_192{margin-bottom:1rem}._headerContent_kdrdg_196{display:flex;flex-direction:column;gap:.5rem;align-items:flex-start}@media (min-width: 640px){._headerContent_kdrdg_196{flex-direction:row;align-items:center;gap:1rem}}._title_kdrdg_211{font-size:1.875rem;font-weight:700;color:#141414;margin:0;line-height:1.2}._contextMenu_kdrdg_219{margin-left:auto}@media (max-width: 639px){._contextMenu_kdrdg_219{margin-left:0}}.dark ._title_kdrdg_211{color:#fff}._description_kdrdg_233{font-size:1.125rem;color:#4b5563}.dark ._description_kdrdg_233{color:#d1d5db}._pivotContainer_kdrdg_242{margin-bottom:1.5rem;display:flex;flex-wrap:wrap;gap:1rem}._pivotSelector_kdrdg_249{display:flex;align-items:center;gap:.5rem;font-size:.875rem}._mdxContent_kdrdg_256{padding-top:1rem}._container_gmrx7_1{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem;background-color:#f3f4f6;border-radius:.5rem}.dark ._container_gmrx7_1{background-color:#ffffff0d}._button_gmrx7_14{position:relative;padding:.375rem .75rem;font-size:.875rem;font-weight:500;border-radius:.375rem;background:transparent;border:none;cursor:pointer;transition:all .15s}._button_gmrx7_14:focus{outline:none}._button_gmrx7_14:focus-visible{box-shadow:0 0 0 2px #3b82f6;outline-offset:2px}._buttonSelected_gmrx7_35{background-color:#fff;color:#141414;box-shadow:0 1px 2px #0000000d}.dark ._buttonSelected_gmrx7_35{background-color:#ffffff1a;color:#fff}._buttonUnselected_gmrx7_46{color:#4b5563}.dark ._buttonUnselected_gmrx7_46{color:#9ca3af}._buttonUnselected_gmrx7_46:hover{color:#141414;background-color:#ffffff80}.dark ._buttonUnselected_gmrx7_46:hover{color:#fff;background-color:#ffffff1a}._container_10m30_1{min-height:100vh;width:100%;background-color:#121212;overflow-x:hidden}._content_10m30_8{padding:.5rem .75rem .75rem;margin:0;white-space:pre-wrap;font-size:.875rem;color:#fff;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}@font-face{font-family:Aptos;src:url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Aptos SemiBold;src:url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos-SemiBold.ttf) format("truetype");font-weight:600;font-style:normal;font-display:swap}._homeContainer_jdam0_18{width:100%;max-width:none!important;margin:0;padding:0;font-family:Aptos,sans-serif;box-sizing:border-box;position:relative}._homeContainer_jdam0_18 *{box-sizing:border-box}._homeContainer_jdam0_18 .dark{padding-left:0!important;padding-right:0!important}._heroSection_jdam0_37{position:relative;left:-4rem;top:-2rem;min-height:316px;height:316px;margin:0;padding:3rem 4rem;width:calc(100% + 8rem);display:flex;align-items:flex-start;justify-content:flex-start;gap:4rem;background-color:#fafafa!important;overflow:hidden}._heroBackground_jdam0_54{position:absolute;top:0;left:0;right:0;bottom:0;background-size:cover;background-position:center;background-repeat:no-repeat;pointer-events:none}.dark ._heroSection_jdam0_37{background-color:#141414!important}._heroBackgroundLight_jdam0_70{display:block}.dark ._heroBackgroundLight_jdam0_70,._heroBackgroundDark_jdam0_78{display:none}.dark ._heroBackgroundDark_jdam0_78{display:block}._heroContent_jdam0_86{position:relative;display:flex;flex-direction:column;gap:1rem;z-index:1;flex:1;max-width:450px;margin-left:8.5rem;margin-top:2rem}._heroTitle_jdam0_98{font-size:28px;font-weight:400;color:#242424;margin:0;line-height:36px}.dark ._heroTitle_jdam0_98{color:#fff}._heroDescription_jdam0_110{font-size:14px;color:#424242;line-height:20px;margin:0}.dark ._heroDescription_jdam0_110{color:#d6d6d6}._heroButton_jdam0_121{background-color:#643fb2;color:#fff;padding:.25rem .75rem;border-radius:.5rem;font-size:12px;font-weight:400;border-radius:9999px;border:none;cursor:pointer;width:fit-content}._heroButton_jdam0_121:hover{background-color:#7450d0}._learnSection_jdam0_139{margin-bottom:4rem;margin-top:1rem;padding-left:3rem;padding-right:3rem;display:flex;flex-direction:column;align-items:center}._sectionTitle_jdam0_149{font-size:20px;font-weight:600;font-family:Aptos SemiBold,sans-serif;color:#242424;margin:0 0 .25rem;width:100%;max-width:800px;text-align:left}.dark ._sectionTitle_jdam0_149{color:#fff}._cardsGrid_jdam0_164{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin-top:1rem;max-width:800px}._card_jdam0_164{background-color:#fafafa;border:1px solid;border-color:#f0f0f0;border-radius:12px;padding:1.5rem;display:flex;flex-direction:column;gap:.5rem;transition:box-shadow .2s,border-color .2s}.dark ._card_jdam0_164{background-color:#1a1a1a;border-color:#3d3d3d}._card_jdam0_164:hover{box-shadow:0 4px 12px #0000001a;border-color:#6366f14d}.dark ._card_jdam0_164:hover{box-shadow:0 4px 12px #0000004d}._cardIcon_jdam0_198{font-size:2rem;margin-bottom:.5rem;width:3rem;height:3rem;background-color:#f3f4f6;border-radius:.5rem;display:flex;align-items:center;justify-content:center}._cardIcon_jdam0_198 svg{width:1.5rem;height:1.5rem}.dark ._cardIcon_jdam0_198{background-color:#000}._cardTitle_jdam0_219{font-size:14px;font-weight:600;font-family:Aptos SemiBold,sans-serif;color:#141414;margin:0}.dark ._cardTitle_jdam0_219{color:#fff}._cardDescription_jdam0_231{font-size:14px;font-weight:400;color:#616161;font-family:Aptos,sans-serif;line-height:20px;margin:-.25rem 0 0}.dark ._cardDescription_jdam0_231{color:#adadad}._exploreSection_jdam0_244{margin-bottom:4rem;padding-left:3rem;padding-right:3rem;display:flex;flex-direction:column;align-items:center}._modelCardsContainer_jdam0_253{display:flex;gap:.75rem;margin-top:1rem;margin-bottom:1rem;max-width:800px}._modelCard_jdam0_253{background:linear-gradient(to bottom,#ffffffb3,#ffffffb3),linear-gradient(135deg,#8251ee,#e1cefc);border-radius:.75rem;padding:1.5rem;height:240px;flex:1;display:flex;flex-direction:column;transition:box-shadow .2s,border-color .2s;box-sizing:border-box}.dark ._modelCard_jdam0_253{background:linear-gradient(to bottom,#0009,#0009),linear-gradient(135deg,#8251ee,#e1cefc);border-color:#ffffff12}._modelIcon_jdam0_285{width:3rem;height:3rem;background-color:#f3f4f6;border-radius:.5rem;display:flex;align-items:center;justify-content:center;font-size:2rem;color:#fff}._modelIcon_jdam0_285 img{width:2rem;height:2rem;object-fit:contain}.dark ._modelIcon_jdam0_285{background-color:#1f1f1f;color:#fff}._modelTitle_jdam0_308{font-size:14px;font-weight:600;font-family:Aptos SemiBold,sans-serif;line-height:20px;color:#000;margin:1rem 0 0}.dark ._modelTitle_jdam0_308{color:#fff}._modelDescription_jdam0_321{font-size:14px;font-weight:400;line-height:20px;color:#000;margin:.5rem 0 0}.dark ._modelDescription_jdam0_321{color:#ffffffe6}._modelButton_jdam0_333{background-color:#fff;color:#242424;padding:.25rem 1rem;border-radius:9999px;border-color:#d1d1d1;border:1px solid;font-size:12px;line-height:16px;font-weight:600;cursor:pointer;width:fit-content;transition:all .2s;margin-top:1rem}.dark ._modelButton_jdam0_333{background-color:#1f1f1f;color:#fff;border-color:#666}._modelButton_jdam0_333:hover{background-color:#e5e5e5}.dark ._modelButton_jdam0_333:hover{background-color:#000}._pagination_jdam0_362{display:flex;justify-content:center;gap:.5rem;margin-top:1.5rem}._paginationDot_jdam0_369{width:8px;height:8px;border-radius:50%;background-color:#6366f1}._footerSection_jdam0_376{display:flex;gap:3rem;flex-wrap:wrap;justify-content:center;padding-left:2rem;padding-right:2rem;margin-top:2rem;margin-bottom:2rem}._footerItem_jdam0_387{display:flex;flex-direction:column;align-items:center;text-align:center}._footerIcon_jdam0_394{margin-bottom:2rem;width:2rem;height:2rem}._footerIcon_jdam0_394 img{width:2rem;height:2rem;display:block}._footerIconLight_jdam0_406{display:block}.dark ._footerIconLight_jdam0_406,._footerIconDark_jdam0_414{display:none!important}.dark ._footerIconDark_jdam0_414{display:block!important}._footerLink_jdam0_422{font-size:14px;font-weight:500;font-family:Aptos SemiBold,sans-serif;color:#643fb2;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;gap:.25rem;transition:color .2s}._externalIconLight_jdam0_435{display:block}.dark ._externalIconLight_jdam0_435,._externalIconDark_jdam0_443{display:none!important}.dark ._externalIconDark_jdam0_443{display:block!important}._footerLink_jdam0_422:hover{color:#4f46e5}.dark ._footerLink_jdam0_422{color:#c9aaf9}.dark ._footerLink_jdam0_422:hover{color:#a5b4fc}._externalIcon_jdam0_435{width:.875rem;height:.875rem;flex-shrink:0;display:flex;align-items:center;justify-content:center}._externalIcon_jdam0_435 img{width:100%;height:100%;display:block}._footerDescription_jdam0_478{font-size:14px;color:#424242;line-height:1.5;margin:0;max-width:300px}.dark ._footerDescription_jdam0_478{color:#d6d6d6}._container_1hsqx_1{margin-bottom:.5rem}@media (min-width: 1024px){._container_1hsqx_1{margin-bottom:.5rem}}._button_1hsqx_11{width:100%;padding:.5rem .75rem;border-radius:.75rem;background-color:#fff;border:1px solid rgba(229,231,235,.7);cursor:pointer}.dark ._button_1hsqx_11{background-color:#1f1f1f;border-color:#ffffff12}._button_1hsqx_11:hover{border-color:#d1d5db;background-color:#4b55630d}.dark ._button_1hsqx_11:hover{border-color:#ffffff26;background-color:#4b55630d}._button_1hsqx_11:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._buttonActive_1hsqx_40{box-shadow:0 0 0 2px #643fb233;border-color:#643fb24d}._buttonContent_1hsqx_45{display:flex;align-items:center;gap:.5rem}._iconContainer_1hsqx_51{flex-shrink:0}._iconWrapper_1hsqx_55{width:2rem;height:2rem;border-radius:.5rem;display:flex;align-items:center;justify-content:center;background-color:#e1cefc;border:1px solid #643fb2}.dark ._iconWrapper_1hsqx_55{background-color:#38255e;border-color:#c9aaf9}._icon_1hsqx_51{width:1rem;height:1rem;color:#643fb2}.dark ._icon_1hsqx_51{color:#c9aaf9}._textContainer_1hsqx_81{flex:1;text-align:left;min-width:0}._title_1hsqx_87{font-size:.875rem;font-weight:500;color:#111827}.dark ._title_1hsqx_87{color:#fff}._description_1hsqx_97{font-size:.75rem;color:#4b5563;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.dark ._description_1hsqx_97{color:#9ca3af}._chevronContainer_1hsqx_110{flex-shrink:0}._chevron_1hsqx_110{width:1rem;height:1rem;color:#6b7280;transition:transform .2s}.dark ._chevron_1hsqx_110{color:#9ca3af}._chevronExpanded_1hsqx_125{transform:rotate(180deg)}._chevronCollapsed_1hsqx_129{transform:rotate(0)}._dropdownContainer_1hsqx_133{position:relative;margin-top:.5rem}._dropdown_1hsqx_133{position:absolute;top:0;left:0;right:0;z-index:10;width:100%;padding:.25rem;border-radius:.5rem;background-color:#fff;border:1px solid rgba(229,231,235,.7);box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d}.dark ._dropdown_1hsqx_133{background-color:#1f1f1f;border-color:#ffffff12}._dropdownList_1hsqx_158{display:flex;flex-direction:column;gap:.25rem}._dropdownItem_1hsqx_164{display:flex;align-items:center;justify-content:space-between;padding:.375rem .5rem;font-size:.875rem;border-radius:.75rem;transition:all .15s;text-decoration:none;color:#111827}.dark ._dropdownItem_1hsqx_164{color:#fff}._dropdownItem_1hsqx_164:hover{background-color:#4b55630d;color:#111827}.dark ._dropdownItem_1hsqx_164:hover{background-color:#4b55630d;color:#e5e7eb}._dropdownItem_1hsqx_164:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._dropdownItemContent_1hsqx_195{display:flex;align-items:center;gap:.5rem}._dropdownItemIconWrapper_1hsqx_201{width:1.75rem;height:1.75rem;border-radius:.5rem;display:flex;align-items:center;justify-content:center;background-color:#e1cefc;border:1px solid #643fb2}.dark ._dropdownItemIconWrapper_1hsqx_201{background-color:#38255e;border-color:#c9aaf9}._dropdownItemIcon_1hsqx_201{width:1rem;height:1rem;color:#643fb2}.dark ._dropdownItemIcon_1hsqx_201{color:#c9aaf9}._dropdownItemTitle_1hsqx_227{font-weight:500}._checkmark_1hsqx_231{width:.75rem;height:.75rem;color:#643fb2}.dark ._checkmark_1hsqx_231{color:#c9aaf9}._dialog_1y5d2_1{position:fixed;top:0;right:0;bottom:0;left:0;overflow-y:auto;z-index:50}@media (min-width: 1024px){._dialog_1y5d2_1{display:none}}._backdrop_1y5d2_14{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#0003;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);transition:opacity .3s ease-out}.dark ._backdrop_1y5d2_14{background-color:#000c}._backdrop_1y5d2_14[data-closed]{opacity:0}._container_1y5d2_30{position:fixed;top:0;right:0;bottom:0;left:0;display:flex}._panel_1y5d2_36{display:flex;flex-direction:column;position:relative;background-color:#fff;width:85vw;min-width:19rem;max-width:22rem;min-height:100%;transition:transform .1s ease-in-out}.dark ._panel_1y5d2_36{background-color:#0f0f0f}._panel_1y5d2_36[data-closed]{transform:translate(-100%)}._content_1y5d2_56{display:flex;flex-direction:column;flex:1;padding:1rem 1rem 3rem;overflow-y:auto;height:100%}._closeButton_1y5d2_67{position:absolute;background-color:#fff;border-radius:9999px;top:1rem;right:1rem;width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;border:none;cursor:pointer}.dark ._closeButton_1y5d2_67{background-color:#0f0f0f}._closeIcon_1y5d2_86{width:1rem;height:1rem;color:#6b7280}.dark ._closeIcon_1y5d2_86{color:#9ca3af}._closeIcon_1y5d2_86:hover{color:#4b5563}.dark ._closeIcon_1y5d2_86:hover{color:#d1d5db}._srOnly_1y5d2_104{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
|
|
1
|
+
@import"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos.ttf";@import"https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos-SemiBold.ttf";._container_1hsml_1{min-width:0;color:#424242}.dark ._container_1hsml_1{color:#d6d6d6}._prose_1ka1h_1{color:#424242;max-width:none;line-height:1.75}.dark ._prose_1ka1h_1{color:#d6d6d6}._prose_1ka1h_1 :where(p):not(:where([class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}._prose_1ka1h_1 :where([class~=lead]):not(:where([class~=not-prose] *)){color:#4b5563;font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}._prose_1ka1h_1 :where(a):not(:where([class~=not-prose] *)){color:#111827;text-decoration:underline;font-weight:500}._prose_1ka1h_1 :where(strong):not(:where([class~=not-prose] *)){color:#111827;font-weight:600}._prose_1ka1h_1 :where(a strong):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}._prose_1ka1h_1 :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}._prose_1ka1h_1 :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}._prose_1ka1h_1 :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}._prose_1ka1h_1 :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}._prose_1ka1h_1 :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}._prose_1ka1h_1 :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}._prose_1ka1h_1 :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}._prose_1ka1h_1 :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}._prose_1ka1h_1 :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}._prose_1ka1h_1 :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}._prose_1ka1h_1 :where(ol>li):not(:where([class~=not-prose] *))::marker{font-weight:400;color:#6b7280}._prose_1ka1h_1 :where(ul>li):not(:where([class~=not-prose] *))::marker{color:#d1d5db}._prose_1ka1h_1 :where(hr):not(:where([class~=not-prose] *)){border-color:#e5e7eb;border-top-width:1px;margin-top:3em;margin-bottom:3em}._prose_1ka1h_1 :where(blockquote):not(:where([class~=not-prose] *)){font-weight:500;font-style:italic;color:#111827;border-left-width:.25rem;border-left-color:#e5e7eb;quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}._prose_1ka1h_1 :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}._prose_1ka1h_1 :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}._prose_1ka1h_1 :where(h1):not(:where([class~=not-prose] *)){color:#111827;font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}._prose_1ka1h_1 :where(h1 strong):not(:where([class~=not-prose] *)){font-weight:900;color:inherit}._prose_1ka1h_1 :where(h2):not(:where([class~=not-prose] *)){color:#111827;font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}._prose_1ka1h_1 :where(h2 strong):not(:where([class~=not-prose] *)){font-weight:800;color:inherit}._prose_1ka1h_1 :where(h3):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}._prose_1ka1h_1 :where(h3 strong):not(:where([class~=not-prose] *)){font-weight:700;color:inherit}._prose_1ka1h_1 :where(h4):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}._prose_1ka1h_1 :where(h4 strong):not(:where([class~=not-prose] *)){font-weight:700;color:inherit}._prose_1ka1h_1 :where(img):not(:where([class~=not-prose] *)){margin-top:2em;margin-bottom:2em}._prose_1ka1h_1 :where(figure>*):not(:where([class~=not-prose] *)){margin-top:0;margin-bottom:0}._prose_1ka1h_1 :where(figcaption):not(:where([class~=not-prose] *)){color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}._prose_1ka1h_1 :where(code):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;font-size:.875em}._prose_1ka1h_1 :where(a code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h2 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h3 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}._prose_1ka1h_1 :where(pre):not(:where([class~=not-prose] *)){color:#e5e7eb;background-color:#1f2937;overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding:.8571429em 1.1428571em}._prose_1ka1h_1 :where(pre code):not(:where([class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}._prose_1ka1h_1 :where(pre code):not(:where([class~=not-prose] *)):before{content:none}._prose_1ka1h_1 :where(pre code):not(:where([class~=not-prose] *)):after{content:none}._prose_1ka1h_1 :where(table):not(:where([class~=not-prose] *)){width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}._prose_1ka1h_1 :where(thead):not(:where([class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:#d1d5db}._prose_1ka1h_1 :where(thead th):not(:where([class~=not-prose] *)){color:#111827;font-weight:600;vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}._prose_1ka1h_1 :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:#e5e7eb}._prose_1ka1h_1 :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}._prose_1ka1h_1 :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:baseline}._prose_1ka1h_1 :where(tfoot):not(:where([class~=not-prose] *)){border-top-width:1px;border-top-color:#d1d5db}._prose_1ka1h_1 :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}._prose_1ka1h_1 :where(video):not(:where([class~=not-prose] *)){margin-top:2em;margin-bottom:2em}._prose_1ka1h_1 :where(figure):not(:where([class~=not-prose] *)){margin-top:2em;margin-bottom:2em}._prose_1ka1h_1 :where(li):not(:where([class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}._prose_1ka1h_1 :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}._prose_1ka1h_1 :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ul>li p):not(:where([class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ul>li>*:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ul>li>*:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ol>li>*:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}._prose_1ka1h_1 :where(._prose_1ka1h_1>ol>li>*:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}._prose_1ka1h_1 :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}._prose_1ka1h_1 :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}._prose_1ka1h_1 :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}._prose_1ka1h_1 :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}._prose_1ka1h_1 :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}._prose_1ka1h_1 :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}._prose_1ka1h_1 :where(._prose_1ka1h_1>:first-child):not(:where([class~=not-prose] *)){margin-top:0}._prose_1ka1h_1 :where(._prose_1ka1h_1>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}._prose_1ka1h_1>:last-child:not(:where([class~=not-prose] *)){margin-bottom:0}.dark ._prose_1ka1h_1 :where([class~=lead]):not(:where([class~=not-prose] *)){color:#9ca3af}.dark ._prose_1ka1h_1 :where(a):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(strong):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(ol>li):not(:where([class~=not-prose] *))::marker{color:#9ca3af}.dark ._prose_1ka1h_1 :where(ul>li):not(:where([class~=not-prose] *))::marker{color:#6b7280}.dark ._prose_1ka1h_1 :where(hr):not(:where([class~=not-prose] *)){border-color:#374151}.dark ._prose_1ka1h_1 :where(blockquote):not(:where([class~=not-prose] *)){color:#fff;border-left-color:#374151}.dark ._prose_1ka1h_1 :where(h1):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(h2):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(h3):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(h4):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(figcaption):not(:where([class~=not-prose] *)){color:#9ca3af}.dark ._prose_1ka1h_1 :where(code):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(pre):not(:where([class~=not-prose] *)){color:#e5e7eb;background-color:#1f2937}.dark ._prose_1ka1h_1 :where(thead th):not(:where([class~=not-prose] *)){color:#fff}.dark ._prose_1ka1h_1 :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:#4b5563}.dark ._prose_1ka1h_1 :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:#6b7280}.dark ._prose_1ka1h_1 :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:#6b7280}._overlay_oaifl_1{position:fixed;top:0;right:0;bottom:0;left:0;z-index:50;display:flex;align-items:center;justify-content:center;padding:1rem;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}._modal_oaifl_12{position:relative;width:100%;max-width:80rem;max-height:90vh;overflow:auto;background-color:#fff;border-radius:1rem;box-shadow:0 25px 50px -12px #00000040;border:1px solid #e5e7eb}.dark ._modal_oaifl_12{background-color:#1f1f1f;border-color:#ffffff1a}._header_oaifl_29{position:sticky;top:0;right:0;z-index:10;display:flex;justify-content:flex-end;padding:.5rem 1rem;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}._closeButton_oaifl_40{padding:.5rem;border-radius:.5rem;background:transparent;border:none;cursor:pointer}._closeButton_oaifl_40:hover{background-color:#f3f4f6}.dark ._closeButton_oaifl_40:hover{background-color:#141414}._closeIcon_oaifl_56{height:1.25rem;width:1.25rem;color:#374151}.dark ._closeIcon_oaifl_56{color:#fff}._content_oaifl_66{padding:1rem 1.5rem}._container_1yfm4_1{position:relative;display:block;margin-bottom:1rem;margin-top:2rem}._expandButton_1yfm4_8{margin-left:auto;display:flex;align-items:center;gap:.5rem;padding:.25rem .5rem;border-radius:.5rem;background:transparent;border:none;cursor:pointer}._expandButton_1yfm4_8:hover{background-color:#f3f4f6}.dark ._expandButton_1yfm4_8:hover{background-color:#2d2d2d}._expandIcon_1yfm4_28{height:1rem;width:1rem;color:#374151}.dark ._expandIcon_1yfm4_28{color:#e5e7eb}._expandText_1yfm4_38{font-size:.875rem;color:#374151}.dark ._expandText_1yfm4_38{color:#e5e7eb}._scrollContainer_1yfm4_47{margin-top:.5rem;overflow-x:auto}._table_1yfm4_52{margin-top:.5rem;border-collapse:collapse;font-size:.875rem;width:100%;border-radius:.75rem;overflow:hidden;background-color:#f9fafb}.dark ._table_1yfm4_52{background-color:#2d2d2d}._tableHeader_1yfm4_66{color:#374151;background-color:#f9fafb}.dark ._tableHeader_1yfm4_66{color:#d1d5db;background-color:#2d2d2d}._tableHeader_1yfm4_66 tr{border:0}._tableFooter_1yfm4_80{border-top:1px solid #e5e7eb;background-color:#f9fafb80;font-weight:500}.dark ._tableFooter_1yfm4_80{border-top-color:#4b5563;background-color:#2d2d2d80}._tableFooter_1yfm4_80 tr:last-child{border-bottom:0}._tableRow_1yfm4_95{border:1px solid #f9fafb}.dark ._tableRow_1yfm4_95{border-color:#2d2d2d}._tableHead_1yfm4_66{height:2rem;background-color:#f9fafb;overflow:hidden;padding:.5rem 1.5rem;text-align:left;font-weight:600;color:#374151}.dark ._tableHead_1yfm4_66{background-color:#2d2d2d;color:#d1d5db}._tableHead_1yfm4_66:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}._tableHead_1yfm4_66:last-child{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}._tableCell_1yfm4_128{background-color:#fff;border-color:#f9fafb;padding:.75rem 1.5rem;color:#141414}.dark ._tableCell_1yfm4_128{background-color:#252525;border-color:#2d2d2d;color:#e5e7eb}._tableCell_1yfm4_128:first-child{border-left:4px solid transparent}._tableCell_1yfm4_128:last-child{border-right:4px solid transparent}tbody>tr:first-child>._tableCell_1yfm4_128:first-child{border-top-left-radius:.75rem}tbody>tr:first-child>._tableCell_1yfm4_128:last-child{border-top-right-radius:.75rem}tbody>tr:last-child>._tableCell_1yfm4_128:first-child{border-bottom-left-radius:.75rem}tbody>tr:last-child>._tableCell_1yfm4_128:last-child{border-bottom-right-radius:.75rem}tbody>tr:last-child>._tableCell_1yfm4_128{border-bottom:4px solid transparent}._tableCaption_1yfm4_169{margin-top:1rem;font-size:.875rem;color:#6b7280}.dark ._tableCaption_1yfm4_169{color:#9ca3af}._inlineCode_16wxq_1{font-weight:500;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.875rem;background-color:#f3f4f6;box-shadow:0 0 0 1px #9ca3af4d;padding:.125rem .375rem;border-radius:.25rem}.dark ._inlineCode_16wxq_1{background-color:#1f1f1f;box-shadow:0 0 0 1px #37415180}._paragraph_16wxq_17{line-height:1.75}._blockquote_16wxq_21{border-left:4px solid #e5e7eb;padding-left:1.5rem;margin-bottom:1rem}.dark ._blockquote_16wxq_21{border-left-color:#fff3}._container_vund7_1{display:flex;flex-direction:column;gap:.5rem;margin-top:1rem;margin-bottom:1rem;border:1px solid #e5e5e5;padding:.625rem .5rem .5rem;border-radius:.75rem;overflow:hidden}.dark ._container_vund7_1{border-color:#262626}._fileName_vund7_20{font-size:.875rem;font-weight:500;padding-left:.5rem;padding-right:.5rem}._codeWrapper_vund7_27{position:relative;border-radius:.75rem;background-color:#f5f5f5}.dark ._codeWrapper_vund7_27{background-color:#141414}._header_vund7_37{display:flex;align-items:center;justify-content:space-between;padding-left:.75rem;padding-right:.75rem;padding-top:.5rem}._language_vund7_46{font-size:.75rem;font-weight:500;color:#737373}.dark ._language_vund7_46{color:#a3a3a3}._copyButtonWrapper_vund7_56{position:relative}._copyButton_vund7_56{display:flex;align-items:center;gap:.375rem;padding:.25rem .5rem;font-size:.75rem;color:#737373;border-radius:.25rem;transition-property:color;transition-duration:.15s;border:none;background:transparent;cursor:pointer}._tooltip_vund7_78{position:absolute;bottom:calc(100% + .5rem);left:50%;transform:translate(-50%);background-color:#fff;color:#171717;padding:.375rem .625rem;border-radius:.375rem;font-size:.75rem;font-weight:500;white-space:nowrap;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f;z-index:10;animation:_fadeIn_vund7_1 .15s ease-out}._tooltip_vund7_78:after{content:"";position:absolute;top:100%;left:50%;transform:translate(-50%);width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white}.dark ._tooltip_vund7_78{background-color:#1a1a1a;color:#fafafa;box-shadow:0 4px 6px -1px #0000004d,0 2px 4px -1px #0003}.dark ._tooltip_vund7_78:after{border-top-color:#1a1a1a}@keyframes _fadeIn_vund7_1{0%{opacity:0;transform:translate(-50%) translateY(4px)}to{opacity:1;transform:translate(-50%) translateY(0)}}.dark ._copyButton_vund7_56{color:#a3a3a3}._copyButton_vund7_56:hover{color:#9263f1}.dark ._copyButton_vund7_56:hover{color:#c9aaf9}._copyIcon_vund7_141{width:1.25rem;height:1.25rem}._copiedIcon_vund7_146{width:1.25rem;height:1.25rem;color:#737373}.dark ._copiedIcon_vund7_146{color:#a3a3a3}._scrollContainer_vund7_156{overflow-x:auto}._pre_vund7_160{padding:.5rem .75rem .75rem;margin:0;white-space:pre;font-size:.875rem}._code_vund7_27{display:block;color:#24292e}.dark ._code_vund7_27{color:#e6edf3}._link_1rr6d_1{text-decoration:underline}._srOnly_1rr6d_5{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}._callout_1k3jj_1{margin-top:1rem;margin-bottom:1rem;display:flex;gap:.5rem;padding:.625rem .75rem;border-radius:.5rem;border-width:1px;overflow:hidden}._iconContainer_1k3jj_12{display:flex;align-items:flex-start;justify-content:center;margin-top:2px}._icon_1k3jj_12{width:1.25rem;height:1.25rem;flex-shrink:0}._content_1k3jj_25{font-size:.875rem;min-width:0;width:100%}._content_1k3jj_25>p:first-of-type{margin-bottom:0;font-weight:600}._content_1k3jj_25>p:nth-of-type(2){margin-top:.5rem}._tip_1k3jj_40{background-color:#f1faf1;border-color:#9fd89f;color:#0c5e0c}.dark ._tip_1k3jj_40{background-color:#052505;border-color:#54b054;color:#54b054}._note_1k3jj_52{background-color:#f5f5f5;border-color:#d1d1d1;color:#242424}.dark ._note_1k3jj_52{background-color:#141414;border-color:#666;color:#fff}._warning_1k3jj_64{background-color:#fff9f5;border-color:#fdcfb4;color:#8a3707}.dark ._warning_1k3jj_64{background-color:#4a1e04;border-color:#de590b;color:#faa06b}._caution_1k3jj_76{background-color:#fdf3f4;border-color:#eeacb2;color:#960b18}.dark ._caution_1k3jj_76{background-color:#3b0509;border-color:#c50f1f;color:#dc626d}._important_1k3jj_88{background-color:#e1cefc;border-color:#8251ee;color:#643fb2}.dark ._important_1k3jj_88{background-color:#1a1326;border-color:#9263f1;color:#9263f1}._nextstepaction_1k3jj_100{background-color:#f9fafb;border-color:#d1d1d1;color:#141414}.dark ._nextstepaction_1k3jj_100{background-color:#141414;border-color:#666;color:#fff}._nextstepaction_1k3jj_100 ._icon_1k3jj_12{color:#616161}.dark ._nextstepaction_1k3jj_100 ._icon_1k3jj_12{color:#fff}._paramName_b3gwo_1{display:inline-block;margin-top:.5rem;margin-right:.25rem;padding:.125rem .375rem;font-size:.875rem;font-weight:600;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;border-radius:.25rem;background-color:#f3f4f6}.dark ._paramName_b3gwo_1{background-color:#2d2d2d}._details_d3x6c_1{margin-top:1rem;margin-bottom:1rem;border:1px solid #e5e7eb;border-radius:.5rem;overflow:hidden}.dark ._details_d3x6c_1{border-color:#ffffff1a}._summary_d3x6c_13{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;cursor:pointer;list-style:none;font-size:.875rem;font-weight:600;color:#111827}.dark ._summary_d3x6c_13{color:#fff}._summary_d3x6c_13:hover{background-color:#f9fafb}.dark ._summary_d3x6c_13:hover{background-color:#ffffff0d}._icon_d3x6c_37{transition:transform .15s;flex-shrink:0}._iconOpen_d3x6c_42{transform:rotate(0)}._iconClosed_d3x6c_46{transform:rotate(-90deg)}._content_d3x6c_50{flex:1}._body_d3x6c_54{padding:.5rem .75rem 1rem;border-top:1px solid #e5e7eb}.dark ._body_d3x6c_54{border-top-color:#ffffff1a}._container_1099y_1{margin-top:1.5rem;margin-bottom:1.5rem}._tabList_1099y_6{display:flex;gap:.25rem;border-bottom:1px solid #e5e7eb;margin-bottom:1rem;overflow-x:auto}.dark ._tabList_1099y_6{border-bottom-color:#374151}._tab_1099y_6{padding:.5rem 1rem;font-size:.875rem;font-weight:500;border-bottom:2px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;background:transparent;cursor:pointer;transition:all .15s}._tab_1099y_6:focus{outline:none}._tab_1099y_6:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #75b6e7;outline-offset:2px}._tabActive_1099y_39{border-bottom-color:#0078d4;color:#0078d4}.dark ._tabActive_1099y_39{border-bottom-color:#75b6e7;color:#75b6e7}._tabInactive_1099y_49{border-bottom-color:transparent;color:#4b5563}.dark ._tabInactive_1099y_49{color:#9ca3af}._tabInactive_1099y_49:hover{color:#111827;border-bottom-color:#d1d5db}.dark ._tabInactive_1099y_49:hover{color:#e5e7eb;border-bottom-color:#4b5563}._tabContent_1099y_68{display:flex;align-items:center;gap:.5rem}._panel_1099y_74{outline:none}._panelHidden_1099y_81{display:none}._container_1hsqx_1{margin-bottom:.5rem}@media (min-width: 1024px){._container_1hsqx_1{margin-bottom:.5rem}}._button_1hsqx_11{width:100%;padding:.5rem .75rem;border-radius:.75rem;background-color:#fff;border:1px solid rgba(229,231,235,.7);cursor:pointer}.dark ._button_1hsqx_11{background-color:#1f1f1f;border-color:#ffffff12}._button_1hsqx_11:hover{border-color:#d1d5db;background-color:#4b55630d}.dark ._button_1hsqx_11:hover{border-color:#ffffff26;background-color:#4b55630d}._button_1hsqx_11:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._buttonActive_1hsqx_40{box-shadow:0 0 0 2px #643fb233;border-color:#643fb24d}._buttonContent_1hsqx_45{display:flex;align-items:center;gap:.5rem}._iconContainer_1hsqx_51{flex-shrink:0}._iconWrapper_1hsqx_55{width:2rem;height:2rem;border-radius:.5rem;display:flex;align-items:center;justify-content:center;background-color:#e1cefc;border:1px solid #643fb2}.dark ._iconWrapper_1hsqx_55{background-color:#38255e;border-color:#c9aaf9}._icon_1hsqx_51{width:1rem;height:1rem;color:#643fb2}.dark ._icon_1hsqx_51{color:#c9aaf9}._textContainer_1hsqx_81{flex:1;text-align:left;min-width:0}._title_1hsqx_87{font-size:.875rem;font-weight:500;color:#111827}.dark ._title_1hsqx_87{color:#fff}._description_1hsqx_97{font-size:.75rem;color:#4b5563;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.dark ._description_1hsqx_97{color:#9ca3af}._chevronContainer_1hsqx_110{flex-shrink:0}._chevron_1hsqx_110{width:1rem;height:1rem;color:#6b7280;transition:transform .2s}.dark ._chevron_1hsqx_110{color:#9ca3af}._chevronExpanded_1hsqx_125{transform:rotate(180deg)}._chevronCollapsed_1hsqx_129{transform:rotate(0)}._dropdownContainer_1hsqx_133{position:relative;margin-top:.5rem}._dropdown_1hsqx_133{position:absolute;top:0;left:0;right:0;z-index:10;width:100%;padding:.25rem;border-radius:.5rem;background-color:#fff;border:1px solid rgba(229,231,235,.7);box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d}.dark ._dropdown_1hsqx_133{background-color:#1f1f1f;border-color:#ffffff12}._dropdownList_1hsqx_158{display:flex;flex-direction:column;gap:.25rem}._dropdownItem_1hsqx_164{display:flex;align-items:center;justify-content:space-between;padding:.375rem .5rem;font-size:.875rem;border-radius:.75rem;transition:all .15s;text-decoration:none;color:#111827}.dark ._dropdownItem_1hsqx_164{color:#fff}._dropdownItem_1hsqx_164:hover{background-color:#4b55630d;color:#111827}.dark ._dropdownItem_1hsqx_164:hover{background-color:#4b55630d;color:#e5e7eb}._dropdownItem_1hsqx_164:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._dropdownItemContent_1hsqx_195{display:flex;align-items:center;gap:.5rem}._dropdownItemIconWrapper_1hsqx_201{width:1.75rem;height:1.75rem;border-radius:.5rem;display:flex;align-items:center;justify-content:center;background-color:#e1cefc;border:1px solid #643fb2}.dark ._dropdownItemIconWrapper_1hsqx_201{background-color:#38255e;border-color:#c9aaf9}._dropdownItemIcon_1hsqx_201{width:1rem;height:1rem;color:#643fb2}.dark ._dropdownItemIcon_1hsqx_201{color:#c9aaf9}._dropdownItemTitle_1hsqx_227{font-weight:500}._checkmark_1hsqx_231{width:.75rem;height:.75rem;color:#643fb2}.dark ._checkmark_1hsqx_231{color:#c9aaf9}._nav_kxe04_1{display:flex;flex-direction:column;gap:.5rem;height:100%;min-height:0}._navContent_kxe04_9{flex:1;overflow-y:auto;overflow-x:hidden;min-height:0;scrollbar-gutter:stable;padding-right:1rem;scrollbar-width:thin}._navContent_kxe04_9::-webkit-scrollbar{width:.25rem}._navContent_kxe04_9::-webkit-scrollbar-track{background:transparent}._navContent_kxe04_9::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}._navContent_kxe04_9::-webkit-scrollbar-thumb:hover{background-color:#0000004d}.dark ._navContent_kxe04_9::-webkit-scrollbar-thumb{background-color:#fff3}.dark ._navContent_kxe04_9::-webkit-scrollbar-thumb:hover{background-color:#ffffff4d}._navContent_kxe04_9{scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.2) transparent}.dark ._navContent_kxe04_9{scrollbar-color:rgba(255,255,255,.2) transparent}._group_kxe04_55{margin-bottom:1.5rem}._groupHeader_kxe04_59{font-size:.875rem;font-weight:600;color:#141414;margin-bottom:.75rem;display:flex;align-items:flex-start;gap:.5rem;padding-left:.75rem}.dark ._groupHeader_kxe04_59{color:#fff}._groupIcon_kxe04_74{width:1.25rem;height:1.25rem}._list_kxe04_79{display:flex;flex-direction:column;gap:.25rem}._listItem_kxe04_85{list-style:none}._expandButton_kxe04_89{position:relative;text-align:left;width:100%;display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;font-size:.875rem;border-radius:.5rem;transition:all .15s;background:transparent;border:none;cursor:pointer;color:#4b5563}.dark ._expandButton_kxe04_89{color:#9ca3af}._expandButton_kxe04_89:hover{background-color:#4b55630d;color:#141414}.dark ._expandButton_kxe04_89:hover{background-color:#4b55630d;color:#e5e7eb}._expandButton_kxe04_89:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._chevron_kxe04_126{width:1rem;height:1rem;transition:transform .15s;color:#6b7280}.dark ._chevron_kxe04_126{color:#9ca3af}._chevronExpanded_kxe04_137{transform:rotate(90deg)}._chevronCollapsed_kxe04_141{transform:rotate(0)}._link_kxe04_145{position:relative;display:block;padding:.5rem .75rem;font-size:.875rem;border-radius:.75rem;transition:all .15s;text-decoration:none;color:#4b5563}.dark ._link_kxe04_145{color:#9ca3af}._link_kxe04_145:hover{background-color:#4b55630d;color:#141414}.dark ._link_kxe04_145:hover{background-color:#4b55630d;color:#e5e7eb}._link_kxe04_145:focus-visible{outline:2px solid #643fb2;outline-offset:2px}._linkActive_kxe04_175{background-color:#e6e6e6;color:#643fb2;font-weight:500}.dark ._linkActive_kxe04_175{background-color:#2e2e2e;color:#c9aaf9}._nestedList_kxe04_186{margin-top:.25rem;margin-left:.75rem;display:flex;flex-direction:column;gap:.25rem;padding-left:.75rem}._bottomSection_kxe04_195{flex-shrink:0;width:100%;background-color:#f0f0f0;margin-top:auto}.dark ._bottomSection_kxe04_195{background-color:#0f0f0f}._divider_kxe04_206{height:1px;width:100%;background-color:#d1d1d1;margin-bottom:.75rem}.dark ._divider_kxe04_206{background-color:#666}._bottomLinks_kxe04_217{display:flex;flex-direction:column;gap:.75rem;padding:.75rem}._bottomLink_kxe04_217{display:flex;align-items:center;gap:.5rem;font-size:.875rem;text-decoration:none;color:#4b5563}.dark ._bottomLink_kxe04_217{color:#9ca3af}._bottomLink_kxe04_217:hover{color:#141414}.dark ._bottomLink_kxe04_217:hover{color:#e5e7eb}._bottomLinkIcon_kxe04_245{width:1.25rem;height:1.25rem;flex-shrink:0}._externalIcon_kxe04_251{margin-left:auto}._externalIconLight_kxe04_255{display:block}.dark ._externalIconLight_kxe04_255,._externalIconDark_kxe04_263{display:none}.dark ._externalIconDark_kxe04_263{display:block}:root{--scroll-mt: 3rem}body{font-family:Aptos,sans-serif;font-size:14px;color:#424242}.dark body{color:#d6d6d6}h1,h2,h3,h4,h5,h6{scroll-margin-top:var(--scroll-mt);font-family:Aptos SemiBold,sans-serif;font-weight:400;font-size:28px;color:#242424}.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6{color:#fff}p{font-family:Aptos,sans-serif;font-size:14px;line-height:20px;color:#424242}.dark p{color:#d6d6d6}iframe{width:100%;aspect-ratio:attr(width) / attr(height)}iframe:not([width]):not([height]){aspect-ratio:16 / 9}.code-scrollbar::-webkit-scrollbar{height:8px;width:8px}.code-scrollbar::-webkit-scrollbar-track{background:transparent}.code-scrollbar::-webkit-scrollbar-thumb{background:#0003;border-radius:4px}.code-scrollbar::-webkit-scrollbar-thumb:hover{background:#0000004d}:is(.dark *)::-webkit-scrollbar-thumb{background:#fff3}:is(.dark *)::-webkit-scrollbar-thumb:hover{background:#ffffff4d}.token.comment,.token.prolog,.token.doctype,.token.cdata{color:#6a737d}:is(.dark *) .token.comment,:is(.dark *) .token.prolog,:is(.dark *) .token.doctype,:is(.dark *) .token.cdata{color:#8b949e}.token.punctuation{color:#24292e}:is(.dark *) .token.punctuation{color:#e6edf3}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.deleted{color:#005cc5}:is(.dark *) .token.property,:is(.dark *) .token.tag,:is(.dark *) .token.boolean,:is(.dark *) .token.number,:is(.dark *) .token.constant,:is(.dark *) .token.symbol,:is(.dark *) .token.deleted{color:#79c0ff}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted{color:#032f62}:is(.dark *) .token.selector,:is(.dark *) .token.attr-name,:is(.dark *) .token.string,:is(.dark *) .token.char,:is(.dark *) .token.builtin,:is(.dark *) .token.inserted{color:#a5d6ff}.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string{color:#d73a49}:is(.dark *) .token.operator,:is(.dark *) .token.entity,:is(.dark *) .token.url,:is(.dark *) .language-css .token.string,:is(.dark *) .style .token.string{color:#ff7b72}.token.atrule,.token.attr-value,.token.keyword{color:#d73a49}:is(.dark *) .token.atrule,:is(.dark *) .token.attr-value,:is(.dark *) .token.keyword{color:#ff7b72}.token.function,.token.class-name{color:#6f42c1}:is(.dark *) .token.function,:is(.dark *) .token.class-name{color:#d2a8ff}.token.regex,.token.important,.token.variable{color:#e36209}:is(.dark *) .token.regex,:is(.dark *) .token.important,:is(.dark *) .token.variable{color:#ffa657}._list_1pkqz_1{display:flex;flex-direction:column;gap:.25rem;font-size:.875rem;color:#6b7280;font-weight:500;position:relative;padding-left:.15rem}.dark ._list_1pkqz_1{color:#9ca3af}._list_1pkqz_1:before{content:"";position:absolute;left:.15rem;top:0;bottom:0;width:3px;background-color:#f2f3f3;border-radius:9999px}.dark ._list_1pkqz_1:before{background-color:#222223}._listItem_1pkqz_32{position:relative}._activeIndicator_1pkqz_36{position:absolute;left:0;top:0;bottom:0;width:3px;border-radius:9999px;background-color:#643fb2;z-index:1}.dark ._activeIndicator_1pkqz_36{background-color:#c9aaf9}._link_1pkqz_51{display:block;padding-left:1.5rem;line-height:1.625;transition:color .15s;text-decoration:none}._linkActive_1pkqz_59{color:#643fb2}.dark ._linkActive_1pkqz_59{color:#c9aaf9}._linkInactive_1pkqz_67:hover{color:#111827}.dark ._linkInactive_1pkqz_67:hover{color:#d1d5db}._container_19j54_1{display:flex;align-items:center;flex-shrink:0}._mainButton_19j54_7{border-radius:.75rem;padding:.375rem .75rem;border:1px solid #e5e7eb;background-color:#fff;color:#374151;cursor:pointer;display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:500}._mainButton_19j54_7:hover{background-color:#4b55630d}.dark ._mainButton_19j54_7{border-color:#ffffff12;background-color:#1a1a1a;color:#d1d5db}.dark ._mainButton_19j54_7:hover{background-color:#e5e7eb0d}._mainButton_19j54_7._split_19j54_35{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0}._mainButton_19j54_7._copied_19j54_41{color:#6b7280}.dark ._mainButton_19j54_7._copied_19j54_41{color:#9ca3af}._buttonContent_19j54_49{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:500;color:#242424}.dark ._buttonContent_19j54_49{color:#dbdbdb}._icon_19j54_62{width:1.25rem;height:1.25rem;color:#424242}.dark ._icon_19j54_62{color:#b2b2b2}._dropdownToggle_19j54_72{border-radius:0;border-top-right-radius:.75rem;border-bottom-right-radius:.75rem;padding:.375rem .5rem;border:1px solid #e5e7eb;background-color:#fff;color:#374151;cursor:pointer}._dropdownToggle_19j54_72:hover{background-color:#4b55630d}.dark ._dropdownToggle_19j54_72{border-color:#ffffff12;background-color:#1a1a1a;color:#d1d5db}.dark ._dropdownToggle_19j54_72:hover{background-color:#e5e7eb0d}._chevron_19j54_97{width:1rem;height:1rem;transition:transform .15s}._chevron_19j54_97._open_19j54_103{transform:rotate(180deg)}._dropdownWrapper_19j54_107{position:relative}._dropdown_19j54_72{position:absolute;right:0;top:100%;margin-top:.25rem;z-index:50;max-height:420px;padding:.375rem;min-width:240px;border:1px solid #e5e7eb;background-color:#fff;border-radius:.75rem;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;overflow-y:auto}.dark ._dropdown_19j54_72{border-color:#ffffff12;background-color:#1a1a1a}._dropdownItem_19j54_133{width:100%;display:flex;align-items:center;gap:.75rem;padding:.5rem .625rem;cursor:pointer;border-radius:.75rem;transition:background-color .15s;border:none;background:none}._dropdownItem_19j54_133:hover{background-color:#4b55630d}.dark ._dropdownItem_19j54_133:hover{background-color:#e5e7eb0d}._dropdownIconWrapper_19j54_154{border:1px solid #e5e7eb;border-radius:.5rem;padding:.25rem;flex-shrink:0}.dark ._dropdownIconWrapper_19j54_154{border-color:#ffffff12}._dropdownIcon_19j54_154{width:1.25rem;height:1.25rem;color:#424242}.dark ._dropdownIcon_19j54_154{color:#b2b2b2}._dropdownItemContent_19j54_175{display:flex;flex-direction:column;flex:1;min-width:0;text-align:left}._dropdownItemTitle_19j54_183{font-size:.875rem;font-weight:500;color:#1f2937;display:flex;align-items:center;gap:.375rem}.dark ._dropdownItemTitle_19j54_183{color:#d1d5db}._externalIcon_19j54_196{width:.75rem;height:.75rem;color:#6b7280;flex-shrink:0}.dark ._externalIcon_19j54_196{color:#9ca3af}._dropdownItemDescription_19j54_207{font-size:.75rem;color:#6b7280;margin-top:.125rem}.dark ._dropdownItemDescription_19j54_207{color:#9ca3af}@media (max-width: 640px){._dropdown_19j54_72{right:auto;left:0;transform:translate(-123px)}}._pageContainer_kdrdg_1{padding-right:.5rem;background-color:#f0f0f0}.dark ._pageContainer_kdrdg_1{background-color:#0f0f0f}._sidebar_kdrdg_10{position:fixed;z-index:10;left:0;top:3.5rem;bottom:0;width:16.5rem;overflow:hidden}@media (max-width: 1023px){._sidebar_kdrdg_10{display:none}}@media (min-width: 1024px){._sidebar_kdrdg_10{display:block}}._sidebarInner_kdrdg_32{padding:1rem;height:100%;display:flex;flex-direction:column}._mainWrapper_kdrdg_39{display:flex;border-radius:1rem;height:calc(100vh - 4.5rem)}._mainContent_kdrdg_45{flex:1;padding:2rem;overflow-y:auto;overflow-x:hidden;border-radius:1rem;background-color:#fff;border:1px solid rgba(229,231,235,.7);scrollbar-gutter:stable;overscroll-behavior:contain}._mainContent_kdrdg_45::-webkit-scrollbar{width:.25rem}._mainContent_kdrdg_45::-webkit-scrollbar-track{background:transparent}._mainContent_kdrdg_45::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}._mainContent_kdrdg_45::-webkit-scrollbar-thumb:hover{background-color:#0000004d}.dark ._mainContent_kdrdg_45::-webkit-scrollbar-thumb{background-color:#fff3}.dark ._mainContent_kdrdg_45::-webkit-scrollbar-thumb:hover{background-color:#ffffff4d}._mainContent_kdrdg_45{scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.2) transparent}.dark ._mainContent_kdrdg_45{scrollbar-color:rgba(255,255,255,.2) transparent}._mainContentNoTopPadding_kdrdg_93{padding-top:0}@media (min-width: 1024px){._mainContent_kdrdg_45{margin-left:16.5rem;padding-left:4rem;padding-right:4rem;padding-top:3rem}._mainContentNoTopPadding_kdrdg_93{padding-top:0}}.dark ._mainContent_kdrdg_45{background-color:#1f1f1f;border-color:#ffffff12}._contentWrapper_kdrdg_115{display:flex;flex-direction:row-reverse;gap:3rem;justify-content:center;margin-left:auto;margin-right:auto;width:100%}._tocSidebar_kdrdg_125{width:16rem;flex-shrink:0;margin-left:2rem}@media (max-width: 1279px){._tocSidebar_kdrdg_125{display:none}}@media (min-width: 1280px){._tocSidebar_kdrdg_125{display:block}}._tocInner_kdrdg_143{position:sticky;top:.5rem;padding:0 .5rem 1.5rem;max-height:calc(100vh - 3.5rem);overflow-y:auto}._tocHeader_kdrdg_151{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}._tocIcon_kdrdg_158{width:1rem;height:1rem;color:#4b5563}.dark ._tocIcon_kdrdg_158{color:#9ca3af}._tocTitle_kdrdg_168{font-size:.875rem;font-weight:600;color:#141414}.dark ._tocTitle_kdrdg_168{color:#fff}._contentArea_kdrdg_178{width:100%;overflow-x:visible;max-width:42rem}._contentAreaFullWidth_kdrdg_184{max-width:none}._header_kdrdg_188{margin-bottom:2rem}._headerInner_kdrdg_192{margin-bottom:1rem}._headerContent_kdrdg_196{display:flex;flex-direction:column;gap:.5rem;align-items:flex-start}@media (min-width: 640px){._headerContent_kdrdg_196{flex-direction:row;align-items:center;gap:1rem}}._title_kdrdg_211{font-size:1.875rem;font-weight:700;color:#141414;margin:0;line-height:1.2}._contextMenu_kdrdg_219{margin-left:auto}@media (max-width: 639px){._contextMenu_kdrdg_219{margin-left:0}}.dark ._title_kdrdg_211{color:#fff}._description_kdrdg_233{font-size:1.125rem;color:#4b5563}.dark ._description_kdrdg_233{color:#d1d5db}._pivotContainer_kdrdg_242{margin-bottom:1.5rem;display:flex;flex-wrap:wrap;gap:1rem}._pivotSelector_kdrdg_249{display:flex;align-items:center;gap:.5rem;font-size:.875rem}._mdxContent_kdrdg_256{padding-top:1rem}._container_gmrx7_1{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem;background-color:#f3f4f6;border-radius:.5rem}.dark ._container_gmrx7_1{background-color:#ffffff0d}._button_gmrx7_14{position:relative;padding:.375rem .75rem;font-size:.875rem;font-weight:500;border-radius:.375rem;background:transparent;border:none;cursor:pointer;transition:all .15s}._button_gmrx7_14:focus{outline:none}._button_gmrx7_14:focus-visible{box-shadow:0 0 0 2px #3b82f6;outline-offset:2px}._buttonSelected_gmrx7_35{background-color:#fff;color:#141414;box-shadow:0 1px 2px #0000000d}.dark ._buttonSelected_gmrx7_35{background-color:#ffffff1a;color:#fff}._buttonUnselected_gmrx7_46{color:#4b5563}.dark ._buttonUnselected_gmrx7_46{color:#9ca3af}._buttonUnselected_gmrx7_46:hover{color:#141414;background-color:#ffffff80}.dark ._buttonUnselected_gmrx7_46:hover{color:#fff;background-color:#ffffff1a}._container_10m30_1{min-height:100vh;width:100%;background-color:#121212;overflow-x:hidden}._content_10m30_8{padding:.5rem .75rem .75rem;margin:0;white-space:pre-wrap;font-size:.875rem;color:#fff;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}@font-face{font-family:Aptos;src:url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Aptos SemiBold;src:url(https://mintlify-assets.b-cdn.net/azure-ai-foundry/Aptos-SemiBold.ttf) format("truetype");font-weight:600;font-style:normal;font-display:swap}._homeContainer_kkusu_18{width:100%;max-width:none!important;margin:0;padding:0;font-family:Aptos,sans-serif;box-sizing:border-box;position:relative}._homeContainer_kkusu_18 *{box-sizing:border-box}._homeContainer_kkusu_18 .dark{padding-left:0!important;padding-right:0!important}._heroSection_kkusu_37{position:relative;left:-4rem;top:-2rem;min-height:316px;height:316px;margin:0;padding:3rem 4rem;width:calc(100% + 8rem);display:flex;align-items:flex-start;justify-content:flex-start;gap:4rem;background-color:#fafafa!important;overflow:hidden}._heroBackground_kkusu_54{position:absolute;top:0;left:0;right:0;bottom:0;background-size:cover;background-position:center;background-repeat:no-repeat;pointer-events:none}.dark ._heroSection_kkusu_37{background-color:#141414!important}._heroBackgroundLight_kkusu_70{display:block}.dark ._heroBackgroundLight_kkusu_70,._heroBackgroundDark_kkusu_78{display:none}.dark ._heroBackgroundDark_kkusu_78{display:block}._heroContent_kkusu_86{position:relative;display:flex;flex-direction:column;gap:1rem;z-index:1;flex:1;max-width:450px;margin-left:8.5rem;margin-top:2rem}._heroTitle_kkusu_98{font-size:28px;font-weight:400;color:#242424;margin:0;line-height:36px}.dark ._heroTitle_kkusu_98{color:#fff}._heroDescription_kkusu_110{font-size:14px;color:#424242;line-height:20px;margin:0}.dark ._heroDescription_kkusu_110{color:#d6d6d6}._heroButton_kkusu_121{background-color:#643fb2;color:#fff;padding:.25rem .75rem;border-radius:.5rem;font-size:12px;font-weight:400;border-radius:9999px;border:none;cursor:pointer;width:fit-content}._heroButton_kkusu_121:hover{background-color:#7450d0}._learnSection_kkusu_139{margin-bottom:4rem;margin-top:1rem;padding-left:3rem;padding-right:3rem;display:flex;flex-direction:column;align-items:center}._sectionHeader_kkusu_149{display:flex;justify-content:space-between;align-items:center;width:100%;max-width:800px;margin-bottom:.25rem}._sectionTitle_kkusu_158{font-size:20px;font-weight:600;font-family:Aptos SemiBold,sans-serif;color:#242424;margin:0;width:100%;max-width:800px;text-align:left}.dark ._sectionTitle_kkusu_158{color:#fff}._viewAllButton_kkusu_173{background-color:transparent;color:#242424;padding:.15rem .5rem;border-radius:9999px;font-size:12px;font-weight:400;border:1px solid #d1d1d1;cursor:pointer;white-space:nowrap;transition:all .2s}._viewAllButton_kkusu_173:hover{background-color:#e0e0e1}.dark ._viewAllButton_kkusu_173{color:#fff;border-color:#666}.dark ._viewAllButton_kkusu_173:hover{background-color:#171717}._cardsGrid_kkusu_199{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin-top:1rem;max-width:800px}._card_kkusu_199{background-color:#fafafa;border:1px solid;border-color:#f0f0f0;border-radius:12px;padding:1.5rem;display:flex;flex-direction:column;gap:.5rem;transition:box-shadow .2s,border-color .2s}.dark ._card_kkusu_199{background-color:#1a1a1a;border-color:#3d3d3d}._card_kkusu_199:hover{box-shadow:0 4px 12px #0000001a;border-color:#6366f14d}.dark ._card_kkusu_199:hover{box-shadow:0 4px 12px #0000004d}._cardIcon_kkusu_233{font-size:2rem;margin-bottom:.5rem;width:3rem;height:3rem;background-color:#f3f4f6;border-radius:.5rem;display:flex;align-items:center;justify-content:center}._cardIcon_kkusu_233 svg{width:1.5rem;height:1.5rem}.dark ._cardIcon_kkusu_233{background-color:#000}._cardTitle_kkusu_254{font-size:14px;font-weight:600;font-family:Aptos SemiBold,sans-serif;color:#141414;margin:0}.dark ._cardTitle_kkusu_254{color:#fff}._cardDescription_kkusu_266{font-size:14px;font-weight:400;color:#616161;font-family:Aptos,sans-serif;line-height:20px;margin:-.25rem 0 0}.dark ._cardDescription_kkusu_266{color:#adadad}._exploreSection_kkusu_279{margin-bottom:4rem;padding-left:3rem;padding-right:3rem;display:flex;flex-direction:column;align-items:center}._modelCardsContainer_kkusu_288{display:flex;gap:.75rem;margin-top:1rem;margin-bottom:1rem;max-width:800px}._modelCard_kkusu_288{background:linear-gradient(to bottom,#ffffffb3,#ffffffb3),linear-gradient(135deg,#8251ee,#e1cefc);border-radius:.75rem;padding:1.5rem;height:200px;flex:1;display:flex;flex-direction:column;transition:box-shadow .2s,border-color .2s;box-sizing:border-box}.dark ._modelCard_kkusu_288{background:linear-gradient(to bottom,#0009,#0009),linear-gradient(135deg,#8251ee,#e1cefc);border-color:#ffffff12}._modelIcon_kkusu_320{width:3rem;height:3rem;background-color:#f3f4f6;border-radius:.5rem;display:flex;align-items:center;justify-content:center;font-size:2rem;color:#fff}._modelIcon_kkusu_320 img{width:2rem;height:2rem;object-fit:contain}.dark ._modelIcon_kkusu_320{background-color:#1f1f1f;color:#fff}._modelTitle_kkusu_343{font-size:14px;font-weight:600;font-family:Aptos SemiBold,sans-serif;line-height:20px;color:#000;margin:1rem 0 0}.dark ._modelTitle_kkusu_343{color:#fff}._modelDescription_kkusu_356{font-size:14px;font-weight:400;line-height:20px;color:#000;margin:.5rem 0 0}.dark ._modelDescription_kkusu_356{color:#ffffffe6}._pagination_kkusu_368{display:flex;justify-content:center;gap:.5rem;margin-top:1.5rem}._paginationDot_kkusu_375{width:8px;height:8px;border-radius:50%;background-color:#6366f1}._footerSection_kkusu_382{display:flex;gap:3rem;flex-wrap:wrap;justify-content:center;padding-left:2rem;padding-right:2rem;margin-top:2rem;margin-bottom:2rem}._footerItem_kkusu_393{display:flex;flex-direction:column;align-items:center;text-align:center}._footerIcon_kkusu_400{margin-bottom:2rem;width:2rem;height:2rem}._footerIcon_kkusu_400 img{width:2rem;height:2rem;display:block}._footerIconLight_kkusu_412{display:block}.dark ._footerIconLight_kkusu_412,._footerIconDark_kkusu_420{display:none!important}.dark ._footerIconDark_kkusu_420{display:block!important}._footerLink_kkusu_428{font-size:14px;font-weight:500;font-family:Aptos SemiBold,sans-serif;color:#643fb2;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;gap:.25rem;transition:color .2s}._externalIconLight_kkusu_441{display:block}.dark ._externalIconLight_kkusu_441,._externalIconDark_kkusu_449{display:none!important}.dark ._externalIconDark_kkusu_449{display:block!important}._footerLink_kkusu_428:hover{color:#4f46e5}.dark ._footerLink_kkusu_428{color:#c9aaf9}.dark ._footerLink_kkusu_428:hover{color:#a5b4fc}._externalIcon_kkusu_441{width:.875rem;height:.875rem;flex-shrink:0;display:flex;align-items:center;justify-content:center}._externalIcon_kkusu_441 img{width:100%;height:100%;display:block}._footerDescription_kkusu_484{font-size:14px;color:#424242;line-height:1.5;margin:0;max-width:300px}.dark ._footerDescription_kkusu_484{color:#d6d6d6}._dialog_1y5d2_1{position:fixed;top:0;right:0;bottom:0;left:0;overflow-y:auto;z-index:50}@media (min-width: 1024px){._dialog_1y5d2_1{display:none}}._backdrop_1y5d2_14{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#0003;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);transition:opacity .3s ease-out}.dark ._backdrop_1y5d2_14{background-color:#000c}._backdrop_1y5d2_14[data-closed]{opacity:0}._container_1y5d2_30{position:fixed;top:0;right:0;bottom:0;left:0;display:flex}._panel_1y5d2_36{display:flex;flex-direction:column;position:relative;background-color:#fff;width:85vw;min-width:19rem;max-width:22rem;min-height:100%;transition:transform .1s ease-in-out}.dark ._panel_1y5d2_36{background-color:#0f0f0f}._panel_1y5d2_36[data-closed]{transform:translate(-100%)}._content_1y5d2_56{display:flex;flex-direction:column;flex:1;padding:1rem 1rem 3rem;overflow-y:auto;height:100%}._closeButton_1y5d2_67{position:absolute;background-color:#fff;border-radius:9999px;top:1rem;right:1rem;width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;border:none;cursor:pointer}.dark ._closeButton_1y5d2_67{background-color:#0f0f0f}._closeIcon_1y5d2_86{width:1rem;height:1rem;color:#6b7280}.dark ._closeIcon_1y5d2_86{color:#9ca3af}._closeIcon_1y5d2_86:hover{color:#4b5563}.dark ._closeIcon_1y5d2_86:hover{color:#d1d5db}._srOnly_1y5d2_104{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
|