@opensite/ui 3.4.4 → 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.
Files changed (39) hide show
  1. package/dist/contact-careers.cjs +3 -3
  2. package/dist/contact-careers.js +3 -3
  3. package/dist/contact-faq.cjs +3 -3
  4. package/dist/contact-faq.js +3 -3
  5. package/dist/faq-badge-support.cjs +3 -3
  6. package/dist/faq-badge-support.js +3 -3
  7. package/dist/faq-bordered-badge.cjs +3 -3
  8. package/dist/faq-bordered-badge.js +3 -3
  9. package/dist/faq-card-categories.cjs +2 -2
  10. package/dist/faq-card-categories.js +2 -2
  11. package/dist/faq-categorized-sections.cjs +3 -3
  12. package/dist/faq-categorized-sections.js +3 -3
  13. package/dist/faq-centered-accordion.cjs +3 -3
  14. package/dist/faq-centered-accordion.js +3 -3
  15. package/dist/faq-gradient-categories.cjs +3 -3
  16. package/dist/faq-gradient-categories.js +3 -3
  17. package/dist/faq-muted-cards.cjs +1 -1
  18. package/dist/faq-muted-cards.js +1 -1
  19. package/dist/faq-profile-sidebar.cjs +3 -3
  20. package/dist/faq-profile-sidebar.js +3 -3
  21. package/dist/faq-rounded-cards.cjs +3 -3
  22. package/dist/faq-rounded-cards.js +3 -3
  23. package/dist/faq-sidebar-navigation.cjs +3 -3
  24. package/dist/faq-sidebar-navigation.js +3 -3
  25. package/dist/faq-split-help.cjs +3 -3
  26. package/dist/faq-split-help.js +3 -3
  27. package/dist/faq-split-hero.cjs +3 -3
  28. package/dist/faq-split-hero.js +3 -3
  29. package/dist/feature-checklist-image.cjs +86 -23
  30. package/dist/feature-checklist-image.d.cts +21 -1
  31. package/dist/feature-checklist-image.d.ts +21 -1
  32. package/dist/feature-checklist-image.js +86 -23
  33. package/dist/navbar-tabbed-sections.cjs +3 -3
  34. package/dist/navbar-tabbed-sections.js +3 -3
  35. package/dist/registry.cjs +128 -65
  36. package/dist/registry.js +128 -65
  37. package/dist/social-link-icon.d.cts +1 -1
  38. package/dist/social-link-icon.d.ts +1 -1
  39. package/package.json +1 -1
@@ -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
  );