@nswds/app 1.55.0 → 1.56.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/index.js CHANGED
@@ -16407,7 +16407,13 @@ function NavigationMenuList({
16407
16407
  NavigationMenuPrimitive.List,
16408
16408
  {
16409
16409
  "data-slot": "navigation-menu-list",
16410
- className: cn("group flex flex-1 list-none items-center justify-center gap-1", className),
16410
+ className: cn(
16411
+ "group flex flex-1 list-none items-center justify-center gap-1",
16412
+ "flex items-center justify-start border-b whitespace-nowrap [scrollbar-width:none] [&::-webkit-scrollbar]:hidden",
16413
+ // border color
16414
+ "border-gray-200 dark:border-gray-800",
16415
+ className
16416
+ ),
16411
16417
  ...props
16412
16418
  }
16413
16419
  );
@@ -16426,7 +16432,7 @@ function NavigationMenuItem({
16426
16432
  );
16427
16433
  }
16428
16434
  var navigationMenuTriggerStyle = cva(
16429
- "group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium hover:bg-primary-800/10 hover:text-accent-foreground focus:bg-primary-800/10 focus:text-accent-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=open]:hover:bg-primary-800/10 data-[state=open]:text-accent-foreground data-[state=open]:focus:bg-primary-800/10 data-[state=open]:bg-primary-800/10 focus-visible:ring-ring/50 outline-none transition-[color,box-shadow] focus-visible:ring-[3px] focus-visible:outline-1"
16435
+ "mb-2 group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium hover:bg-primary-800/10 hover:text-accent-foreground focus:bg-primary-800/10 focus:text-accent-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=open]:hover:bg-primary-800/10 data-[state=open]:text-accent-foreground data-[state=open]:focus:bg-primary-800/10 data-[state=open]:bg-primary-800/10 focus-visible:ring-ring/50 outline-none transition-[color,box-shadow] focus-visible:ring-[3px] focus-visible:outline-1"
16430
16436
  );
16431
16437
  function NavigationMenuTrigger({
16432
16438
  className,
@@ -16445,7 +16451,7 @@ function NavigationMenuTrigger({
16445
16451
  /* @__PURE__ */ jsx(
16446
16452
  Icons.chevron_down,
16447
16453
  {
16448
- className: "relative top-[1px] ml-1 size-3 transition duration-300 group-data-[state=open]:rotate-180",
16454
+ className: "relative top-[1px] ml-1 size-5 transition duration-300 group-data-[state=open]:rotate-180",
16449
16455
  "aria-hidden": "true"
16450
16456
  }
16451
16457
  )