@asdp/ferryui 0.1.22-dev.10769 → 0.1.22-dev.10797

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
@@ -10907,6 +10907,7 @@ var CardOrdererInfo = ({
10907
10907
  ccEmail,
10908
10908
  onCcEmailChange,
10909
10909
  onCcEmailRemove,
10910
+ showNotificationType = false,
10910
10911
  notificationType: notificationTypeProp = "whatsapp",
10911
10912
  onNotificationTypeChange
10912
10913
  }) => {
@@ -10946,7 +10947,7 @@ var CardOrdererInfo = ({
10946
10947
  /* @__PURE__ */ jsx(Body1, { className: styles.value, children: orderer?.email || "-" }),
10947
10948
  !showCcForm && /* @__PURE__ */ jsx(Link, { className: styles.addCcLink, onClick: handleAddCcClick, children: mergedLabels.addCcEmail })
10948
10949
  ] }) }),
10949
- /* @__PURE__ */ jsx(Col, { md: 4, children: /* @__PURE__ */ jsxs("div", { className: styles.notificationSection, children: [
10950
+ showNotificationType && /* @__PURE__ */ jsx(Col, { md: 4, children: /* @__PURE__ */ jsxs("div", { className: styles.notificationSection, children: [
10950
10951
  /* @__PURE__ */ jsx(Body2, { className: styles.notificationLabel, children: mergedLabels.notificationLabel }),
10951
10952
  /* @__PURE__ */ jsxs(
10952
10953
  RadioGroup,
@@ -18489,8 +18490,8 @@ var CardProfileMenu = ({
18489
18490
  }) => {
18490
18491
  const styles = useStyles45();
18491
18492
  ({ ...DEFAULT_LABELS43[language], ...labels });
18492
- const handleTabSelect = (_, data) => {
18493
- onTabSelect(data.value);
18493
+ const handleTabSelect = async (_, data) => {
18494
+ await onTabSelect(data.value);
18494
18495
  };
18495
18496
  return /* @__PURE__ */ jsx("div", { className: styles.container, children: /* @__PURE__ */ jsx(
18496
18497
  TabList,