@asdp/ferryui 0.1.22-dev.10850 → 0.1.22-dev.10936

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
@@ -3826,6 +3826,16 @@ interface CardPaymentMethodListProps {
3826
3826
  methods: PaymentMethodCategory[];
3827
3827
  selectedValue?: string;
3828
3828
  onSelect: (value: string) => void;
3829
+ /**
3830
+ * Loading state for skeleton display
3831
+ * @default false
3832
+ */
3833
+ isLoading?: boolean;
3834
+ /**
3835
+ * Number of skeleton categories to display while loading
3836
+ * @default 3
3837
+ */
3838
+ skeletonCount?: number;
3829
3839
  }
3830
3840
 
3831
3841
  declare const CardPaymentMethodList: React$1.FC<CardPaymentMethodListProps>;
@@ -3882,6 +3892,16 @@ interface CardPaymentMethodFavoriteProps {
3882
3892
  * @default true
3883
3893
  */
3884
3894
  showViewAllButton?: boolean;
3895
+ /**
3896
+ * Loading state for skeleton display
3897
+ * @default false
3898
+ */
3899
+ isLoading?: boolean;
3900
+ /**
3901
+ * Number of skeleton payment methods to display while loading
3902
+ * @default 3
3903
+ */
3904
+ skeletonCount?: number;
3885
3905
  }
3886
3906
 
3887
3907
  declare const CardPaymentMethodFavorite: React$1.FC<CardPaymentMethodFavoriteProps>;
@@ -3942,6 +3962,11 @@ interface CardPaymentInfoProps {
3942
3962
  onCopyVA?: () => void;
3943
3963
  onCheckStatus?: () => void;
3944
3964
  onChangePayment?: () => void;
3965
+ /**
3966
+ * Loading state for skeleton display
3967
+ * @default false
3968
+ */
3969
+ isLoading?: boolean;
3945
3970
  }
3946
3971
 
3947
3972
  declare const CardPaymentInfo: React$1.FC<CardPaymentInfoProps>;
package/dist/index.d.ts CHANGED
@@ -3826,6 +3826,16 @@ interface CardPaymentMethodListProps {
3826
3826
  methods: PaymentMethodCategory[];
3827
3827
  selectedValue?: string;
3828
3828
  onSelect: (value: string) => void;
3829
+ /**
3830
+ * Loading state for skeleton display
3831
+ * @default false
3832
+ */
3833
+ isLoading?: boolean;
3834
+ /**
3835
+ * Number of skeleton categories to display while loading
3836
+ * @default 3
3837
+ */
3838
+ skeletonCount?: number;
3829
3839
  }
3830
3840
 
3831
3841
  declare const CardPaymentMethodList: React$1.FC<CardPaymentMethodListProps>;
@@ -3882,6 +3892,16 @@ interface CardPaymentMethodFavoriteProps {
3882
3892
  * @default true
3883
3893
  */
3884
3894
  showViewAllButton?: boolean;
3895
+ /**
3896
+ * Loading state for skeleton display
3897
+ * @default false
3898
+ */
3899
+ isLoading?: boolean;
3900
+ /**
3901
+ * Number of skeleton payment methods to display while loading
3902
+ * @default 3
3903
+ */
3904
+ skeletonCount?: number;
3885
3905
  }
3886
3906
 
3887
3907
  declare const CardPaymentMethodFavorite: React$1.FC<CardPaymentMethodFavoriteProps>;
@@ -3942,6 +3962,11 @@ interface CardPaymentInfoProps {
3942
3962
  onCopyVA?: () => void;
3943
3963
  onCheckStatus?: () => void;
3944
3964
  onChangePayment?: () => void;
3965
+ /**
3966
+ * Loading state for skeleton display
3967
+ * @default false
3968
+ */
3969
+ isLoading?: boolean;
3945
3970
  }
3946
3971
 
3947
3972
  declare const CardPaymentInfo: React$1.FC<CardPaymentInfoProps>;
package/dist/index.js CHANGED
@@ -7176,8 +7176,10 @@ var ModalSearchHarbor = ({
7176
7176
  const styles = useStyles12();
7177
7177
  const mergedLabels = { ...DEFAULT_LABELS10[language], ...labels };
7178
7178
  const isError = isErrorTravelPlan && isErrorPort;
7179
- const handleSelect = (harbor) => {
7180
- onAddLastSearched(harbor);
7179
+ const handleSelect = (harbor, addRecent = true) => {
7180
+ if (addRecent) {
7181
+ onAddLastSearched(harbor);
7182
+ }
7181
7183
  onSelectHarbor(harbor);
7182
7184
  onSearchChange("");
7183
7185
  };
@@ -7258,7 +7260,7 @@ var ModalSearchHarbor = ({
7258
7260
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles.buttonContainer, children: favoriteHarbors.map((harbor) => /* @__PURE__ */ jsxRuntime.jsxs(
7259
7261
  reactComponents.Button,
7260
7262
  {
7261
- onClick: () => handleSelect(harbor),
7263
+ onClick: () => handleSelect(harbor, false),
7262
7264
  size: "medium",
7263
7265
  appearance: "subtle",
7264
7266
  iconPosition: "before",
@@ -7309,7 +7311,7 @@ var ModalSearchHarbor = ({
7309
7311
  HarborListItem,
7310
7312
  {
7311
7313
  harbor,
7312
- onSelect: handleSelect,
7314
+ onSelect: (harbor2) => handleSelect(harbor2, false),
7313
7315
  containerClassName: styles.historyItem,
7314
7316
  trailingIcon: showButtonFavorite && /* @__PURE__ */ jsxRuntime.jsx(
7315
7317
  react.Icon,
@@ -7331,7 +7333,7 @@ var ModalSearchHarbor = ({
7331
7333
  HarborListItem,
7332
7334
  {
7333
7335
  harbor,
7334
- onSelect: handleSelect,
7336
+ onSelect: (harbor2) => handleSelect(harbor2, false),
7335
7337
  containerClassName: styles.historyItem,
7336
7338
  trailingIcon: showButtonFavorite && /* @__PURE__ */ jsxRuntime.jsx(
7337
7339
  react.Icon,
@@ -7371,7 +7373,7 @@ var ModalSearchHarbor = ({
7371
7373
  HarborListItem,
7372
7374
  {
7373
7375
  harbor,
7374
- onSelect: handleSelect,
7376
+ onSelect: (harbor2) => handleSelect(harbor2, !!searchQuery),
7375
7377
  containerClassName: styles.harborItem,
7376
7378
  trailingIcon: showButtonFavorite && /* @__PURE__ */ jsxRuntime.jsx(
7377
7379
  react.Icon,
@@ -16542,6 +16544,17 @@ var useStyles38 = reactComponents.makeStyles({
16542
16544
  height: "40px",
16543
16545
  objectFit: "contain"
16544
16546
  },
16547
+ skeletonOption: {
16548
+ display: "flex",
16549
+ alignItems: "center",
16550
+ justifyContent: "space-between",
16551
+ width: "100%"
16552
+ },
16553
+ skeletonOptionLeft: {
16554
+ display: "flex",
16555
+ alignItems: "center",
16556
+ gap: reactComponents.tokens.spacingHorizontalL
16557
+ },
16545
16558
  card: {
16546
16559
  position: "relative",
16547
16560
  borderRadius: reactComponents.tokens.borderRadiusXLarge,
@@ -16558,13 +16571,53 @@ var CardPaymentMethodList = ({
16558
16571
  labels,
16559
16572
  methods,
16560
16573
  selectedValue,
16561
- onSelect
16574
+ onSelect,
16575
+ isLoading = false,
16576
+ skeletonCount = 3
16562
16577
  }) => {
16563
16578
  const styles = useStyles38();
16564
16579
  const mergedLabels = { ...DEFAULT_LABELS36[language], ...labels };
16565
16580
  return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles.card, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: `${styles.container}`, children: [
16566
16581
  /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Subtitle1, { children: mergedLabels.method }),
16567
- methods.map((category, index) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
16582
+ isLoading ? Array.from({ length: skeletonCount }).map((_, index) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
16583
+ index > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles.dividerContainer, children: /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Divider, {}) }),
16584
+ /* @__PURE__ */ jsxRuntime.jsxs(reactComponents.Skeleton, { children: [
16585
+ /* @__PURE__ */ jsxRuntime.jsx(
16586
+ reactComponents.SkeletonItem,
16587
+ {
16588
+ style: {
16589
+ width: "60%",
16590
+ height: "20px",
16591
+ marginBottom: reactComponents.tokens.spacingVerticalXXL
16592
+ }
16593
+ }
16594
+ ),
16595
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.skeletonOption, children: [
16596
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.skeletonOptionLeft, children: [
16597
+ /* @__PURE__ */ jsxRuntime.jsx(
16598
+ reactComponents.SkeletonItem,
16599
+ {
16600
+ shape: "circle",
16601
+ style: { width: "40px", height: "40px" }
16602
+ }
16603
+ ),
16604
+ /* @__PURE__ */ jsxRuntime.jsx(
16605
+ reactComponents.SkeletonItem,
16606
+ {
16607
+ style: { width: "140px", height: "18px" }
16608
+ }
16609
+ )
16610
+ ] }),
16611
+ /* @__PURE__ */ jsxRuntime.jsx(
16612
+ reactComponents.SkeletonItem,
16613
+ {
16614
+ shape: "circle",
16615
+ style: { width: "20px", height: "20px" }
16616
+ }
16617
+ )
16618
+ ] })
16619
+ ] })
16620
+ ] }, `payment-method-skeleton-${index}`)) : methods.map((category, index) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
16568
16621
  index > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles.dividerContainer, children: /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Divider, {}) }),
16569
16622
  /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Accordion, { multiple: true, collapsible: true, children: /* @__PURE__ */ jsxRuntime.jsxs(reactComponents.AccordionItem, { value: category.value, children: [
16570
16623
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -16648,6 +16701,17 @@ var useStyles39 = reactComponents.makeStyles({
16648
16701
  ),
16649
16702
  backgroundColor: reactComponents.tokens.colorNeutralBackground1,
16650
16703
  zIndex: 3
16704
+ },
16705
+ skeletonRow: {
16706
+ display: "flex",
16707
+ alignItems: "center",
16708
+ justifyContent: "space-between",
16709
+ width: "100%"
16710
+ },
16711
+ skeletonLeft: {
16712
+ display: "flex",
16713
+ alignItems: "center",
16714
+ gap: reactComponents.tokens.spacingHorizontalL
16651
16715
  }
16652
16716
  });
16653
16717
  var CardPaymentMethodFavorite = ({
@@ -16658,7 +16722,9 @@ var CardPaymentMethodFavorite = ({
16658
16722
  onSelect,
16659
16723
  onViewAllMethods,
16660
16724
  showWarning = true,
16661
- showViewAllButton = true
16725
+ showViewAllButton = true,
16726
+ isLoading = false,
16727
+ skeletonCount = 3
16662
16728
  }) => {
16663
16729
  const styles = useStyles39();
16664
16730
  const mergedLabels = { ...DEFAULT_LABELS37[language], ...labels };
@@ -16678,29 +16744,61 @@ var CardPaymentMethodFavorite = ({
16678
16744
  )
16679
16745
  }
16680
16746
  ),
16681
- /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Row, { nogutter: true, style: { gap: reactComponents.tokens.spacingVerticalL }, children: methods.map((option) => /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { xs: 12, onClick: () => onSelect(option.value), style: { cursor: "pointer" }, children: /* @__PURE__ */ jsxRuntime.jsxs(reactGridSystem.Row, { justify: "between", children: [
16682
- /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { xs: "content", children: /* @__PURE__ */ jsxRuntime.jsx(
16683
- "img",
16684
- {
16685
- src: option.image,
16686
- alt: option.label,
16687
- className: styles.image
16688
- }
16689
- ) }),
16690
- /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { children: /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Subtitle2, { children: option.label }) }),
16691
- /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { xs: "content", children: /* @__PURE__ */ jsxRuntime.jsx(
16692
- reactComponents.Radio,
16747
+ isLoading ? /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Skeleton, { children: /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Row, { nogutter: true, style: { gap: reactComponents.tokens.spacingVerticalL }, children: Array.from({ length: skeletonCount }).map((_, index) => /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { xs: 12, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.skeletonRow, children: [
16748
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.skeletonLeft, children: [
16749
+ /* @__PURE__ */ jsxRuntime.jsx(
16750
+ reactComponents.SkeletonItem,
16751
+ {
16752
+ shape: "circle",
16753
+ style: { width: "40px", height: "40px" }
16754
+ }
16755
+ ),
16756
+ /* @__PURE__ */ jsxRuntime.jsx(
16757
+ reactComponents.SkeletonItem,
16758
+ {
16759
+ style: { width: "140px", height: "18px" }
16760
+ }
16761
+ )
16762
+ ] }),
16763
+ /* @__PURE__ */ jsxRuntime.jsx(
16764
+ reactComponents.SkeletonItem,
16693
16765
  {
16694
- checked: selectedValue === option.value,
16695
- onChange: () => onSelect(option.value),
16696
- value: option.value,
16697
- name: "payment-method-favorite",
16698
- disabled: option.disabled,
16699
- "aria-label": `${mergedLabels.selectAriaLabel} ${option.label}`
16766
+ shape: "circle",
16767
+ style: { width: "20px", height: "20px" }
16700
16768
  }
16701
- ) })
16702
- ] }) }, option.value)) }),
16703
- showViewAllButton && /* @__PURE__ */ jsxRuntime.jsx(
16769
+ )
16770
+ ] }) }, `payment-favorite-skeleton-${index}`)) }) }) : /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Row, { nogutter: true, style: { gap: reactComponents.tokens.spacingVerticalL }, children: methods.map((option) => /* @__PURE__ */ jsxRuntime.jsx(
16771
+ reactGridSystem.Col,
16772
+ {
16773
+ xs: 12,
16774
+ onClick: () => onSelect(option.value),
16775
+ style: { cursor: "pointer" },
16776
+ children: /* @__PURE__ */ jsxRuntime.jsxs(reactGridSystem.Row, { justify: "between", children: [
16777
+ /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { xs: "content", children: /* @__PURE__ */ jsxRuntime.jsx(
16778
+ "img",
16779
+ {
16780
+ src: option.image,
16781
+ alt: option.label,
16782
+ className: styles.image
16783
+ }
16784
+ ) }),
16785
+ /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { children: /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Subtitle2, { children: option.label }) }),
16786
+ /* @__PURE__ */ jsxRuntime.jsx(reactGridSystem.Col, { xs: "content", children: /* @__PURE__ */ jsxRuntime.jsx(
16787
+ reactComponents.Radio,
16788
+ {
16789
+ checked: selectedValue === option.value,
16790
+ onChange: () => onSelect(option.value),
16791
+ value: option.value,
16792
+ name: "payment-method-favorite",
16793
+ disabled: option.disabled,
16794
+ "aria-label": `${mergedLabels.selectAriaLabel} ${option.label}`
16795
+ }
16796
+ ) })
16797
+ ] })
16798
+ },
16799
+ option.value
16800
+ )) }),
16801
+ showViewAllButton && !isLoading && /* @__PURE__ */ jsxRuntime.jsx(
16704
16802
  reactComponents.Button,
16705
16803
  {
16706
16804
  style: { width: "100%" },
@@ -16877,6 +16975,18 @@ var useStyles41 = reactComponents.makeStyles({
16877
16975
  reactComponents.tokens.spacingHorizontalM
16878
16976
  ),
16879
16977
  color: reactComponents.tokens.colorNeutralForeground4
16978
+ },
16979
+ skeletonCenter: {
16980
+ display: "flex",
16981
+ flexDirection: "column",
16982
+ alignItems: "center",
16983
+ gap: reactComponents.tokens.spacingHorizontalM
16984
+ },
16985
+ skeletonRow: {
16986
+ display: "flex",
16987
+ alignItems: "center",
16988
+ justifyContent: "center",
16989
+ gap: reactComponents.tokens.spacingHorizontalM
16880
16990
  }
16881
16991
  });
16882
16992
  var CardPaymentInfo = ({
@@ -16889,11 +16999,103 @@ var CardPaymentInfo = ({
16889
16999
  guides,
16890
17000
  onCopyVA,
16891
17001
  onCheckStatus,
16892
- onChangePayment
17002
+ onChangePayment,
17003
+ isLoading = false
16893
17004
  }) => {
16894
17005
  const styles = useStyles41();
16895
17006
  const mergedLabels = { ...DEFAULT_LABELS39[language], ...labels };
16896
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles.card, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.container, children: [
17007
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles.card, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles.container, children: isLoading ? /* @__PURE__ */ jsxRuntime.jsxs(reactComponents.Skeleton, { children: [
17008
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.headerRow, children: [
17009
+ /* @__PURE__ */ jsxRuntime.jsx(reactComponents.SkeletonItem, { style: { width: "180px", height: "20px" } }),
17010
+ /* @__PURE__ */ jsxRuntime.jsx(reactComponents.SkeletonItem, { style: { width: "260px", height: "28px" } })
17011
+ ] }),
17012
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.infoCard, children: [
17013
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.codeCard, children: [
17014
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.skeletonRow, children: [
17015
+ /* @__PURE__ */ jsxRuntime.jsx(
17016
+ reactComponents.SkeletonItem,
17017
+ {
17018
+ shape: "circle",
17019
+ style: { width: "40px", height: "40px" }
17020
+ }
17021
+ ),
17022
+ /* @__PURE__ */ jsxRuntime.jsx(reactComponents.SkeletonItem, { style: { width: "160px", height: "20px" } })
17023
+ ] }),
17024
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.skeletonCenter, children: [
17025
+ /* @__PURE__ */ jsxRuntime.jsx(reactComponents.SkeletonItem, { style: { width: "260px", height: "36px" } }),
17026
+ /* @__PURE__ */ jsxRuntime.jsx(
17027
+ reactComponents.SkeletonItem,
17028
+ {
17029
+ style: {
17030
+ width: "80%",
17031
+ height: "40px",
17032
+ borderRadius: reactComponents.tokens.borderRadiusCircular
17033
+ }
17034
+ }
17035
+ )
17036
+ ] })
17037
+ ] }),
17038
+ /* @__PURE__ */ jsxRuntime.jsx(
17039
+ reactComponents.SkeletonItem,
17040
+ {
17041
+ style: {
17042
+ width: "100%",
17043
+ height: "40px",
17044
+ borderRadius: reactComponents.tokens.borderRadiusCircular
17045
+ }
17046
+ }
17047
+ ),
17048
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
17049
+ /* @__PURE__ */ jsxRuntime.jsx(
17050
+ reactComponents.SkeletonItem,
17051
+ {
17052
+ style: {
17053
+ width: "120px",
17054
+ height: "18px",
17055
+ marginBottom: "8px"
17056
+ }
17057
+ }
17058
+ ),
17059
+ /* @__PURE__ */ jsxRuntime.jsx(
17060
+ reactComponents.SkeletonItem,
17061
+ {
17062
+ style: {
17063
+ width: "100%",
17064
+ height: "36px",
17065
+ borderRadius: reactComponents.tokens.borderRadius2XLarge
17066
+ }
17067
+ }
17068
+ )
17069
+ ] })
17070
+ ] }),
17071
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
17072
+ /* @__PURE__ */ jsxRuntime.jsx(
17073
+ reactComponents.SkeletonItem,
17074
+ {
17075
+ style: {
17076
+ width: "75%",
17077
+ height: "18px",
17078
+ marginBottom: reactComponents.tokens.spacingVerticalM
17079
+ }
17080
+ }
17081
+ ),
17082
+ /* @__PURE__ */ jsxRuntime.jsx(
17083
+ reactComponents.SkeletonItem,
17084
+ {
17085
+ style: {
17086
+ width: "100%",
17087
+ height: "40px",
17088
+ borderRadius: reactComponents.tokens.borderRadiusCircular
17089
+ }
17090
+ }
17091
+ )
17092
+ ] }),
17093
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.infoCard, children: [
17094
+ /* @__PURE__ */ jsxRuntime.jsx(reactComponents.SkeletonItem, { style: { width: "55%", height: "20px" } }),
17095
+ /* @__PURE__ */ jsxRuntime.jsx(reactComponents.SkeletonItem, { style: { width: "100%", height: "16px" } }),
17096
+ /* @__PURE__ */ jsxRuntime.jsx(reactComponents.SkeletonItem, { style: { width: "85%", height: "16px" } })
17097
+ ] })
17098
+ ] }) : /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
16897
17099
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles.headerRow, children: [
16898
17100
  /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Subtitle1, { children: mergedLabels.expiryPrefix }),
16899
17101
  /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Title2, { className: styles.expiryTitle, children: expiryDate })
@@ -16946,7 +17148,16 @@ var CardPaymentInfo = ({
16946
17148
  )
16947
17149
  ] }),
16948
17150
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
16949
- /* @__PURE__ */ jsxRuntime.jsx("div", { style: { marginBottom: reactComponents.tokens.spacingVerticalM }, children: /* @__PURE__ */ jsxRuntime.jsx(reactComponents.Subtitle2, { style: { color: reactComponents.tokens.colorNeutralStrokeAccessible, fontWeight: fontWeight.Medium }, children: mergedLabels.checkStatusInfo }) }),
17151
+ /* @__PURE__ */ jsxRuntime.jsx("div", { style: { marginBottom: reactComponents.tokens.spacingVerticalM }, children: /* @__PURE__ */ jsxRuntime.jsx(
17152
+ reactComponents.Subtitle2,
17153
+ {
17154
+ style: {
17155
+ color: reactComponents.tokens.colorNeutralStrokeAccessible,
17156
+ fontWeight: fontWeight.Medium
17157
+ },
17158
+ children: mergedLabels.checkStatusInfo
17159
+ }
17160
+ ) }),
16950
17161
  /* @__PURE__ */ jsxRuntime.jsx(
16951
17162
  reactComponents.Button,
16952
17163
  {
@@ -16960,7 +17171,7 @@ var CardPaymentInfo = ({
16960
17171
  )
16961
17172
  ] }),
16962
17173
  /* @__PURE__ */ jsxRuntime.jsx(CardPaymentGuide, { guides, language })
16963
- ] }) });
17174
+ ] }) }) });
16964
17175
  };
16965
17176
 
16966
17177
  // src/components/CardStatusOrder/CardStatusOrder.constants.ts