@opensite/ui 3.4.5 → 3.4.6

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.
@@ -714,10 +714,10 @@ function ContactCareers({
714
714
  type: "single",
715
715
  collapsible: true,
716
716
  className: cn("space-y-3", accordionClassName),
717
- children: jobListings.map((job) => /* @__PURE__ */ jsxRuntime.jsxs(
717
+ children: jobListings.map((job, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
718
718
  AccordionItem,
719
719
  {
720
- value: job.id,
720
+ value: job.id || `faq-item-${idx}`,
721
721
  className: cn(
722
722
  "rounded-xl border border-border/60",
723
723
  "px-5 shadow-sm transition-all hover:shadow-md",
@@ -742,7 +742,7 @@ function ContactCareers({
742
742
  /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: cn("pb-4", accordionContentClassName), children: job.description })
743
743
  ]
744
744
  },
745
- job.id
745
+ job.id || idx
746
746
  ))
747
747
  }
748
748
  );
@@ -692,10 +692,10 @@ function ContactCareers({
692
692
  type: "single",
693
693
  collapsible: true,
694
694
  className: cn("space-y-3", accordionClassName),
695
- children: jobListings.map((job) => /* @__PURE__ */ jsxs(
695
+ children: jobListings.map((job, idx) => /* @__PURE__ */ jsxs(
696
696
  AccordionItem,
697
697
  {
698
- value: job.id,
698
+ value: job.id || `faq-item-${idx}`,
699
699
  className: cn(
700
700
  "rounded-xl border border-border/60",
701
701
  "px-5 shadow-sm transition-all hover:shadow-md",
@@ -720,7 +720,7 @@ function ContactCareers({
720
720
  /* @__PURE__ */ jsx(AccordionContent, { className: cn("pb-4", accordionContentClassName), children: job.description })
721
721
  ]
722
722
  },
723
- job.id
723
+ job.id || idx
724
724
  ))
725
725
  }
726
726
  );
@@ -580,10 +580,10 @@ function ContactFaq({
580
580
  const faqContent = React.useMemo(() => {
581
581
  if (itemsSlot) return itemsSlot;
582
582
  if (!items || items.length === 0) return null;
583
- return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
583
+ return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
584
584
  AccordionItem,
585
585
  {
586
- value: item.id,
586
+ value: item.id || `faq-item-${idx}`,
587
587
  className: accordionItemClassName,
588
588
  children: [
589
589
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -599,7 +599,7 @@ function ContactFaq({
599
599
  /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
600
600
  ]
601
601
  },
602
- item.id
602
+ item.id || idx
603
603
  )) });
604
604
  }, [
605
605
  itemsSlot,
@@ -558,10 +558,10 @@ function ContactFaq({
558
558
  const faqContent = useMemo(() => {
559
559
  if (itemsSlot) return itemsSlot;
560
560
  if (!items || items.length === 0) return null;
561
- return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxs(
561
+ return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxs(
562
562
  AccordionItem,
563
563
  {
564
- value: item.id,
564
+ value: item.id || `faq-item-${idx}`,
565
565
  className: accordionItemClassName,
566
566
  children: [
567
567
  /* @__PURE__ */ jsx(
@@ -577,7 +577,7 @@ function ContactFaq({
577
577
  /* @__PURE__ */ jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
578
578
  ]
579
579
  },
580
- item.id
580
+ item.id || idx
581
581
  )) });
582
582
  }, [
583
583
  itemsSlot,
@@ -585,10 +585,10 @@ function FaqBadgeSupport({
585
585
  type: "single",
586
586
  collapsible: true,
587
587
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
588
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
588
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
589
589
  AccordionItem,
590
590
  {
591
- value: item.id,
591
+ value: item.id || `faq-item-${idx}`,
592
592
  className: accordionItemClassName,
593
593
  children: [
594
594
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -610,7 +610,7 @@ function FaqBadgeSupport({
610
610
  )
611
611
  ]
612
612
  },
613
- item.id
613
+ item.id || idx
614
614
  ))
615
615
  }
616
616
  );
@@ -563,10 +563,10 @@ function FaqBadgeSupport({
563
563
  type: "single",
564
564
  collapsible: true,
565
565
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
566
- children: items.map((item) => /* @__PURE__ */ jsxs(
566
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
567
567
  AccordionItem,
568
568
  {
569
- value: item.id,
569
+ value: item.id || `faq-item-${idx}`,
570
570
  className: accordionItemClassName,
571
571
  children: [
572
572
  /* @__PURE__ */ jsx(
@@ -588,7 +588,7 @@ function FaqBadgeSupport({
588
588
  )
589
589
  ]
590
590
  },
591
- item.id
591
+ item.id || idx
592
592
  ))
593
593
  }
594
594
  );
@@ -550,10 +550,10 @@ function FaqBorderedBadge({
550
550
  type: "single",
551
551
  collapsible: true,
552
552
  className: cn("space-y-4", accordionClassName),
553
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
553
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
554
554
  AccordionItem,
555
555
  {
556
- value: item.id,
556
+ value: item.id || `faq-item-${idx}`,
557
557
  className: cn("rounded-lg border px-4", accordionItemClassName),
558
558
  children: [
559
559
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -569,7 +569,7 @@ function FaqBorderedBadge({
569
569
  /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
570
570
  ]
571
571
  },
572
- item.id
572
+ item.id || idx
573
573
  ))
574
574
  }
575
575
  );
@@ -528,10 +528,10 @@ function FaqBorderedBadge({
528
528
  type: "single",
529
529
  collapsible: true,
530
530
  className: cn("space-y-4", accordionClassName),
531
- children: items.map((item) => /* @__PURE__ */ jsxs(
531
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
532
532
  AccordionItem,
533
533
  {
534
- value: item.id,
534
+ value: item.id || `faq-item-${idx}`,
535
535
  className: cn("rounded-lg border px-4", accordionItemClassName),
536
536
  children: [
537
537
  /* @__PURE__ */ jsx(
@@ -547,7 +547,7 @@ function FaqBorderedBadge({
547
547
  /* @__PURE__ */ jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
548
548
  ]
549
549
  },
550
- item.id
550
+ item.id || idx
551
551
  ))
552
552
  }
553
553
  );
@@ -615,7 +615,7 @@ function FaqCardCategories({
615
615
  children: category.items?.map((item, index) => /* @__PURE__ */ jsxRuntime.jsxs(
616
616
  AccordionItem,
617
617
  {
618
- value: item.id,
618
+ value: item.id || `faq-item-${index}`,
619
619
  className: cn(
620
620
  categories?.length === index + 1 && "border-b-0",
621
621
  accordionItemClassName
@@ -642,7 +642,7 @@ function FaqCardCategories({
642
642
  )
643
643
  ]
644
644
  },
645
- item.id
645
+ item.id || index
646
646
  ))
647
647
  }
648
648
  ) })
@@ -593,7 +593,7 @@ function FaqCardCategories({
593
593
  children: category.items?.map((item, index) => /* @__PURE__ */ jsxs(
594
594
  AccordionItem,
595
595
  {
596
- value: item.id,
596
+ value: item.id || `faq-item-${index}`,
597
597
  className: cn(
598
598
  categories?.length === index + 1 && "border-b-0",
599
599
  accordionItemClassName
@@ -620,7 +620,7 @@ function FaqCardCategories({
620
620
  )
621
621
  ]
622
622
  },
623
- item.id
623
+ item.id || index
624
624
  ))
625
625
  }
626
626
  ) })
@@ -526,10 +526,10 @@ function FaqCategorizedSections({
526
526
  children: category.title
527
527
  }
528
528
  ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: categoryTitleClassName, children: category.title }),
529
- /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
529
+ /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
530
530
  AccordionItem,
531
531
  {
532
- value: item.id,
532
+ value: item.id || `faq-item-${idx}`,
533
533
  className: accordionItemClassName,
534
534
  children: [
535
535
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -551,7 +551,7 @@ function FaqCategorizedSections({
551
551
  )
552
552
  ]
553
553
  },
554
- item.id
554
+ item.id || idx
555
555
  )) })
556
556
  ] }, categoryIndex))
557
557
  }
@@ -504,10 +504,10 @@ function FaqCategorizedSections({
504
504
  children: category.title
505
505
  }
506
506
  ) : /* @__PURE__ */ jsx("div", { className: categoryTitleClassName, children: category.title }),
507
- /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxs(
507
+ /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxs(
508
508
  AccordionItem,
509
509
  {
510
- value: item.id,
510
+ value: item.id || `faq-item-${idx}`,
511
511
  className: accordionItemClassName,
512
512
  children: [
513
513
  /* @__PURE__ */ jsx(
@@ -529,7 +529,7 @@ function FaqCategorizedSections({
529
529
  )
530
530
  ]
531
531
  },
532
- item.id
532
+ item.id || idx
533
533
  )) })
534
534
  ] }, categoryIndex))
535
535
  }
@@ -512,10 +512,10 @@ function FaqCenteredAccordion({
512
512
  type: "single",
513
513
  collapsible: true,
514
514
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
515
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
515
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
516
516
  AccordionItem,
517
517
  {
518
- value: item.id,
518
+ value: item.id || `faq-item-${idx}`,
519
519
  className: accordionItemClassName,
520
520
  children: [
521
521
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -537,7 +537,7 @@ function FaqCenteredAccordion({
537
537
  )
538
538
  ]
539
539
  },
540
- item.id
540
+ item.id || idx
541
541
  ))
542
542
  }
543
543
  );
@@ -490,10 +490,10 @@ function FaqCenteredAccordion({
490
490
  type: "single",
491
491
  collapsible: true,
492
492
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
493
- children: items.map((item) => /* @__PURE__ */ jsxs(
493
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
494
494
  AccordionItem,
495
495
  {
496
- value: item.id,
496
+ value: item.id || `faq-item-${idx}`,
497
497
  className: accordionItemClassName,
498
498
  children: [
499
499
  /* @__PURE__ */ jsx(
@@ -515,7 +515,7 @@ function FaqCenteredAccordion({
515
515
  )
516
516
  ]
517
517
  },
518
- item.id
518
+ item.id || idx
519
519
  ))
520
520
  }
521
521
  );
@@ -559,10 +559,10 @@ function FaqGradientCategories({
559
559
  children: category.title
560
560
  }
561
561
  ) : category.title,
562
- /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
562
+ /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
563
563
  AccordionItem,
564
564
  {
565
- value: item.id,
565
+ value: item.id || `faq-item-${idx}`,
566
566
  className: accordionItemClassName,
567
567
  children: [
568
568
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -586,7 +586,7 @@ function FaqGradientCategories({
586
586
  )
587
587
  ]
588
588
  },
589
- item.id
589
+ item.id || idx
590
590
  )) })
591
591
  ] }, categoryIndex))
592
592
  }
@@ -537,10 +537,10 @@ function FaqGradientCategories({
537
537
  children: category.title
538
538
  }
539
539
  ) : category.title,
540
- /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxs(
540
+ /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxs(
541
541
  AccordionItem,
542
542
  {
543
- value: item.id,
543
+ value: item.id || `faq-item-${idx}`,
544
544
  className: accordionItemClassName,
545
545
  children: [
546
546
  /* @__PURE__ */ jsx(
@@ -564,7 +564,7 @@ function FaqGradientCategories({
564
564
  )
565
565
  ]
566
566
  },
567
- item.id
567
+ item.id || idx
568
568
  )) })
569
569
  ] }, categoryIndex))
570
570
  }
@@ -552,7 +552,7 @@ function FaqMutedCards({
552
552
  children: items.map((item, index) => /* @__PURE__ */ jsxRuntime.jsxs(
553
553
  AccordionItem,
554
554
  {
555
- value: item.id,
555
+ value: item.id || `faq-item-${index}`,
556
556
  className: cn(
557
557
  "border-border/50",
558
558
  index === items.length - 1 ? "border-none" : "",
@@ -530,7 +530,7 @@ function FaqMutedCards({
530
530
  children: items.map((item, index) => /* @__PURE__ */ jsxs(
531
531
  AccordionItem,
532
532
  {
533
- value: item.id,
533
+ value: item.id || `faq-item-${index}`,
534
534
  className: cn(
535
535
  "border-border/50",
536
536
  index === items.length - 1 ? "border-none" : "",
@@ -556,10 +556,10 @@ function FaqProfileSidebar({
556
556
  const itemsContent = React5.useMemo(() => {
557
557
  if (itemsSlot) return itemsSlot;
558
558
  if (!items || items.length === 0) return null;
559
- return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
559
+ return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
560
560
  AccordionItem,
561
561
  {
562
- value: item.id,
562
+ value: item.id || `faq-item-${idx}`,
563
563
  className: accordionItemClassName,
564
564
  children: [
565
565
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -583,7 +583,7 @@ function FaqProfileSidebar({
583
583
  )
584
584
  ]
585
585
  },
586
- item.id
586
+ item.id || idx
587
587
  )) });
588
588
  }, [
589
589
  itemsSlot,
@@ -534,10 +534,10 @@ function FaqProfileSidebar({
534
534
  const itemsContent = useMemo(() => {
535
535
  if (itemsSlot) return itemsSlot;
536
536
  if (!items || items.length === 0) return null;
537
- return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxs(
537
+ return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxs(
538
538
  AccordionItem,
539
539
  {
540
- value: item.id,
540
+ value: item.id || `faq-item-${idx}`,
541
541
  className: accordionItemClassName,
542
542
  children: [
543
543
  /* @__PURE__ */ jsx(
@@ -561,7 +561,7 @@ function FaqProfileSidebar({
561
561
  )
562
562
  ]
563
563
  },
564
- item.id
564
+ item.id || idx
565
565
  )) });
566
566
  }, [
567
567
  itemsSlot,
@@ -545,10 +545,10 @@ function FaqRoundedCards({
545
545
  type: "single",
546
546
  collapsible: true,
547
547
  className: cn("space-y-4", accordionClassName),
548
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
548
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
549
549
  AccordionItem,
550
550
  {
551
- value: item.id,
551
+ value: item.id || `faq-item-${idx}`,
552
552
  className: cn(
553
553
  "border border-border/50",
554
554
  "transition-all duration-500",
@@ -585,7 +585,7 @@ function FaqRoundedCards({
585
585
  )
586
586
  ]
587
587
  },
588
- item.id
588
+ item.id || idx
589
589
  ))
590
590
  }
591
591
  );
@@ -523,10 +523,10 @@ function FaqRoundedCards({
523
523
  type: "single",
524
524
  collapsible: true,
525
525
  className: cn("space-y-4", accordionClassName),
526
- children: items.map((item) => /* @__PURE__ */ jsxs(
526
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
527
527
  AccordionItem,
528
528
  {
529
- value: item.id,
529
+ value: item.id || `faq-item-${idx}`,
530
530
  className: cn(
531
531
  "border border-border/50",
532
532
  "transition-all duration-500",
@@ -563,7 +563,7 @@ function FaqRoundedCards({
563
563
  )
564
564
  ]
565
565
  },
566
- item.id
566
+ item.id || idx
567
567
  ))
568
568
  }
569
569
  );
@@ -572,10 +572,10 @@ function FaqSidebarNavigation({
572
572
  children: category.title
573
573
  }
574
574
  ) : category.title,
575
- /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
575
+ /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
576
576
  AccordionItem,
577
577
  {
578
- value: item.id,
578
+ value: item.id || `faq-item-${idx}`,
579
579
  className: accordionItemClassName,
580
580
  children: [
581
581
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -597,7 +597,7 @@ function FaqSidebarNavigation({
597
597
  )
598
598
  ]
599
599
  },
600
- item.id
600
+ item.id || idx
601
601
  )) })
602
602
  ]
603
603
  },
@@ -550,10 +550,10 @@ function FaqSidebarNavigation({
550
550
  children: category.title
551
551
  }
552
552
  ) : category.title,
553
- /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxs(
553
+ /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxs(
554
554
  AccordionItem,
555
555
  {
556
- value: item.id,
556
+ value: item.id || `faq-item-${idx}`,
557
557
  className: accordionItemClassName,
558
558
  children: [
559
559
  /* @__PURE__ */ jsx(
@@ -575,7 +575,7 @@ function FaqSidebarNavigation({
575
575
  )
576
576
  ]
577
577
  },
578
- item.id
578
+ item.id || idx
579
579
  )) })
580
580
  ]
581
581
  },
@@ -550,10 +550,10 @@ function FaqSplitHelp({
550
550
  type: "single",
551
551
  collapsible: true,
552
552
  className: cn("w-full lg:w-2/3", accordionClassName),
553
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
553
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
554
554
  AccordionItem,
555
555
  {
556
- value: item.id,
556
+ value: item.id || `faq-item-${idx}`,
557
557
  className: accordionItemClassName,
558
558
  children: [
559
559
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -575,7 +575,7 @@ function FaqSplitHelp({
575
575
  )
576
576
  ]
577
577
  },
578
- item.id
578
+ item.id || idx
579
579
  ))
580
580
  }
581
581
  );
@@ -528,10 +528,10 @@ function FaqSplitHelp({
528
528
  type: "single",
529
529
  collapsible: true,
530
530
  className: cn("w-full lg:w-2/3", accordionClassName),
531
- children: items.map((item) => /* @__PURE__ */ jsxs(
531
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
532
532
  AccordionItem,
533
533
  {
534
- value: item.id,
534
+ value: item.id || `faq-item-${idx}`,
535
535
  className: accordionItemClassName,
536
536
  children: [
537
537
  /* @__PURE__ */ jsx(
@@ -553,7 +553,7 @@ function FaqSplitHelp({
553
553
  )
554
554
  ]
555
555
  },
556
- item.id
556
+ item.id || idx
557
557
  ))
558
558
  }
559
559
  );
@@ -529,10 +529,10 @@ function FaqSplitHero({
529
529
  type: "single",
530
530
  collapsible: true,
531
531
  className: cn("w-full", accordionClassName),
532
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
532
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
533
533
  AccordionItem,
534
534
  {
535
- value: item.id,
535
+ value: item.id || `faq-item-${idx}`,
536
536
  className: cn("border-b border-current/20", accordionItemClassName),
537
537
  children: [
538
538
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -556,7 +556,7 @@ function FaqSplitHero({
556
556
  )
557
557
  ]
558
558
  },
559
- item.id
559
+ item.id || idx
560
560
  ))
561
561
  }
562
562
  );
@@ -507,10 +507,10 @@ function FaqSplitHero({
507
507
  type: "single",
508
508
  collapsible: true,
509
509
  className: cn("w-full", accordionClassName),
510
- children: items.map((item) => /* @__PURE__ */ jsxs(
510
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
511
511
  AccordionItem,
512
512
  {
513
- value: item.id,
513
+ value: item.id || `faq-item-${idx}`,
514
514
  className: cn("border-b border-current/20", accordionItemClassName),
515
515
  children: [
516
516
  /* @__PURE__ */ jsx(
@@ -534,7 +534,7 @@ function FaqSplitHero({
534
534
  )
535
535
  ]
536
536
  },
537
- item.id
537
+ item.id || idx
538
538
  ))
539
539
  }
540
540
  );
@@ -960,10 +960,10 @@ var NavbarTabbedSections = ({
960
960
  className: "border-b-0",
961
961
  children: [
962
962
  /* @__PURE__ */ jsxRuntime.jsx(AccordionTrigger, { className: "h-15 items-center p-0 px-4! text-base leading-[3.75] font-normal text-muted-foreground hover:bg-muted hover:no-underline", children: item.title }),
963
- /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab) => /* @__PURE__ */ jsxRuntime.jsxs(
963
+ /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
964
964
  AccordionItem,
965
965
  {
966
- value: tab.id,
966
+ value: tab.id || `tab-${idx}`,
967
967
  className: "border-b-0",
968
968
  children: [
969
969
  /* @__PURE__ */ jsxRuntime.jsx(AccordionTrigger, { className: "h-12 items-center p-0 px-4! text-sm leading-[3] font-medium text-muted-foreground hover:bg-muted hover:no-underline", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
@@ -985,7 +985,7 @@ var NavbarTabbedSections = ({
985
985
  )) }) })
986
986
  ]
987
987
  },
988
- tab.id
988
+ tab.id || idx
989
989
  )) }) })
990
990
  ]
991
991
  },
@@ -936,10 +936,10 @@ var NavbarTabbedSections = ({
936
936
  className: "border-b-0",
937
937
  children: [
938
938
  /* @__PURE__ */ jsx(AccordionTrigger, { className: "h-15 items-center p-0 px-4! text-base leading-[3.75] font-normal text-muted-foreground hover:bg-muted hover:no-underline", children: item.title }),
939
- /* @__PURE__ */ jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab) => /* @__PURE__ */ jsxs(
939
+ /* @__PURE__ */ jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab, idx) => /* @__PURE__ */ jsxs(
940
940
  AccordionItem,
941
941
  {
942
- value: tab.id,
942
+ value: tab.id || `tab-${idx}`,
943
943
  className: "border-b-0",
944
944
  children: [
945
945
  /* @__PURE__ */ jsx(AccordionTrigger, { className: "h-12 items-center p-0 px-4! text-sm leading-[3] font-medium text-muted-foreground hover:bg-muted hover:no-underline", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
@@ -961,7 +961,7 @@ var NavbarTabbedSections = ({
961
961
  )) }) })
962
962
  ]
963
963
  },
964
- tab.id
964
+ tab.id || idx
965
965
  )) }) })
966
966
  ]
967
967
  },
package/dist/registry.cjs CHANGED
@@ -14104,10 +14104,10 @@ function ContactCareers({
14104
14104
  type: "single",
14105
14105
  collapsible: true,
14106
14106
  className: cn("space-y-3", accordionClassName),
14107
- children: jobListings.map((job) => /* @__PURE__ */ jsxRuntime.jsxs(
14107
+ children: jobListings.map((job, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
14108
14108
  AccordionItem,
14109
14109
  {
14110
- value: job.id,
14110
+ value: job.id || `faq-item-${idx}`,
14111
14111
  className: cn(
14112
14112
  "rounded-xl border border-border/60",
14113
14113
  "px-5 shadow-sm transition-all hover:shadow-md",
@@ -14132,7 +14132,7 @@ function ContactCareers({
14132
14132
  /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: cn("pb-4", accordionContentClassName), children: job.description })
14133
14133
  ]
14134
14134
  },
14135
- job.id
14135
+ job.id || idx
14136
14136
  ))
14137
14137
  }
14138
14138
  );
@@ -15470,10 +15470,10 @@ function ContactFaq({
15470
15470
  const faqContent = React30.useMemo(() => {
15471
15471
  if (itemsSlot) return itemsSlot;
15472
15472
  if (!items || items.length === 0) return null;
15473
- return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
15473
+ return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
15474
15474
  AccordionItem,
15475
15475
  {
15476
- value: item.id,
15476
+ value: item.id || `faq-item-${idx}`,
15477
15477
  className: accordionItemClassName,
15478
15478
  children: [
15479
15479
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -15489,7 +15489,7 @@ function ContactFaq({
15489
15489
  /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
15490
15490
  ]
15491
15491
  },
15492
- item.id
15492
+ item.id || idx
15493
15493
  )) });
15494
15494
  }, [
15495
15495
  itemsSlot,
@@ -39907,10 +39907,10 @@ function FaqCenteredAccordion({
39907
39907
  type: "single",
39908
39908
  collapsible: true,
39909
39909
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
39910
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
39910
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
39911
39911
  AccordionItem,
39912
39912
  {
39913
- value: item.id,
39913
+ value: item.id || `faq-item-${idx}`,
39914
39914
  className: accordionItemClassName,
39915
39915
  children: [
39916
39916
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -39932,7 +39932,7 @@ function FaqCenteredAccordion({
39932
39932
  )
39933
39933
  ]
39934
39934
  },
39935
- item.id
39935
+ item.id || idx
39936
39936
  ))
39937
39937
  }
39938
39938
  );
@@ -40020,10 +40020,10 @@ function FaqBadgeSupport({
40020
40020
  type: "single",
40021
40021
  collapsible: true,
40022
40022
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
40023
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
40023
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
40024
40024
  AccordionItem,
40025
40025
  {
40026
- value: item.id,
40026
+ value: item.id || `faq-item-${idx}`,
40027
40027
  className: accordionItemClassName,
40028
40028
  children: [
40029
40029
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -40045,7 +40045,7 @@ function FaqBadgeSupport({
40045
40045
  )
40046
40046
  ]
40047
40047
  },
40048
- item.id
40048
+ item.id || idx
40049
40049
  ))
40050
40050
  }
40051
40051
  );
@@ -40507,10 +40507,10 @@ function FaqSplitHelp({
40507
40507
  type: "single",
40508
40508
  collapsible: true,
40509
40509
  className: cn("w-full lg:w-2/3", accordionClassName),
40510
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
40510
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
40511
40511
  AccordionItem,
40512
40512
  {
40513
- value: item.id,
40513
+ value: item.id || `faq-item-${idx}`,
40514
40514
  className: accordionItemClassName,
40515
40515
  children: [
40516
40516
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -40532,7 +40532,7 @@ function FaqSplitHelp({
40532
40532
  )
40533
40533
  ]
40534
40534
  },
40535
- item.id
40535
+ item.id || idx
40536
40536
  ))
40537
40537
  }
40538
40538
  );
@@ -40693,10 +40693,10 @@ function FaqCategorizedSections({
40693
40693
  children: category.title
40694
40694
  }
40695
40695
  ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: categoryTitleClassName, children: category.title }),
40696
- /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
40696
+ /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
40697
40697
  AccordionItem,
40698
40698
  {
40699
- value: item.id,
40699
+ value: item.id || `faq-item-${idx}`,
40700
40700
  className: accordionItemClassName,
40701
40701
  children: [
40702
40702
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -40718,7 +40718,7 @@ function FaqCategorizedSections({
40718
40718
  )
40719
40719
  ]
40720
40720
  },
40721
- item.id
40721
+ item.id || idx
40722
40722
  )) })
40723
40723
  ] }, categoryIndex))
40724
40724
  }
@@ -40810,7 +40810,7 @@ function FaqMutedCards({
40810
40810
  children: items.map((item, index) => /* @__PURE__ */ jsxRuntime.jsxs(
40811
40811
  AccordionItem,
40812
40812
  {
40813
- value: item.id,
40813
+ value: item.id || `faq-item-${index}`,
40814
40814
  className: cn(
40815
40815
  "border-border/50",
40816
40816
  index === items.length - 1 ? "border-none" : "",
@@ -40958,10 +40958,10 @@ function FaqBorderedBadge({
40958
40958
  type: "single",
40959
40959
  collapsible: true,
40960
40960
  className: cn("space-y-4", accordionClassName),
40961
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
40961
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
40962
40962
  AccordionItem,
40963
40963
  {
40964
- value: item.id,
40964
+ value: item.id || `faq-item-${idx}`,
40965
40965
  className: cn("rounded-lg border px-4", accordionItemClassName),
40966
40966
  children: [
40967
40967
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -40977,7 +40977,7 @@ function FaqBorderedBadge({
40977
40977
  /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
40978
40978
  ]
40979
40979
  },
40980
- item.id
40980
+ item.id || idx
40981
40981
  ))
40982
40982
  }
40983
40983
  );
@@ -41084,10 +41084,10 @@ function FaqGradientCategories({
41084
41084
  children: category.title
41085
41085
  }
41086
41086
  ) : category.title,
41087
- /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
41087
+ /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
41088
41088
  AccordionItem,
41089
41089
  {
41090
- value: item.id,
41090
+ value: item.id || `faq-item-${idx}`,
41091
41091
  className: accordionItemClassName,
41092
41092
  children: [
41093
41093
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -41111,7 +41111,7 @@ function FaqGradientCategories({
41111
41111
  )
41112
41112
  ]
41113
41113
  },
41114
- item.id
41114
+ item.id || idx
41115
41115
  )) })
41116
41116
  ] }, categoryIndex))
41117
41117
  }
@@ -41260,10 +41260,10 @@ function FaqSidebarNavigation({
41260
41260
  children: category.title
41261
41261
  }
41262
41262
  ) : category.title,
41263
- /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
41263
+ /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
41264
41264
  AccordionItem,
41265
41265
  {
41266
- value: item.id,
41266
+ value: item.id || `faq-item-${idx}`,
41267
41267
  className: accordionItemClassName,
41268
41268
  children: [
41269
41269
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -41285,7 +41285,7 @@ function FaqSidebarNavigation({
41285
41285
  )
41286
41286
  ]
41287
41287
  },
41288
- item.id
41288
+ item.id || idx
41289
41289
  )) })
41290
41290
  ]
41291
41291
  },
@@ -41475,7 +41475,7 @@ function FaqCardCategories({
41475
41475
  children: category.items?.map((item, index) => /* @__PURE__ */ jsxRuntime.jsxs(
41476
41476
  AccordionItem,
41477
41477
  {
41478
- value: item.id,
41478
+ value: item.id || `faq-item-${index}`,
41479
41479
  className: cn(
41480
41480
  categories?.length === index + 1 && "border-b-0",
41481
41481
  accordionItemClassName
@@ -41502,7 +41502,7 @@ function FaqCardCategories({
41502
41502
  )
41503
41503
  ]
41504
41504
  },
41505
- item.id
41505
+ item.id || index
41506
41506
  ))
41507
41507
  }
41508
41508
  ) })
@@ -41783,10 +41783,10 @@ function FaqRoundedCards({
41783
41783
  type: "single",
41784
41784
  collapsible: true,
41785
41785
  className: cn("space-y-4", accordionClassName),
41786
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
41786
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
41787
41787
  AccordionItem,
41788
41788
  {
41789
- value: item.id,
41789
+ value: item.id || `faq-item-${idx}`,
41790
41790
  className: cn(
41791
41791
  "border border-border/50",
41792
41792
  "transition-all duration-500",
@@ -41823,7 +41823,7 @@ function FaqRoundedCards({
41823
41823
  )
41824
41824
  ]
41825
41825
  },
41826
- item.id
41826
+ item.id || idx
41827
41827
  ))
41828
41828
  }
41829
41829
  );
@@ -41941,10 +41941,10 @@ function FaqProfileSidebar({
41941
41941
  const itemsContent = React30.useMemo(() => {
41942
41942
  if (itemsSlot) return itemsSlot;
41943
41943
  if (!items || items.length === 0) return null;
41944
- return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
41944
+ return /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
41945
41945
  AccordionItem,
41946
41946
  {
41947
- value: item.id,
41947
+ value: item.id || `faq-item-${idx}`,
41948
41948
  className: accordionItemClassName,
41949
41949
  children: [
41950
41950
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -41968,7 +41968,7 @@ function FaqProfileSidebar({
41968
41968
  )
41969
41969
  ]
41970
41970
  },
41971
- item.id
41971
+ item.id || idx
41972
41972
  )) });
41973
41973
  }, [
41974
41974
  itemsSlot,
@@ -42165,10 +42165,10 @@ function FaqSplitHero({
42165
42165
  type: "single",
42166
42166
  collapsible: true,
42167
42167
  className: cn("w-full", accordionClassName),
42168
- children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
42168
+ children: items.map((item, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
42169
42169
  AccordionItem,
42170
42170
  {
42171
- value: item.id,
42171
+ value: item.id || `faq-item-${idx}`,
42172
42172
  className: cn("border-b border-current/20", accordionItemClassName),
42173
42173
  children: [
42174
42174
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -42192,7 +42192,7 @@ function FaqSplitHero({
42192
42192
  )
42193
42193
  ]
42194
42194
  },
42195
- item.id
42195
+ item.id || idx
42196
42196
  ))
42197
42197
  }
42198
42198
  );
@@ -69491,10 +69491,10 @@ var NavbarTabbedSections = ({
69491
69491
  className: "border-b-0",
69492
69492
  children: [
69493
69493
  /* @__PURE__ */ jsxRuntime.jsx(AccordionTrigger, { className: "h-15 items-center p-0 px-4! text-base leading-[3.75] font-normal text-muted-foreground hover:bg-muted hover:no-underline", children: item.title }),
69494
- /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab) => /* @__PURE__ */ jsxRuntime.jsxs(
69494
+ /* @__PURE__ */ jsxRuntime.jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsxRuntime.jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
69495
69495
  AccordionItem,
69496
69496
  {
69497
- value: tab.id,
69497
+ value: tab.id || `tab-${idx}`,
69498
69498
  className: "border-b-0",
69499
69499
  children: [
69500
69500
  /* @__PURE__ */ jsxRuntime.jsx(AccordionTrigger, { className: "h-12 items-center p-0 px-4! text-sm leading-[3] font-medium text-muted-foreground hover:bg-muted hover:no-underline", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
@@ -69516,7 +69516,7 @@ var NavbarTabbedSections = ({
69516
69516
  )) }) })
69517
69517
  ]
69518
69518
  },
69519
- tab.id
69519
+ tab.id || idx
69520
69520
  )) }) })
69521
69521
  ]
69522
69522
  },
package/dist/registry.js CHANGED
@@ -14064,10 +14064,10 @@ function ContactCareers({
14064
14064
  type: "single",
14065
14065
  collapsible: true,
14066
14066
  className: cn("space-y-3", accordionClassName),
14067
- children: jobListings.map((job) => /* @__PURE__ */ jsxs(
14067
+ children: jobListings.map((job, idx) => /* @__PURE__ */ jsxs(
14068
14068
  AccordionItem,
14069
14069
  {
14070
- value: job.id,
14070
+ value: job.id || `faq-item-${idx}`,
14071
14071
  className: cn(
14072
14072
  "rounded-xl border border-border/60",
14073
14073
  "px-5 shadow-sm transition-all hover:shadow-md",
@@ -14092,7 +14092,7 @@ function ContactCareers({
14092
14092
  /* @__PURE__ */ jsx(AccordionContent, { className: cn("pb-4", accordionContentClassName), children: job.description })
14093
14093
  ]
14094
14094
  },
14095
- job.id
14095
+ job.id || idx
14096
14096
  ))
14097
14097
  }
14098
14098
  );
@@ -15430,10 +15430,10 @@ function ContactFaq({
15430
15430
  const faqContent = useMemo(() => {
15431
15431
  if (itemsSlot) return itemsSlot;
15432
15432
  if (!items || items.length === 0) return null;
15433
- return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxs(
15433
+ return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxs(
15434
15434
  AccordionItem,
15435
15435
  {
15436
- value: item.id,
15436
+ value: item.id || `faq-item-${idx}`,
15437
15437
  className: accordionItemClassName,
15438
15438
  children: [
15439
15439
  /* @__PURE__ */ jsx(
@@ -15449,7 +15449,7 @@ function ContactFaq({
15449
15449
  /* @__PURE__ */ jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
15450
15450
  ]
15451
15451
  },
15452
- item.id
15452
+ item.id || idx
15453
15453
  )) });
15454
15454
  }, [
15455
15455
  itemsSlot,
@@ -39867,10 +39867,10 @@ function FaqCenteredAccordion({
39867
39867
  type: "single",
39868
39868
  collapsible: true,
39869
39869
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
39870
- children: items.map((item) => /* @__PURE__ */ jsxs(
39870
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
39871
39871
  AccordionItem,
39872
39872
  {
39873
- value: item.id,
39873
+ value: item.id || `faq-item-${idx}`,
39874
39874
  className: accordionItemClassName,
39875
39875
  children: [
39876
39876
  /* @__PURE__ */ jsx(
@@ -39892,7 +39892,7 @@ function FaqCenteredAccordion({
39892
39892
  )
39893
39893
  ]
39894
39894
  },
39895
- item.id
39895
+ item.id || idx
39896
39896
  ))
39897
39897
  }
39898
39898
  );
@@ -39980,10 +39980,10 @@ function FaqBadgeSupport({
39980
39980
  type: "single",
39981
39981
  collapsible: true,
39982
39982
  className: cn("mx-auto w-full lg:max-w-3xl", accordionClassName),
39983
- children: items.map((item) => /* @__PURE__ */ jsxs(
39983
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
39984
39984
  AccordionItem,
39985
39985
  {
39986
- value: item.id,
39986
+ value: item.id || `faq-item-${idx}`,
39987
39987
  className: accordionItemClassName,
39988
39988
  children: [
39989
39989
  /* @__PURE__ */ jsx(
@@ -40005,7 +40005,7 @@ function FaqBadgeSupport({
40005
40005
  )
40006
40006
  ]
40007
40007
  },
40008
- item.id
40008
+ item.id || idx
40009
40009
  ))
40010
40010
  }
40011
40011
  );
@@ -40467,10 +40467,10 @@ function FaqSplitHelp({
40467
40467
  type: "single",
40468
40468
  collapsible: true,
40469
40469
  className: cn("w-full lg:w-2/3", accordionClassName),
40470
- children: items.map((item) => /* @__PURE__ */ jsxs(
40470
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
40471
40471
  AccordionItem,
40472
40472
  {
40473
- value: item.id,
40473
+ value: item.id || `faq-item-${idx}`,
40474
40474
  className: accordionItemClassName,
40475
40475
  children: [
40476
40476
  /* @__PURE__ */ jsx(
@@ -40492,7 +40492,7 @@ function FaqSplitHelp({
40492
40492
  )
40493
40493
  ]
40494
40494
  },
40495
- item.id
40495
+ item.id || idx
40496
40496
  ))
40497
40497
  }
40498
40498
  );
@@ -40653,10 +40653,10 @@ function FaqCategorizedSections({
40653
40653
  children: category.title
40654
40654
  }
40655
40655
  ) : /* @__PURE__ */ jsx("div", { className: categoryTitleClassName, children: category.title }),
40656
- /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxs(
40656
+ /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxs(
40657
40657
  AccordionItem,
40658
40658
  {
40659
- value: item.id,
40659
+ value: item.id || `faq-item-${idx}`,
40660
40660
  className: accordionItemClassName,
40661
40661
  children: [
40662
40662
  /* @__PURE__ */ jsx(
@@ -40678,7 +40678,7 @@ function FaqCategorizedSections({
40678
40678
  )
40679
40679
  ]
40680
40680
  },
40681
- item.id
40681
+ item.id || idx
40682
40682
  )) })
40683
40683
  ] }, categoryIndex))
40684
40684
  }
@@ -40770,7 +40770,7 @@ function FaqMutedCards({
40770
40770
  children: items.map((item, index) => /* @__PURE__ */ jsxs(
40771
40771
  AccordionItem,
40772
40772
  {
40773
- value: item.id,
40773
+ value: item.id || `faq-item-${index}`,
40774
40774
  className: cn(
40775
40775
  "border-border/50",
40776
40776
  index === items.length - 1 ? "border-none" : "",
@@ -40918,10 +40918,10 @@ function FaqBorderedBadge({
40918
40918
  type: "single",
40919
40919
  collapsible: true,
40920
40920
  className: cn("space-y-4", accordionClassName),
40921
- children: items.map((item) => /* @__PURE__ */ jsxs(
40921
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
40922
40922
  AccordionItem,
40923
40923
  {
40924
- value: item.id,
40924
+ value: item.id || `faq-item-${idx}`,
40925
40925
  className: cn("rounded-lg border px-4", accordionItemClassName),
40926
40926
  children: [
40927
40927
  /* @__PURE__ */ jsx(
@@ -40937,7 +40937,7 @@ function FaqBorderedBadge({
40937
40937
  /* @__PURE__ */ jsx(AccordionContent, { className: cn(accordionContentClassName), children: item.answer })
40938
40938
  ]
40939
40939
  },
40940
- item.id
40940
+ item.id || idx
40941
40941
  ))
40942
40942
  }
40943
40943
  );
@@ -41044,10 +41044,10 @@ function FaqGradientCategories({
41044
41044
  children: category.title
41045
41045
  }
41046
41046
  ) : category.title,
41047
- /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxs(
41047
+ /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxs(
41048
41048
  AccordionItem,
41049
41049
  {
41050
- value: item.id,
41050
+ value: item.id || `faq-item-${idx}`,
41051
41051
  className: accordionItemClassName,
41052
41052
  children: [
41053
41053
  /* @__PURE__ */ jsx(
@@ -41071,7 +41071,7 @@ function FaqGradientCategories({
41071
41071
  )
41072
41072
  ]
41073
41073
  },
41074
- item.id
41074
+ item.id || idx
41075
41075
  )) })
41076
41076
  ] }, categoryIndex))
41077
41077
  }
@@ -41220,10 +41220,10 @@ function FaqSidebarNavigation({
41220
41220
  children: category.title
41221
41221
  }
41222
41222
  ) : category.title,
41223
- /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item) => /* @__PURE__ */ jsxs(
41223
+ /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: category.items.map((item, idx) => /* @__PURE__ */ jsxs(
41224
41224
  AccordionItem,
41225
41225
  {
41226
- value: item.id,
41226
+ value: item.id || `faq-item-${idx}`,
41227
41227
  className: accordionItemClassName,
41228
41228
  children: [
41229
41229
  /* @__PURE__ */ jsx(
@@ -41245,7 +41245,7 @@ function FaqSidebarNavigation({
41245
41245
  )
41246
41246
  ]
41247
41247
  },
41248
- item.id
41248
+ item.id || idx
41249
41249
  )) })
41250
41250
  ]
41251
41251
  },
@@ -41435,7 +41435,7 @@ function FaqCardCategories({
41435
41435
  children: category.items?.map((item, index) => /* @__PURE__ */ jsxs(
41436
41436
  AccordionItem,
41437
41437
  {
41438
- value: item.id,
41438
+ value: item.id || `faq-item-${index}`,
41439
41439
  className: cn(
41440
41440
  categories?.length === index + 1 && "border-b-0",
41441
41441
  accordionItemClassName
@@ -41462,7 +41462,7 @@ function FaqCardCategories({
41462
41462
  )
41463
41463
  ]
41464
41464
  },
41465
- item.id
41465
+ item.id || index
41466
41466
  ))
41467
41467
  }
41468
41468
  ) })
@@ -41743,10 +41743,10 @@ function FaqRoundedCards({
41743
41743
  type: "single",
41744
41744
  collapsible: true,
41745
41745
  className: cn("space-y-4", accordionClassName),
41746
- children: items.map((item) => /* @__PURE__ */ jsxs(
41746
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
41747
41747
  AccordionItem,
41748
41748
  {
41749
- value: item.id,
41749
+ value: item.id || `faq-item-${idx}`,
41750
41750
  className: cn(
41751
41751
  "border border-border/50",
41752
41752
  "transition-all duration-500",
@@ -41783,7 +41783,7 @@ function FaqRoundedCards({
41783
41783
  )
41784
41784
  ]
41785
41785
  },
41786
- item.id
41786
+ item.id || idx
41787
41787
  ))
41788
41788
  }
41789
41789
  );
@@ -41901,10 +41901,10 @@ function FaqProfileSidebar({
41901
41901
  const itemsContent = useMemo(() => {
41902
41902
  if (itemsSlot) return itemsSlot;
41903
41903
  if (!items || items.length === 0) return null;
41904
- return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item) => /* @__PURE__ */ jsxs(
41904
+ return /* @__PURE__ */ jsx(Accordion, { type: "single", collapsible: true, className: accordionClassName, children: items.map((item, idx) => /* @__PURE__ */ jsxs(
41905
41905
  AccordionItem,
41906
41906
  {
41907
- value: item.id,
41907
+ value: item.id || `faq-item-${idx}`,
41908
41908
  className: accordionItemClassName,
41909
41909
  children: [
41910
41910
  /* @__PURE__ */ jsx(
@@ -41928,7 +41928,7 @@ function FaqProfileSidebar({
41928
41928
  )
41929
41929
  ]
41930
41930
  },
41931
- item.id
41931
+ item.id || idx
41932
41932
  )) });
41933
41933
  }, [
41934
41934
  itemsSlot,
@@ -42125,10 +42125,10 @@ function FaqSplitHero({
42125
42125
  type: "single",
42126
42126
  collapsible: true,
42127
42127
  className: cn("w-full", accordionClassName),
42128
- children: items.map((item) => /* @__PURE__ */ jsxs(
42128
+ children: items.map((item, idx) => /* @__PURE__ */ jsxs(
42129
42129
  AccordionItem,
42130
42130
  {
42131
- value: item.id,
42131
+ value: item.id || `faq-item-${idx}`,
42132
42132
  className: cn("border-b border-current/20", accordionItemClassName),
42133
42133
  children: [
42134
42134
  /* @__PURE__ */ jsx(
@@ -42152,7 +42152,7 @@ function FaqSplitHero({
42152
42152
  )
42153
42153
  ]
42154
42154
  },
42155
- item.id
42155
+ item.id || idx
42156
42156
  ))
42157
42157
  }
42158
42158
  );
@@ -69451,10 +69451,10 @@ var NavbarTabbedSections = ({
69451
69451
  className: "border-b-0",
69452
69452
  children: [
69453
69453
  /* @__PURE__ */ jsx(AccordionTrigger, { className: "h-15 items-center p-0 px-4! text-base leading-[3.75] font-normal text-muted-foreground hover:bg-muted hover:no-underline", children: item.title }),
69454
- /* @__PURE__ */ jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab) => /* @__PURE__ */ jsxs(
69454
+ /* @__PURE__ */ jsx(AccordionContent, { className: "overflow-x-none pb-4", children: /* @__PURE__ */ jsx(Accordion, { type: "multiple", className: "w-full pl-4", children: item.tabs.map((tab, idx) => /* @__PURE__ */ jsxs(
69455
69455
  AccordionItem,
69456
69456
  {
69457
- value: tab.id,
69457
+ value: tab.id || `tab-${idx}`,
69458
69458
  className: "border-b-0",
69459
69459
  children: [
69460
69460
  /* @__PURE__ */ jsx(AccordionTrigger, { className: "h-12 items-center p-0 px-4! text-sm leading-[3] font-medium text-muted-foreground hover:bg-muted hover:no-underline", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
@@ -69476,7 +69476,7 @@ var NavbarTabbedSections = ({
69476
69476
  )) }) })
69477
69477
  ]
69478
69478
  },
69479
- tab.id
69479
+ tab.id || idx
69480
69480
  )) }) })
69481
69481
  ]
69482
69482
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensite/ui",
3
- "version": "3.4.5",
3
+ "version": "3.4.6",
4
4
  "description": "Foundational UI component library for OpenSite Semantic Site Builder with tree-shakable exports and abstract styling",
5
5
  "keywords": [
6
6
  "react",