@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.d.mts CHANGED
@@ -2976,7 +2976,7 @@ interface CardBookingTicketProps {
2976
2976
  declare const CardBookingTicket: React$1.FC<CardBookingTicketProps>;
2977
2977
 
2978
2978
  interface FAQItem {
2979
- value: string;
2979
+ id: number;
2980
2980
  question: string;
2981
2981
  answer: string;
2982
2982
  }
package/dist/index.d.ts CHANGED
@@ -2976,7 +2976,7 @@ interface CardBookingTicketProps {
2976
2976
  declare const CardBookingTicket: React$1.FC<CardBookingTicketProps>;
2977
2977
 
2978
2978
  interface FAQItem {
2979
- value: string;
2979
+ id: number;
2980
2980
  question: string;
2981
2981
  answer: string;
2982
2982
  }
package/dist/index.js CHANGED
@@ -10786,44 +10786,44 @@ var DEFAULT_LABELS27 = {
10786
10786
  var DEFAULT_FAQ_ITEMS = {
10787
10787
  id: [
10788
10788
  {
10789
- value: "1",
10789
+ id: 1,
10790
10790
  question: "Bagaimana cara memesan tiket?",
10791
10791
  answer: "Anda dapat memesan tiket melalui halaman pencarian tiket dengan memilih pelabuhan asal, tujuan, dan tanggal keberangkatan."
10792
10792
  },
10793
10793
  {
10794
- value: "2",
10794
+ id: 2,
10795
10795
  question: "Apakah bisa mengajukan refund?",
10796
10796
  answer: "Ya, pengajuan refund dapat dilakukan melalui menu Riwayat Pesanan sesuai dengan syarat dan ketentuan yang berlaku."
10797
10797
  },
10798
10798
  {
10799
- value: "3",
10799
+ id: 3,
10800
10800
  question: "Metode pembayaran apa saja yang tersedia?",
10801
10801
  answer: "Kami mendukung berbagai metode pembayaran termasuk Virtual Account, E-Wallet, dan Kartu Kredit/Debit."
10802
10802
  },
10803
10803
  {
10804
- value: "4",
10804
+ id: 4,
10805
10805
  question: "Apakah tiket perlu dicetak?",
10806
10806
  answer: "Tidak perlu. Anda dapat menunjukkan E-Tiket atau QR Code pada saat check-in di pelabuhan."
10807
10807
  }
10808
10808
  ],
10809
10809
  en: [
10810
10810
  {
10811
- value: "1",
10811
+ id: 1,
10812
10812
  question: "How to book a ticket?",
10813
10813
  answer: "You can book tickets through the ticket search page by selecting origin, destination, and departure date."
10814
10814
  },
10815
10815
  {
10816
- value: "2",
10816
+ id: 2,
10817
10817
  question: "Can I request a refund?",
10818
10818
  answer: "Yes, refund requests can be made via the Order History menu subject to applicable terms and conditions."
10819
10819
  },
10820
10820
  {
10821
- value: "3",
10821
+ id: 3,
10822
10822
  question: "What payment methods are available?",
10823
10823
  answer: "We support various payment methods including Virtual Account, E-Wallet, and Credit/Debit Cards."
10824
10824
  },
10825
10825
  {
10826
- value: "4",
10826
+ id: 4,
10827
10827
  question: "Do I need to print the ticket?",
10828
10828
  answer: "No physically printed ticket needed. You can show your E-Ticket or QR Code during check-in at the port."
10829
10829
  }
@@ -10861,7 +10861,7 @@ var CardFAQ = ({
10861
10861
  /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Accordion, { collapsible: true, children: faqItems.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
10862
10862
  reactComponents.AccordionItem,
10863
10863
  {
10864
- value: item.value,
10864
+ value: item.id,
10865
10865
  className: styles.accordionItem,
10866
10866
  children: [
10867
10867
  /* @__PURE__ */ jsxRuntime.jsxs(
@@ -10885,7 +10885,7 @@ var CardFAQ = ({
10885
10885
  /* @__PURE__ */ jsxRuntime.jsx(reactComponents.AccordionPanel, { children: item.answer })
10886
10886
  ]
10887
10887
  },
10888
- item.value
10888
+ item.id
10889
10889
  )) })
10890
10890
  ] });
10891
10891
  };