@landtrustinc/design-system 1.2.41 → 1.2.42

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.js CHANGED
@@ -66,6 +66,7 @@ __export(src_exports, {
66
66
  Navigation: () => Navigation_default,
67
67
  PackageCard: () => PackageCard_default,
68
68
  PackageHeader: () => PackageHeader_default,
69
+ ProgressBar: () => ProgressBar_default,
69
70
  ReviewCard: () => ReviewCard_default,
70
71
  Reviews: () => Reviews_default,
71
72
  ReviewsShowcase: () => ReviewsShowcase_default,
@@ -78,6 +79,7 @@ __export(src_exports, {
78
79
  Text: () => Text_default,
79
80
  TextArea: () => TextArea,
80
81
  ThemeTokens: () => ThemeTokens,
82
+ Timer: () => Timer_default,
81
83
  Tooltip: () => Tooltip_default,
82
84
  TopMatchingFieldNote: () => TopMatchingFieldNote,
83
85
  TopMatchingReview: () => TopMatchingReview,
@@ -7822,8 +7824,127 @@ var InfoBox = ({ heading, features, className }) => {
7822
7824
  };
7823
7825
  var InfoBox_default = InfoBox;
7824
7826
 
7825
- // src/StarRating/StarRating.tsx
7827
+ // src/LandownerProfile/LandownerProfile.tsx
7828
+ var import_react52 = require("react");
7829
+
7830
+ // src/ProgressBar/ProgressBar.styles.ts
7831
+ var import_react49 = require("@emotion/react");
7832
+ var progressStyles = import_react49.css`
7833
+ transition: width 0.3s ease-in-out;
7834
+ `;
7835
+
7836
+ // src/ProgressBar/ProgressBar.tsx
7826
7837
  var import_jsx_runtime242 = require("@emotion/react/jsx-runtime");
7838
+ var ProgressBar = ({ progress, className }) => {
7839
+ const clampedProgress = Math.min(100, Math.max(0, progress));
7840
+ return /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(
7841
+ Box_default,
7842
+ {
7843
+ width: "100%",
7844
+ height: "10px",
7845
+ backgroundColor: "var(--color-primary-100)",
7846
+ borderRadius: "48px",
7847
+ overflow: "hidden",
7848
+ position: "relative",
7849
+ className,
7850
+ children: /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(
7851
+ Box_default,
7852
+ {
7853
+ height: "100%",
7854
+ borderRadius: "48px",
7855
+ backgroundColor: "var(--color-primary-900)",
7856
+ css: progressStyles,
7857
+ style: { width: `${clampedProgress}%` },
7858
+ role: "progressbar",
7859
+ "aria-valuenow": clampedProgress,
7860
+ "aria-valuemin": 0,
7861
+ "aria-valuemax": 100
7862
+ }
7863
+ )
7864
+ }
7865
+ );
7866
+ };
7867
+ ProgressBar.displayName = "ProgressBar";
7868
+ var ProgressBar_default = ProgressBar;
7869
+
7870
+ // src/Timer/Timer.tsx
7871
+ var import_react51 = require("react");
7872
+
7873
+ // src/Timer/Timer.styles.ts
7874
+ var import_react50 = require("@emotion/react");
7875
+ var rootStyles2 = import_react50.css`
7876
+ display: inline-flex;
7877
+ font-variant-numeric: tabular-nums;
7878
+ `;
7879
+
7880
+ // src/Timer/Timer.tsx
7881
+ var import_jsx_runtime243 = require("@emotion/react/jsx-runtime");
7882
+ var calculateTimeLeft = (expirationTimestamp) => {
7883
+ const now = Math.floor(Date.now() / 1e3);
7884
+ const diff = expirationTimestamp - now;
7885
+ if (diff <= 0) {
7886
+ return null;
7887
+ }
7888
+ const days = Math.floor(diff / (24 * 60 * 60));
7889
+ const hours = Math.floor(diff % (24 * 60 * 60) / (60 * 60));
7890
+ const minutes = Math.floor(diff % (60 * 60) / 60);
7891
+ const seconds = diff % 60;
7892
+ return {
7893
+ days,
7894
+ hours,
7895
+ minutes,
7896
+ seconds,
7897
+ totalSeconds: diff
7898
+ };
7899
+ };
7900
+ var Timer = ({
7901
+ expirationTimestamp,
7902
+ onTimeUpdate,
7903
+ onExpire,
7904
+ className
7905
+ }) => {
7906
+ const [timeLeft, setTimeLeft] = (0, import_react51.useState)(
7907
+ () => calculateTimeLeft(expirationTimestamp)
7908
+ );
7909
+ const updateTime = (0, import_react51.useCallback)(() => {
7910
+ const newTimeLeft = calculateTimeLeft(expirationTimestamp);
7911
+ setTimeLeft(newTimeLeft);
7912
+ if (newTimeLeft) {
7913
+ onTimeUpdate == null ? void 0 : onTimeUpdate(newTimeLeft);
7914
+ } else {
7915
+ onExpire == null ? void 0 : onExpire();
7916
+ }
7917
+ return newTimeLeft;
7918
+ }, [expirationTimestamp, onTimeUpdate, onExpire]);
7919
+ (0, import_react51.useEffect)(() => {
7920
+ const initialTime = updateTime();
7921
+ if (!initialTime)
7922
+ return;
7923
+ const interval = setInterval(() => {
7924
+ const remaining = updateTime();
7925
+ if (!remaining) {
7926
+ clearInterval(interval);
7927
+ }
7928
+ }, 1e3);
7929
+ return () => clearInterval(interval);
7930
+ }, [updateTime]);
7931
+ if (!timeLeft) {
7932
+ return null;
7933
+ }
7934
+ return /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(Box_default, { css: rootStyles2, className, children: /* @__PURE__ */ (0, import_jsx_runtime243.jsxs)(Text_default, { as: "span", fontWeight: "bold", children: [
7935
+ timeLeft.days,
7936
+ "d : ",
7937
+ timeLeft.hours,
7938
+ "h : ",
7939
+ timeLeft.minutes,
7940
+ "m"
7941
+ ] }) });
7942
+ };
7943
+ Timer.displayName = "Timer";
7944
+ var Timer_default = Timer;
7945
+
7946
+ // src/StarRating/StarRating.tsx
7947
+ var import_jsx_runtime244 = require("@emotion/react/jsx-runtime");
7827
7948
  var starSize = {
7828
7949
  sm: {
7829
7950
  size: "medium",
@@ -7871,10 +7992,10 @@ var StarRating = ({
7871
7992
  fill = "var(--color-neutral-100)";
7872
7993
  }
7873
7994
  stars.push(
7874
- /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(Icon_default, { variant, size: starSize[size].size, fill }, i)
7995
+ /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(Icon_default, { variant, size: starSize[size].size, fill }, i)
7875
7996
  );
7876
7997
  }
7877
- return /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(
7998
+ return /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(
7878
7999
  Box_default,
7879
8000
  {
7880
8001
  className,
@@ -7888,7 +8009,7 @@ var StarRating = ({
7888
8009
  var StarRating_default = StarRating;
7889
8010
 
7890
8011
  // src/UserCard/UserCard.tsx
7891
- var import_jsx_runtime243 = require("@emotion/react/jsx-runtime");
8012
+ var import_jsx_runtime245 = require("@emotion/react/jsx-runtime");
7892
8013
  var UserCard = ({
7893
8014
  avatarSrc,
7894
8015
  title,
@@ -7898,7 +8019,7 @@ var UserCard = ({
7898
8019
  isVerified = false,
7899
8020
  className
7900
8021
  }) => {
7901
- return /* @__PURE__ */ (0, import_jsx_runtime243.jsxs)(
8022
+ return /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(
7902
8023
  Box_default,
7903
8024
  {
7904
8025
  display: "flex",
@@ -7907,8 +8028,8 @@ var UserCard = ({
7907
8028
  gap: "var(--spacing-4)",
7908
8029
  className,
7909
8030
  children: [
7910
- /* @__PURE__ */ (0, import_jsx_runtime243.jsxs)(Box_default, { display: "flex", alignItems: "flex-start", gap: "var(--spacing-4)", children: [
7911
- /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(
8031
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(Box_default, { display: "flex", alignItems: "flex-start", gap: "var(--spacing-4)", children: [
8032
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(
7912
8033
  Avatar_default,
7913
8034
  {
7914
8035
  type: avatarSrc ? "image" : "text",
@@ -7917,13 +8038,13 @@ var UserCard = ({
7917
8038
  alt: `${title}'s avatar`
7918
8039
  }
7919
8040
  ),
7920
- /* @__PURE__ */ (0, import_jsx_runtime243.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "2px", children: [
7921
- /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(Text_default, { size: "md", fontWeight: "bold", children: title }),
7922
- subtitle && (typeof subtitle === "string" ? /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(Text_default, { size: "sm", color: "text-secondary", children: subtitle }) : subtitle),
7923
- showRating && rating !== void 0 && /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(StarRating_default, { rating })
8041
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "2px", children: [
8042
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Text_default, { size: "md", fontWeight: "bold", children: title }),
8043
+ subtitle && (typeof subtitle === "string" ? /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Text_default, { size: "sm", color: "text-secondary", children: subtitle }) : subtitle),
8044
+ showRating && rating !== void 0 && /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(StarRating_default, { rating })
7924
8045
  ] })
7925
8046
  ] }),
7926
- isVerified && /* @__PURE__ */ (0, import_jsx_runtime243.jsxs)(
8047
+ isVerified && /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(
7927
8048
  Box_default,
7928
8049
  {
7929
8050
  display: "flex",
@@ -7932,8 +8053,8 @@ var UserCard = ({
7932
8053
  gap: "var(--spacing-1)",
7933
8054
  flexShrink: 0,
7934
8055
  children: [
7935
- /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(Icon_default, { variant: "ShieldCheckSolid", fill: "var(--icon-success)" }),
7936
- /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(Text_default, { size: "xs", fontWeight: "bold", color: "text-primary", children: "Verified" })
8056
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Icon_default, { variant: "ShieldCheckSolid", fill: "var(--icon-success)" }),
8057
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Text_default, { size: "xs", fontWeight: "bold", color: "text-primary", children: "Verified" })
7937
8058
  ]
7938
8059
  }
7939
8060
  )
@@ -7944,19 +8065,19 @@ var UserCard = ({
7944
8065
  var UserCard_default = UserCard;
7945
8066
 
7946
8067
  // src/LandownerProfile/components/ProfileSubtitle.tsx
7947
- var import_jsx_runtime244 = require("@emotion/react/jsx-runtime");
8068
+ var import_jsx_runtime246 = require("@emotion/react/jsx-runtime");
7948
8069
  var ProfileSubtitle = ({
7949
8070
  yearsHosting = 1,
7950
8071
  featureReviewItem
7951
8072
  }) => {
7952
- return /* @__PURE__ */ (0, import_jsx_runtime244.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "2px", children: [
7953
- yearsHosting && yearsHosting > 0 && /* @__PURE__ */ (0, import_jsx_runtime244.jsxs)(Text_default, { size: "sm", color: "text-secondary", children: [
8073
+ return /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "2px", children: [
8074
+ yearsHosting && yearsHosting > 0 && /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(Text_default, { size: "sm", color: "text-secondary", children: [
7954
8075
  yearsHosting,
7955
8076
  " ",
7956
8077
  yearsHosting === 1 ? "Year" : "Years",
7957
8078
  " Hosting"
7958
8079
  ] }),
7959
- featureReviewItem && /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(FeatureListItem_default, { ...featureReviewItem })
8080
+ featureReviewItem && /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(FeatureListItem_default, { ...featureReviewItem })
7960
8081
  ] });
7961
8082
  };
7962
8083
  var ProfileSubtitle_default = ProfileSubtitle;
@@ -7971,7 +8092,7 @@ var hasTextContent = (html) => {
7971
8092
  };
7972
8093
 
7973
8094
  // src/LandownerProfile/LandownerProfile.tsx
7974
- var import_jsx_runtime245 = require("@emotion/react/jsx-runtime");
8095
+ var import_jsx_runtime247 = require("@emotion/react/jsx-runtime");
7975
8096
  var LandownerProfile = ({
7976
8097
  heading,
7977
8098
  avatarSrc,
@@ -7985,8 +8106,25 @@ var LandownerProfile = ({
7985
8106
  messageButtonText = "Message",
7986
8107
  onMessageClick,
7987
8108
  isMessageDisabled = false,
8109
+ earlyAccessTimer,
8110
+ onEarlyAccessTimeUpdate,
8111
+ onEarlyAccessExpire,
7988
8112
  className
7989
8113
  }) => {
8114
+ const calculateProgress = (timeLeft) => {
8115
+ if (!earlyAccessTimer)
8116
+ return 0;
8117
+ const { totalDuration } = earlyAccessTimer;
8118
+ if (totalDuration <= 0)
8119
+ return 100;
8120
+ const progressPercentage = (totalDuration - timeLeft.totalSeconds) / totalDuration * 100;
8121
+ return Math.min(100, Math.max(0, progressPercentage));
8122
+ };
8123
+ const [progress, setProgress] = (0, import_react52.useState)(0);
8124
+ const handleTimeUpdate = (timeLeft) => {
8125
+ setProgress(calculateProgress(timeLeft));
8126
+ onEarlyAccessTimeUpdate == null ? void 0 : onEarlyAccessTimeUpdate(timeLeft);
8127
+ };
7990
8128
  const responseRateFeature = responseRate ? {
7991
8129
  iconVariant: "IconComment",
7992
8130
  label: `Response Rate: ${responseRate}`
@@ -7995,7 +8133,7 @@ var LandownerProfile = ({
7995
8133
  iconVariant: "Bolt",
7996
8134
  label: `Response Time: ${responseTime}`
7997
8135
  } : void 0;
7998
- return /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(
8136
+ return /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(
7999
8137
  Box_default,
8000
8138
  {
8001
8139
  display: "flex",
@@ -8004,8 +8142,8 @@ var LandownerProfile = ({
8004
8142
  color: "var(--text-primary)",
8005
8143
  className,
8006
8144
  children: [
8007
- heading && /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Heading_default, { size: "2xs", fontWeight: "bold", children: heading }),
8008
- /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(
8145
+ heading && /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(Heading_default, { size: "2xs", fontWeight: "bold", children: heading }),
8146
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(
8009
8147
  Box_default,
8010
8148
  {
8011
8149
  display: "flex",
@@ -8015,12 +8153,12 @@ var LandownerProfile = ({
8015
8153
  p: "var(--spacing-4)",
8016
8154
  borderRadius: "var(--radius-lg)",
8017
8155
  children: [
8018
- /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(
8156
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8019
8157
  UserCard_default,
8020
8158
  {
8021
8159
  avatarSrc,
8022
8160
  title: name,
8023
- subtitle: /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(
8161
+ subtitle: /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8024
8162
  ProfileSubtitle_default,
8025
8163
  {
8026
8164
  yearsHosting,
@@ -8031,9 +8169,9 @@ var LandownerProfile = ({
8031
8169
  isVerified
8032
8170
  }
8033
8171
  ),
8034
- hasTextContent(bio) && !!bio && /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-2)", children: [
8035
- /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Text_default, { fontWeight: "bold", children: "Bio" }),
8036
- /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(
8172
+ hasTextContent(bio) && !!bio && /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-2)", children: [
8173
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(Text_default, { fontWeight: "bold", children: "Bio" }),
8174
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8037
8175
  Text_default,
8038
8176
  {
8039
8177
  dangerouslySetInnerHTML: {
@@ -8042,14 +8180,14 @@ var LandownerProfile = ({
8042
8180
  }
8043
8181
  )
8044
8182
  ] }),
8045
- (!!responseRateFeature || !!responseTimeFeature) && /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-2)", children: [
8046
- /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Text_default, { fontWeight: "bold", children: "Landowner Details" }),
8047
- /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-2)", children: [
8048
- !!responseRateFeature && /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(FeatureListItem_default, { ...responseRateFeature }),
8049
- !!responseTimeFeature && /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(FeatureListItem_default, { ...responseTimeFeature })
8183
+ (!!responseRateFeature || !!responseTimeFeature) && /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-2)", children: [
8184
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(Text_default, { fontWeight: "bold", children: "Landowner Details" }),
8185
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-2)", children: [
8186
+ !!responseRateFeature && /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(FeatureListItem_default, { ...responseRateFeature }),
8187
+ !!responseTimeFeature && /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(FeatureListItem_default, { ...responseTimeFeature })
8050
8188
  ] })
8051
8189
  ] }),
8052
- /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Box_default, { alignSelf: "flex-start", children: /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(
8190
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(Box_default, { alignSelf: "flex-start", children: /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8053
8191
  Button_default,
8054
8192
  {
8055
8193
  variant: "secondary",
@@ -8057,7 +8195,31 @@ var LandownerProfile = ({
8057
8195
  disabled: isMessageDisabled,
8058
8196
  children: messageButtonText
8059
8197
  }
8060
- ) })
8198
+ ) }),
8199
+ earlyAccessTimer && /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-3)", children: [
8200
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(ProgressBar_default, { progress }),
8201
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(
8202
+ Box_default,
8203
+ {
8204
+ display: "flex",
8205
+ flexDirection: "column",
8206
+ gap: "var(--spacing-1)",
8207
+ textAlign: "center",
8208
+ children: [
8209
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(Text_default, { size: "xs", textAlign: "center", children: earlyAccessTimer.labelText }),
8210
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(Text_default, { size: "sm", textAlign: "center", children: earlyAccessTimer.descriptionText }),
8211
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(Box_default, { display: "flex", justifyContent: "center", children: /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8212
+ Timer_default,
8213
+ {
8214
+ expirationTimestamp: earlyAccessTimer.expirationTimestamp,
8215
+ onTimeUpdate: handleTimeUpdate,
8216
+ onExpire: onEarlyAccessExpire
8217
+ }
8218
+ ) })
8219
+ ]
8220
+ }
8221
+ )
8222
+ ] })
8061
8223
  ]
8062
8224
  }
8063
8225
  )
@@ -8068,11 +8230,11 @@ var LandownerProfile = ({
8068
8230
  var LandownerProfile_default = LandownerProfile;
8069
8231
 
8070
8232
  // src/ListingChat/ListingChat.tsx
8071
- var import_react50 = require("react");
8233
+ var import_react54 = require("react");
8072
8234
 
8073
8235
  // src/ListingChat/ListingChat.styles.ts
8074
- var import_react49 = require("@emotion/react");
8075
- var containerStyles2 = import_react49.css`
8236
+ var import_react53 = require("@emotion/react");
8237
+ var containerStyles2 = import_react53.css`
8076
8238
  display: flex;
8077
8239
  flex-direction: column;
8078
8240
  gap: var(--spacing-4);
@@ -8080,13 +8242,13 @@ var containerStyles2 = import_react49.css`
8080
8242
  border-radius: var(--radius-lg);
8081
8243
  background: var(--surface-success);
8082
8244
  `;
8083
- var headerStyles = import_react49.css`
8245
+ var headerStyles = import_react53.css`
8084
8246
  display: flex;
8085
8247
  align-items: flex-start;
8086
8248
  justify-content: space-between;
8087
8249
  gap: var(--spacing-2);
8088
8250
  `;
8089
- var chipsContainerStyles = import_react49.css`
8251
+ var chipsContainerStyles = import_react53.css`
8090
8252
  display: flex;
8091
8253
  flex-wrap: wrap;
8092
8254
  gap: var(--spacing-4);
@@ -8099,15 +8261,15 @@ var chipsContainerStyles = import_react49.css`
8099
8261
  cursor: pointer;
8100
8262
  }
8101
8263
  `;
8102
- var textAreaStyles = import_react49.css`
8264
+ var textAreaStyles = import_react53.css`
8103
8265
  min-height: 62px;
8104
8266
  `;
8105
- var inputWrapperStyles2 = import_react49.css`
8267
+ var inputWrapperStyles2 = import_react53.css`
8106
8268
  position: relative;
8107
8269
  `;
8108
8270
 
8109
8271
  // src/ListingChat/ListingChat.tsx
8110
- var import_jsx_runtime246 = require("@emotion/react/jsx-runtime");
8272
+ var import_jsx_runtime248 = require("@emotion/react/jsx-runtime");
8111
8273
  var ListingChat = ({
8112
8274
  onSubmit,
8113
8275
  placeholder = "Ask anything about this listing\u2026",
@@ -8117,15 +8279,15 @@ var ListingChat = ({
8117
8279
  disabled = false,
8118
8280
  ...rest
8119
8281
  }) => {
8120
- const [value, setValue] = (0, import_react50.useState)("");
8121
- const handleSubmit = (0, import_react50.useCallback)(() => {
8282
+ const [value, setValue] = (0, import_react54.useState)("");
8283
+ const handleSubmit = (0, import_react54.useCallback)(() => {
8122
8284
  const trimmed = value.trim();
8123
8285
  if (!trimmed)
8124
8286
  return;
8125
8287
  onSubmit(trimmed);
8126
8288
  setValue("");
8127
8289
  }, [onSubmit, value]);
8128
- const handleTagClick = (0, import_react50.useCallback)(
8290
+ const handleTagClick = (0, import_react54.useCallback)(
8129
8291
  (tag) => () => {
8130
8292
  const trimmed = tag.trim();
8131
8293
  if (!trimmed)
@@ -8134,18 +8296,18 @@ var ListingChat = ({
8134
8296
  },
8135
8297
  [onSubmit]
8136
8298
  );
8137
- return /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(Box_default, { css: containerStyles2, className, ...rest, children: [
8138
- /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(Box_default, { css: headerStyles, children: [
8139
- /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(Box_default, { children: [
8140
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Box_default, { mb: "var(--spacing-2)", children: /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Heading_default, { size: "2xs", fontWeight: "bold", children: title }) }),
8141
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Text_default, { size: "md", children: "Get instant answers with Buck, our AI powered assistant." })
8299
+ return /* @__PURE__ */ (0, import_jsx_runtime248.jsxs)(Box_default, { css: containerStyles2, className, ...rest, children: [
8300
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsxs)(Box_default, { css: headerStyles, children: [
8301
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsxs)(Box_default, { children: [
8302
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Box_default, { mb: "var(--spacing-2)", children: /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Heading_default, { size: "2xs", fontWeight: "bold", children: title }) }),
8303
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Text_default, { size: "md", children: "Get instant answers with Buck, our AI powered assistant." })
8142
8304
  ] }),
8143
- /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(Box_default, { display: "flex", alignItems: "center", gap: "var(--spacing-1)", children: [
8144
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Icon_default, { variant: "AiMagic", size: "medium" }),
8145
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Text_default, { size: "sm", children: "Beta" })
8305
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsxs)(Box_default, { display: "flex", alignItems: "center", gap: "var(--spacing-1)", children: [
8306
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Icon_default, { variant: "AiMagic", size: "medium" }),
8307
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Text_default, { size: "sm", children: "Beta" })
8146
8308
  ] })
8147
8309
  ] }),
8148
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Box_default, { css: inputWrapperStyles2, children: /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(
8310
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Box_default, { css: inputWrapperStyles2, children: /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8149
8311
  TextArea,
8150
8312
  {
8151
8313
  rows: 1,
@@ -8160,14 +8322,14 @@ var ListingChat = ({
8160
8322
  css: textAreaStyles
8161
8323
  }
8162
8324
  ) }),
8163
- tags.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(import_jsx_runtime246.Fragment, { children: [
8164
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Text_default, { as: "div", size: "sm", fontWeight: "bold", children: "Try one of these" }),
8165
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(Box_default, { css: chipsContainerStyles, children: tags.map((tag) => /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(
8325
+ tags.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime248.jsxs)(import_jsx_runtime248.Fragment, { children: [
8326
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Text_default, { as: "div", size: "sm", fontWeight: "bold", children: "Try one of these" }),
8327
+ /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(Box_default, { css: chipsContainerStyles, children: tags.map((tag) => /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8166
8328
  "button",
8167
8329
  {
8168
8330
  onClick: handleTagClick(tag),
8169
8331
  disabled,
8170
- children: /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(TagChip_default, { children: tag })
8332
+ children: /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(TagChip_default, { children: tag })
8171
8333
  },
8172
8334
  tag
8173
8335
  )) })
@@ -8177,11 +8339,11 @@ var ListingChat = ({
8177
8339
  var ListingChat_default = ListingChat;
8178
8340
 
8179
8341
  // src/Logo/Logo.tsx
8180
- var import_react51 = require("@emotion/react");
8342
+ var import_react55 = require("@emotion/react");
8181
8343
 
8182
8344
  // src/Logo/components/LandtrustPlusDark.tsx
8183
- var import_jsx_runtime247 = require("@emotion/react/jsx-runtime");
8184
- var SvgLandtrustPlusDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(
8345
+ var import_jsx_runtime249 = require("@emotion/react/jsx-runtime");
8346
+ var SvgLandtrustPlusDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime249.jsxs)(
8185
8347
  "svg",
8186
8348
  {
8187
8349
  xmlns: "http://www.w3.org/2000/svg",
@@ -8189,14 +8351,14 @@ var SvgLandtrustPlusDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime247.
8189
8351
  fill: "none",
8190
8352
  ...props,
8191
8353
  children: [
8192
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)("g", { filter: "url(#landtrust-plus-dark_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8354
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("g", { filter: "url(#landtrust-plus-dark_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8193
8355
  "path",
8194
8356
  {
8195
8357
  fill: "#000",
8196
8358
  d: "M397.611 44.707a1.357 1.357 0 0 1-1.347-1.367V12.481c0-.755.603-1.367 1.347-1.367h3.893c.744 0 1.348.612 1.348 1.367V43.34c0 .755-.604 1.367-1.348 1.367zM384.364 31.24a1.357 1.357 0 0 1-1.347-1.367v-3.95c0-.755.603-1.367 1.347-1.367h30.414c.741 0 1.345.612 1.345 1.367v3.95c0 .755-.604 1.367-1.345 1.367z"
8197
8359
  }
8198
8360
  ) }),
8199
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8361
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8200
8362
  "path",
8201
8363
  {
8202
8364
  fill: "#FAD44E",
@@ -8205,14 +8367,14 @@ var SvgLandtrustPlusDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime247.
8205
8367
  d: "M397.611 44.707a1.357 1.357 0 0 1-1.347-1.367V12.481c0-.755.603-1.367 1.347-1.367h3.893c.744 0 1.348.612 1.348 1.367V43.34c0 .755-.604 1.367-1.348 1.367zM384.364 31.24a1.357 1.357 0 0 1-1.347-1.367v-3.95c0-.755.603-1.367 1.347-1.367h30.414c.741 0 1.345.612 1.345 1.367v3.95c0 .755-.604 1.367-1.345 1.367z"
8206
8368
  }
8207
8369
  ),
8208
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8370
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8209
8371
  "path",
8210
8372
  {
8211
8373
  fill: "#fff",
8212
8374
  d: "M376.053 15.765h-9.487V49.36h-11.149V15.876h-9.56V6.608h30.196zM204.29 15.782h-9.487v33.6h-11.149V15.895h-9.56V6.633h30.196zM93.047 6.652l12.637 23.357V6.608h10.179v42.775h-10.488L92.982 25.96v23.402H82.878V6.651zM242.366 35.996l5.154 13.364h-10.781a8334 8334 0 0 0-5.254-13.389h-4.683v13.398h-10.921V6.64h4.836c7.307 0 14.616-.037 21.922.017 2.864.02 4.677 1.613 4.742 4.448q.225 10.12 0 20.244c-.052 2.927-2.075 4.29-5.015 4.648m-15.525-20.1v11.248h8.609a.912.912 0 0 0 .909-.911v-9.428a.905.905 0 0 0-.909-.91zM71.772 49.392H61.244l-1.831-9.098H48.34c-.628 2.995-1.262 6.004-1.91 9.09H36.147c3.07-14.297 6.11-28.505 9.179-42.774h17.268c3.047 14.207 6.101 28.436 9.179 42.782M57.939 30.786 55 15.744h-2.134c-1.012 4.987-2.02 9.974-3.054 15.042zM10.818 40.21H24.46v9.173H0V6.608h10.818zM282.264 6.608v32.466a.92.92 0 0 1-.268.648.9.9 0 0 1-.645.267h-7.445a.9.9 0 0 1-.645-.267.92.92 0 0 1-.267-.648V6.608h-11.025V44.94c0 2.443 1.971 4.424 4.403 4.424h22.506c2.432 0 4.404-1.982 4.404-4.426V6.608zM131.337 49.383V6.657h22.522c5.154 0 8.955 3.645 8.989 8.81q.088 12.542 0 25.086c-.046 5.18-3.85 8.824-8.999 8.824h-22.512zm11.036-33.503v24.2c2.346 0 4.623.092 6.889-.031 1.554-.084 2.589-1.274 2.6-2.912q.067-9.16 0-18.32c-.013-1.644-1.046-2.828-2.596-2.912-2.27-.123-4.549-.03-6.893-.03zM306.214 36.48c0 1.9-.115 3.747.022 5.577.31 4.136 3.799 7.47 7.924 7.539q7.022.116 14.047 0c3.879-.06 7.534-3.112 7.826-6.906.268-3.905.275-7.825.02-11.731-.176-3.002-2.574-5.277-5.55-5.806a766 766 0 0 0-13.834-2.343c-.901-.142-1.186-.527-1.176-1.342.017-1.404 0-2.807.013-4.21 0-.96.462-1.414 1.457-1.405 2.875.027 5.752.021 8.627 0 .992 0 1.425.466 1.412 1.433v2.183h9.117c0-2.078.17-4.067-.036-6.017-.406-3.818-3.896-6.992-7.718-7.057a423 423 0 0 0-14.416 0c-3.784.07-7.434 3.38-7.651 7.124a108 108 0 0 0-.01 11.375c.147 3.103 2.539 5.547 5.567 6.082q6.97 1.233 13.954 2.367c.775.127 1.058.435 1.041 1.195-.031 1.485-.01 2.971-.01 4.458 0 .857-.414 1.298-1.283 1.298h-8.875c-.859 0-1.286-.458-1.304-1.3-.017-.842 0-1.63 0-2.509z"
8213
8375
  }
8214
8376
  ),
8215
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(
8377
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime249.jsxs)(
8216
8378
  "filter",
8217
8379
  {
8218
8380
  id: "landtrust-plus-dark_svg__a",
@@ -8223,8 +8385,8 @@ var SvgLandtrustPlusDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime247.
8223
8385
  colorInterpolationFilters: "sRGB",
8224
8386
  filterUnits: "userSpaceOnUse",
8225
8387
  children: [
8226
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }),
8227
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8388
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }),
8389
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8228
8390
  "feColorMatrix",
8229
8391
  {
8230
8392
  in: "SourceAlpha",
@@ -8232,18 +8394,18 @@ var SvgLandtrustPlusDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime247.
8232
8394
  values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
8233
8395
  }
8234
8396
  ),
8235
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)("feOffset", { dy: 1 }),
8236
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)("feGaussianBlur", { stdDeviation: 0.5 }),
8237
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)("feComposite", { in2: "hardAlpha", operator: "out" }),
8238
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" }),
8239
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8397
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("feOffset", { dy: 1 }),
8398
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("feGaussianBlur", { stdDeviation: 0.5 }),
8399
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("feComposite", { in2: "hardAlpha", operator: "out" }),
8400
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" }),
8401
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8240
8402
  "feBlend",
8241
8403
  {
8242
8404
  in2: "BackgroundImageFix",
8243
8405
  result: "effect1_dropShadow_257_2540"
8244
8406
  }
8245
8407
  ),
8246
- /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
8408
+ /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8247
8409
  "feBlend",
8248
8410
  {
8249
8411
  in: "SourceGraphic",
@@ -8260,8 +8422,8 @@ var SvgLandtrustPlusDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime247.
8260
8422
  var LandtrustPlusDark_default = SvgLandtrustPlusDark;
8261
8423
 
8262
8424
  // src/Logo/components/LandtrustPlusLight.tsx
8263
- var import_jsx_runtime248 = require("@emotion/react/jsx-runtime");
8264
- var SvgLandtrustPlusLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime248.jsxs)(
8425
+ var import_jsx_runtime250 = require("@emotion/react/jsx-runtime");
8426
+ var SvgLandtrustPlusLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime250.jsxs)(
8265
8427
  "svg",
8266
8428
  {
8267
8429
  xmlns: "http://www.w3.org/2000/svg",
@@ -8269,14 +8431,14 @@ var SvgLandtrustPlusLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime248
8269
8431
  fill: "none",
8270
8432
  ...props,
8271
8433
  children: [
8272
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)("g", { filter: "url(#landtrust-plus-light_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8434
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)("g", { filter: "url(#landtrust-plus-light_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8273
8435
  "path",
8274
8436
  {
8275
8437
  fill: "#000",
8276
8438
  d: "M397.611 44.707a1.357 1.357 0 0 1-1.347-1.367V12.481c0-.755.603-1.367 1.347-1.367h3.893c.744 0 1.348.612 1.348 1.367V43.34c0 .755-.604 1.367-1.348 1.367zM384.364 31.24a1.357 1.357 0 0 1-1.347-1.367v-3.95c0-.755.603-1.367 1.347-1.367h30.414c.741 0 1.345.612 1.345 1.367v3.95c0 .755-.604 1.367-1.345 1.367z"
8277
8439
  }
8278
8440
  ) }),
8279
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8441
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8280
8442
  "path",
8281
8443
  {
8282
8444
  fill: "#FAD44E",
@@ -8285,14 +8447,14 @@ var SvgLandtrustPlusLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime248
8285
8447
  d: "M397.611 44.707a1.357 1.357 0 0 1-1.347-1.367V12.481c0-.755.603-1.367 1.347-1.367h3.893c.744 0 1.348.612 1.348 1.367V43.34c0 .755-.604 1.367-1.348 1.367zM384.364 31.24a1.357 1.357 0 0 1-1.347-1.367v-3.95c0-.755.603-1.367 1.347-1.367h30.414c.741 0 1.345.612 1.345 1.367v3.95c0 .755-.604 1.367-1.345 1.367z"
8286
8448
  }
8287
8449
  ),
8288
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8450
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8289
8451
  "path",
8290
8452
  {
8291
8453
  fill: "#1A202C",
8292
8454
  d: "M376.053 15.765h-9.487V49.36h-11.149V15.876h-9.56V6.608h30.196zM204.29 15.782h-9.487v33.6h-11.149V15.895h-9.56V6.633h30.196zM93.047 6.652l12.637 23.357V6.608h10.179v42.775h-10.488L92.982 25.96v23.402H82.878V6.651zM242.366 35.996l5.154 13.364h-10.781a8334 8334 0 0 0-5.254-13.389h-4.683v13.398h-10.921V6.64h4.836c7.307 0 14.616-.037 21.922.017 2.864.02 4.677 1.613 4.742 4.448q.225 10.12 0 20.244c-.052 2.927-2.075 4.29-5.015 4.648m-15.525-20.1v11.248h8.609a.912.912 0 0 0 .909-.911v-9.428a.905.905 0 0 0-.909-.91zM71.772 49.392H61.244l-1.831-9.098H48.34c-.628 2.995-1.262 6.004-1.91 9.09H36.147c3.07-14.297 6.11-28.505 9.179-42.774h17.268c3.047 14.207 6.101 28.436 9.179 42.782M57.939 30.786 55 15.744h-2.134c-1.012 4.987-2.02 9.974-3.054 15.042zM10.818 40.21H24.46v9.173H0V6.608h10.818zM282.264 6.608v32.466a.92.92 0 0 1-.268.648.9.9 0 0 1-.645.267h-7.445a.9.9 0 0 1-.645-.267.92.92 0 0 1-.267-.648V6.608h-11.025V44.94c0 2.443 1.971 4.424 4.403 4.424h22.506c2.432 0 4.404-1.982 4.404-4.426V6.608zM131.337 49.383V6.657h22.522c5.154 0 8.955 3.645 8.989 8.81q.088 12.542 0 25.086c-.046 5.18-3.85 8.824-8.999 8.824h-22.512zm11.036-33.503v24.2c2.346 0 4.623.092 6.889-.031 1.554-.084 2.589-1.274 2.6-2.912q.067-9.16 0-18.32c-.013-1.644-1.046-2.828-2.596-2.912-2.27-.123-4.549-.03-6.893-.03zM306.214 36.48c0 1.9-.115 3.747.022 5.577.31 4.136 3.799 7.47 7.924 7.539q7.022.116 14.047 0c3.879-.06 7.534-3.112 7.826-6.906.268-3.905.275-7.825.02-11.731-.176-3.002-2.574-5.277-5.55-5.806a766 766 0 0 0-13.834-2.343c-.901-.142-1.186-.527-1.176-1.342.017-1.404 0-2.807.013-4.21 0-.96.462-1.414 1.457-1.405 2.875.027 5.752.021 8.627 0 .992 0 1.425.466 1.412 1.433v2.183h9.117c0-2.078.17-4.067-.036-6.017-.406-3.818-3.896-6.992-7.718-7.057a423 423 0 0 0-14.416 0c-3.784.07-7.434 3.38-7.651 7.124a108 108 0 0 0-.01 11.375c.147 3.103 2.539 5.547 5.567 6.082q6.97 1.233 13.954 2.367c.775.127 1.058.435 1.041 1.195-.031 1.485-.01 2.971-.01 4.458 0 .857-.414 1.298-1.283 1.298h-8.875c-.859 0-1.286-.458-1.304-1.3-.017-.842 0-1.63 0-2.509z"
8293
8455
  }
8294
8456
  ),
8295
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime248.jsxs)(
8457
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime250.jsxs)(
8296
8458
  "filter",
8297
8459
  {
8298
8460
  id: "landtrust-plus-light_svg__a",
@@ -8303,8 +8465,8 @@ var SvgLandtrustPlusLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime248
8303
8465
  colorInterpolationFilters: "sRGB",
8304
8466
  filterUnits: "userSpaceOnUse",
8305
8467
  children: [
8306
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }),
8307
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8468
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }),
8469
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8308
8470
  "feColorMatrix",
8309
8471
  {
8310
8472
  in: "SourceAlpha",
@@ -8312,18 +8474,18 @@ var SvgLandtrustPlusLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime248
8312
8474
  values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
8313
8475
  }
8314
8476
  ),
8315
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)("feOffset", { dy: 1 }),
8316
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)("feGaussianBlur", { stdDeviation: 0.5 }),
8317
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)("feComposite", { in2: "hardAlpha", operator: "out" }),
8318
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" }),
8319
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8477
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)("feOffset", { dy: 1 }),
8478
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)("feGaussianBlur", { stdDeviation: 0.5 }),
8479
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)("feComposite", { in2: "hardAlpha", operator: "out" }),
8480
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" }),
8481
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8320
8482
  "feBlend",
8321
8483
  {
8322
8484
  in2: "BackgroundImageFix",
8323
8485
  result: "effect1_dropShadow_257_2538"
8324
8486
  }
8325
8487
  ),
8326
- /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
8488
+ /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8327
8489
  "feBlend",
8328
8490
  {
8329
8491
  in: "SourceGraphic",
@@ -8340,8 +8502,8 @@ var SvgLandtrustPlusLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime248
8340
8502
  var LandtrustPlusLight_default = SvgLandtrustPlusLight;
8341
8503
 
8342
8504
  // src/Logo/components/LandtrustStandardDark.tsx
8343
- var import_jsx_runtime249 = require("@emotion/react/jsx-runtime");
8344
- var SvgLandtrustStandardDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime249.jsxs)(
8505
+ var import_jsx_runtime251 = require("@emotion/react/jsx-runtime");
8506
+ var SvgLandtrustStandardDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime251.jsxs)(
8345
8507
  "svg",
8346
8508
  {
8347
8509
  xmlns: "http://www.w3.org/2000/svg",
@@ -8349,14 +8511,14 @@ var SvgLandtrustStandardDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime
8349
8511
  fill: "none",
8350
8512
  ...props,
8351
8513
  children: [
8352
- /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8514
+ /* @__PURE__ */ (0, import_jsx_runtime251.jsx)(
8353
8515
  "path",
8354
8516
  {
8355
8517
  fill: "#E2430C",
8356
8518
  d: "m0 0 .037 47.582q-.003 1.401.186 2.79a15.6 15.6 0 0 0 1.223 4.315c1.787 3.934 3.9 6.263 5.914 8.25 4.047 4 8.07 6.023 10.83 7.383A50 50 0 0 0 28.29 74a50 50 0 0 0 10.103-3.68c2.76-1.36 6.783-3.384 10.83-7.383 2.014-1.987 4.126-4.316 5.921-8.25a15.7 15.7 0 0 0 1.223-4.316q.189-1.387.186-2.79L56.59 0zm51.397 5.141-.01 14.061H5.197l-.011-14.06zm-.023 31.322a30 30 0 0 0-3.911-.876c-.822-.126-4.159-.603-8.867-.05-2.086.248-3.97.712-7.736 1.64a197 197 0 0 0-6.62 1.774c-3.427 1.195-9.065 2.541-15.502 1.125a26 26 0 0 1-3.526-1.051L5.2 24.337h46.183zM36.542 65.57a41 41 0 0 1-8.252 3.009 41 41 0 0 1-8.249-3.009 69 69 0 0 1-1.53-.773l9.768-5.588 9.778 5.608c-.55.277-1.054.525-1.515.753m14.823-18.4q.001.736-.072 1.467a13.2 13.2 0 0 1-1.076 4.17c-1.46 3.213-3.182 5.114-4.83 6.739a28 28 0 0 1-2.348 2.074l-.235-.133-14.525-8.327-14.544 8.324-.203.115a28 28 0 0 1-2.328-2.057c-1.642-1.624-3.369-3.526-4.829-6.74A13.2 13.2 0 0 1 5.3 48.636a15 15 0 0 1-.073-1.467v-2.774q1.9.561 3.86.86c.82.127 4.16.603 8.87.05 2.083-.246 3.967-.712 7.732-1.639a184 184 0 0 0 6.62-1.766c3.428-1.197 9.064-2.541 15.503-1.125q1.823.399 3.569 1.051z"
8357
8519
  }
8358
8520
  ),
8359
- /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(
8521
+ /* @__PURE__ */ (0, import_jsx_runtime251.jsx)(
8360
8522
  "path",
8361
8523
  {
8362
8524
  fill: "#fff",
@@ -8369,8 +8531,8 @@ var SvgLandtrustStandardDark = (props) => /* @__PURE__ */ (0, import_jsx_runtime
8369
8531
  var LandtrustStandardDark_default = SvgLandtrustStandardDark;
8370
8532
 
8371
8533
  // src/Logo/components/LandtrustStandardLight.tsx
8372
- var import_jsx_runtime250 = require("@emotion/react/jsx-runtime");
8373
- var SvgLandtrustStandardLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime250.jsxs)(
8534
+ var import_jsx_runtime252 = require("@emotion/react/jsx-runtime");
8535
+ var SvgLandtrustStandardLight = (props) => /* @__PURE__ */ (0, import_jsx_runtime252.jsxs)(
8374
8536
  "svg",
8375
8537
  {
8376
8538
  xmlns: "http://www.w3.org/2000/svg",
@@ -8378,14 +8540,14 @@ var SvgLandtrustStandardLight = (props) => /* @__PURE__ */ (0, import_jsx_runtim
8378
8540
  fill: "none",
8379
8541
  ...props,
8380
8542
  children: [
8381
- /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8543
+ /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(
8382
8544
  "path",
8383
8545
  {
8384
8546
  fill: "#E2430C",
8385
8547
  d: "m0 0 .037 47.582q-.003 1.401.186 2.79a15.6 15.6 0 0 0 1.223 4.315c1.787 3.934 3.9 6.263 5.914 8.25 4.047 4 8.07 6.023 10.83 7.383A50 50 0 0 0 28.29 74a50 50 0 0 0 10.103-3.68c2.76-1.36 6.783-3.384 10.83-7.383 2.014-1.987 4.126-4.316 5.921-8.25a15.7 15.7 0 0 0 1.223-4.316q.189-1.387.186-2.79L56.59 0zm51.397 5.141-.01 14.061H5.197l-.011-14.06zm-.023 31.322a30 30 0 0 0-3.911-.876c-.822-.126-4.159-.603-8.867-.05-2.086.248-3.97.712-7.736 1.64a197 197 0 0 0-6.62 1.774c-3.427 1.195-9.065 2.541-15.502 1.125a26 26 0 0 1-3.526-1.051L5.2 24.337h46.183zM36.542 65.57a41 41 0 0 1-8.252 3.009 41 41 0 0 1-8.249-3.009 69 69 0 0 1-1.53-.773l9.768-5.588 9.778 5.608c-.55.277-1.054.525-1.515.753m14.823-18.4q.001.736-.072 1.467a13.2 13.2 0 0 1-1.076 4.17c-1.46 3.213-3.182 5.114-4.83 6.739a28 28 0 0 1-2.348 2.074l-.235-.133-14.525-8.327-14.544 8.324-.203.115a28 28 0 0 1-2.328-2.057c-1.642-1.624-3.369-3.526-4.829-6.74A13.2 13.2 0 0 1 5.3 48.636a15 15 0 0 1-.073-1.467v-2.774q1.9.561 3.86.86c.82.127 4.16.603 8.87.05 2.083-.246 3.967-.712 7.732-1.639a184 184 0 0 0 6.62-1.766c3.428-1.197 9.064-2.541 15.503-1.125q1.823.399 3.569 1.051z"
8386
8548
  }
8387
8549
  ),
8388
- /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(
8550
+ /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(
8389
8551
  "path",
8390
8552
  {
8391
8553
  fill: "#000",
@@ -8398,8 +8560,8 @@ var SvgLandtrustStandardLight = (props) => /* @__PURE__ */ (0, import_jsx_runtim
8398
8560
  var LandtrustStandardLight_default = SvgLandtrustStandardLight;
8399
8561
 
8400
8562
  // src/Logo/Logo.tsx
8401
- var import_jsx_runtime251 = require("@emotion/react/jsx-runtime");
8402
- var logoStyles = (size) => import_react51.css`
8563
+ var import_jsx_runtime253 = require("@emotion/react/jsx-runtime");
8564
+ var logoStyles = (size) => import_react55.css`
8403
8565
  width: ${space[size]};
8404
8566
  height: auto;
8405
8567
  display: block;
@@ -8427,18 +8589,18 @@ var Logo = ({
8427
8589
  return LandtrustStandardLight_default;
8428
8590
  };
8429
8591
  const LogoComponent = getLogoComponent();
8430
- return /* @__PURE__ */ (0, import_jsx_runtime251.jsx)(LogoComponent, { css: logoStyles(size), className, ...rest });
8592
+ return /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(LogoComponent, { css: logoStyles(size), className, ...rest });
8431
8593
  };
8432
8594
  var Logo_default = Logo;
8433
8595
 
8434
8596
  // src/Navigation/Navigation.styles.ts
8435
- var import_react52 = require("@emotion/react");
8436
- var navigationStyles = import_react52.css`
8597
+ var import_react56 = require("@emotion/react");
8598
+ var navigationStyles = import_react56.css`
8437
8599
  width: 100%;
8438
8600
  background-color: white;
8439
8601
  border-bottom: 1px solid #e5e5e5;
8440
8602
  `;
8441
- var hamburgerButtonStyles = import_react52.css`
8603
+ var hamburgerButtonStyles = import_react56.css`
8442
8604
  cursor: pointer;
8443
8605
  &:focus {
8444
8606
  outline: 2px solid #4f46e5;
@@ -8449,7 +8611,7 @@ var hamburgerButtonStyles = import_react52.css`
8449
8611
  display: none;
8450
8612
  }
8451
8613
  `;
8452
- var centeredLogoStyles = import_react52.css`
8614
+ var centeredLogoStyles = import_react56.css`
8453
8615
  transform: translate(-50%, -50%);
8454
8616
  max-width: 150px;
8455
8617
 
@@ -8457,27 +8619,27 @@ var centeredLogoStyles = import_react52.css`
8457
8619
  display: none;
8458
8620
  }
8459
8621
  `;
8460
- var desktopLogoStyles = import_react52.css`
8622
+ var desktopLogoStyles = import_react56.css`
8461
8623
  display: none;
8462
8624
 
8463
8625
  @media (min-width: 768px) {
8464
8626
  display: block;
8465
8627
  }
8466
8628
  `;
8467
- var containerStyles3 = import_react52.css`
8629
+ var containerStyles3 = import_react56.css`
8468
8630
  @media (min-width: 768px) {
8469
8631
  justify-content: space-between;
8470
8632
  position: static;
8471
8633
  }
8472
8634
  `;
8473
- var logoStyles2 = import_react52.css`
8635
+ var logoStyles2 = import_react56.css`
8474
8636
  width: 100%;
8475
8637
 
8476
8638
  @media (min-width: 768px) {
8477
8639
  width: initial;
8478
8640
  }
8479
8641
  `;
8480
- var desktopNavStyles = import_react52.css`
8642
+ var desktopNavStyles = import_react56.css`
8481
8643
  display: none;
8482
8644
 
8483
8645
  @media (min-width: 768px) {
@@ -8486,7 +8648,7 @@ var desktopNavStyles = import_react52.css`
8486
8648
  gap: 32px;
8487
8649
  }
8488
8650
  `;
8489
- var navLinksStyles = import_react52.css`
8651
+ var navLinksStyles = import_react56.css`
8490
8652
  display: flex;
8491
8653
  align-items: center;
8492
8654
  gap: 24px;
@@ -8494,7 +8656,7 @@ var navLinksStyles = import_react52.css`
8494
8656
  margin: 0;
8495
8657
  padding: 0;
8496
8658
  `;
8497
- var navLinkStyles = import_react52.css`
8659
+ var navLinkStyles = import_react56.css`
8498
8660
  text-decoration: none;
8499
8661
  color: #374151;
8500
8662
  font-weight: 500;
@@ -8510,7 +8672,7 @@ var navLinkStyles = import_react52.css`
8510
8672
  outline-offset: 2px;
8511
8673
  }
8512
8674
  `;
8513
- var avatarPlaceholderStyles = import_react52.css`
8675
+ var avatarPlaceholderStyles = import_react56.css`
8514
8676
  width: 32px;
8515
8677
  height: 32px;
8516
8678
  border-radius: 50%;
@@ -8535,7 +8697,7 @@ var avatarPlaceholderStyles = import_react52.css`
8535
8697
  `;
8536
8698
 
8537
8699
  // src/Navigation/Navigation.tsx
8538
- var import_jsx_runtime252 = require("@emotion/react/jsx-runtime");
8700
+ var import_jsx_runtime254 = require("@emotion/react/jsx-runtime");
8539
8701
  var Navigation = ({
8540
8702
  onMenuToggle,
8541
8703
  className,
@@ -8549,7 +8711,7 @@ var Navigation = ({
8549
8711
  onAvatarClick,
8550
8712
  ...rest
8551
8713
  }) => {
8552
- return /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Box_default, { css: navigationStyles, className, ...rest, children: /* @__PURE__ */ (0, import_jsx_runtime252.jsxs)(
8714
+ return /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Box_default, { css: navigationStyles, className, ...rest, children: /* @__PURE__ */ (0, import_jsx_runtime254.jsxs)(
8553
8715
  Box_default,
8554
8716
  {
8555
8717
  display: "flex",
@@ -8558,7 +8720,7 @@ var Navigation = ({
8558
8720
  position: "relative",
8559
8721
  css: containerStyles3,
8560
8722
  children: [
8561
- /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(
8723
+ /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
8562
8724
  Box_default,
8563
8725
  {
8564
8726
  as: "button",
@@ -8570,11 +8732,11 @@ var Navigation = ({
8570
8732
  border: "none",
8571
8733
  padding: space[2],
8572
8734
  css: hamburgerButtonStyles,
8573
- children: /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Icon_default, { variant: "Bars", size: "large" })
8735
+ children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Icon_default, { variant: "Bars", size: "large" })
8574
8736
  }
8575
8737
  ),
8576
- /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Box_default, { css: desktopLogoStyles, children: /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Logo_default, { variant: logoVariant, theme: logoTheme }) }),
8577
- /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Box_default, { position: "absolute", left: "50%", top: "50%", css: centeredLogoStyles, children: /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(
8738
+ /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Box_default, { css: desktopLogoStyles, children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Logo_default, { variant: logoVariant, theme: logoTheme }) }),
8739
+ /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Box_default, { position: "absolute", left: "50%", top: "50%", css: centeredLogoStyles, children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
8578
8740
  Logo_default,
8579
8741
  {
8580
8742
  variant: logoVariant,
@@ -8583,8 +8745,8 @@ var Navigation = ({
8583
8745
  css: logoStyles2
8584
8746
  }
8585
8747
  ) }),
8586
- /* @__PURE__ */ (0, import_jsx_runtime252.jsxs)(Box_default, { css: desktopNavStyles, children: [
8587
- /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Box_default, { as: "nav", children: /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Box_default, { as: "ul", css: navLinksStyles, children: navLinks.map((link) => /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(Box_default, { as: "li", children: /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(
8748
+ /* @__PURE__ */ (0, import_jsx_runtime254.jsxs)(Box_default, { css: desktopNavStyles, children: [
8749
+ /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Box_default, { as: "nav", children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Box_default, { as: "ul", css: navLinksStyles, children: navLinks.map((link) => /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Box_default, { as: "li", children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
8588
8750
  "a",
8589
8751
  {
8590
8752
  href: link.href,
@@ -8593,7 +8755,7 @@ var Navigation = ({
8593
8755
  children: link.label
8594
8756
  }
8595
8757
  ) }, link.href)) }) }),
8596
- /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(
8758
+ /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
8597
8759
  Box_default,
8598
8760
  {
8599
8761
  as: "button",
@@ -8612,21 +8774,21 @@ var Navigation = ({
8612
8774
  var Navigation_default = Navigation;
8613
8775
 
8614
8776
  // src/ScrollingCarousel/components/ScrollingCarouselStep.tsx
8615
- var import_react55 = require("react");
8777
+ var import_react59 = require("react");
8616
8778
  var import_react_intersection_observer = require("react-intersection-observer");
8617
8779
 
8618
8780
  // src/ScrollingCarousel/context/CarouselContext.tsx
8619
- var import_react53 = __toESM(require("react"));
8620
- var CarouselContext = import_react53.default.createContext(
8781
+ var import_react57 = __toESM(require("react"));
8782
+ var CarouselContext = import_react57.default.createContext(
8621
8783
  null
8622
8784
  );
8623
8785
 
8624
8786
  // src/ScrollingCarousel/ScrollingCarousel.styles.ts
8625
- var import_react54 = require("@emotion/react");
8626
- var carouselRoot = import_react54.css`
8787
+ var import_react58 = require("@emotion/react");
8788
+ var carouselRoot = import_react58.css`
8627
8789
  position: relative;
8628
8790
  `;
8629
- var carousel = import_react54.css`
8791
+ var carousel = import_react58.css`
8630
8792
  display: flex;
8631
8793
  overflow-y: hidden;
8632
8794
  overflow-x: scroll;
@@ -8638,7 +8800,7 @@ var carousel = import_react54.css`
8638
8800
  display: none;
8639
8801
  }
8640
8802
  `;
8641
- var step = import_react54.css`
8803
+ var step = import_react58.css`
8642
8804
  scroll-snap-align: center;
8643
8805
  flex-basis: 100%;
8644
8806
  flex-shrink: 0;
@@ -8651,7 +8813,7 @@ var step = import_react54.css`
8651
8813
  flex-basis: 100%;
8652
8814
  }
8653
8815
  `;
8654
- var controls = (position2) => import_react54.css`
8816
+ var controls = (position2) => import_react58.css`
8655
8817
  ${(position2 === "left-right" || position2 === "top-right") && `
8656
8818
  display: none;
8657
8819
 
@@ -8660,7 +8822,7 @@ var controls = (position2) => import_react54.css`
8660
8822
  }
8661
8823
  `}
8662
8824
  `;
8663
- var iconWrapper = import_react54.css`
8825
+ var iconWrapper = import_react58.css`
8664
8826
  display: flex;
8665
8827
  width: var(--spacing-7);
8666
8828
  height: var(--spacing-7);
@@ -8670,7 +8832,7 @@ var iconWrapper = import_react54.css`
8670
8832
  justify-content: center;
8671
8833
  box-shadow: var(--shadow-md);
8672
8834
  `;
8673
- var button = (position2) => import_react54.css`
8835
+ var button = (position2) => import_react58.css`
8674
8836
  background: transparent;
8675
8837
  border-color: transparent;
8676
8838
  outline: none;
@@ -8702,7 +8864,7 @@ var button = (position2) => import_react54.css`
8702
8864
  bottom: calc(-1 * var(--spacing-1));
8703
8865
  `}
8704
8866
  `;
8705
- var buttonLeft = (position2) => import_react54.css`
8867
+ var buttonLeft = (position2) => import_react58.css`
8706
8868
  ${button(position2)}
8707
8869
 
8708
8870
  ${position2 === "left-right" && `
@@ -8722,7 +8884,7 @@ var buttonLeft = (position2) => import_react54.css`
8722
8884
  left: calc(50% - var(--spacing-16));
8723
8885
  `}
8724
8886
  `;
8725
- var customButtonLeft = (position2) => import_react54.css`
8887
+ var customButtonLeft = (position2) => import_react58.css`
8726
8888
  ${button(position2)}
8727
8889
 
8728
8890
  ${position2 === "left-right" && `
@@ -8742,7 +8904,7 @@ var customButtonLeft = (position2) => import_react54.css`
8742
8904
  left: calc(50% - var(--spacing-16));
8743
8905
  `}
8744
8906
  `;
8745
- var buttonRight = (position2) => import_react54.css`
8907
+ var buttonRight = (position2) => import_react58.css`
8746
8908
  ${button(position2)}
8747
8909
 
8748
8910
  ${position2 === "left-right" && `
@@ -8762,12 +8924,12 @@ var buttonRight = (position2) => import_react54.css`
8762
8924
  right: calc(50% - var(--spacing-16));
8763
8925
  `}
8764
8926
  `;
8765
- var icon = import_react54.css`
8927
+ var icon = import_react58.css`
8766
8928
  width: var(--spacing-3);
8767
8929
  height: var(--spacing-3);
8768
8930
  color: var(--color-base-black);
8769
8931
  `;
8770
- var dots = import_react54.css`
8932
+ var dots = import_react58.css`
8771
8933
  position: absolute;
8772
8934
  bottom: var(--spacing-2);
8773
8935
  left: 0;
@@ -8777,11 +8939,11 @@ var dots = import_react54.css`
8777
8939
  align-items: center;
8778
8940
  justify-content: center;
8779
8941
  `;
8780
- var dotsInner = import_react54.css`
8942
+ var dotsInner = import_react58.css`
8781
8943
  display: flex;
8782
8944
  overflow: hidden;
8783
8945
  `;
8784
- var dot = (dotsColor) => import_react54.css`
8946
+ var dot = (dotsColor) => import_react58.css`
8785
8947
  position: relative;
8786
8948
  flex-shrink: 0;
8787
8949
  flex-grow: 0;
@@ -8820,22 +8982,22 @@ var dot = (dotsColor) => import_react54.css`
8820
8982
  `}
8821
8983
  }
8822
8984
  `;
8823
- var dotDistance2 = import_react54.css`
8985
+ var dotDistance2 = import_react58.css`
8824
8986
  &::after {
8825
8987
  transform: translate(-50%, -50%) scale(0.9);
8826
8988
  }
8827
8989
  `;
8828
- var dotDistance3 = import_react54.css`
8990
+ var dotDistance3 = import_react58.css`
8829
8991
  &::after {
8830
8992
  transform: translate(-50%, -50%) scale(0.8);
8831
8993
  }
8832
8994
  `;
8833
- var dotDistanceGreaterThan3 = import_react54.css`
8995
+ var dotDistanceGreaterThan3 = import_react58.css`
8834
8996
  &::after {
8835
8997
  transform: translate(-50%, -50%) scale(0.7);
8836
8998
  }
8837
8999
  `;
8838
- var dotVisible = import_react54.css`
9000
+ var dotVisible = import_react58.css`
8839
9001
  &::after {
8840
9002
  opacity: 1;
8841
9003
  transform: translate(-50%, -50%) scale(1.2);
@@ -8843,7 +9005,7 @@ var dotVisible = import_react54.css`
8843
9005
  `;
8844
9006
 
8845
9007
  // src/ScrollingCarousel/components/ScrollingCarouselStep.tsx
8846
- var import_jsx_runtime253 = require("@emotion/react/jsx-runtime");
9008
+ var import_jsx_runtime255 = require("@emotion/react/jsx-runtime");
8847
9009
  var ScrollingCarouselStep = ({
8848
9010
  children,
8849
9011
  index,
@@ -8851,7 +9013,7 @@ var ScrollingCarouselStep = ({
8851
9013
  parentId,
8852
9014
  onClick
8853
9015
  }) => {
8854
- const context = (0, import_react55.useContext)(CarouselContext);
9016
+ const context = (0, import_react59.useContext)(CarouselContext);
8855
9017
  if (!context) {
8856
9018
  throw new Error(
8857
9019
  "ScrollingCarouselStep must be used within ScrollingCarousel"
@@ -8862,7 +9024,7 @@ var ScrollingCarouselStep = ({
8862
9024
  threshold: 0.75,
8863
9025
  root: carousel2.current
8864
9026
  });
8865
- (0, import_react55.useEffect)(() => {
9027
+ (0, import_react59.useEffect)(() => {
8866
9028
  if (typeof index !== "undefined") {
8867
9029
  dispatch({
8868
9030
  type: "set_child_visibility",
@@ -8870,7 +9032,7 @@ var ScrollingCarouselStep = ({
8870
9032
  });
8871
9033
  }
8872
9034
  }, [inView, index, dispatch]);
8873
- return /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(
9035
+ return /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
8874
9036
  "div",
8875
9037
  {
8876
9038
  ref,
@@ -8888,10 +9050,10 @@ var ScrollingCarouselStep = ({
8888
9050
  ScrollingCarouselStep.displayName = "ScrollingCarouselStep";
8889
9051
 
8890
9052
  // src/ScrollingCarousel/ScrollingCarousel.tsx
8891
- var import_react59 = __toESM(require("react"));
9053
+ var import_react63 = __toESM(require("react"));
8892
9054
 
8893
9055
  // src/ScrollingCarousel/hooks/useCarouselDots.ts
8894
- var import_react56 = require("react");
9056
+ var import_react60 = require("react");
8895
9057
 
8896
9058
  // src/ScrollingCarousel/ScrollingCarousel.helpers.ts
8897
9059
  var childVisibilityReducer = (state, action) => {
@@ -8922,7 +9084,7 @@ var useCarouselDots = ({
8922
9084
  anyItemsVisible,
8923
9085
  numberOfDots
8924
9086
  }) => {
8925
- const dotOffset = (0, import_react56.useRef)(0);
9087
+ const dotOffset = (0, import_react60.useRef)(0);
8926
9088
  const dotWidth = 12;
8927
9089
  const totalDots = childVisibility.length;
8928
9090
  const dotToCenterIndex = Math.round(
@@ -8954,7 +9116,7 @@ var useCarouselDots = ({
8954
9116
  };
8955
9117
 
8956
9118
  // src/ScrollingCarousel/hooks/useCarouselNavigation.ts
8957
- var import_react57 = require("react");
9119
+ var import_react61 = require("react");
8958
9120
 
8959
9121
  // src/shared/helpers.ts
8960
9122
  var import_seamless_scroll_polyfill = require("seamless-scroll-polyfill");
@@ -8988,7 +9150,7 @@ var useCarouselNavigation = ({
8988
9150
  infiniteScroll,
8989
9151
  childVisibilityLength
8990
9152
  }) => {
8991
- const getStepEl = (0, import_react57.useCallback)(
9153
+ const getStepEl = (0, import_react61.useCallback)(
8992
9154
  (index) => {
8993
9155
  if (carousel2.current) {
8994
9156
  const selector = `[data-carousel-id="${id}"][data-carousel-index="${index}"]`;
@@ -8998,7 +9160,7 @@ var useCarouselNavigation = ({
8998
9160
  },
8999
9161
  [carousel2, id]
9000
9162
  );
9001
- const next = (0, import_react57.useCallback)(
9163
+ const next = (0, import_react61.useCallback)(
9002
9164
  (e) => {
9003
9165
  e.preventDefault();
9004
9166
  if (lastItemIsVisible && !infiniteScroll)
@@ -9026,7 +9188,7 @@ var useCarouselNavigation = ({
9026
9188
  carousel2
9027
9189
  ]
9028
9190
  );
9029
- const back = (0, import_react57.useCallback)(
9191
+ const back = (0, import_react61.useCallback)(
9030
9192
  (e) => {
9031
9193
  e.preventDefault();
9032
9194
  if (firstItemIsVisible && !infiniteScroll)
@@ -9054,7 +9216,7 @@ var useCarouselNavigation = ({
9054
9216
  carousel2
9055
9217
  ]
9056
9218
  );
9057
- const goTo = (0, import_react57.useCallback)(
9219
+ const goTo = (0, import_react61.useCallback)(
9058
9220
  (e, i) => {
9059
9221
  e.preventDefault();
9060
9222
  const el = getStepEl(i);
@@ -9072,12 +9234,12 @@ var useCarouselNavigation = ({
9072
9234
  };
9073
9235
 
9074
9236
  // src/ScrollingCarousel/hooks/useCarouselVisibility.ts
9075
- var import_react58 = require("react");
9237
+ var import_react62 = require("react");
9076
9238
  var useCarouselVisibility = (carousel2) => {
9077
- const [state, dispatch] = (0, import_react58.useReducer)(childVisibilityReducer, {
9239
+ const [state, dispatch] = (0, import_react62.useReducer)(childVisibilityReducer, {
9078
9240
  childVisibility: []
9079
9241
  });
9080
- const carouselContextApi = (0, import_react58.useMemo)(
9242
+ const carouselContextApi = (0, import_react62.useMemo)(
9081
9243
  () => ({ carousel: carousel2, dispatch }),
9082
9244
  [carousel2]
9083
9245
  );
@@ -9098,7 +9260,7 @@ var useCarouselVisibility = (carousel2) => {
9098
9260
  };
9099
9261
 
9100
9262
  // src/ScrollingCarousel/ScrollingCarousel.tsx
9101
- var import_jsx_runtime254 = require("@emotion/react/jsx-runtime");
9263
+ var import_jsx_runtime256 = require("@emotion/react/jsx-runtime");
9102
9264
  var ScrollingCarousel = ({
9103
9265
  className,
9104
9266
  children,
@@ -9115,8 +9277,8 @@ var ScrollingCarousel = ({
9115
9277
  id,
9116
9278
  current
9117
9279
  }) => {
9118
- const carousel2 = (0, import_react59.useRef)(null);
9119
- const [isHovering, setIsHovering] = (0, import_react59.useState)(false);
9280
+ const carousel2 = (0, import_react63.useRef)(null);
9281
+ const [isHovering, setIsHovering] = (0, import_react63.useState)(false);
9120
9282
  const {
9121
9283
  state,
9122
9284
  carouselContextApi,
@@ -9136,7 +9298,7 @@ var ScrollingCarousel = ({
9136
9298
  infiniteScroll,
9137
9299
  childVisibilityLength: state.childVisibility.length
9138
9300
  });
9139
- (0, import_react59.useEffect)(() => {
9301
+ (0, import_react63.useEffect)(() => {
9140
9302
  if (carousel2.current && typeof current === "number" && current >= 0) {
9141
9303
  const childrenArray = Array.from(carousel2.current.children);
9142
9304
  const selectedItem = childrenArray[current];
@@ -9151,9 +9313,9 @@ var ScrollingCarousel = ({
9151
9313
  }
9152
9314
  }
9153
9315
  }, [current]);
9154
- const childrenWithIndex = import_react59.default.Children.map(
9316
+ const childrenWithIndex = import_react63.default.Children.map(
9155
9317
  children,
9156
- (child, index) => import_react59.default.cloneElement(child, { index })
9318
+ (child, index) => import_react63.default.cloneElement(child, { index })
9157
9319
  );
9158
9320
  const { dotOffset, dotDistances, dotWidth } = useCarouselDots({
9159
9321
  childVisibility: state.childVisibility,
@@ -9164,7 +9326,7 @@ var ScrollingCarousel = ({
9164
9326
  });
9165
9327
  const hasMultipleChildren = state.childVisibility.length > 1;
9166
9328
  const shouldShowNavigation = showNavigationOnHover ? isHovering : true;
9167
- return /* @__PURE__ */ (0, import_jsx_runtime254.jsxs)(
9329
+ return /* @__PURE__ */ (0, import_jsx_runtime256.jsxs)(
9168
9330
  "div",
9169
9331
  {
9170
9332
  css: carouselRoot,
@@ -9172,7 +9334,7 @@ var ScrollingCarousel = ({
9172
9334
  onMouseEnter: () => setIsHovering(true),
9173
9335
  onMouseLeave: () => setIsHovering(false),
9174
9336
  children: [
9175
- /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
9337
+ /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
9176
9338
  "div",
9177
9339
  {
9178
9340
  css: carousel,
@@ -9181,11 +9343,11 @@ var ScrollingCarousel = ({
9181
9343
  role: "region",
9182
9344
  "aria-roledescription": "carousel",
9183
9345
  "aria-label": "Scrolling carousel",
9184
- children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(CarouselContext.Provider, { value: carouselContextApi, children: childrenWithIndex })
9346
+ children: /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(CarouselContext.Provider, { value: carouselContextApi, children: childrenWithIndex })
9185
9347
  }
9186
9348
  ),
9187
- hasMultipleChildren && shouldShowNavigation && /* @__PURE__ */ (0, import_jsx_runtime254.jsxs)("div", { css: controls(buttonsPosition), children: [
9188
- showButtons && (!firstItemIsVisible || infiniteScroll) && /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
9349
+ hasMultipleChildren && shouldShowNavigation && /* @__PURE__ */ (0, import_jsx_runtime256.jsxs)("div", { css: controls(buttonsPosition), children: [
9350
+ showButtons && (!firstItemIsVisible || infiniteScroll) && /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
9189
9351
  "button",
9190
9352
  {
9191
9353
  "aria-label": "Previous",
@@ -9197,10 +9359,10 @@ var ScrollingCarousel = ({
9197
9359
  },
9198
9360
  css: customLeftButton ? customButtonLeft(buttonsPosition) : buttonLeft(buttonsPosition),
9199
9361
  "data-testid": `scrolling-carousel-button-back-${id}`,
9200
- children: customBackIcon ? customBackIcon : /* @__PURE__ */ (0, import_jsx_runtime254.jsx)("span", { css: iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Icon_default, { variant: "AngleLeft", css: icon }) })
9362
+ children: customBackIcon ? customBackIcon : /* @__PURE__ */ (0, import_jsx_runtime256.jsx)("span", { css: iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(Icon_default, { variant: "AngleLeft", css: icon }) })
9201
9363
  }
9202
9364
  ),
9203
- showButtons && (!lastItemIsVisible || infiniteScroll) && /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
9365
+ showButtons && (!lastItemIsVisible || infiniteScroll) && /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
9204
9366
  "button",
9205
9367
  {
9206
9368
  "aria-label": "Next",
@@ -9212,11 +9374,11 @@ var ScrollingCarousel = ({
9212
9374
  },
9213
9375
  css: buttonRight(buttonsPosition),
9214
9376
  "data-testid": `scrolling-carousel-button-next-${id}`,
9215
- children: customNextIcon ? customNextIcon : /* @__PURE__ */ (0, import_jsx_runtime254.jsx)("span", { css: iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(Icon_default, { variant: "AngleRight", css: icon }) })
9377
+ children: customNextIcon ? customNextIcon : /* @__PURE__ */ (0, import_jsx_runtime256.jsx)("span", { css: iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(Icon_default, { variant: "AngleRight", css: icon }) })
9216
9378
  }
9217
9379
  )
9218
9380
  ] }),
9219
- showDots && /* @__PURE__ */ (0, import_jsx_runtime254.jsx)("div", { css: dots, children: /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
9381
+ showDots && /* @__PURE__ */ (0, import_jsx_runtime256.jsx)("div", { css: dots, children: /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
9220
9382
  "div",
9221
9383
  {
9222
9384
  css: dotsInner,
@@ -9224,7 +9386,7 @@ var ScrollingCarousel = ({
9224
9386
  children: state.childVisibility.map((childVisibility, i) => {
9225
9387
  var _a;
9226
9388
  const distance = (_a = dotDistances[i]) != null ? _a : 0;
9227
- return /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
9389
+ return /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
9228
9390
  "button",
9229
9391
  {
9230
9392
  type: "button",
@@ -9255,8 +9417,8 @@ var ScrollingCarousel = ({
9255
9417
  ScrollingCarousel.displayName = "ScrollingCarousel";
9256
9418
 
9257
9419
  // src/PackageCard/PackageCard.styles.ts
9258
- var import_react60 = require("@emotion/react");
9259
- var cardContainerStyles3 = (orientation, hasContentBackground, hasClickHandler) => import_react60.css`
9420
+ var import_react64 = require("@emotion/react");
9421
+ var cardContainerStyles3 = (orientation, hasContentBackground, hasClickHandler) => import_react64.css`
9260
9422
  ${hasClickHandler && `
9261
9423
  cursor: pointer;
9262
9424
  `}
@@ -9274,7 +9436,7 @@ var cardContainerStyles3 = (orientation, hasContentBackground, hasClickHandler)
9274
9436
  flex-direction: column;
9275
9437
  gap: var(--spacing-2);
9276
9438
 
9277
- ${orientation === "horizontal" && import_react60.css`
9439
+ ${orientation === "horizontal" && import_react64.css`
9278
9440
  /* Apply horizontal layout only on tablet and up */
9279
9441
  ${media.md} {
9280
9442
  flex-direction: row;
@@ -9302,60 +9464,60 @@ var cardContainerStyles3 = (orientation, hasContentBackground, hasClickHandler)
9302
9464
  }
9303
9465
  `}
9304
9466
  `;
9305
- var imageContainerStyles = (orientation) => import_react60.css`
9467
+ var imageContainerStyles = (orientation) => import_react64.css`
9306
9468
  width: 100%;
9307
9469
  height: 260px;
9308
9470
 
9309
- ${orientation === "horizontal" && import_react60.css`
9471
+ ${orientation === "horizontal" && import_react64.css`
9310
9472
  ${media.md} {
9311
9473
  width: 40%;
9312
9474
  height: 200px;
9313
9475
  }
9314
9476
  `}
9315
9477
  `;
9316
- var imageBoxStyles = (orientation) => import_react60.css`
9478
+ var imageBoxStyles = (orientation) => import_react64.css`
9317
9479
  height: 260px;
9318
9480
 
9319
- ${orientation === "horizontal" && import_react60.css`
9481
+ ${orientation === "horizontal" && import_react64.css`
9320
9482
  ${media.md} {
9321
9483
  height: 200px;
9322
9484
  }
9323
9485
  `}
9324
9486
  `;
9325
- var contentContainerStyles = (orientation, hasContentBackground) => import_react60.css`
9487
+ var contentContainerStyles = (orientation, hasContentBackground) => import_react64.css`
9326
9488
  ${hasContentBackground ? contentWithBackgroundStyles : contentWithoutBackgroundStyles}
9327
9489
  width: 100%;
9328
9490
  display: flex;
9329
9491
  flex-direction: column;
9330
9492
  justify-content: flex-start;
9331
9493
 
9332
- ${orientation === "horizontal" && import_react60.css`
9494
+ ${orientation === "horizontal" && import_react64.css`
9333
9495
  ${media.md} {
9334
9496
  width: 60%;
9335
9497
  justify-content: center;
9336
9498
  }
9337
9499
  `}
9338
9500
  `;
9339
- var imageStyles2 = import_react60.css`
9501
+ var imageStyles2 = import_react64.css`
9340
9502
  background-size: cover;
9341
9503
  background-position: center;
9342
9504
  background-repeat: no-repeat;
9343
9505
  position: relative;
9344
9506
  background-color: lightgray;
9345
9507
  `;
9346
- var badgeTopLeftStyles = import_react60.css`
9508
+ var badgeTopLeftStyles = import_react64.css`
9347
9509
  position: absolute;
9348
9510
  top: var(--spacing-3);
9349
9511
  left: var(--spacing-3);
9350
9512
  z-index: 2;
9351
9513
  `;
9352
- var badgeBottomRightStyles = import_react60.css`
9514
+ var badgeBottomRightStyles = import_react64.css`
9353
9515
  position: absolute;
9354
9516
  bottom: var(--spacing-3);
9355
9517
  right: var(--spacing-3);
9356
9518
  z-index: 2;
9357
9519
  `;
9358
- var heartIconStyles = import_react60.css`
9520
+ var heartIconStyles = import_react64.css`
9359
9521
  position: absolute;
9360
9522
  top: var(--spacing-3);
9361
9523
  right: var(--spacing-3);
@@ -9377,20 +9539,20 @@ var heartIconStyles = import_react60.css`
9377
9539
  transform: scale(1.1);
9378
9540
  }
9379
9541
  `;
9380
- var actionMenuStyles = import_react60.css`
9542
+ var actionMenuStyles = import_react64.css`
9381
9543
  position: absolute;
9382
9544
  top: var(--spacing-3);
9383
9545
  right: var(--spacing-3);
9384
9546
  z-index: 3;
9385
9547
  `;
9386
- var contentWithBackgroundStyles = import_react60.css`
9548
+ var contentWithBackgroundStyles = import_react64.css`
9387
9549
  padding: 0 var(--spacing-3) var(--spacing-4) var(--spacing-3);
9388
9550
  background-color: var(--surface-page);
9389
9551
  `;
9390
- var contentWithoutBackgroundStyles = import_react60.css`
9552
+ var contentWithoutBackgroundStyles = import_react64.css`
9391
9553
  padding-top: 0 var(--spacing-2) var(--spacing-2) var(--spacing-2);
9392
9554
  `;
9393
- var overlayStyles = import_react60.css`
9555
+ var overlayStyles = import_react64.css`
9394
9556
  position: absolute;
9395
9557
  top: 0;
9396
9558
  left: 0;
@@ -9404,7 +9566,7 @@ var overlayStyles = import_react60.css`
9404
9566
  `;
9405
9567
 
9406
9568
  // src/PackageCard/PackageCard.tsx
9407
- var import_jsx_runtime255 = require("@emotion/react/jsx-runtime");
9569
+ var import_jsx_runtime257 = require("@emotion/react/jsx-runtime");
9408
9570
  var PackageCard = ({
9409
9571
  images,
9410
9572
  title,
@@ -9426,7 +9588,7 @@ var PackageCard = ({
9426
9588
  const shouldShowOverlay = availabilityBadges == null ? void 0 : availabilityBadges.some(
9427
9589
  (badge2) => badge2.showOverlay
9428
9590
  );
9429
- return /* @__PURE__ */ (0, import_jsx_runtime255.jsxs)(
9591
+ return /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(
9430
9592
  Box_default,
9431
9593
  {
9432
9594
  position: "relative",
@@ -9435,7 +9597,7 @@ var PackageCard = ({
9435
9597
  onClick,
9436
9598
  ...rest,
9437
9599
  children: [
9438
- /* @__PURE__ */ (0, import_jsx_runtime255.jsxs)(
9600
+ /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(
9439
9601
  Box_default,
9440
9602
  {
9441
9603
  position: "relative",
@@ -9443,7 +9605,7 @@ var PackageCard = ({
9443
9605
  borderRadius: "var(--spacing-4)",
9444
9606
  css: imageContainerStyles(orientation),
9445
9607
  children: [
9446
- availabilityBadges == null ? void 0 : availabilityBadges.map((badge2, index) => /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9608
+ availabilityBadges == null ? void 0 : availabilityBadges.map((badge2, index) => /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9447
9609
  AvailabilityBadge_default,
9448
9610
  {
9449
9611
  variant: badge2.variant,
@@ -9452,18 +9614,18 @@ var PackageCard = ({
9452
9614
  },
9453
9615
  `availability-${index}`
9454
9616
  )),
9455
- shouldShowOverlay && /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Box_default, { css: overlayStyles }),
9456
- /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9617
+ shouldShowOverlay && /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Box_default, { css: overlayStyles }),
9618
+ /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9457
9619
  ScrollingCarousel,
9458
9620
  {
9459
9621
  showDots: images.length > 1,
9460
9622
  showNavigationOnHover: true,
9461
9623
  id: carouselId,
9462
- children: images.filter((image) => !!image).map((image, index) => /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9624
+ children: images.filter((image) => !!image).map((image, index) => /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9463
9625
  ScrollingCarouselStep,
9464
9626
  {
9465
9627
  parentId: carouselId,
9466
- children: /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9628
+ children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9467
9629
  Box_default,
9468
9630
  {
9469
9631
  width: "100%",
@@ -9481,7 +9643,7 @@ var PackageCard = ({
9481
9643
  ))
9482
9644
  }
9483
9645
  ),
9484
- onFavoriteClick && /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9646
+ onFavoriteClick && /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9485
9647
  Box_default,
9486
9648
  {
9487
9649
  css: heartIconStyles,
@@ -9490,14 +9652,14 @@ var PackageCard = ({
9490
9652
  e.stopPropagation();
9491
9653
  onFavoriteClick == null ? void 0 : onFavoriteClick();
9492
9654
  },
9493
- children: isFavorited ? /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9655
+ children: isFavorited ? /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9494
9656
  Icon_default,
9495
9657
  {
9496
9658
  variant: "HeartSolid",
9497
9659
  size: "small",
9498
9660
  fill: "var(--color-error-500)"
9499
9661
  }
9500
- ) : /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9662
+ ) : /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9501
9663
  Icon_default,
9502
9664
  {
9503
9665
  variant: "Heart",
@@ -9507,13 +9669,13 @@ var PackageCard = ({
9507
9669
  )
9508
9670
  }
9509
9671
  ),
9510
- actions && actions.length > 0 && orientation === "vertical" && /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Box_default, { css: actionMenuStyles, children: /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(ActionMenu_default, { actions }) })
9672
+ actions && actions.length > 0 && orientation === "vertical" && /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Box_default, { css: actionMenuStyles, children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(ActionMenu_default, { actions }) })
9511
9673
  ]
9512
9674
  }
9513
9675
  ),
9514
- actions && actions.length > 0 && orientation === "horizontal" && /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Box_default, { css: actionMenuStyles, children: /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(ActionMenu_default, { actions }) }),
9515
- /* @__PURE__ */ (0, import_jsx_runtime255.jsxs)(Box_default, { css: contentContainerStyles(orientation, hasContentBackground), children: [
9516
- /* @__PURE__ */ (0, import_jsx_runtime255.jsxs)(
9676
+ actions && actions.length > 0 && orientation === "horizontal" && /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Box_default, { css: actionMenuStyles, children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(ActionMenu_default, { actions }) }),
9677
+ /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(Box_default, { css: contentContainerStyles(orientation, hasContentBackground), children: [
9678
+ /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(
9517
9679
  Box_default,
9518
9680
  {
9519
9681
  display: "flex",
@@ -9521,9 +9683,9 @@ var PackageCard = ({
9521
9683
  gap: "var(--spacing-1)",
9522
9684
  mb: "var(--spacing-1)",
9523
9685
  children: [
9524
- /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Text_default, { size: "md", fontWeight: "bold", children: title }) }),
9525
- /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Text_default, { size: "sm", fontWeight: "bold", children: subtitle }) }),
9526
- startingPrice && /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime255.jsxs)(Text_default, { size: "sm", fontWeight: "normal", children: [
9686
+ /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Text_default, { size: "md", fontWeight: "bold", children: title }) }),
9687
+ /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Text_default, { size: "sm", fontWeight: "bold", children: subtitle }) }),
9688
+ startingPrice && /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(Text_default, { size: "sm", fontWeight: "normal", children: [
9527
9689
  "Starting Price ",
9528
9690
  startingPrice,
9529
9691
  " / Guest"
@@ -9531,14 +9693,14 @@ var PackageCard = ({
9531
9693
  ]
9532
9694
  }
9533
9695
  ),
9534
- badges && badges.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9696
+ badges && badges.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9535
9697
  Box_default,
9536
9698
  {
9537
9699
  display: "flex",
9538
9700
  gap: "var(--spacing-2) var(--spacing-4)",
9539
9701
  alignItems: "center",
9540
9702
  flexWrap: "wrap",
9541
- children: badges.map((badge2, index) => /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
9703
+ children: badges.map((badge2, index) => /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9542
9704
  IconLabel_default,
9543
9705
  {
9544
9706
  iconSize: badge2.iconSize || "medium",
@@ -9557,14 +9719,14 @@ var PackageCard = ({
9557
9719
  var PackageCard_default = PackageCard;
9558
9720
 
9559
9721
  // src/PackageHeader/PackageHeader.tsx
9560
- var import_jsx_runtime256 = require("@emotion/react/jsx-runtime");
9722
+ var import_jsx_runtime258 = require("@emotion/react/jsx-runtime");
9561
9723
  var PackageHeader = ({
9562
9724
  header,
9563
9725
  subheader,
9564
9726
  features,
9565
9727
  className
9566
9728
  }) => {
9567
- return /* @__PURE__ */ (0, import_jsx_runtime256.jsxs)(
9729
+ return /* @__PURE__ */ (0, import_jsx_runtime258.jsxs)(
9568
9730
  Box_default,
9569
9731
  {
9570
9732
  display: "flex",
@@ -9573,9 +9735,9 @@ var PackageHeader = ({
9573
9735
  color: "var(--text-primary)",
9574
9736
  className,
9575
9737
  children: [
9576
- /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(Heading_default, { size: "xs", fontWeight: "bold", children: header }),
9577
- subheader && /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(Text_default, { children: subheader }),
9578
- features && /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(FeatureList_default, { items: features })
9738
+ /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(Heading_default, { size: "xs", fontWeight: "bold", children: header }),
9739
+ subheader && /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(Text_default, { children: subheader }),
9740
+ features && /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(FeatureList_default, { items: features })
9579
9741
  ]
9580
9742
  }
9581
9743
  );
@@ -9583,8 +9745,8 @@ var PackageHeader = ({
9583
9745
  var PackageHeader_default = PackageHeader;
9584
9746
 
9585
9747
  // src/ReviewCard/components/ReviewImages.styles.ts
9586
- var import_react61 = require("@emotion/react");
9587
- var imageStyles3 = import_react61.css`
9748
+ var import_react65 = require("@emotion/react");
9749
+ var imageStyles3 = import_react65.css`
9588
9750
  flex: 1;
9589
9751
  min-width: 0;
9590
9752
  max-width: 100%;
@@ -9595,13 +9757,13 @@ var imageStyles3 = import_react61.css`
9595
9757
  `;
9596
9758
 
9597
9759
  // src/ReviewCard/components/ReviewImages.tsx
9598
- var import_jsx_runtime257 = require("@emotion/react/jsx-runtime");
9760
+ var import_jsx_runtime259 = require("@emotion/react/jsx-runtime");
9599
9761
  var ReviewImages = ({ images, maxImages = 3 }) => {
9600
9762
  const displayImages = images.slice(0, maxImages);
9601
9763
  if (displayImages.length === 0) {
9602
9764
  return null;
9603
9765
  }
9604
- return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Box_default, { display: "flex", gap: "var(--spacing-2)", flexWrap: "wrap", children: displayImages.map((image, index) => /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
9766
+ return /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(Box_default, { display: "flex", gap: "var(--spacing-2)", flexWrap: "wrap", children: displayImages.map((image, index) => /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
9605
9767
  "img",
9606
9768
  {
9607
9769
  src: image,
@@ -9614,7 +9776,7 @@ var ReviewImages = ({ images, maxImages = 3 }) => {
9614
9776
  var ReviewImages_default = ReviewImages;
9615
9777
 
9616
9778
  // src/ReviewCard/components/ReviewReply.tsx
9617
- var import_jsx_runtime258 = require("@emotion/react/jsx-runtime");
9779
+ var import_jsx_runtime260 = require("@emotion/react/jsx-runtime");
9618
9780
  var ReviewReply = ({
9619
9781
  avatarSrc,
9620
9782
  name,
@@ -9623,7 +9785,7 @@ var ReviewReply = ({
9623
9785
  label,
9624
9786
  rating
9625
9787
  }) => {
9626
- return /* @__PURE__ */ (0, import_jsx_runtime258.jsxs)(
9788
+ return /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(
9627
9789
  Box_default,
9628
9790
  {
9629
9791
  backgroundColor: "var(--surface-neutral)",
@@ -9633,7 +9795,7 @@ var ReviewReply = ({
9633
9795
  flexDirection: "column",
9634
9796
  gap: "var(--spacing-3)",
9635
9797
  children: [
9636
- /* @__PURE__ */ (0, import_jsx_runtime258.jsxs)(
9798
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(
9637
9799
  Box_default,
9638
9800
  {
9639
9801
  display: "flex",
@@ -9641,7 +9803,7 @@ var ReviewReply = ({
9641
9803
  justifyContent: "space-between",
9642
9804
  gap: "var(--spacing-2)",
9643
9805
  children: [
9644
- /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
9806
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
9645
9807
  UserCard_default,
9646
9808
  {
9647
9809
  avatarSrc,
@@ -9650,11 +9812,11 @@ var ReviewReply = ({
9650
9812
  rating
9651
9813
  }
9652
9814
  ),
9653
- /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(AvailabilityBadge_default, { variant: "neutral", children: label })
9815
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(AvailabilityBadge_default, { variant: "neutral", children: label })
9654
9816
  ]
9655
9817
  }
9656
9818
  ),
9657
- /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(Text_default, { children: content })
9819
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(Text_default, { children: content })
9658
9820
  ]
9659
9821
  }
9660
9822
  );
@@ -9662,7 +9824,7 @@ var ReviewReply = ({
9662
9824
  var ReviewReply_default = ReviewReply;
9663
9825
 
9664
9826
  // src/ReviewCard/ReviewCard.tsx
9665
- var import_jsx_runtime259 = require("@emotion/react/jsx-runtime");
9827
+ var import_jsx_runtime261 = require("@emotion/react/jsx-runtime");
9666
9828
  var ReviewCard = ({
9667
9829
  avatarSrc,
9668
9830
  name,
@@ -9674,7 +9836,7 @@ var ReviewCard = ({
9674
9836
  replies = [],
9675
9837
  className
9676
9838
  }) => {
9677
- return /* @__PURE__ */ (0, import_jsx_runtime259.jsxs)(
9839
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsxs)(
9678
9840
  Box_default,
9679
9841
  {
9680
9842
  backgroundColor: "white",
@@ -9685,7 +9847,7 @@ var ReviewCard = ({
9685
9847
  gap: "var(--spacing-4)",
9686
9848
  className,
9687
9849
  children: [
9688
- /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
9850
+ /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
9689
9851
  UserCard_default,
9690
9852
  {
9691
9853
  avatarSrc,
@@ -9694,10 +9856,10 @@ var ReviewCard = ({
9694
9856
  rating
9695
9857
  }
9696
9858
  ),
9697
- availabilityBadge && /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(AvailabilityBadge_default, { variant: availabilityBadge.variant, children: availabilityBadge.text }) }),
9698
- /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(Text_default, { size: "md", children: content }),
9699
- images.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(ReviewImages_default, { images }),
9700
- replies.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-3)", children: replies.map((reply, index) => /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
9859
+ availabilityBadge && /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(AvailabilityBadge_default, { variant: availabilityBadge.variant, children: availabilityBadge.text }) }),
9860
+ /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(Text_default, { size: "md", children: content }),
9861
+ images.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(ReviewImages_default, { images }),
9862
+ replies.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-3)", children: replies.map((reply, index) => /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
9701
9863
  ReviewReply_default,
9702
9864
  {
9703
9865
  avatarSrc: reply.avatarSrc,
@@ -9716,12 +9878,12 @@ var ReviewCard = ({
9716
9878
  var ReviewCard_default = ReviewCard;
9717
9879
 
9718
9880
  // src/Reviews/Reviews.tsx
9719
- var import_react62 = require("@emotion/react");
9881
+ var import_react66 = require("@emotion/react");
9720
9882
 
9721
9883
  // src/Reviews/components/ReviewItem.tsx
9722
- var import_jsx_runtime260 = require("@emotion/react/jsx-runtime");
9884
+ var import_jsx_runtime262 = require("@emotion/react/jsx-runtime");
9723
9885
  var ReviewItem = ({ label, rating }) => {
9724
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(
9886
+ return /* @__PURE__ */ (0, import_jsx_runtime262.jsxs)(
9725
9887
  Box_default,
9726
9888
  {
9727
9889
  display: "flex",
@@ -9729,10 +9891,10 @@ var ReviewItem = ({ label, rating }) => {
9729
9891
  alignItems: "center",
9730
9892
  width: "100%",
9731
9893
  children: [
9732
- /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(Text_default, { fontWeight: "semibold", children: label }),
9733
- /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(Box_default, { display: "flex", alignItems: "center", gap: "var(--spacing-2)", children: [
9734
- /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(Icon_default, { variant: "StarSolid", size: "large", fill: "var(--surface-action-2)" }),
9735
- /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(Text_default, { fontWeight: "semibold", children: rating.toFixed(1) })
9894
+ /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Text_default, { fontWeight: "semibold", children: label }),
9895
+ /* @__PURE__ */ (0, import_jsx_runtime262.jsxs)(Box_default, { display: "flex", alignItems: "center", gap: "var(--spacing-2)", children: [
9896
+ /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Icon_default, { variant: "StarSolid", size: "large", fill: "var(--surface-action-2)" }),
9897
+ /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Text_default, { fontWeight: "semibold", children: rating.toFixed(1) })
9736
9898
  ] })
9737
9899
  ]
9738
9900
  }
@@ -9741,14 +9903,14 @@ var ReviewItem = ({ label, rating }) => {
9741
9903
  var ReviewItem_default = ReviewItem;
9742
9904
 
9743
9905
  // src/Reviews/Reviews.tsx
9744
- var import_jsx_runtime261 = require("@emotion/react/jsx-runtime");
9906
+ var import_jsx_runtime263 = require("@emotion/react/jsx-runtime");
9745
9907
  var Reviews = ({
9746
9908
  averageRating,
9747
9909
  totalReviews,
9748
9910
  items,
9749
9911
  className
9750
9912
  }) => {
9751
- return /* @__PURE__ */ (0, import_jsx_runtime261.jsxs)(
9913
+ return /* @__PURE__ */ (0, import_jsx_runtime263.jsxs)(
9752
9914
  Box_default,
9753
9915
  {
9754
9916
  width: "100%",
@@ -9761,7 +9923,7 @@ var Reviews = ({
9761
9923
  p: "var(--spacing-4)",
9762
9924
  className,
9763
9925
  children: [
9764
- /* @__PURE__ */ (0, import_jsx_runtime261.jsxs)(
9926
+ /* @__PURE__ */ (0, import_jsx_runtime263.jsxs)(
9765
9927
  Box_default,
9766
9928
  {
9767
9929
  display: "flex",
@@ -9769,12 +9931,12 @@ var Reviews = ({
9769
9931
  alignItems: "center",
9770
9932
  gap: "var(--spacing-2)",
9771
9933
  children: [
9772
- /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(Heading_default, { size: "sm", fontWeight: "bold", color: "text-primary", children: averageRating.toFixed(1) }),
9773
- /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
9934
+ /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(Heading_default, { size: "sm", fontWeight: "bold", color: "text-primary", children: averageRating.toFixed(1) }),
9935
+ /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(
9774
9936
  StarRating_default,
9775
9937
  {
9776
9938
  rating: averageRating,
9777
- css: import_react62.css`
9939
+ css: import_react66.css`
9778
9940
  > svg {
9779
9941
  height: 40px;
9780
9942
  width: 40px;
@@ -9782,7 +9944,7 @@ var Reviews = ({
9782
9944
  `
9783
9945
  }
9784
9946
  ),
9785
- /* @__PURE__ */ (0, import_jsx_runtime261.jsxs)(Text_default, { size: "sm", color: "text-secondary", children: [
9947
+ /* @__PURE__ */ (0, import_jsx_runtime263.jsxs)(Text_default, { size: "sm", color: "text-secondary", children: [
9786
9948
  "Overall Rating \u2022 ",
9787
9949
  totalReviews,
9788
9950
  " Review",
@@ -9791,14 +9953,14 @@ var Reviews = ({
9791
9953
  ]
9792
9954
  }
9793
9955
  ),
9794
- /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
9956
+ /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(
9795
9957
  Box_default,
9796
9958
  {
9797
9959
  display: "flex",
9798
9960
  flexDirection: "column",
9799
9961
  gap: "var(--spacing-2)",
9800
9962
  width: "100%",
9801
- children: items.map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(ReviewItem_default, { label: item.label, rating: item.rating }, index))
9963
+ children: items.map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(ReviewItem_default, { label: item.label, rating: item.rating }, index))
9802
9964
  }
9803
9965
  )
9804
9966
  ]
@@ -9808,7 +9970,7 @@ var Reviews = ({
9808
9970
  var Reviews_default = Reviews;
9809
9971
 
9810
9972
  // src/Reviews/ReviewsShowcase.tsx
9811
- var import_jsx_runtime262 = require("@emotion/react/jsx-runtime");
9973
+ var import_jsx_runtime264 = require("@emotion/react/jsx-runtime");
9812
9974
  var ReviewsShowcase = () => {
9813
9975
  const sampleData = {
9814
9976
  averageRating: 4,
@@ -9830,7 +9992,7 @@ var ReviewsShowcase = () => {
9830
9992
  { label: "Game Abundance", rating: 5 }
9831
9993
  ]
9832
9994
  };
9833
- return /* @__PURE__ */ (0, import_jsx_runtime262.jsxs)(
9995
+ return /* @__PURE__ */ (0, import_jsx_runtime264.jsxs)(
9834
9996
  Box_default,
9835
9997
  {
9836
9998
  display: "flex",
@@ -9838,24 +10000,24 @@ var ReviewsShowcase = () => {
9838
10000
  gap: "var(--spacing-8)",
9839
10001
  p: "var(--spacing-6)",
9840
10002
  children: [
9841
- /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Heading_default, { size: "lg", children: "Reviews Component Showcase" }),
9842
- /* @__PURE__ */ (0, import_jsx_runtime262.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-4)", children: [
9843
- /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Heading_default, { size: "md", children: "Default Reviews" }),
9844
- /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Box_default, { maxWidth: "400px", children: /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Reviews_default, { ...sampleData }) })
10003
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Heading_default, { size: "lg", children: "Reviews Component Showcase" }),
10004
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-4)", children: [
10005
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Heading_default, { size: "md", children: "Default Reviews" }),
10006
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Box_default, { maxWidth: "400px", children: /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Reviews_default, { ...sampleData }) })
9845
10007
  ] }),
9846
- /* @__PURE__ */ (0, import_jsx_runtime262.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-4)", children: [
9847
- /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Heading_default, { size: "md", children: "High Rating Reviews" }),
9848
- /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Box_default, { maxWidth: "400px", children: /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Reviews_default, { ...highRatingData }) })
10008
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-4)", children: [
10009
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Heading_default, { size: "md", children: "High Rating Reviews" }),
10010
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Box_default, { maxWidth: "400px", children: /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Reviews_default, { ...highRatingData }) })
9849
10011
  ] }),
9850
- /* @__PURE__ */ (0, import_jsx_runtime262.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-4)", children: [
9851
- /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Heading_default, { size: "md", children: "Mobile Layout (320px width)" }),
9852
- /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(
10012
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsxs)(Box_default, { display: "flex", flexDirection: "column", gap: "var(--spacing-4)", children: [
10013
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Heading_default, { size: "md", children: "Mobile Layout (320px width)" }),
10014
+ /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(
9853
10015
  Box_default,
9854
10016
  {
9855
10017
  maxWidth: "320px",
9856
10018
  border: "1px solid var(--color-neutral-200)",
9857
10019
  p: "var(--spacing-4)",
9858
- children: /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(Reviews_default, { ...sampleData })
10020
+ children: /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Reviews_default, { ...sampleData })
9859
10021
  }
9860
10022
  )
9861
10023
  ] })
@@ -9902,6 +10064,7 @@ var ReviewsShowcase_default = ReviewsShowcase;
9902
10064
  Navigation,
9903
10065
  PackageCard,
9904
10066
  PackageHeader,
10067
+ ProgressBar,
9905
10068
  ReviewCard,
9906
10069
  Reviews,
9907
10070
  ReviewsShowcase,
@@ -9914,6 +10077,7 @@ var ReviewsShowcase_default = ReviewsShowcase;
9914
10077
  Text,
9915
10078
  TextArea,
9916
10079
  ThemeTokens,
10080
+ Timer,
9917
10081
  Tooltip,
9918
10082
  TopMatchingFieldNote,
9919
10083
  TopMatchingReview,