@asdp/ferryui 0.1.22-dev.9117 → 0.1.22-dev.9151

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.mjs CHANGED
@@ -10777,44 +10777,44 @@ var DEFAULT_LABELS27 = {
10777
10777
  var DEFAULT_FAQ_ITEMS = {
10778
10778
  id: [
10779
10779
  {
10780
- value: "1",
10780
+ id: 1,
10781
10781
  question: "Bagaimana cara memesan tiket?",
10782
10782
  answer: "Anda dapat memesan tiket melalui halaman pencarian tiket dengan memilih pelabuhan asal, tujuan, dan tanggal keberangkatan."
10783
10783
  },
10784
10784
  {
10785
- value: "2",
10785
+ id: 2,
10786
10786
  question: "Apakah bisa mengajukan refund?",
10787
10787
  answer: "Ya, pengajuan refund dapat dilakukan melalui menu Riwayat Pesanan sesuai dengan syarat dan ketentuan yang berlaku."
10788
10788
  },
10789
10789
  {
10790
- value: "3",
10790
+ id: 3,
10791
10791
  question: "Metode pembayaran apa saja yang tersedia?",
10792
10792
  answer: "Kami mendukung berbagai metode pembayaran termasuk Virtual Account, E-Wallet, dan Kartu Kredit/Debit."
10793
10793
  },
10794
10794
  {
10795
- value: "4",
10795
+ id: 4,
10796
10796
  question: "Apakah tiket perlu dicetak?",
10797
10797
  answer: "Tidak perlu. Anda dapat menunjukkan E-Tiket atau QR Code pada saat check-in di pelabuhan."
10798
10798
  }
10799
10799
  ],
10800
10800
  en: [
10801
10801
  {
10802
- value: "1",
10802
+ id: 1,
10803
10803
  question: "How to book a ticket?",
10804
10804
  answer: "You can book tickets through the ticket search page by selecting origin, destination, and departure date."
10805
10805
  },
10806
10806
  {
10807
- value: "2",
10807
+ id: 2,
10808
10808
  question: "Can I request a refund?",
10809
10809
  answer: "Yes, refund requests can be made via the Order History menu subject to applicable terms and conditions."
10810
10810
  },
10811
10811
  {
10812
- value: "3",
10812
+ id: 3,
10813
10813
  question: "What payment methods are available?",
10814
10814
  answer: "We support various payment methods including Virtual Account, E-Wallet, and Credit/Debit Cards."
10815
10815
  },
10816
10816
  {
10817
- value: "4",
10817
+ id: 4,
10818
10818
  question: "Do I need to print the ticket?",
10819
10819
  answer: "No physically printed ticket needed. You can show your E-Ticket or QR Code during check-in at the port."
10820
10820
  }
@@ -10852,7 +10852,7 @@ var CardFAQ = ({
10852
10852
  /* @__PURE__ */ jsx(Accordion, { collapsible: true, children: faqItems.map((item) => /* @__PURE__ */ jsxs(
10853
10853
  AccordionItem,
10854
10854
  {
10855
- value: item.value,
10855
+ value: item.id,
10856
10856
  className: styles.accordionItem,
10857
10857
  children: [
10858
10858
  /* @__PURE__ */ jsxs(
@@ -10876,7 +10876,7 @@ var CardFAQ = ({
10876
10876
  /* @__PURE__ */ jsx(AccordionPanel, { children: item.answer })
10877
10877
  ]
10878
10878
  },
10879
- item.value
10879
+ item.id
10880
10880
  )) })
10881
10881
  ] });
10882
10882
  };