@bubo-squared/ui-framework 0.2.30 → 0.2.32

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.cjs CHANGED
@@ -123,7 +123,7 @@ function spawnRipple(target, clientX, clientY, options = {}) {
123
123
  }
124
124
 
125
125
  // src/components/ui/button.tsx
126
- var React = require("react");
126
+ var React = __toESM(require("react"), 1);
127
127
  var import_react_slot = require("@radix-ui/react-slot");
128
128
  var import_class_variance_authority = require("class-variance-authority");
129
129
  var import_jsx_runtime2 = require("react/jsx-runtime");
@@ -154,17 +154,12 @@ var buttonVariants = (0, import_class_variance_authority.cva)(
154
154
  }
155
155
  }
156
156
  );
157
- function Button({
158
- className,
159
- variant = "default",
160
- size = "default",
161
- asChild = false,
162
- ...props
163
- }) {
157
+ var Button = React.forwardRef(({ className, variant = "default", size = "default", asChild = false, ...props }, ref) => {
164
158
  const Comp = asChild ? import_react_slot.Slot : "button";
165
159
  return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
166
160
  Comp,
167
161
  {
162
+ ref,
168
163
  "data-slot": "button",
169
164
  "data-variant": variant,
170
165
  "data-size": size,
@@ -172,7 +167,8 @@ function Button({
172
167
  ...props
173
168
  }
174
169
  );
175
- }
170
+ });
171
+ Button.displayName = "Button";
176
172
 
177
173
  // src/components/Buttons/Button.tsx
178
174
  var import_jsx_runtime3 = require("react/jsx-runtime");
@@ -789,26 +785,25 @@ var import_react_slot4 = require("@radix-ui/react-slot");
789
785
  var import_class_variance_authority8 = require("class-variance-authority");
790
786
  var import_jsx_runtime12 = require("react/jsx-runtime");
791
787
  var badgeVariants = (0, import_class_variance_authority8.cva)(
792
- "inline-flex items-center justify-center rounded-4 leading-none whitespace-nowrap gap-1 py-0",
788
+ "inline-flex items-center justify-center rounded-full leading-none whitespace-nowrap gap-1 py-0 font-normal",
793
789
  {
794
790
  variants: {
795
791
  size: {
796
- sm: "px-1.5 paragraph-sm",
797
- md: "px-2 paragraph-md",
798
- lg: "px-2 subtitle",
799
- xl: "px-2.5 h6-title"
792
+ sm: "px-2.5 paragraph-sm",
793
+ md: "px-3 paragraph-md",
794
+ lg: "px-3.5 subtitle",
795
+ xl: "px-4 h6-title"
800
796
  },
801
797
  variant: {
802
- primary: "bg-(--background-secondary) text-primary",
803
- secondary: "bg-(--background-primary) border-1 border-primary text-primary",
798
+ primary: "bg-(--color-primary) text-(--color-primary-inverse)",
799
+ secondary: "bg-(--background-secondary) text-primary",
800
+ outline: "bg-(--background-primary) text-primary shadow-[inset_0_0_0_1px_var(--border-secondary)]",
804
801
  active: "bg-ac-lilac text-badge-black",
805
802
  informal: "bg-ac-neon-blue text-badge-black",
806
803
  success: "bg-ac-neon-green text-badge-black",
807
804
  warning: "bg-ac-light-orange text-badge-black",
808
- error: "bg-s-error-300 text-badge-black",
809
- disabled: "bg-(--background-primary-disabled) border-1 border-primary-disabled text-primary-disabled",
810
- "double-default": "bg-(--background-secondary) text-primary",
811
- "double-current": "bg-color-ac-lilac text-badge-black"
805
+ error: "bg-(--color-s-error-500)/15 text-error",
806
+ disabled: "bg-(--background-primary-disabled) shadow-[inset_0_0_0_1px_var(--color-primary-disabled)] text-primary-disabled"
812
807
  }
813
808
  },
814
809
  defaultVariants: {
@@ -822,25 +817,20 @@ var Badge = React10.forwardRef(
822
817
  const {
823
818
  asChild = false,
824
819
  label,
825
- value,
826
820
  size = "sm",
827
821
  variant = "primary",
828
822
  className,
829
823
  ...rest
830
824
  } = props;
831
- const Comp = asChild ? import_react_slot4.Slot : "div";
832
- const hasValue = typeof value === "string" ? value.trim() !== "" : value != null;
825
+ const Comp = asChild ? import_react_slot4.Slot : "span";
833
826
  return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
834
827
  Comp,
835
828
  {
829
+ "data-slot": "badge",
836
830
  ref,
837
831
  className: cn(badgeVariants({ size, variant }), className),
838
832
  ...rest,
839
- children: hasValue ? /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_jsx_runtime12.Fragment, { children: [
840
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "font-normal", children: label }),
841
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "font-normal", children: ":" }),
842
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "font-medium", children: value })
843
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "font-normal", children: label })
833
+ children: label
844
834
  }
845
835
  );
846
836
  }
@@ -1337,21 +1327,75 @@ var import_react_slot5 = require("@radix-ui/react-slot");
1337
1327
  var import_class_variance_authority12 = require("class-variance-authority");
1338
1328
  var import_jsx_runtime20 = require("react/jsx-runtime");
1339
1329
  var tagVariants = (0, import_class_variance_authority12.cva)(
1340
- "inline-flex flex-row items-center justify-center rounded-6 gap-2 px-3 overflow-hidden border-1 border-secondary bg-(--background-neutral) focus:border-brand focus-ring-primary ",
1330
+ "inline-flex flex-row items-center justify-center gap-1.5 overflow-hidden border border-secondary bg-tag focus:border-brand focus-ring-primary ",
1341
1331
  {
1342
1332
  variants: {
1343
1333
  size: {
1344
- sm: "py-0.5",
1345
- md: "py-1.5"
1334
+ sm: "h-6",
1335
+ md: "h-7",
1336
+ lg: "h-8",
1337
+ xl: "h-9"
1338
+ },
1339
+ rounded: {
1340
+ true: "rounded-full",
1341
+ false: "rounded-8"
1346
1342
  }
1347
1343
  },
1348
1344
  defaultVariants: {
1349
- size: "sm"
1345
+ size: "sm",
1346
+ rounded: false
1350
1347
  }
1351
1348
  }
1352
1349
  );
1353
- var disabledTag = "pointer-events-none border-secondary-disabled bg-(--background-neutral-disabled) text-primary-disabled";
1354
- var iconClasses = "flex items-center justify-center w-5 h-5 [&>*]:w-5 [&>*]:h-5 shrink-0 text-primary";
1350
+ var calculateXPadding = (size, hasTrailing, hasLeading) => {
1351
+ if (!hasTrailing && !hasLeading) {
1352
+ return size === "sm" ? "px-2.5" : "px-3";
1353
+ } else if (hasTrailing && !hasLeading) {
1354
+ return size === "sm" ? "pl-2.5 pr-1.25" : "pl-3 pr-1.5";
1355
+ } else if (!hasTrailing && hasLeading) {
1356
+ return size === "sm" ? "pl-1.25 pr-2.5" : "pl-1.5 pr-3";
1357
+ } else {
1358
+ return size === "sm" ? "px-1.25" : "px-1.5";
1359
+ }
1360
+ };
1361
+ var disabledTag = "pointer-events-none border-secondary-disabled bg-tag-disabled text-primary-disabled";
1362
+ var calculateIconClasses = (size) => {
1363
+ switch (size) {
1364
+ case "sm":
1365
+ return "flex items-center justify-center size-4 [&>*]:size-4 shrink-0";
1366
+ case "md":
1367
+ return "flex items-center justify-center size-5 [&>*]:size-5 shrink-0";
1368
+ case "lg":
1369
+ return "flex items-center justify-center size-5 [&>*]:size-5 shrink-0";
1370
+ case "xl":
1371
+ return "flex items-center justify-center size-6 [&>*]:size-6 shrink-0";
1372
+ }
1373
+ };
1374
+ var keyTextClassBySize = {
1375
+ sm: "paragraph-sm cursor-default",
1376
+ md: "paragraph-md cursor-default",
1377
+ lg: "paragraph-lg cursor-default",
1378
+ xl: "subtitle cursor-default"
1379
+ };
1380
+ var valueTextClassBySize = {
1381
+ sm: "paragraph-sm-medium cursor-default",
1382
+ md: "paragraph-md-medium cursor-default",
1383
+ lg: "paragraph-lg-medium cursor-default",
1384
+ xl: "subtitle-medium cursor-default"
1385
+ };
1386
+ var labelTextClassBySize = {
1387
+ sm: "paragraph-sm cursor-default",
1388
+ md: "paragraph-md cursor-default",
1389
+ lg: "paragraph-lg cursor-default",
1390
+ xl: "subtitle cursor-default"
1391
+ };
1392
+ var getTextColor = (type, disabled) => {
1393
+ if (disabled) return "";
1394
+ else if (type === "key") return "text-secondary";
1395
+ else if (type === "value") return "text-primary";
1396
+ else if (type === "label") return "text-primary";
1397
+ return "text-primary";
1398
+ };
1355
1399
  var Tag = React18.forwardRef(
1356
1400
  (props, ref) => {
1357
1401
  const {
@@ -1370,17 +1414,18 @@ var Tag = React18.forwardRef(
1370
1414
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1371
1415
  Comp,
1372
1416
  {
1373
- className: cn(tagVariants({ size }), disabled && disabledTag, className),
1417
+ className: cn(tagVariants({ size, rounded: props.rounded }), calculateXPadding(size, !!trailing, !!leading), disabled && disabledTag, className),
1418
+ "data-slot": "tag",
1374
1419
  ref,
1375
1420
  ...rest,
1376
1421
  children: [
1377
- leading && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: iconClasses, children: leading }),
1378
- hasValue ? /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "flex flex-row gap-1 items-center", children: [
1379
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "text-primary paragraph-lg mb-0! cursor-default font-normal", children: label }),
1380
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "text-primary paragraph-lg mb-0! cursor-default font-normal", children: ":" }),
1381
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "text-primary paragraph-lg-medium mb-0! cursor-default font-medium", children: value })
1382
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "text-primary paragraph-lg mb-0! cursor-default", children: label }),
1383
- trailing && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: iconClasses, children: trailing })
1422
+ leading && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: cn(disabled ? "text-primary-disabled" : "text-primary", calculateIconClasses(size)), children: leading }),
1423
+ hasValue ? /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "flex flex-row items-center gap-1", children: [
1424
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: cn(keyTextClassBySize[size], getTextColor("key", disabled)), children: label }),
1425
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: cn(keyTextClassBySize[size], getTextColor("key", disabled)), children: ":" }),
1426
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: cn(valueTextClassBySize[size], getTextColor("value", disabled)), children: value })
1427
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: cn(labelTextClassBySize[size], getTextColor("label", disabled)), children: label }),
1428
+ trailing && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: cn(disabled ? "text-primary-disabled" : "text-primary", calculateIconClasses(size)), children: trailing })
1384
1429
  ]
1385
1430
  }
1386
1431
  );
@@ -2599,14 +2644,6 @@ var createLucideIcon = (iconName, iconNode) => {
2599
2644
  var __iconNode = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
2600
2645
  var ChevronRight = createLucideIcon("chevron-right", __iconNode);
2601
2646
 
2602
- // ../../node_modules/.pnpm/lucide-react@0.555.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/ellipsis.js
2603
- var __iconNode2 = [
2604
- ["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
2605
- ["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
2606
- ["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
2607
- ];
2608
- var Ellipsis = createLucideIcon("ellipsis", __iconNode2);
2609
-
2610
2647
  // src/components/ui/dialog.tsx
2611
2648
  var import_jsx_runtime29 = require("react/jsx-runtime");
2612
2649
 
@@ -4450,7 +4487,7 @@ var React43 = __toESM(require("react"), 1);
4450
4487
  var React42 = require("react");
4451
4488
  var import_react_slot6 = require("@radix-ui/react-slot");
4452
4489
  var import_jsx_runtime44 = require("react/jsx-runtime");
4453
- var breadcrumbItemClasses = "h6-title inline-flex items-center gap-1.5 text-(--color-secondary) hover:text-(--color-primary-hover) focus-within:text-(--color-secondary-focus) [&_[aria-current=page]]:font-medium [&_[aria-current=page]]:text-primary";
4490
+ var breadcrumbItemClasses = "inline-flex items-center gap-1.5 text-(--color-secondary) hover:text-(--color-primary-hover) focus-within:text-(--color-secondary-focus) [&_[aria-current=page]]:font-medium [&_[aria-current=page]]:text-primary";
4454
4491
  var disabledItemClasses = "text-primary-disabled cursor-default pointer-events-none";
4455
4492
  function Breadcrumb({ ...props }) {
4456
4493
  return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("nav", { "aria-label": "breadcrumb", "data-slot": "breadcrumb", ...props });
@@ -4474,7 +4511,6 @@ function BreadcrumbItem({ className, disabled, ...props }) {
4474
4511
  {
4475
4512
  "data-slot": "breadcrumb-item",
4476
4513
  className: cn(breadcrumbItemClasses, disabled && disabledItemClasses, className),
4477
- style: { marginBottom: "7px" },
4478
4514
  ...props
4479
4515
  }
4480
4516
  );
@@ -4503,36 +4539,16 @@ function BreadcrumbSeparator({
4503
4539
  "data-slot": "breadcrumb-separator",
4504
4540
  role: "presentation",
4505
4541
  "aria-hidden": "true",
4506
- className: cn("[&>svg]:size-6 [&>svg]:text-(--color-secondary)", className),
4542
+ className: cn("text-secondary", className),
4507
4543
  ...props,
4508
4544
  children: children ?? /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(ChevronRight, {})
4509
4545
  }
4510
4546
  );
4511
4547
  }
4512
- function BreadcrumbEllipsis({
4513
- className,
4514
- ...props
4515
- }) {
4516
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
4517
- "span",
4518
- {
4519
- "data-slot": "breadcrumb-ellipsis",
4520
- role: "presentation",
4521
- "aria-hidden": "true",
4522
- className: cn("flex size-9 items-center justify-center", className),
4523
- ...props,
4524
- children: [
4525
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(Ellipsis, { className: "size-4" }),
4526
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: "sr-only", children: "More" })
4527
- ]
4528
- }
4529
- );
4530
- }
4531
4548
 
4532
4549
  // src/components/Navigation/Breadcrumbs.tsx
4550
+ var import_icons14 = require("@bubo-squared/icons");
4533
4551
  var import_jsx_runtime45 = require("react/jsx-runtime");
4534
- var breadcrumbSeparatorVariants = "size-5 relative bottom-1 [&>svg]:text-secondary group-disabled:text-secondary";
4535
- var breadcrumbItemBase = "h6-title text-secondary hover:text-primary-hover";
4536
4552
  var Breadcrumbs = React43.forwardRef(
4537
4553
  (props, ref) => {
4538
4554
  const {
@@ -4543,40 +4559,53 @@ var Breadcrumbs = React43.forwardRef(
4543
4559
  breadcrumbItemClassName,
4544
4560
  breadcrumbPageClassName,
4545
4561
  separatorClassName,
4562
+ breadcrumbListClassName,
4563
+ ellipsisItemClassName,
4564
+ ellipsisTriggerClassName,
4565
+ ellipsisContentClassName,
4566
+ ellipsisGroupClassName,
4567
+ ellipsisMenuItemClassName,
4568
+ ellipsisAriaLabel = "Open breadcrumb menu",
4546
4569
  ...rest
4547
4570
  } = props;
4548
4571
  const items = React43.Children.toArray(children).filter(Boolean);
4549
4572
  const shouldCollapse = Boolean(ellipsis) && items.length >= 5;
4550
4573
  const hiddenItems = shouldCollapse ? items.slice(1, -2) : [];
4551
4574
  const displayItems = shouldCollapse ? [items[0], "__ELLIPSIS__", items[items.length - 2], items[items.length - 1]] : items;
4552
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(Breadcrumb, { ref, className, ...rest, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbList, { children: displayItems.map((child, index) => {
4575
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(Breadcrumb, { ref, className: cn("mb-1.75", className), ...rest, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbList, { className: breadcrumbListClassName, children: displayItems.map((child, index) => {
4553
4576
  const isEllipsis = child === "__ELLIPSIS__";
4554
4577
  const key = isEllipsis ? "__ellipsis" : React43.isValidElement(child) && child.key != null ? String(child.key) : String(index);
4555
4578
  const isLast = index === displayItems.length - 1;
4556
4579
  return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(React43.Fragment, { children: [
4557
- isEllipsis ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbItem, { className: cn(breadcrumbItemBase, breadcrumbItemClassName), children: /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(DropdownMenu, { children: [
4580
+ isEllipsis ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbItem, { className: cn(breadcrumbItemClassName, ellipsisItemClassName), children: /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(DropdownMenu, { children: [
4558
4581
  /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4559
- "button",
4582
+ Button,
4560
4583
  {
4561
- type: "button",
4562
- className: "inline-flex size-8 items-center justify-center rounded-4 hover:bg-(--background-secondary) focus-ring-primary text-secondary",
4563
- "aria-label": "Open breadcrumb menu",
4564
- children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbEllipsis, {})
4584
+ variant: "ghost",
4585
+ className: cn(
4586
+ "inline-flex text-secondary hover:text-primary &[aria-expanded=true]:text-primary-focus items-center justify-center",
4587
+ ellipsisTriggerClassName
4588
+ ),
4589
+ "aria-label": ellipsisAriaLabel,
4590
+ "data-slot": "breadcrumb-ellipsis",
4591
+ role: "presentation",
4592
+ "aria-hidden": "true",
4593
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(import_icons14.MoreHorizFullIcon, {})
4565
4594
  }
4566
4595
  ) }),
4567
4596
  /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4568
4597
  DropdownMenuContent,
4569
4598
  {
4570
4599
  align: "start",
4571
- className: "bg-(--background-neutral) border-secondary-hover shadow-card-md rounded-4",
4572
- children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(DropdownMenuGroup, { children: hiddenItems.map((hidden, hiddenIndex) => {
4600
+ className: ellipsisContentClassName,
4601
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(DropdownMenuGroup, { className: ellipsisGroupClassName, children: hiddenItems.map((hidden, hiddenIndex) => {
4573
4602
  const hiddenKey = React43.isValidElement(hidden) && hidden.key != null ? String(hidden.key) : `hidden-${hiddenIndex}`;
4574
4603
  if (React43.isValidElement(hidden)) {
4575
4604
  return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4576
4605
  DropdownMenuItem,
4577
4606
  {
4578
4607
  asChild: true,
4579
- className: "cursor-pointer paragraph-md text-primary focus:bg-(--background-secondary)",
4608
+ className: ellipsisMenuItemClassName,
4580
4609
  children: hidden
4581
4610
  },
4582
4611
  hiddenKey
@@ -4585,7 +4614,7 @@ var Breadcrumbs = React43.forwardRef(
4585
4614
  return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4586
4615
  DropdownMenuItem,
4587
4616
  {
4588
- className: "cursor-pointer paragraph-md text-primary focus:bg-(--background-secondary)",
4617
+ className: ellipsisMenuItemClassName,
4589
4618
  children: String(hidden)
4590
4619
  },
4591
4620
  hiddenKey
@@ -4593,14 +4622,8 @@ var Breadcrumbs = React43.forwardRef(
4593
4622
  }) })
4594
4623
  }
4595
4624
  )
4596
- ] }) }) : isLast ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbItem, { className: cn(breadcrumbItemBase, breadcrumbItemClassName), children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4597
- BreadcrumbPage,
4598
- {
4599
- className: cn("h6-title-medium cursor-pointer", breadcrumbPageClassName),
4600
- children: child
4601
- }
4602
- ) }) : /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbItem, { className: cn(breadcrumbItemBase, breadcrumbItemClassName), children: child }),
4603
- !isLast && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbSeparator, { className: cn(breadcrumbSeparatorVariants, separatorClassName), children: separator })
4625
+ ] }) }) : isLast ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbItem, { className: breadcrumbItemClassName, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbPage, { className: breadcrumbPageClassName, children: child }) }) : /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbItem, { className: breadcrumbItemClassName, children: child }),
4626
+ !isLast && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(BreadcrumbSeparator, { className: separatorClassName, children: separator })
4604
4627
  ] }, key);
4605
4628
  }) }) });
4606
4629
  }
@@ -4763,7 +4786,6 @@ lucide-react/dist/esm/defaultAttributes.js:
4763
4786
  lucide-react/dist/esm/Icon.js:
4764
4787
  lucide-react/dist/esm/createLucideIcon.js:
4765
4788
  lucide-react/dist/esm/icons/chevron-right.js:
4766
- lucide-react/dist/esm/icons/ellipsis.js:
4767
4789
  lucide-react/dist/esm/lucide-react.js:
4768
4790
  (**
4769
4791
  * @license lucide-react v0.555.0 - ISC