@nswds/app 1.112.2 → 1.113.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/globals.css +562 -0
- package/dist/index.cjs +285 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +19 -2
- package/dist/index.d.ts +19 -2
- package/dist/index.js +284 -30
- package/dist/index.js.map +1 -1
- package/dist/styles.css +575 -0
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import * as React5 from 'react';
|
|
|
8
8
|
import React5__default, { forwardRef, useEffect, createContext, useState, useContext, memo as memo$1, useRef, useMemo, useInsertionEffect, Fragment as Fragment$1, createElement, useCallback, useLayoutEffect, Suspense, useId, Children, useSyncExternalStore, Component } from 'react';
|
|
9
9
|
import * as Headless4 from '@headlessui/react';
|
|
10
10
|
import { PopoverGroup, Popover as Popover$1, PopoverButton, PopoverPanel, Dialog as Dialog$1, DialogPanel } from '@headlessui/react';
|
|
11
|
-
import
|
|
11
|
+
import Link14 from 'next/link';
|
|
12
12
|
import { RiArrowLeftSLine, RiArrowRightSLine } from '@remixicon/react';
|
|
13
13
|
import * as RechartsPrimitive from 'recharts';
|
|
14
14
|
import { ResponsiveContainer, AreaChart as AreaChart$1, CartesianGrid, XAxis, Label, YAxis, Tooltip, Legend as Legend$1, Area, Dot, Line, BarChart as BarChart$1, Bar, ComposedChart, PieChart, Pie, LineChart as LineChart$1, Sector } from 'recharts';
|
|
@@ -4172,7 +4172,7 @@ var linkVariants = cva("", {
|
|
|
4172
4172
|
}
|
|
4173
4173
|
});
|
|
4174
4174
|
var Link = forwardRef(function Link2({ className, variant, ...props }, ref) {
|
|
4175
|
-
return /* @__PURE__ */ jsx(Headless4.DataInteractive, { children: /* @__PURE__ */ jsx(
|
|
4175
|
+
return /* @__PURE__ */ jsx(Headless4.DataInteractive, { children: /* @__PURE__ */ jsx(Link14, { ...props, ref, className: cn(linkVariants({ variant }), className) }) });
|
|
4176
4176
|
});
|
|
4177
4177
|
var styles = {
|
|
4178
4178
|
base: [
|
|
@@ -7461,7 +7461,7 @@ function Breadcrumbs({
|
|
|
7461
7461
|
const shouldCollapse = breadcrumbItems.length > maxItems;
|
|
7462
7462
|
if (!shouldCollapse) {
|
|
7463
7463
|
return /* @__PURE__ */ jsx(Breadcrumb, { className: "-ml-1", children: /* @__PURE__ */ jsx(BreadcrumbList, { children: breadcrumbItems.map((item, index) => /* @__PURE__ */ jsxs(React5.Fragment, { children: [
|
|
7464
|
-
/* @__PURE__ */ jsx(BreadcrumbItem, { children: item.isCurrent ? /* @__PURE__ */ jsx(BreadcrumbPage, { children: item.label }) : /* @__PURE__ */ jsx(BreadcrumbLink, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
7464
|
+
/* @__PURE__ */ jsx(BreadcrumbItem, { children: item.isCurrent ? /* @__PURE__ */ jsx(BreadcrumbPage, { children: item.label }) : /* @__PURE__ */ jsx(BreadcrumbLink, { asChild: true, children: /* @__PURE__ */ jsx(Link14, { href: item.path, children: item.label }) }) }),
|
|
7465
7465
|
index < breadcrumbItems.length - 1 && /* @__PURE__ */ jsx(BreadcrumbSeparator, {})
|
|
7466
7466
|
] }, item.path)) }) });
|
|
7467
7467
|
}
|
|
@@ -7472,7 +7472,7 @@ function Breadcrumbs({
|
|
|
7472
7472
|
const collapsedItems = breadcrumbItems.slice(startItems, breadcrumbItems.length - endItems);
|
|
7473
7473
|
return /* @__PURE__ */ jsx(Breadcrumb, { children: /* @__PURE__ */ jsxs(BreadcrumbList, { children: [
|
|
7474
7474
|
itemsAtStart.map((item, index) => /* @__PURE__ */ jsxs(React5.Fragment, { children: [
|
|
7475
|
-
/* @__PURE__ */ jsx(BreadcrumbItem, { children: item.isCurrent ? /* @__PURE__ */ jsx(BreadcrumbPage, { children: item.label }) : /* @__PURE__ */ jsx(BreadcrumbLink, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
7475
|
+
/* @__PURE__ */ jsx(BreadcrumbItem, { children: item.isCurrent ? /* @__PURE__ */ jsx(BreadcrumbPage, { children: item.label }) : /* @__PURE__ */ jsx(BreadcrumbLink, { asChild: true, children: /* @__PURE__ */ jsx(Link14, { href: item.path, children: item.label }) }) }),
|
|
7476
7476
|
index < itemsAtStart.length - 1 && /* @__PURE__ */ jsx(BreadcrumbSeparator, {})
|
|
7477
7477
|
] }, item.path)),
|
|
7478
7478
|
itemsAtStart.length > 0 && /* @__PURE__ */ jsx(BreadcrumbSeparator, {}),
|
|
@@ -7481,11 +7481,11 @@ function Breadcrumbs({
|
|
|
7481
7481
|
/* @__PURE__ */ jsx(BreadcrumbEllipsis, { className: "h-4 w-4" }),
|
|
7482
7482
|
/* @__PURE__ */ jsx("span", { className: "sr-only", children: "Toggle menu" })
|
|
7483
7483
|
] }),
|
|
7484
|
-
/* @__PURE__ */ jsx(DropdownMenuContent, { align: "start", children: collapsedItems.map((item) => /* @__PURE__ */ jsx(DropdownMenuItem, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
7484
|
+
/* @__PURE__ */ jsx(DropdownMenuContent, { align: "start", children: collapsedItems.map((item) => /* @__PURE__ */ jsx(DropdownMenuItem, { asChild: true, children: /* @__PURE__ */ jsx(Link14, { href: item.path, children: item.label }) }, item.path)) })
|
|
7485
7485
|
] }) }),
|
|
7486
7486
|
itemsAtEnd.length > 0 && /* @__PURE__ */ jsx(BreadcrumbSeparator, {}),
|
|
7487
7487
|
itemsAtEnd.map((item, index) => /* @__PURE__ */ jsxs(React5.Fragment, { children: [
|
|
7488
|
-
/* @__PURE__ */ jsx(BreadcrumbItem, { children: item.isCurrent ? /* @__PURE__ */ jsx(BreadcrumbPage, { children: item.label }) : /* @__PURE__ */ jsx(BreadcrumbLink, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
7488
|
+
/* @__PURE__ */ jsx(BreadcrumbItem, { children: item.isCurrent ? /* @__PURE__ */ jsx(BreadcrumbPage, { children: item.label }) : /* @__PURE__ */ jsx(BreadcrumbLink, { asChild: true, children: /* @__PURE__ */ jsx(Link14, { href: item.path, children: item.label }) }) }),
|
|
7489
7489
|
index < itemsAtEnd.length - 1 && /* @__PURE__ */ jsx(BreadcrumbSeparator, {})
|
|
7490
7490
|
] }, item.path))
|
|
7491
7491
|
] }) });
|
|
@@ -18502,7 +18502,7 @@ function FooterLegalLinks({ legalLinks }) {
|
|
|
18502
18502
|
"aria-label": "Footer",
|
|
18503
18503
|
className: "flex flex-wrap justify-center gap-x-4 gap-y-3 py-4 text-sm lg:justify-start",
|
|
18504
18504
|
children: legalLinks?.map((item) => /* @__PURE__ */ jsx(
|
|
18505
|
-
|
|
18505
|
+
Link14,
|
|
18506
18506
|
{
|
|
18507
18507
|
href: item.href,
|
|
18508
18508
|
className: "-m-1 rounded p-1 text-(--footer-link) underline underline-offset-4 hover:bg-(--footer-link-hover-bg) hover:text-(--footer-link-hover-text) hover:decoration-2",
|
|
@@ -18781,7 +18781,7 @@ function FormatToggle({ format, setFormat }) {
|
|
|
18781
18781
|
|
|
18782
18782
|
// package.json
|
|
18783
18783
|
var package_default = {
|
|
18784
|
-
version: "1.
|
|
18784
|
+
version: "1.112.2"};
|
|
18785
18785
|
var SluggerContext = React5__default.createContext(null);
|
|
18786
18786
|
function flattenText(nodes) {
|
|
18787
18787
|
if (nodes == null || typeof nodes === "boolean") return "";
|
|
@@ -19039,7 +19039,7 @@ function Header2({
|
|
|
19039
19039
|
),
|
|
19040
19040
|
children: [
|
|
19041
19041
|
/* @__PURE__ */ jsxs("div", { className: "relative flex grow basis-0 items-center", children: [
|
|
19042
|
-
/* @__PURE__ */ jsxs(
|
|
19042
|
+
/* @__PURE__ */ jsxs(Link14, { href: "/", "aria-label": "Home page", className: "flex items-center justify-between", children: [
|
|
19043
19043
|
!hideLogo && (altLogo ?? /* @__PURE__ */ jsx(Logo, { className: "h-12 w-auto lg:h-14" })),
|
|
19044
19044
|
!hideDescriptor && (altDescriptor ?? /* @__PURE__ */ jsx(Heading, { level: 2, size: 6, className: "ml-6", children: sitename }))
|
|
19045
19045
|
] }),
|
|
@@ -20280,7 +20280,7 @@ function MainNavigation({ navigation }) {
|
|
|
20280
20280
|
}
|
|
20281
20281
|
function TopLevel({ title, href }) {
|
|
20282
20282
|
return /* @__PURE__ */ jsx(
|
|
20283
|
-
|
|
20283
|
+
Link14,
|
|
20284
20284
|
{
|
|
20285
20285
|
href,
|
|
20286
20286
|
className: cn(
|
|
@@ -20332,7 +20332,7 @@ function MegaMenu({ title, href, links }) {
|
|
|
20332
20332
|
className: "absolute inset-x-0 top-0 -z-10 pt-14 shadow transition data-[closed]:-translate-y-1 data-[closed]:opacity-0 data-[enter]:duration-200 data-[enter]:ease-out data-[leave]:duration-150 data-[leave]:ease-in dark:shadow-black/40",
|
|
20333
20333
|
children: /* @__PURE__ */ jsxs("div", { className: "mx-auto grid bg-white dark:bg-grey-900", children: [
|
|
20334
20334
|
/* @__PURE__ */ jsxs(
|
|
20335
|
-
|
|
20335
|
+
Link14,
|
|
20336
20336
|
{
|
|
20337
20337
|
href,
|
|
20338
20338
|
className: "group flex items-center px-8 py-8 text-xl font-bold text-primary-800 hover:bg-primary-800/10 dark:text-primary-200 dark:hover:bg-primary-200/10",
|
|
@@ -20353,7 +20353,7 @@ function MegaMenu({ title, href, links }) {
|
|
|
20353
20353
|
"focus-within:rounded-sm focus-within:outline focus-within:outline-inherit"
|
|
20354
20354
|
),
|
|
20355
20355
|
children: /* @__PURE__ */ jsx("h3", { className: "text-base font-semibold text-grey-900 dark:text-grey-100", children: /* @__PURE__ */ jsxs(
|
|
20356
|
-
|
|
20356
|
+
Link14,
|
|
20357
20357
|
{
|
|
20358
20358
|
href: item.href,
|
|
20359
20359
|
className: cn(
|
|
@@ -20775,7 +20775,7 @@ function MultiLevelPushMenu({
|
|
|
20775
20775
|
{
|
|
20776
20776
|
className: "divide-y divide-grey-200 overflow-hidden bg-white ring-1 ring-grey-200",
|
|
20777
20777
|
children: item.href && !item.links?.length ? /* @__PURE__ */ jsx(
|
|
20778
|
-
|
|
20778
|
+
Link14,
|
|
20779
20779
|
{
|
|
20780
20780
|
href: item.href,
|
|
20781
20781
|
onClick: (e) => handleItemClick(item, e),
|
|
@@ -20870,7 +20870,7 @@ function MobileHeader({
|
|
|
20870
20870
|
/* @__PURE__ */ jsx(Icons.menu, { "aria-hidden": "true" })
|
|
20871
20871
|
] }),
|
|
20872
20872
|
/* @__PURE__ */ jsx("div", { className: "relative flex items-center", children: /* @__PURE__ */ jsxs(
|
|
20873
|
-
|
|
20873
|
+
Link14,
|
|
20874
20874
|
{
|
|
20875
20875
|
href: "/",
|
|
20876
20876
|
"aria-label": "Home page",
|
|
@@ -28995,7 +28995,7 @@ function NavigationLink({
|
|
|
28995
28995
|
}) {
|
|
28996
28996
|
const pathname = usePathname();
|
|
28997
28997
|
return /* @__PURE__ */ jsx(
|
|
28998
|
-
|
|
28998
|
+
Link14,
|
|
28999
28999
|
{
|
|
29000
29000
|
href,
|
|
29001
29001
|
onClick,
|
|
@@ -29013,6 +29013,8 @@ function NavigationMenu({
|
|
|
29013
29013
|
className,
|
|
29014
29014
|
children,
|
|
29015
29015
|
viewport = true,
|
|
29016
|
+
delayDuration,
|
|
29017
|
+
skipDelayDuration,
|
|
29016
29018
|
...props
|
|
29017
29019
|
}) {
|
|
29018
29020
|
return /* @__PURE__ */ jsxs(
|
|
@@ -29024,6 +29026,8 @@ function NavigationMenu({
|
|
|
29024
29026
|
"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center",
|
|
29025
29027
|
className
|
|
29026
29028
|
),
|
|
29029
|
+
delayDuration,
|
|
29030
|
+
skipDelayDuration,
|
|
29027
29031
|
...props,
|
|
29028
29032
|
children: [
|
|
29029
29033
|
children,
|
|
@@ -29158,13 +29162,263 @@ function NavigationMenuIndicator({
|
|
|
29158
29162
|
}
|
|
29159
29163
|
);
|
|
29160
29164
|
}
|
|
29165
|
+
var PANEL_CLOSE_DELAY_MS = 220;
|
|
29166
|
+
var DEFAULT_TRIGGER_ACTIVE_CLASS_NAME = "hover:bg-primary-800/10 hover:text-primary-800 focus:bg-primary-800/10 focus:text-primary-800 data-[state=open]:bg-primary-800/10 data-[state=open]:text-primary-800 dark:hover:bg-primary-200/10 dark:hover:text-primary-200 dark:focus:bg-primary-200/10 dark:focus:text-primary-200 dark:data-[state=open]:bg-primary-200/10 dark:data-[state=open]:text-primary-200";
|
|
29167
|
+
var DEFAULT_TRIGGER_ACTIVE_BORDER_CLASS_NAME = "hover:before:bg-primary-800/10 hover:after:bg-primary-800/10 focus:before:bg-primary-800/10 focus:after:bg-primary-800/10 data-[state=open]:before:bg-primary-800/10 dark:hover:before:bg-primary-200/10 dark:hover:after:bg-primary-200/10 dark:focus:before:bg-primary-200/10 dark:focus:after:bg-primary-200/10 dark:data-[state=open]:before:bg-primary-200/10";
|
|
29168
|
+
function TopLevelItem({
|
|
29169
|
+
href = "#",
|
|
29170
|
+
title,
|
|
29171
|
+
syncBorderToSurface,
|
|
29172
|
+
triggerActiveClassName,
|
|
29173
|
+
triggerActiveBorderClassName
|
|
29174
|
+
}) {
|
|
29175
|
+
return /* @__PURE__ */ jsx(NavigationMenuItem, { className: "shrink-0", children: /* @__PURE__ */ jsx(
|
|
29176
|
+
NavigationMenuLink,
|
|
29177
|
+
{
|
|
29178
|
+
asChild: true,
|
|
29179
|
+
className: cn(
|
|
29180
|
+
"relative inline-flex min-h-14 h-auto w-auto flex-row items-center justify-start gap-x-1 rounded-none bg-transparent p-4 text-base leading-6 font-bold text-grey-800 transition dark:text-grey-100 lg:px-8",
|
|
29181
|
+
triggerActiveClassName ?? DEFAULT_TRIGGER_ACTIVE_CLASS_NAME,
|
|
29182
|
+
syncBorderToSurface && "before:absolute before:inset-x-0 before:top-0 before:h-px before:bg-transparent after:absolute after:inset-x-0 after:bottom-0 after:h-px after:bg-transparent",
|
|
29183
|
+
syncBorderToSurface && (triggerActiveBorderClassName ?? DEFAULT_TRIGGER_ACTIVE_BORDER_CLASS_NAME)
|
|
29184
|
+
),
|
|
29185
|
+
children: /* @__PURE__ */ jsx(Link14, { href, children: title })
|
|
29186
|
+
}
|
|
29187
|
+
) });
|
|
29188
|
+
}
|
|
29189
|
+
function FeaturedSectionLink({ href = "#", title }) {
|
|
29190
|
+
return /* @__PURE__ */ jsxs(
|
|
29191
|
+
Link14,
|
|
29192
|
+
{
|
|
29193
|
+
href,
|
|
29194
|
+
className: "group relative flex items-center px-8 py-8 text-xl font-bold whitespace-normal text-primary-800 hover:bg-primary-800/10 dark:text-primary-200 dark:hover:bg-primary-200/10",
|
|
29195
|
+
children: [
|
|
29196
|
+
/* @__PURE__ */ jsx("span", { "aria-hidden": "true", className: "absolute inset-0" }),
|
|
29197
|
+
title,
|
|
29198
|
+
/* @__PURE__ */ jsx(Icons.east, { className: "ml-4 h-6 w-6 transform transition-transform duration-300 ease-in-out group-hover:translate-x-1" })
|
|
29199
|
+
]
|
|
29200
|
+
}
|
|
29201
|
+
);
|
|
29202
|
+
}
|
|
29203
|
+
function SectionLink({ link }) {
|
|
29204
|
+
return /* @__PURE__ */ jsx(
|
|
29205
|
+
NavigationMenuLink,
|
|
29206
|
+
{
|
|
29207
|
+
asChild: true,
|
|
29208
|
+
className: cn(
|
|
29209
|
+
"relative mx-2 rounded-none border-t border-grey-200 bg-white p-4 hover:bg-primary-800/10 hover:font-bold hover:text-primary-800 dark:border-grey-700 dark:bg-grey-900 dark:hover:bg-primary-200/10 dark:hover:text-primary-200",
|
|
29210
|
+
"[&:nth-last-child(-n+3)]:border-b",
|
|
29211
|
+
"whitespace-normal",
|
|
29212
|
+
"focus-within:rounded-sm focus-within:outline focus-within:outline-inherit"
|
|
29213
|
+
),
|
|
29214
|
+
children: /* @__PURE__ */ jsxs(Link14, { href: link.href, className: "outline-none", children: [
|
|
29215
|
+
/* @__PURE__ */ jsx("span", { "aria-hidden": "true", className: "absolute inset-0" }),
|
|
29216
|
+
/* @__PURE__ */ jsx("span", { className: "text-base font-semibold text-grey-900 dark:text-grey-100", children: link.title })
|
|
29217
|
+
] })
|
|
29218
|
+
}
|
|
29219
|
+
);
|
|
29220
|
+
}
|
|
29221
|
+
function MegaNavigationItem({
|
|
29222
|
+
section,
|
|
29223
|
+
fullBleed,
|
|
29224
|
+
panelMetrics,
|
|
29225
|
+
onOpenIntent,
|
|
29226
|
+
dropdownBackgroundClassName,
|
|
29227
|
+
syncBorderToSurface,
|
|
29228
|
+
triggerActiveClassName,
|
|
29229
|
+
triggerActiveBorderClassName
|
|
29230
|
+
}) {
|
|
29231
|
+
if (!section.links?.length) {
|
|
29232
|
+
return /* @__PURE__ */ jsx(
|
|
29233
|
+
TopLevelItem,
|
|
29234
|
+
{
|
|
29235
|
+
href: section.href,
|
|
29236
|
+
title: section.title,
|
|
29237
|
+
syncBorderToSurface,
|
|
29238
|
+
triggerActiveClassName,
|
|
29239
|
+
triggerActiveBorderClassName
|
|
29240
|
+
}
|
|
29241
|
+
);
|
|
29242
|
+
}
|
|
29243
|
+
return /* @__PURE__ */ jsxs(NavigationMenuItem, { className: "static shrink-0", children: [
|
|
29244
|
+
/* @__PURE__ */ jsx(
|
|
29245
|
+
NavigationMenuTrigger,
|
|
29246
|
+
{
|
|
29247
|
+
className: cn(
|
|
29248
|
+
"relative mb-0 min-h-14 h-auto w-auto justify-start rounded-none bg-transparent p-4 text-base leading-6 font-bold text-grey-800 lg:px-8 dark:text-grey-100 [&_svg]:h-6 [&_svg]:w-6",
|
|
29249
|
+
triggerActiveClassName ?? DEFAULT_TRIGGER_ACTIVE_CLASS_NAME,
|
|
29250
|
+
"data-[state=open]:shadow-[inset_0_-2px_0_0_currentColor]",
|
|
29251
|
+
syncBorderToSurface && "before:absolute before:inset-x-0 before:top-0 before:h-px before:bg-transparent after:absolute after:inset-x-0 after:bottom-0 after:h-px after:bg-transparent",
|
|
29252
|
+
syncBorderToSurface && (triggerActiveBorderClassName ?? DEFAULT_TRIGGER_ACTIVE_BORDER_CLASS_NAME)
|
|
29253
|
+
),
|
|
29254
|
+
onPointerEnter: onOpenIntent,
|
|
29255
|
+
children: section.title
|
|
29256
|
+
}
|
|
29257
|
+
),
|
|
29258
|
+
/* @__PURE__ */ jsx(
|
|
29259
|
+
NavigationMenuContent,
|
|
29260
|
+
{
|
|
29261
|
+
className: cn(
|
|
29262
|
+
"left-0 w-full p-0 pr-0 whitespace-normal md:w-full group-data-[viewport=false]/navigation-menu:mt-0 group-data-[viewport=false]/navigation-menu:rounded-none group-data-[viewport=false]/navigation-menu:border-0 group-data-[viewport=false]/navigation-menu:bg-transparent group-data-[viewport=false]/navigation-menu:shadow-none"
|
|
29263
|
+
),
|
|
29264
|
+
style: fullBleed && panelMetrics ? {
|
|
29265
|
+
left: `${-panelMetrics.left}px`,
|
|
29266
|
+
width: `${panelMetrics.viewportWidth}px`
|
|
29267
|
+
} : void 0,
|
|
29268
|
+
onPointerEnter: onOpenIntent,
|
|
29269
|
+
children: /* @__PURE__ */ jsx(
|
|
29270
|
+
"div",
|
|
29271
|
+
{
|
|
29272
|
+
className: cn(
|
|
29273
|
+
"w-full shadow dark:shadow-black/40",
|
|
29274
|
+
dropdownBackgroundClassName ?? "bg-white dark:bg-grey-900"
|
|
29275
|
+
),
|
|
29276
|
+
children: /* @__PURE__ */ jsxs(
|
|
29277
|
+
"div",
|
|
29278
|
+
{
|
|
29279
|
+
className: "grid w-full",
|
|
29280
|
+
style: fullBleed && panelMetrics ? {
|
|
29281
|
+
width: `${panelMetrics.width}px`,
|
|
29282
|
+
marginLeft: "auto",
|
|
29283
|
+
marginRight: "auto"
|
|
29284
|
+
} : void 0,
|
|
29285
|
+
children: [
|
|
29286
|
+
/* @__PURE__ */ jsx(FeaturedSectionLink, { href: section.href, title: section.title }),
|
|
29287
|
+
/* @__PURE__ */ jsx("div", { className: "grid grid-cols-1 overflow-hidden px-4 pb-12 sm:grid-cols-2 lg:grid-cols-3", children: section.links.map((link, index) => /* @__PURE__ */ jsx(SectionLink, { link }, `${link.title}-${link.href}-${index}`)) })
|
|
29288
|
+
]
|
|
29289
|
+
}
|
|
29290
|
+
)
|
|
29291
|
+
}
|
|
29292
|
+
)
|
|
29293
|
+
}
|
|
29294
|
+
)
|
|
29295
|
+
] });
|
|
29296
|
+
}
|
|
29297
|
+
function NavigationMenuMainNavigation({
|
|
29298
|
+
navigation,
|
|
29299
|
+
id: id3 = "nsw-main-navigation",
|
|
29300
|
+
className,
|
|
29301
|
+
responsive = true,
|
|
29302
|
+
sticky = true,
|
|
29303
|
+
fullBleed = false,
|
|
29304
|
+
backgroundClassName,
|
|
29305
|
+
dropdownBackgroundClassName,
|
|
29306
|
+
borderClassName,
|
|
29307
|
+
triggerActiveClassName,
|
|
29308
|
+
triggerActiveBorderClassName,
|
|
29309
|
+
showTopBorder = false,
|
|
29310
|
+
showBottomBorder = false
|
|
29311
|
+
}) {
|
|
29312
|
+
const headerHeight = useSelectorHeight();
|
|
29313
|
+
const containerRef = React5.useRef(null);
|
|
29314
|
+
const closeTimerRef = React5.useRef(null);
|
|
29315
|
+
const [value, setValue] = React5.useState("");
|
|
29316
|
+
const syncBorderToSurface = showTopBorder || showBottomBorder;
|
|
29317
|
+
const [panelMetrics, setPanelMetrics] = React5.useState({
|
|
29318
|
+
left: 0,
|
|
29319
|
+
width: 0,
|
|
29320
|
+
viewportWidth: 0
|
|
29321
|
+
});
|
|
29322
|
+
const cancelCloseTimer = React5.useCallback(() => {
|
|
29323
|
+
if (closeTimerRef.current) {
|
|
29324
|
+
window.clearTimeout(closeTimerRef.current);
|
|
29325
|
+
closeTimerRef.current = null;
|
|
29326
|
+
}
|
|
29327
|
+
}, []);
|
|
29328
|
+
React5.useLayoutEffect(() => {
|
|
29329
|
+
const element = containerRef.current;
|
|
29330
|
+
if (!element) return;
|
|
29331
|
+
const updateInsets = () => {
|
|
29332
|
+
const rect = element.getBoundingClientRect();
|
|
29333
|
+
setPanelMetrics({
|
|
29334
|
+
left: Math.max(0, rect.left),
|
|
29335
|
+
width: rect.width,
|
|
29336
|
+
viewportWidth: window.innerWidth
|
|
29337
|
+
});
|
|
29338
|
+
};
|
|
29339
|
+
updateInsets();
|
|
29340
|
+
const resizeObserver = new ResizeObserver(() => {
|
|
29341
|
+
updateInsets();
|
|
29342
|
+
});
|
|
29343
|
+
resizeObserver.observe(element);
|
|
29344
|
+
window.addEventListener("resize", updateInsets);
|
|
29345
|
+
return () => {
|
|
29346
|
+
resizeObserver.disconnect();
|
|
29347
|
+
window.removeEventListener("resize", updateInsets);
|
|
29348
|
+
};
|
|
29349
|
+
}, []);
|
|
29350
|
+
React5.useEffect(() => {
|
|
29351
|
+
return () => {
|
|
29352
|
+
cancelCloseTimer();
|
|
29353
|
+
};
|
|
29354
|
+
}, [cancelCloseTimer]);
|
|
29355
|
+
const handleValueChange = React5.useCallback((nextValue) => {
|
|
29356
|
+
cancelCloseTimer();
|
|
29357
|
+
if (nextValue) {
|
|
29358
|
+
setValue(nextValue);
|
|
29359
|
+
return;
|
|
29360
|
+
}
|
|
29361
|
+
closeTimerRef.current = window.setTimeout(() => {
|
|
29362
|
+
setValue("");
|
|
29363
|
+
closeTimerRef.current = null;
|
|
29364
|
+
}, PANEL_CLOSE_DELAY_MS);
|
|
29365
|
+
}, [cancelCloseTimer]);
|
|
29366
|
+
return /* @__PURE__ */ jsx(
|
|
29367
|
+
"nav",
|
|
29368
|
+
{
|
|
29369
|
+
"aria-label": "Main Navigation",
|
|
29370
|
+
role: "navigation",
|
|
29371
|
+
id: id3,
|
|
29372
|
+
className: cn(
|
|
29373
|
+
"z-40 shadow-md shadow-grey-900/5 dark:shadow-none",
|
|
29374
|
+
backgroundClassName ?? "bg-grey-100 dark:bg-grey-900",
|
|
29375
|
+
(showTopBorder || showBottomBorder) && (borderClassName ?? "border-grey-200 dark:border-grey-800"),
|
|
29376
|
+
showTopBorder && "border-t",
|
|
29377
|
+
showBottomBorder && "border-b",
|
|
29378
|
+
responsive ? "hidden sm:px-6 lg:block lg:px-4" : "block",
|
|
29379
|
+
sticky && "sticky",
|
|
29380
|
+
className
|
|
29381
|
+
),
|
|
29382
|
+
style: sticky ? {
|
|
29383
|
+
top: `${headerHeight}px`,
|
|
29384
|
+
transition: "top 0.2s ease-in-out"
|
|
29385
|
+
} : void 0,
|
|
29386
|
+
children: /* @__PURE__ */ jsx("div", { ref: containerRef, className: "relative z-50 mx-auto flex items-center justify-between", children: /* @__PURE__ */ jsx(
|
|
29387
|
+
NavigationMenu,
|
|
29388
|
+
{
|
|
29389
|
+
"aria-label": "Main navigation menu",
|
|
29390
|
+
className: "w-full max-w-none justify-start",
|
|
29391
|
+
delayDuration: 0,
|
|
29392
|
+
skipDelayDuration: 0,
|
|
29393
|
+
onValueChange: handleValueChange,
|
|
29394
|
+
value,
|
|
29395
|
+
viewport: false,
|
|
29396
|
+
children: /* @__PURE__ */ jsx(NavigationMenuList, { className: "w-full gap-0 border-b-0", children: navigation.map((section) => /* @__PURE__ */ jsx(
|
|
29397
|
+
MegaNavigationItem,
|
|
29398
|
+
{
|
|
29399
|
+
section,
|
|
29400
|
+
fullBleed,
|
|
29401
|
+
panelMetrics,
|
|
29402
|
+
onOpenIntent: cancelCloseTimer,
|
|
29403
|
+
dropdownBackgroundClassName,
|
|
29404
|
+
syncBorderToSurface,
|
|
29405
|
+
triggerActiveClassName,
|
|
29406
|
+
triggerActiveBorderClassName
|
|
29407
|
+
},
|
|
29408
|
+
`${section.title}-${section.href ?? "section"}`
|
|
29409
|
+
)) })
|
|
29410
|
+
}
|
|
29411
|
+
) })
|
|
29412
|
+
}
|
|
29413
|
+
);
|
|
29414
|
+
}
|
|
29161
29415
|
function NotFound() {
|
|
29162
29416
|
return /* @__PURE__ */ jsx("div", { className: "max-w-2xl min-w-0 flex-auto px-4 py-16 lg:max-w-none lg:pr-0 lg:pl-8 xl:px-16", children: /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col items-center justify-center text-center", children: [
|
|
29163
29417
|
/* @__PURE__ */ jsx(Heading, { level: 1, size: 4, className: "font-display mb-4 font-medium", children: "404" }),
|
|
29164
29418
|
/* @__PURE__ */ jsx(Heading, { level: 2, size: 3, children: "Page not found" }),
|
|
29165
29419
|
/* @__PURE__ */ jsx(Text, { className: "mt-4", children: "Sorry, we couldn't find the page you're looking for." }),
|
|
29166
29420
|
/* @__PURE__ */ jsx(
|
|
29167
|
-
|
|
29421
|
+
Link14,
|
|
29168
29422
|
{
|
|
29169
29423
|
href: "/",
|
|
29170
29424
|
className: "mt-8 font-medium text-primary-800 underline decoration-current underline-offset-4 hover:bg-primary-800/10 hover:decoration-2",
|
|
@@ -29680,7 +29934,7 @@ function PrevNextLinksPageLink({
|
|
|
29680
29934
|
return /* @__PURE__ */ jsxs("div", { ...props, children: [
|
|
29681
29935
|
/* @__PURE__ */ jsx("dt", { className: "font-display text-sm font-medium text-slate-900 dark:text-white", children: dir === "next" ? "Next" : "Previous" }),
|
|
29682
29936
|
/* @__PURE__ */ jsx("dd", { className: "mt-1", children: /* @__PURE__ */ jsxs(
|
|
29683
|
-
|
|
29937
|
+
Link14,
|
|
29684
29938
|
{
|
|
29685
29939
|
href,
|
|
29686
29940
|
className: clsx13(
|
|
@@ -30808,7 +31062,7 @@ function SidebarLink({ link, pathname, onLinkClick, depth }) {
|
|
|
30808
31062
|
},
|
|
30809
31063
|
childLink.href
|
|
30810
31064
|
)) }) })
|
|
30811
|
-
] }) : /* @__PURE__ */ jsx(
|
|
31065
|
+
] }) : /* @__PURE__ */ jsx(Link14, { href: link.href, onClick: onLinkClick, className: baseLinkClasses, children: link.title }) });
|
|
30812
31066
|
}
|
|
30813
31067
|
function Slider({
|
|
30814
31068
|
className,
|
|
@@ -31137,7 +31391,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31137
31391
|
}
|
|
31138
31392
|
) : null,
|
|
31139
31393
|
/* @__PURE__ */ jsxs(
|
|
31140
|
-
|
|
31394
|
+
Link14,
|
|
31141
31395
|
{
|
|
31142
31396
|
href: step.href,
|
|
31143
31397
|
className: "group relative flex items-center",
|
|
@@ -31166,7 +31420,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31166
31420
|
}
|
|
31167
31421
|
) : null,
|
|
31168
31422
|
/* @__PURE__ */ jsxs(
|
|
31169
|
-
|
|
31423
|
+
Link14,
|
|
31170
31424
|
{
|
|
31171
31425
|
href: step.href,
|
|
31172
31426
|
"aria-current": "step",
|
|
@@ -31190,7 +31444,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31190
31444
|
}
|
|
31191
31445
|
) : null,
|
|
31192
31446
|
/* @__PURE__ */ jsxs(
|
|
31193
|
-
|
|
31447
|
+
Link14,
|
|
31194
31448
|
{
|
|
31195
31449
|
href: step.href,
|
|
31196
31450
|
className: "group relative flex items-center",
|
|
@@ -31213,7 +31467,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31213
31467
|
}
|
|
31214
31468
|
) : null,
|
|
31215
31469
|
/* @__PURE__ */ jsxs(
|
|
31216
|
-
|
|
31470
|
+
Link14,
|
|
31217
31471
|
{
|
|
31218
31472
|
href: step.href,
|
|
31219
31473
|
className: "group relative flex items-center",
|
|
@@ -31236,7 +31490,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31236
31490
|
}
|
|
31237
31491
|
) : null,
|
|
31238
31492
|
/* @__PURE__ */ jsxs(
|
|
31239
|
-
|
|
31493
|
+
Link14,
|
|
31240
31494
|
{
|
|
31241
31495
|
href: step.href,
|
|
31242
31496
|
className: "group relative flex items-center",
|
|
@@ -31259,7 +31513,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31259
31513
|
}
|
|
31260
31514
|
) : null,
|
|
31261
31515
|
/* @__PURE__ */ jsxs(
|
|
31262
|
-
|
|
31516
|
+
Link14,
|
|
31263
31517
|
{
|
|
31264
31518
|
href: step.href,
|
|
31265
31519
|
className: "group relative flex items-center",
|
|
@@ -31282,7 +31536,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31282
31536
|
}
|
|
31283
31537
|
) : null,
|
|
31284
31538
|
/* @__PURE__ */ jsxs(
|
|
31285
|
-
|
|
31539
|
+
Link14,
|
|
31286
31540
|
{
|
|
31287
31541
|
href: step.href,
|
|
31288
31542
|
className: "group relative flex items-center",
|
|
@@ -31305,7 +31559,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31305
31559
|
}
|
|
31306
31560
|
) : null,
|
|
31307
31561
|
/* @__PURE__ */ jsxs(
|
|
31308
|
-
|
|
31562
|
+
Link14,
|
|
31309
31563
|
{
|
|
31310
31564
|
href: step.href,
|
|
31311
31565
|
className: "group relative flex items-center",
|
|
@@ -31328,7 +31582,7 @@ var StepIndicator = React5.forwardRef(
|
|
|
31328
31582
|
}
|
|
31329
31583
|
) : null,
|
|
31330
31584
|
/* @__PURE__ */ jsxs(
|
|
31331
|
-
|
|
31585
|
+
Link14,
|
|
31332
31586
|
{
|
|
31333
31587
|
href: step.href,
|
|
31334
31588
|
className: "group relative flex items-center",
|
|
@@ -31627,7 +31881,7 @@ function TableOfContents({ tableOfContents }) {
|
|
|
31627
31881
|
),
|
|
31628
31882
|
children: tableOfContents.map((section) => /* @__PURE__ */ jsxs("li", { children: [
|
|
31629
31883
|
/* @__PURE__ */ jsx(
|
|
31630
|
-
|
|
31884
|
+
Link14,
|
|
31631
31885
|
{
|
|
31632
31886
|
href: `#${section.id}`,
|
|
31633
31887
|
prefetch: false,
|
|
@@ -31640,7 +31894,7 @@ function TableOfContents({ tableOfContents }) {
|
|
|
31640
31894
|
}
|
|
31641
31895
|
),
|
|
31642
31896
|
section.children.length > 0 && /* @__PURE__ */ jsx("ol", { role: "list", className: "mt-3 flex flex-col gap-2", children: section.children.map((subSection) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
31643
|
-
|
|
31897
|
+
Link14,
|
|
31644
31898
|
{
|
|
31645
31899
|
href: `#${subSection.id}`,
|
|
31646
31900
|
prefetch: false,
|
|
@@ -34983,6 +35237,6 @@ var languages = [
|
|
|
34983
35237
|
"html"
|
|
34984
35238
|
];
|
|
34985
35239
|
|
|
34986
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Action2 as Action, Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AreaChart, Artifact, ArtifactAction, ArtifactActions, ArtifactContent, ArtifactDescription, ArtifactHeader, ArtifactTitle, AspectRatio, AuthLayout, AvailableChartColors, Avatar, AvatarFallback, AvatarImage, Badge, BadgeButton, BarChart, BarList, BaseColorSwatches, Branch, BranchMessages, BranchNext, BranchPage, BranchPrevious, BranchSelector, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, Button2 as Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, ChainOfThought, ChainOfThoughtContent, ChainOfThoughtHeader, ChainOfThoughtImage, ChainOfThoughtSearchResult, ChainOfThoughtSearchResults, ChainOfThoughtStep, ChartContainer, ChartLegend3 as ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip3 as ChartTooltip, ChartTooltipContent, Checkbox, CheckboxSmall, Code, CodeBlock, CodeBlockCopyButton, CodeDemo, CodeHighlight, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, ColorCard, ColorPairingTool, ColorSwatches, ColourScale, ComboChart, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Context, ContextCacheUsage, ContextContent, ContextContentBody, ContextContentFooter, ContextContentHeader, ContextInputUsage, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextOutputUsage, ContextReasoningUsage, ContextTrigger, Conversation, ConversationContent, ConversationEmptyState, ConversationScrollButton, DataTable, DataTableColumnHeader, DataTableFacetedFilter, DataTablePagination, DataTableToolbar, DataTableViewOptions, Description4 as Description, DescriptionDetails, DescriptionList, DescriptionTerm, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DynamicFavicon, ErrorMessage, ExpandableSearch, ExpandableSearchField, Field2 as Field, FieldGroup, FieldLabel, Fieldset2 as Fieldset, Footer, FooterAcknowledgement, FooterLegalLinks, FooterSmallPrint, FooterSocialLink, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FormatToggle, GenerateInterpolatedColors, Header2 as Header, Heading, HeroBannerSupportingImage, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Image4 as Image, InlineCitation, InlineCitationCard, InlineCitationCardBody, InlineCitationCardTrigger, InlineCitationCarousel, InlineCitationCarouselContent, InlineCitationCarouselHeader, InlineCitationCarouselIndex, InlineCitationCarouselItem, InlineCitationSource, InlineCitationText, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label5 as Label, Legend6 as Legend, LineChart, Link, _List as List, Listbox2 as Listbox, ListboxDescription, ListboxLabel, ListboxOption2 as ListboxOption, Loader, Loading, Logo, MainNavigation, Masthead, MegaMenu, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MessageContent, MobileHeader, MobileSearch, MultiLevelPushMenu, NSWCard, NSWCardArrow, NSWCardDescription, NSWCardIcon, NSWCardImg, NSWCardTitle, Navbar, NavbarDivider, NavbarItem, NavbarLabel, NavbarSection, NavbarSpacer, Navigation, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NotFound, OpenIn, OpenInChatGPT, OpenInClaude, OpenInContent, OpenInScira, OpenInT3, OpenInTrigger, OpenInv0, PageHeading, Pagination, PaginationGap, PaginationList, PaginationNext, PaginationPage, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreWithCopy, PrevNextLinks, PrevNextLinksPageLink, Progress, ProgressBar, ProgressCircle, PromptInput, PromptInputActionAddAttachments, PromptInputActionMenu, PromptInputActionMenuContent, PromptInputActionMenuItem, PromptInputActionMenuTrigger, PromptInputAttachment, PromptInputAttachments, PromptInputBody, PromptInputButton, PromptInputSubmit, PromptInputTextarea, PromptInputToolbar, PromptInputTools, Prose, RadioGroup2 as RadioGroup, RadioGroupItem, Reasoning, ReasoningContent, ReasoningTrigger, ResizableHandle, ResizablePanel, ResizablePanelGroup, Response, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator4 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLink, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarNavigation, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteSearch, Skeleton, Slider, Social, Source, Sources, SourcesContent, SourcesTrigger, SparkAreaChart, SparkBarChart, SparkLineChart, Spinner, StepIndicator, StepNavigation, Strong, SubmitButton, Suggestion, Suggestions, Switch2 as Switch, SwitchField, SwitchGroup, TabNavigation, TabNavigationLink, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, TableRow, Tabs2 as Tabs, TabsContent, TabsList, TabsTrigger, Task, TaskContent, TaskItem, TaskItemFile, TaskTrigger, Text, TextLink, Textarea, ThemeColorPalette, ThemeProvider, ThemeSelector, ThemeSwitcher, Toaster, TocContext, TocProvider, Toggle, ToggleGroup, ToggleGroupItem, Tool, ToolContent, ToolHeader, ToolInput, ToolOutput, Tooltip5 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopLevel, TouchTarget, Tracker, Tooltip3 as TremorTooltip, ViewToggle, WebPreview, WebPreviewBody, WebPreviewNavigation, WebPreviewUrl, Wrapper, aboriginal, addStartStopToColorArray, allPalettes, badgeVariants, brand, buttonVariants, camelCase, chartColors, cn, colorDataArray, colorThemes, colors, constructCategoryColors, createColorArray, createColorData, createFormStore, darkenColor, diverging, domToSimple, focusInput, focusRing, generateColorThemes, generateDataVisColors, getColorClassName, getColorValue, getHeadings, getNodeText, getSurroundingColors, getYAxisDomain, hasErrorInput, hasOnlyOneValueForKey, humaniseVariant, interpolateColors, isLightColor, kebabCase, languages, lightenColor, navigationMenuTriggerStyle, oklchConverter, progressBarVariants, renderColorOutput, renderColorOutputToDTFM, semantic, sequential, shades, themeIndices, themeTokens, toggleVariants, truncate, useActiveSectionObserver, useDisableToc, useFormField, useIsMobile, useOnWindowResize, usePageHeadings, usePromptInputAttachments, useSelectorHeight, useSidebar, useStickyOffset, useToc };
|
|
35240
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Action2 as Action, Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AreaChart, Artifact, ArtifactAction, ArtifactActions, ArtifactContent, ArtifactDescription, ArtifactHeader, ArtifactTitle, AspectRatio, AuthLayout, AvailableChartColors, Avatar, AvatarFallback, AvatarImage, Badge, BadgeButton, BarChart, BarList, BaseColorSwatches, Branch, BranchMessages, BranchNext, BranchPage, BranchPrevious, BranchSelector, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, Button2 as Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, ChainOfThought, ChainOfThoughtContent, ChainOfThoughtHeader, ChainOfThoughtImage, ChainOfThoughtSearchResult, ChainOfThoughtSearchResults, ChainOfThoughtStep, ChartContainer, ChartLegend3 as ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip3 as ChartTooltip, ChartTooltipContent, Checkbox, CheckboxSmall, Code, CodeBlock, CodeBlockCopyButton, CodeDemo, CodeHighlight, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, ColorCard, ColorPairingTool, ColorSwatches, ColourScale, ComboChart, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Context, ContextCacheUsage, ContextContent, ContextContentBody, ContextContentFooter, ContextContentHeader, ContextInputUsage, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextOutputUsage, ContextReasoningUsage, ContextTrigger, Conversation, ConversationContent, ConversationEmptyState, ConversationScrollButton, DataTable, DataTableColumnHeader, DataTableFacetedFilter, DataTablePagination, DataTableToolbar, DataTableViewOptions, Description4 as Description, DescriptionDetails, DescriptionList, DescriptionTerm, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DynamicFavicon, ErrorMessage, ExpandableSearch, ExpandableSearchField, Field2 as Field, FieldGroup, FieldLabel, Fieldset2 as Fieldset, Footer, FooterAcknowledgement, FooterLegalLinks, FooterSmallPrint, FooterSocialLink, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FormatToggle, GenerateInterpolatedColors, Header2 as Header, Heading, HeroBannerSupportingImage, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Image4 as Image, InlineCitation, InlineCitationCard, InlineCitationCardBody, InlineCitationCardTrigger, InlineCitationCarousel, InlineCitationCarouselContent, InlineCitationCarouselHeader, InlineCitationCarouselIndex, InlineCitationCarouselItem, InlineCitationSource, InlineCitationText, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label5 as Label, Legend6 as Legend, LineChart, Link, _List as List, Listbox2 as Listbox, ListboxDescription, ListboxLabel, ListboxOption2 as ListboxOption, Loader, Loading, Logo, MainNavigation, Masthead, MegaMenu, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MessageContent, MobileHeader, MobileSearch, MultiLevelPushMenu, NSWCard, NSWCardArrow, NSWCardDescription, NSWCardIcon, NSWCardImg, NSWCardTitle, Navbar, NavbarDivider, NavbarItem, NavbarLabel, NavbarSection, NavbarSpacer, Navigation, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuMainNavigation, NavigationMenuTrigger, NavigationMenuViewport, NotFound, OpenIn, OpenInChatGPT, OpenInClaude, OpenInContent, OpenInScira, OpenInT3, OpenInTrigger, OpenInv0, PageHeading, Pagination, PaginationGap, PaginationList, PaginationNext, PaginationPage, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreWithCopy, PrevNextLinks, PrevNextLinksPageLink, Progress, ProgressBar, ProgressCircle, PromptInput, PromptInputActionAddAttachments, PromptInputActionMenu, PromptInputActionMenuContent, PromptInputActionMenuItem, PromptInputActionMenuTrigger, PromptInputAttachment, PromptInputAttachments, PromptInputBody, PromptInputButton, PromptInputSubmit, PromptInputTextarea, PromptInputToolbar, PromptInputTools, Prose, RadioGroup2 as RadioGroup, RadioGroupItem, Reasoning, ReasoningContent, ReasoningTrigger, ResizableHandle, ResizablePanel, ResizablePanelGroup, Response, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator4 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLink, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarNavigation, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteSearch, Skeleton, Slider, Social, Source, Sources, SourcesContent, SourcesTrigger, SparkAreaChart, SparkBarChart, SparkLineChart, Spinner, StepIndicator, StepNavigation, Strong, SubmitButton, Suggestion, Suggestions, Switch2 as Switch, SwitchField, SwitchGroup, TabNavigation, TabNavigationLink, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, TableRow, Tabs2 as Tabs, TabsContent, TabsList, TabsTrigger, Task, TaskContent, TaskItem, TaskItemFile, TaskTrigger, Text, TextLink, Textarea, ThemeColorPalette, ThemeProvider, ThemeSelector, ThemeSwitcher, Toaster, TocContext, TocProvider, Toggle, ToggleGroup, ToggleGroupItem, Tool, ToolContent, ToolHeader, ToolInput, ToolOutput, Tooltip5 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopLevel, TouchTarget, Tracker, Tooltip3 as TremorTooltip, ViewToggle, WebPreview, WebPreviewBody, WebPreviewNavigation, WebPreviewUrl, Wrapper, aboriginal, addStartStopToColorArray, allPalettes, badgeVariants, brand, buttonVariants, camelCase, chartColors, cn, colorDataArray, colorThemes, colors, constructCategoryColors, createColorArray, createColorData, createFormStore, darkenColor, diverging, domToSimple, focusInput, focusRing, generateColorThemes, generateDataVisColors, getColorClassName, getColorValue, getHeadings, getNodeText, getSurroundingColors, getYAxisDomain, hasErrorInput, hasOnlyOneValueForKey, humaniseVariant, interpolateColors, isLightColor, kebabCase, languages, lightenColor, navigationMenuTriggerStyle, oklchConverter, progressBarVariants, renderColorOutput, renderColorOutputToDTFM, semantic, sequential, shades, themeIndices, themeTokens, toggleVariants, truncate, useActiveSectionObserver, useDisableToc, useFormField, useIsMobile, useOnWindowResize, usePageHeadings, usePromptInputAttachments, useSelectorHeight, useSidebar, useStickyOffset, useToc };
|
|
34987
35241
|
//# sourceMappingURL=index.js.map
|
|
34988
35242
|
//# sourceMappingURL=index.js.map
|