@ecohouse/ui 0.1.31 → 0.1.33

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.
Files changed (94) hide show
  1. package/README.md +5 -0
  2. package/dist/index.cjs +1594 -523
  3. package/dist/index.cjs.map +1 -1
  4. package/dist/index.d.cts +218 -10
  5. package/dist/index.d.ts +218 -10
  6. package/dist/index.js +1516 -471
  7. package/dist/index.js.map +1 -1
  8. package/package.json +1 -1
  9. package/src/components/AccountHeader/AccountHeader.stories.tsx +70 -0
  10. package/src/components/AccountHeader/AccountHeader.tsx +224 -0
  11. package/src/components/AccountHeader/index.ts +2 -0
  12. package/src/components/AvatarSimple/AvatarSimple.tsx +2 -2
  13. package/src/components/Button/Button.tsx +4 -1
  14. package/src/components/DatePicker/DatePicker.tsx +129 -54
  15. package/src/components/FloatingActionButton/FloatingActionButton.stories.tsx +42 -0
  16. package/src/components/FloatingActionButton/FloatingActionButton.tsx +77 -0
  17. package/src/components/FloatingActionButton/index.ts +2 -0
  18. package/src/components/InfoTile/InfoTile.stories.tsx +80 -0
  19. package/src/components/InfoTile/InfoTile.tsx +118 -0
  20. package/src/components/InfoTile/index.ts +2 -0
  21. package/src/components/PaginationDots/PaginationDots.stories.tsx +48 -0
  22. package/src/components/PaginationDots/PaginationDots.tsx +111 -0
  23. package/src/components/PaginationDots/index.ts +2 -0
  24. package/src/components/Select/Select.tsx +5 -2
  25. package/src/components/Sidebar/Sidebar.tsx +25 -11
  26. package/src/components/StatusBadge/StatusBadge.stories.tsx +54 -0
  27. package/src/components/StatusBadge/StatusBadge.tsx +108 -0
  28. package/src/components/StatusBadge/index.ts +2 -0
  29. package/src/components/StepList/StepList.stories.tsx +37 -0
  30. package/src/components/StepList/StepList.tsx +152 -0
  31. package/src/components/StepList/index.ts +2 -0
  32. package/src/components/StepPager/StepPager.tsx +150 -0
  33. package/src/components/StepPager/index.ts +2 -0
  34. package/src/components/index.ts +21 -0
  35. package/src/icons/AlertTriangle/AlertTriangleIcon.tsx +19 -0
  36. package/src/icons/AlertTriangle/AlertTriangleIcon.web.tsx +18 -0
  37. package/src/icons/AlertTriangle/alertTrianglePath.ts +3 -0
  38. package/src/icons/AlertTriangle/index.ts +1 -0
  39. package/src/icons/Ban/BanIcon.tsx +15 -0
  40. package/src/icons/Ban/banPath.ts +2 -0
  41. package/src/icons/Ban/index.ts +1 -0
  42. package/src/icons/Bell/BellIcon.tsx +2 -2
  43. package/src/icons/Bell/BellIcon.web.tsx +2 -2
  44. package/src/icons/Bell/bellPath.ts +1 -1
  45. package/src/icons/CottageDetail/CottageDetailIcons.tsx +15 -0
  46. package/src/icons/CottageDetail/CottageDetailIcons.web.tsx +15 -0
  47. package/src/icons/CottageDetail/cottageDetailPaths.ts +3 -0
  48. package/src/icons/CottageDetail/index.ts +1 -0
  49. package/src/icons/Edit/EditIcon.tsx +20 -0
  50. package/src/icons/Edit/EditIcon.web.tsx +19 -0
  51. package/src/icons/Edit/editPath.ts +3 -0
  52. package/src/icons/Edit/index.ts +1 -0
  53. package/src/icons/Fullscreen/FullscreenIcon.tsx +21 -0
  54. package/src/icons/Fullscreen/fullscreenPath.ts +2 -0
  55. package/src/icons/Fullscreen/index.ts +1 -0
  56. package/src/icons/Home/homePath.ts +1 -1
  57. package/src/icons/HouseRules/HouseRulesIcons.tsx +62 -0
  58. package/src/icons/HouseRules/HouseRulesIcons.web.tsx +61 -0
  59. package/src/icons/HouseRules/houseRulesPaths.ts +24 -0
  60. package/src/icons/HouseRules/index.ts +2 -0
  61. package/src/icons/LocationUser/LocationUserIcon.tsx +15 -0
  62. package/src/icons/LocationUser/LocationUserIcon.web.tsx +14 -0
  63. package/src/icons/LocationUser/index.ts +1 -0
  64. package/src/icons/LocationUser/locationUserPath.ts +2 -0
  65. package/src/icons/Lock/LockIcon.tsx +21 -0
  66. package/src/icons/Lock/LockIcon.web.tsx +26 -0
  67. package/src/icons/Lock/index.ts +1 -0
  68. package/src/icons/Lock/lockPath.ts +3 -0
  69. package/src/icons/Refresh/RefreshIcon.tsx +20 -0
  70. package/src/icons/Refresh/RefreshIcon.web.tsx +19 -0
  71. package/src/icons/Refresh/index.ts +1 -0
  72. package/src/icons/Refresh/refreshPath.ts +3 -0
  73. package/src/icons/RefundStatus/RefundStatusIcon.tsx +24 -0
  74. package/src/icons/RefundStatus/RefundStatusIcon.web.tsx +23 -0
  75. package/src/icons/RefundStatus/index.ts +1 -0
  76. package/src/icons/RefundStatus/refundStatusPath.ts +3 -0
  77. package/src/icons/Sort/SortIcon.tsx +3 -3
  78. package/src/icons/Sort/SortIcon.web.tsx +2 -2
  79. package/src/icons/Sort/sortPath.ts +3 -2
  80. package/src/icons/VideoOff/VideoOffIcon.tsx +21 -0
  81. package/src/icons/VideoOff/VideoOffIcon.web.tsx +27 -0
  82. package/src/icons/VideoOff/index.ts +1 -0
  83. package/src/icons/VideoOff/videoOffPath.ts +2 -0
  84. package/src/icons/ZoomOut/ZoomOutIcon.tsx +21 -0
  85. package/src/icons/ZoomOut/index.ts +1 -0
  86. package/src/icons/ZoomOut/zoomOutPath.ts +2 -0
  87. package/src/icons/index.ts +12 -0
  88. package/src/icons/registry.ts +42 -0
  89. package/src/index.ts +34 -0
  90. package/src/theme/colors.test.ts +1 -1
  91. package/src/theme/colors.ts +4 -0
  92. package/src/theme/typography.ts +5 -5
  93. package/src/utils/dateUtils.ts +25 -0
  94. package/src/utils/popoverAlign.ts +85 -0
package/dist/index.cjs CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  var react = require('react');
4
4
  var reactNative = require('react-native');
5
- var Svg16 = require('react-native-svg');
5
+ var Svg19 = require('react-native-svg');
6
6
  var jsxRuntime = require('react/jsx-runtime');
7
7
 
8
8
  function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
9
9
 
10
- var Svg16__default = /*#__PURE__*/_interopDefault(Svg16);
10
+ var Svg19__default = /*#__PURE__*/_interopDefault(Svg19);
11
11
 
12
12
  // src/components/Avatar/Avatar.tsx
13
13
 
@@ -47,10 +47,13 @@ var colors = {
47
47
  red: "#A63E3E",
48
48
  lightGrey: "#B7B7B7",
49
49
  green: "#34A853",
50
+ greenMuted: "#34A85329",
50
51
  primaryMuted: "#B464360F",
51
52
  primaryHover: "#B4643633",
52
53
  redMuted: "#A63E3E0F",
53
54
  redHover: "#A63E3E33",
55
+ greyMuted: "#76767629",
56
+ cancelledMuted: "#A63E3E29",
54
57
  grey0: grey["0"],
55
58
  grey50: grey["0.5"],
56
59
  grey100: grey["1"],
@@ -60,6 +63,7 @@ var colors = {
60
63
  grey400: grey["4"],
61
64
  grey500: grey["5"],
62
65
  grey600: grey["6"],
66
+ grey650: "#1B1B1B",
63
67
  grey700: grey["7"],
64
68
  grey750: grey["7.5"],
65
69
  grey800: grey["8"],
@@ -172,7 +176,7 @@ var inputTypography = {
172
176
  fontFamily: fonts.sans,
173
177
  fontSize: 12,
174
178
  fontWeight: "400",
175
- lineHeight: 12,
179
+ lineHeight: 16,
176
180
  letterSpacing: 0.36
177
181
  },
178
182
  hint: {
@@ -195,7 +199,7 @@ var selectTypography = {
195
199
  fontFamily: fonts.sans,
196
200
  fontSize: 12,
197
201
  fontWeight: "400",
198
- lineHeight: 12,
202
+ lineHeight: 16,
199
203
  letterSpacing: 0.36
200
204
  },
201
205
  hint: {
@@ -218,7 +222,7 @@ var avatarTypography = {
218
222
  fontFamily: fonts.sans,
219
223
  fontSize: 12,
220
224
  fontWeight: "400",
221
- lineHeight: 12,
225
+ lineHeight: 14,
222
226
  letterSpacing: 0
223
227
  },
224
228
  menuItem: {
@@ -234,7 +238,7 @@ var datePickerTypography = {
234
238
  fontFamily: fonts.sans,
235
239
  fontSize: 12,
236
240
  fontWeight: "400",
237
- lineHeight: 12,
241
+ lineHeight: 14,
238
242
  letterSpacing: 0.36
239
243
  },
240
244
  rangeLabel: {
@@ -294,7 +298,7 @@ var textareaTypography = {
294
298
  fontFamily: fonts.sans,
295
299
  fontSize: 12,
296
300
  fontWeight: "400",
297
- lineHeight: 12,
301
+ lineHeight: 16,
298
302
  letterSpacing: 0.36
299
303
  },
300
304
  hint: {
@@ -310,8 +314,8 @@ function ArrowRightIcon({
310
314
  color = colors.primary,
311
315
  strokeWidth = 2
312
316
  }) {
313
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
314
- Svg16.Path,
317
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
318
+ Svg19.Path,
315
319
  {
316
320
  d: ARROW_RIGHT_PATH,
317
321
  stroke: color,
@@ -322,6 +326,21 @@ function ArrowRightIcon({
322
326
  ) });
323
327
  }
324
328
 
329
+ // src/icons/AlertTriangle/alertTrianglePath.ts
330
+ var ALERT_TRIANGLE_PATH = "M8.00049 6.00015V8.66682M8.00049 11.3335H8.00715M7.07737 2.59464L1.59411 12.0657C1.28997 12.591 1.1379 12.8537 1.16038 13.0693C1.17998 13.2573 1.2785 13.4282 1.4314 13.5394C1.60671 13.6668 1.91022 13.6668 2.51723 13.6668H13.4837C14.0908 13.6668 14.3943 13.6668 14.5696 13.5394C14.7225 13.4282 14.821 13.2573 14.8406 13.0693C14.8631 12.8537 14.711 12.591 14.4069 12.0657L8.92361 2.59463C8.62056 2.07119 8.46904 1.80947 8.27135 1.72157C8.09892 1.64489 7.90206 1.64489 7.72962 1.72157C7.53194 1.80947 7.38041 2.07119 7.07737 2.59464Z";
331
+ function AlertTriangleIcon({ size = 16, color = "#E38E5E", strokeWidth = 1.5 }) {
332
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
333
+ Svg19.Path,
334
+ {
335
+ d: ALERT_TRIANGLE_PATH,
336
+ stroke: color,
337
+ strokeWidth,
338
+ strokeLinecap: "round",
339
+ strokeLinejoin: "round"
340
+ }
341
+ ) });
342
+ }
343
+
325
344
  // src/icons/Store/storeMarkPaths.ts
326
345
  var APPLE_PATHS = [
327
346
  "M20.8806 15.9539C20.8958 14.804 21.2087 13.6766 21.7901 12.6765C22.3715 11.6763 23.2026 10.8361 24.206 10.2338C23.5685 9.34496 22.7276 8.6135 21.7499 8.0975C20.7723 7.58149 19.6849 7.29515 18.574 7.26122C16.2044 7.01838 13.9072 8.64554 12.6997 8.64554C11.4688 8.64554 9.6097 7.28533 7.6077 7.32554C6.31276 7.36638 5.05074 7.73402 3.9446 8.39262C2.83847 9.05123 1.92593 9.97834 1.29592 11.0836C-1.4331 15.6966 0.602506 22.4762 3.21673 26.205C4.52469 28.0309 6.0533 30.0704 8.05349 29.9981C10.0108 29.9189 10.7418 28.7796 13.1044 28.7796C15.4451 28.7796 16.1309 29.9981 18.1717 29.9521C20.272 29.9189 21.5953 28.1181 22.8573 26.275C23.7971 24.9739 24.5203 23.536 25 22.0145C23.7798 21.5107 22.7385 20.6673 22.006 19.5895C21.2734 18.5118 20.882 17.2474 20.8806 15.9539Z",
@@ -346,17 +365,17 @@ var GOOGLE_PLAY_PATHS = [
346
365
  }
347
366
  ];
348
367
  function AppleIcon({ size = 30, color = colors.white }) {
349
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size * 25 / 30, height: size, viewBox: "0 0 25 30", fill: "none", children: APPLE_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: path, fill: color }, path)) });
368
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size * 25 / 30, height: size, viewBox: "0 0 25 30", fill: "none", children: APPLE_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: path, fill: color }, path)) });
350
369
  }
351
370
  function GooglePlayIcon({ size = 30 }) {
352
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size * 27 / 30, height: size, viewBox: "0 0 27 30", fill: "none", children: GOOGLE_PLAY_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: path.d, fill: path.color }, path.d)) });
371
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size * 27 / 30, height: size, viewBox: "0 0 27 30", fill: "none", children: GOOGLE_PLAY_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: path.d, fill: path.color }, path.d)) });
353
372
  }
354
373
 
355
374
  // src/icons/Bag/bagPath.ts
356
375
  var BAG_PATH = "M9.23047 9H7.2002C6.08009 9 5.51962 9 5.0918 9.21799C4.71547 9.40973 4.40973 9.71547 4.21799 10.0918C4 10.5196 4 11.0801 4 12.2002V17.8002C4 18.9203 4 19.4801 4.21799 19.9079C4.40973 20.2842 4.71547 20.5905 5.0918 20.7822C5.5192 21 6.07902 21 7.19694 21H16.8031C17.921 21 18.48 21 18.9074 20.7822C19.2837 20.5905 19.5905 20.2842 19.7822 19.9079C20 19.4805 20 18.9215 20 17.8036V12.1969C20 11.079 20 10.5192 19.7822 10.0918C19.5905 9.71547 19.2837 9.40973 18.9074 9.21799C18.4796 9 17.9203 9 16.8002 9H14.7689M9.23047 9H14.7689M9.23047 9C9.10302 9 9 8.89668 9 8.76923V6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6V8.76923C15 8.89668 14.8964 9 14.7689 9";
357
376
  function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
358
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
359
- Svg16.Path,
377
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
378
+ Svg19.Path,
360
379
  {
361
380
  d: BAG_PATH,
362
381
  stroke: color,
@@ -367,11 +386,17 @@ function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
367
386
  ) });
368
387
  }
369
388
 
389
+ // src/icons/Ban/banPath.ts
390
+ var BAN_PATH = "M14.0007 2.33301C11.6932 2.33301 9.43758 3.01725 7.519 4.2992C5.60043 5.58115 4.10508 7.40323 3.22206 9.53503C2.33904 11.6668 2.108 14.0126 2.55816 16.2757C3.00832 18.5388 4.11946 20.6176 5.75108 22.2493C7.38269 23.8809 9.46149 24.992 11.7246 25.4422C13.9877 25.8923 16.3335 25.6613 18.4653 24.7783C20.5971 23.8952 22.4192 22.3999 23.7011 20.4813C24.9831 18.5628 25.6673 16.3071 25.6673 13.9997C25.6673 12.4676 25.3656 10.9505 24.7793 9.53503C24.1929 8.11957 23.3336 6.83345 22.2502 5.7501C21.1669 4.66675 19.8808 3.80738 18.4653 3.22108C17.0498 2.63478 15.5327 2.33301 14.0007 2.33301ZM14.0007 23.333C11.5253 23.333 9.15133 22.3497 7.40099 20.5993C5.65065 18.849 4.66732 16.475 4.66732 13.9997C4.66475 11.9269 5.35917 9.91348 6.63899 8.28301L19.7173 21.3613C18.0869 22.6412 16.0734 23.3356 14.0007 23.333ZM21.3623 19.7163L8.28399 6.63801C9.91446 5.35819 11.9279 4.66376 14.0007 4.66634C16.476 4.66634 18.85 5.64967 20.6003 7.40001C22.3507 9.15035 23.334 11.5243 23.334 13.9997C23.3366 16.0724 22.6421 18.0859 21.3623 19.7163Z";
391
+ function BanIcon({ size = 28, color = colors.primary }) {
392
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: BAN_PATH, fill: color }) });
393
+ }
394
+
370
395
  // src/icons/Bell/bellPath.ts
371
- var BELL_PATH = "M7.5 17.5H12.5M10 2.5C7.23858 2.5 5 4.73858 5 7.5C5 8.51208 5.3007 9.45393 5.81764 10.2411C6.61256 11.4515 7.00967 12.0564 7.06127 12.1467C7.52024 12.9508 7.43573 12.6672 7.49349 13.5913C7.49998 13.6952 7.5 13.8524 7.5 14.1667C7.5 14.6269 7.8731 15 8.33333 15L11.6667 15C12.1269 15 12.5 14.6269 12.5 14.1667C12.5 13.8524 12.5 13.6952 12.5065 13.5913C12.5643 12.6672 12.4793 12.9509 12.9382 12.1467C12.9898 12.0564 13.3876 11.4515 14.1825 10.2411C14.6995 9.45393 15.0002 8.51208 15.0002 7.5C15.0002 4.73858 12.7614 2.5 10 2.5Z";
372
- function BellIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
373
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
374
- Svg16.Path,
396
+ var BELL_PATH = "M6.23597 14C6.70606 14.4149 7.32355 14.6667 7.99985 14.6667C8.67615 14.6667 9.29364 14.4149 9.76373 14M11.9998 5.33337C11.9998 4.27251 11.5784 3.25509 10.8283 2.50495C10.0781 1.7548 9.06072 1.33337 7.99985 1.33337C6.93898 1.33337 5.92157 1.7548 5.17142 2.50495C4.42128 3.25509 3.99985 4.27251 3.99985 5.33337C3.99985 7.3935 3.48016 8.80401 2.89963 9.73698C2.40993 10.524 2.16509 10.9174 2.17407 11.0272C2.18401 11.1488 2.20976 11.1951 2.3077 11.2678C2.39616 11.3334 2.79491 11.3334 3.59242 11.3334H12.4073C13.2048 11.3334 13.6035 11.3334 13.692 11.2678C13.7899 11.1951 13.8157 11.1488 13.8256 11.0272C13.8346 10.9174 13.5898 10.524 13.1001 9.73698C12.5195 8.80401 11.9998 7.3935 11.9998 5.33337Z";
397
+ function BellIcon({ size = 16, color = colors.white, strokeWidth = 1.5 }) {
398
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
399
+ Svg19.Path,
375
400
  {
376
401
  d: BELL_PATH,
377
402
  stroke: color,
@@ -385,8 +410,8 @@ function BellIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
385
410
  // src/icons/Building/buildingPath.ts
386
411
  var BUILDING_PATH = "M7.5 9.16659V16.6666M7.5 9.16659H3.83301C3.3663 9.16659 3.13318 9.16659 2.95492 9.25741C2.79811 9.33731 2.67072 9.4647 2.59083 9.6215C2.5 9.79976 2.5 10.0333 2.5 10.5V16.6666H7.5M7.5 9.16659V4.66667C7.5 4.19996 7.5 3.96643 7.59083 3.78817C7.67072 3.63137 7.79811 3.50397 7.95492 3.42408C8.13317 3.33325 8.3663 3.33325 8.83301 3.33325H11.1663C11.6331 3.33325 11.8669 3.33325 12.0452 3.42408C12.202 3.50397 12.329 3.63137 12.4089 3.78817C12.4997 3.96643 12.5 4.19996 12.5 4.66667V6.66659M7.5 16.6666H12.5M12.5 16.6666L17.5 16.6667V8C17.5 7.53329 17.4997 7.29976 17.4089 7.1215C17.329 6.9647 17.2024 6.83731 17.0456 6.75741C16.8674 6.66659 16.6334 6.66659 16.1667 6.66659H12.5M12.5 16.6666V6.66659";
387
412
  function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
388
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
389
- Svg16.Path,
413
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
414
+ Svg19.Path,
390
415
  {
391
416
  d: BUILDING_PATH,
392
417
  stroke: color,
@@ -400,8 +425,8 @@ function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
400
425
  // src/icons/Calendar/calendarPath.ts
401
426
  var CALENDAR_PATH = "M14 6.66668H2M14 8.33334V5.86668C14 4.74657 14 4.18652 13.782 3.7587C13.5903 3.38237 13.2843 3.07641 12.908 2.88466C12.4802 2.66668 11.9201 2.66668 10.8 2.66668H5.2C4.0799 2.66668 3.51984 2.66668 3.09202 2.88466C2.71569 3.07641 2.40973 3.38237 2.21799 3.7587C2 4.18652 2 4.74657 2 5.86668V11.4667C2 12.5868 2 13.1468 2.21799 13.5747C2.40973 13.951 2.71569 14.2569 3.09202 14.4487C3.51984 14.6667 4.0799 14.6667 5.2 14.6667H8M10.6667 1.33334V4.00001M5.33333 1.33334V4.00001M9.66667 12.6667L11 14L14 11";
402
427
  function CalendarIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
403
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
404
- Svg16.Path,
428
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
429
+ Svg19.Path,
405
430
  {
406
431
  d: CALENDAR_PATH,
407
432
  stroke: color,
@@ -419,8 +444,8 @@ function CalendarOutlineIcon({
419
444
  color = colors.primary,
420
445
  strokeWidth = 1.5
421
446
  }) {
422
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
423
- Svg16.Path,
447
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
448
+ Svg19.Path,
424
449
  {
425
450
  d: CALENDAR_OUTLINE_PATH,
426
451
  stroke: color,
@@ -434,8 +459,8 @@ function CalendarOutlineIcon({
434
459
  // src/icons/Camera/cameraPath.ts
435
460
  var CAMERA_PATH = "M9.48898 7H6.2002C5.08009 7 4.51962 7 4.0918 7.21799C3.71547 7.40973 3.40973 7.71547 3.21799 8.0918C3 8.51962 3 9.08009 3 10.2002V15.8002C3 16.9203 3 17.4796 3.21799 17.9074C3.40973 18.2837 3.71547 18.5905 4.0918 18.7822C4.5192 19 5.07899 19 6.19691 19H17.8031C18.921 19 19.48 19 19.9074 18.7822C20.2837 18.5905 20.5905 18.2837 20.7822 17.9074C21 17.48 21 16.921 21 15.8031V10.1969C21 9.07899 21 8.5192 20.7822 8.0918C20.5905 7.71547 20.2837 7.40973 19.9074 7.21799C19.4796 7 18.9203 7 17.8002 7H14.5108M9.48898 7H9.55078M9.48898 7C9.50151 7.00001 9.51468 7 9.52857 7L9.55078 7M9.48898 7C9.38286 6.99995 9.32339 6.99941 9.27637 6.99414C8.68878 6.92835 8.28578 6.36908 8.40918 5.79084C8.42066 5.73703 8.44336 5.66894 8.4883 5.53412L8.49023 5.52841C8.54156 5.37443 8.56723 5.29743 8.59558 5.22949C8.88586 4.53389 9.54322 4.06083 10.2949 4.00541C10.3683 4 10.449 4 10.6113 4H13.3886C13.5509 4 13.6322 4 13.7057 4.00541C14.4574 4.06083 15.114 4.53389 15.4043 5.22949C15.4326 5.29743 15.4584 5.37434 15.5098 5.52832C15.556 5.66699 15.5791 5.73636 15.5908 5.79093C15.7142 6.36917 15.3118 6.92835 14.7242 6.99414C14.6772 6.99941 14.6171 6.99995 14.5108 7M9.55078 7H14.449M14.449 7H14.5108M14.449 7L14.4712 7C14.4851 7 14.4983 7.00001 14.5108 7M12 16C10.3431 16 9 14.6569 9 13C9 11.3431 10.3431 10 12 10C13.6569 10 15 11.3431 15 13C15 14.6569 13.6569 16 12 16Z";
436
461
  function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
437
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
438
- Svg16.Path,
462
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
463
+ Svg19.Path,
439
464
  {
440
465
  d: CAMERA_PATH,
441
466
  stroke: color,
@@ -449,8 +474,8 @@ function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
449
474
  // src/icons/Check/checkPath.ts
450
475
  var CHECK_PATH = "M4.16669 10.8333L7.50002 14.1667L15.8334 5.83334";
451
476
  function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
452
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
453
- Svg16.Path,
477
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
478
+ Svg19.Path,
454
479
  {
455
480
  d: CHECK_PATH,
456
481
  stroke: color,
@@ -464,8 +489,8 @@ function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
464
489
  // src/icons/CheckBadge/checkBadgePath.ts
465
490
  var CHECK_BADGE_PATH = "M12.5 8.33317L9.16663 11.6665L7.49996 9.99984M11.0384 2.88233L12.0558 3.74941C12.3122 3.96786 12.6305 4.09992 12.9662 4.12671L14.2987 4.23291C15.0822 4.29543 15.7045 4.91733 15.767 5.70077L15.8729 7.03353C15.8997 7.36925 16.0322 7.68799 16.2507 7.94433L17.1174 8.96152C17.6272 9.5597 17.6272 10.4396 17.1175 11.0378L16.2508 12.0551C16.0323 12.3115 15.9 12.6303 15.8732 12.9661L15.7666 14.2986C15.704 15.082 15.0827 15.7043 14.2993 15.7668L12.9663 15.8732C12.6305 15.9 12.312 16.0317 12.0556 16.2502L11.0384 17.1173C10.4402 17.627 9.55973 17.6271 8.96155 17.1174L7.9443 16.2502C7.68796 16.0318 7.36938 15.8998 7.03365 15.8731L5.70064 15.7668C4.9172 15.7043 4.29588 15.0822 4.23336 14.2987L4.12675 12.9661C4.09996 12.6304 3.96759 12.3118 3.74915 12.0555L2.88245 11.0378C2.37268 10.4397 2.37244 9.56002 2.88221 8.96184L3.74969 7.94418C3.96814 7.68784 4.09923 7.36926 4.12602 7.03353L4.23263 5.70093C4.29515 4.91749 4.91826 4.29535 5.70171 4.23283L7.03324 4.12663C7.36897 4.09984 7.68771 3.96788 7.94404 3.74943L8.96164 2.88233C9.55982 2.37256 10.4402 2.37256 11.0384 2.88233Z";
466
491
  function CheckBadgeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
467
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
468
- Svg16.Path,
492
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
493
+ Svg19.Path,
469
494
  {
470
495
  d: CHECK_BADGE_PATH,
471
496
  stroke: color,
@@ -483,8 +508,8 @@ function ChevronDownIcon({
483
508
  color = colors.primary,
484
509
  strokeWidth = 2
485
510
  }) {
486
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
487
- Svg16.Path,
511
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
512
+ Svg19.Path,
488
513
  {
489
514
  d: CHEVRON_DOWN_PATH,
490
515
  stroke: color,
@@ -498,8 +523,8 @@ function ChevronDownIcon({
498
523
  // src/icons/ChevronLeft/chevronLeftPath.ts
499
524
  var CHEVRON_LEFT_PATH = "M12.5 15L7.5 10L12.5 5";
500
525
  function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
501
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
502
- Svg16.Path,
526
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
527
+ Svg19.Path,
503
528
  {
504
529
  d: CHEVRON_LEFT_PATH,
505
530
  stroke: color,
@@ -513,8 +538,8 @@ function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 })
513
538
  // src/icons/Clock/clockPath.ts
514
539
  var CLOCK_PATH = "M12 7V12H17M12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21Z";
515
540
  function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
516
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
517
- Svg16.Path,
541
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
542
+ Svg19.Path,
518
543
  {
519
544
  d: CLOCK_PATH,
520
545
  stroke: color,
@@ -528,8 +553,8 @@ function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
528
553
  // src/icons/Close/closePath.ts
529
554
  var CLOSE_PATH = "M15 5L5 15M5 5L15 15";
530
555
  function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
531
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
532
- Svg16.Path,
556
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
557
+ Svg19.Path,
533
558
  {
534
559
  d: CLOSE_PATH,
535
560
  stroke: color,
@@ -540,6 +565,21 @@ function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
540
565
  ) });
541
566
  }
542
567
 
568
+ // src/icons/Edit/editPath.ts
569
+ var EDIT_PATH = "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7M18.375 2.625a2.121 2.121 0 1 1 3 3L12.15 13.85a.75.75 0 0 1-.33.2l-3.07.8a.5.5 0 0 1-.61-.61l.8-3.07a.75.75 0 0 1 .2-.33z";
570
+ function EditIcon({ size = 12, color = colors.grey0, strokeWidth = 2 }) {
571
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
572
+ Svg19.Path,
573
+ {
574
+ d: EDIT_PATH,
575
+ stroke: color,
576
+ strokeWidth,
577
+ strokeLinecap: "round",
578
+ strokeLinejoin: "round"
579
+ }
580
+ ) });
581
+ }
582
+
543
583
  // src/icons/CottageCard/cottageCardPaths.ts
544
584
  var SAVE_HEART_PATH = "M8 5.12971C6.66667 2.00008 2 2.33341 2 6.33343C2 10.3335 8 13.6669 8 13.6669C8 13.6669 14 10.3335 14 6.33343C14 2.33341 9.33333 2.00008 8 5.12971Z";
545
585
  var RATING_STAR_PATH = "M1.16748 5.16814C1.01086 5.0233 1.09593 4.76145 1.30778 4.73633L4.30957 4.38029C4.39591 4.37005 4.47091 4.31583 4.50732 4.23688L5.77344 1.49199C5.86279 1.29827 6.13819 1.29823 6.22754 1.49195L7.49365 4.23682C7.53007 4.31577 7.60458 4.37014 7.69092 4.38038L10.6929 4.73633C10.9047 4.76145 10.9896 5.02338 10.8329 5.16822L8.61388 7.22071C8.55005 7.27974 8.52163 7.36761 8.53857 7.45289L9.1275 10.4177C9.16908 10.627 8.94639 10.7891 8.76024 10.6849L6.12257 9.20806C6.0467 9.16559 5.95453 9.16579 5.87866 9.20826L3.24072 10.6845C3.05457 10.7887 2.83147 10.627 2.87305 10.4177L3.46207 7.45307C3.47902 7.36779 3.45067 7.27972 3.38683 7.22069L1.16748 5.16814Z";
@@ -555,8 +595,8 @@ function SaveHeartIcon({
555
595
  strokeWidth = 2,
556
596
  fillOpacity = 0
557
597
  }) {
558
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
559
- Svg16.Path,
598
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
599
+ Svg19.Path,
560
600
  {
561
601
  d: SAVE_HEART_PATH,
562
602
  fill: color,
@@ -569,8 +609,8 @@ function SaveHeartIcon({
569
609
  ) });
570
610
  }
571
611
  function RatingStarIcon({ size = 12, color = "#E38E5E", strokeWidth = 2 }) {
572
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
573
- Svg16.Path,
612
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
613
+ Svg19.Path,
574
614
  {
575
615
  d: RATING_STAR_PATH,
576
616
  fill: color,
@@ -587,9 +627,9 @@ function CardLocationIcon({
587
627
  strokeWidth = 1.5,
588
628
  secondaryColor = colors.grey700
589
629
  }) {
590
- return /* @__PURE__ */ jsxRuntime.jsxs(Svg16__default.default, { width: size, height: size, viewBox: "0 0 13 13", fill: "none", children: [
630
+ return /* @__PURE__ */ jsxRuntime.jsxs(Svg19__default.default, { width: size, height: size, viewBox: "0 0 13 13", fill: "none", children: [
591
631
  /* @__PURE__ */ jsxRuntime.jsx(
592
- Svg16.Path,
632
+ Svg19.Path,
593
633
  {
594
634
  d: CARD_LOCATION_BASE_PATH,
595
635
  stroke: color,
@@ -599,7 +639,7 @@ function CardLocationIcon({
599
639
  }
600
640
  ),
601
641
  /* @__PURE__ */ jsxRuntime.jsx(
602
- Svg16.Path,
642
+ Svg19.Path,
603
643
  {
604
644
  d: CARD_LOCATION_PIN_PATH,
605
645
  fill: color,
@@ -609,7 +649,7 @@ function CardLocationIcon({
609
649
  }
610
650
  ),
611
651
  /* @__PURE__ */ jsxRuntime.jsx(
612
- Svg16.Path,
652
+ Svg19.Path,
613
653
  {
614
654
  d: CARD_LOCATION_DOT_PATH,
615
655
  fill: secondaryColor,
@@ -626,7 +666,7 @@ function FilledCardIcon({
626
666
  color,
627
667
  fillOpacity
628
668
  }) {
629
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: path, fill: color, fillOpacity }) });
669
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: path, fill: color, fillOpacity }) });
630
670
  }
631
671
  function GuestsIcon({ size = 16, color = colors.white, fillOpacity = 0.4 }) {
632
672
  return /* @__PURE__ */ jsxRuntime.jsx(FilledCardIcon, { path: GUESTS_PATH, size, color, fillOpacity });
@@ -640,6 +680,7 @@ function BathroomsIcon({ size = 16, color = colors.white, fillOpacity = 0.4 }) {
640
680
 
641
681
  // src/icons/CottageDetail/cottageDetailPaths.ts
642
682
  var SHARE_PATH = "M7.5 11.25L12.5 13.75M12.5 6.25L7.5 8.75M15 17.5C13.6193 17.5 12.5 16.3807 12.5 15C12.5 13.6193 13.6193 12.5 15 12.5C16.3807 12.5 17.5 13.6193 17.5 15C17.5 16.3807 16.3807 17.5 15 17.5ZM5 12.5C3.61929 12.5 2.5 11.3807 2.5 10C2.5 8.61929 3.61929 7.5 5 7.5C6.38071 7.5 7.5 8.61929 7.5 10C7.5 11.3807 6.38071 12.5 5 12.5ZM15 7.5C13.6193 7.5 12.5 6.38071 12.5 5C12.5 3.61929 13.6193 2.5 15 2.5C16.3807 2.5 17.5 3.61929 17.5 5C17.5 6.38071 16.3807 7.5 15 7.5Z";
683
+ var DOWNLOAD_PATH = "M21 21H3M6 11L12 17L18 11M12 17V3";
643
684
  var AREA_EXPAND_PATHS = [
644
685
  "M15 3H21V9",
645
686
  "M9 21H3V15",
@@ -653,8 +694,8 @@ var COPY_PATH = "M6.66699 13.3337V15.667C6.66699 16.6004 6.66699 17.0671 6.84865
653
694
  var CHECK_SUCCESS_PATH = "M16.6663 5L7.49967 14.1667L3.33301 10";
654
695
  var TOOLTIP_ARROW_PATH = "M3.21121 6.42229C3.94826 7.89639 6.05187 7.89639 6.78892 6.42229L10.0001 0H6.2595e-05L3.21121 6.42229Z";
655
696
  function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
656
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
657
- Svg16.Path,
697
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
698
+ Svg19.Path,
658
699
  {
659
700
  d: SHARE_PATH,
660
701
  stroke: color,
@@ -664,9 +705,21 @@ function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
664
705
  }
665
706
  ) });
666
707
  }
708
+ function DownloadIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
709
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
710
+ Svg19.Path,
711
+ {
712
+ d: DOWNLOAD_PATH,
713
+ stroke: color,
714
+ strokeWidth,
715
+ strokeLinecap: "round",
716
+ strokeLinejoin: "round"
717
+ }
718
+ ) });
719
+ }
667
720
  function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
668
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: AREA_EXPAND_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
669
- Svg16.Path,
721
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: AREA_EXPAND_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
722
+ Svg19.Path,
670
723
  {
671
724
  d: path,
672
725
  stroke: color,
@@ -678,17 +731,17 @@ function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
678
731
  )) });
679
732
  }
680
733
  function ClockFilledIcon({ size = 16, color = colors.white }) {
681
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: CLOCK_FILLED_PATH, fill: color }) });
734
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: CLOCK_FILLED_PATH, fill: color }) });
682
735
  }
683
736
  function QrCodeIcon({ size = 24, color = colors.primary }) {
684
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: QR_CODE_PATH, fill: color }) });
737
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: QR_CODE_PATH, fill: color }) });
685
738
  }
686
739
  function WhatsAppIcon({ size = 24, color = colors.white }) {
687
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: WHATSAPP_PATH, fill: color }) });
740
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: WHATSAPP_PATH, fill: color }) });
688
741
  }
689
742
  function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
690
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
691
- Svg16.Path,
743
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
744
+ Svg19.Path,
692
745
  {
693
746
  d: COPY_PATH,
694
747
  stroke: color,
@@ -699,8 +752,8 @@ function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
699
752
  ) });
700
753
  }
701
754
  function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 }) {
702
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
703
- Svg16.Path,
755
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
756
+ Svg19.Path,
704
757
  {
705
758
  d: CHECK_SUCCESS_PATH,
706
759
  stroke: color,
@@ -711,20 +764,78 @@ function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 })
711
764
  ) });
712
765
  }
713
766
  function TooltipArrowIcon({ size = 10, color = colors.grey600 }) {
714
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size * 8 / 10, viewBox: "0 0 10 8", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: TOOLTIP_ARROW_PATH, fill: color }) });
767
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size * 8 / 10, viewBox: "0 0 10 8", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: TOOLTIP_ARROW_PATH, fill: color }) });
768
+ }
769
+
770
+ // src/icons/HouseRules/houseRulesPaths.ts
771
+ var QUIET_HOURS_PATH = "M9.99935 4.99996C9.88991 4.99993 9.78153 5.02147 9.68042 5.06334C9.5793 5.1052 9.48742 5.16659 9.41003 5.24397C9.33265 5.32136 9.27126 5.41324 9.2294 5.51436C9.18753 5.61547 9.16599 5.72385 9.16602 5.83329V8.55628L8.2513 8.02812C8.05987 7.91775 7.83243 7.88791 7.61901 7.94518C7.40558 8.00245 7.22363 8.14213 7.11316 8.33351C7.00269 8.52489 6.97274 8.7523 7.0299 8.96576C7.08706 9.17921 7.22665 9.36123 7.41797 9.4718L9.58269 10.7218C9.70938 10.7949 9.8531 10.8335 9.99939 10.8334C10.1457 10.8334 10.2894 10.7949 10.4161 10.7218C10.5428 10.6486 10.648 10.5434 10.7211 10.4167C10.7942 10.29 10.8327 10.1463 10.8327 9.99996V5.83329C10.8327 5.72385 10.8112 5.61547 10.7693 5.51436C10.7274 5.41324 10.6661 5.32136 10.5887 5.24397C10.5113 5.16659 10.4194 5.1052 10.3183 5.06334C10.2172 5.02147 10.1088 4.99993 9.99935 4.99996V4.99996ZM9.99935 1.66663C8.35118 1.66663 6.74001 2.15537 5.3696 3.07105C3.99919 3.98672 2.93109 5.28821 2.30036 6.81093C1.66963 8.33365 1.5046 10.0092 1.82614 11.6257C2.14769 13.2422 2.94136 14.7271 4.1068 15.8925C5.27223 17.058 6.75709 17.8516 8.3736 18.1732C9.99011 18.4947 11.6657 18.3297 13.1884 17.699C14.7111 17.0682 16.0126 16.0001 16.9283 14.6297C17.8439 13.2593 18.3327 11.6481 18.3327 9.99996C18.3302 7.7906 17.4514 5.67245 15.8891 4.11019C14.3269 2.54794 12.2087 1.66915 9.99935 1.66663V1.66663ZM9.99935 16.6666C8.68081 16.6666 7.39188 16.2756 6.29555 15.5431C5.19922 14.8105 4.34474 13.7694 3.84016 12.5512C3.33557 11.333 3.20355 9.99256 3.46078 8.69936C3.71802 7.40615 4.35296 6.21826 5.28531 5.28591C6.21766 4.35356 7.40554 3.71863 8.69875 3.46139C9.99196 3.20416 11.3324 3.33618 12.5506 3.84076C13.7687 4.34535 14.8099 5.19983 15.5425 6.29616C16.275 7.39249 16.666 8.68142 16.666 9.99996C16.664 11.7674 15.961 13.462 14.7112 14.7118C13.4614 15.9616 11.7668 16.6646 9.99935 16.6666V16.6666Z";
772
+ var NO_SMOKING_PATHS = [
773
+ "M6.66602 10.8334V14.1667",
774
+ "M13.334 4.16663V4.58329C13.334 5.02532 13.5096 5.44924 13.8221 5.7618C14.1347 6.07436 14.5586 6.24996 15.0007 6.24996C15.4427 6.24996 15.8666 6.42555 16.1792 6.73811C16.4917 7.05068 16.6673 7.4746 16.6673 7.91663V8.33329",
775
+ "M2.5 2.5L17.5 17.5",
776
+ "M14.1667 10.8334H16.6667C16.8877 10.8334 17.0996 10.9212 17.2559 11.0775C17.4122 11.2337 17.5 11.4457 17.5 11.6667V13.3334C17.5 13.5667 17.4042 13.7775 17.25 13.9284M14.1667 14.1667H3.33333C3.11232 14.1667 2.90036 14.0789 2.74408 13.9226C2.5878 13.7663 2.5 13.5544 2.5 13.3334V11.6667C2.5 11.4457 2.5878 11.2337 2.74408 11.0775C2.90036 10.9212 3.11232 10.8334 3.33333 10.8334H10.8333"
777
+ ];
778
+ var PAW_PATHS = [
779
+ "M12.25 11.25C11.3334 9.58329 11.0492 9.16663 10.0001 9.16663C8.95088 9.16663 8.55338 9.79579 7.63672 11.4558C6.85172 12.875 5.26505 12.9933 4.86922 14.1983C4.78838 14.4191 4.74838 14.7625 4.75005 15C4.75005 15.98 5.40588 16.6666 6.25005 16.6666C7.29922 16.6666 8.75005 15.8333 10.0001 15.8333C11.2501 15.8333 12.7009 16.6666 13.7501 16.6666C14.5942 16.6666 15.25 15.9808 15.25 15C15.25 14.7625 15.2092 14.4191 15.1284 14.1983C14.7325 12.9891 13.035 12.6691 12.25 11.25Z",
780
+ "M16.8241 6.73496C16.7171 6.68971 16.602 6.66647 16.4858 6.66663H16.4733C15.8608 6.67663 15.1733 7.29163 14.8125 8.22163C14.38 9.33413 14.5791 10.4716 15.2608 10.765C15.3683 10.8108 15.4833 10.8333 15.5991 10.8333C16.215 10.8333 16.9116 10.215 17.275 9.27829C17.705 8.16579 17.5016 7.02829 16.8241 6.73496Z",
781
+ "M7.89628 7.50004C7.94211 7.50004 7.98711 7.50004 8.03211 7.49087C8.81878 7.38421 9.30961 6.36921 9.13211 5.22254C8.96295 4.14171 8.25961 3.33337 7.52211 3.33337C7.47628 3.33337 7.43128 3.33337 7.38628 3.34254C6.59961 3.44921 6.10878 4.46421 6.28628 5.61087C6.45628 6.68837 7.15961 7.50004 7.89711 7.50004H7.89628Z",
782
+ "M13.7139 5.61088C13.8922 4.46421 13.4014 3.44921 12.6139 3.34254C12.5692 3.33635 12.5241 3.33329 12.4789 3.33338C11.7414 3.33338 11.0389 4.14171 10.8706 5.22254C10.6922 6.36921 11.1831 7.38421 11.9706 7.49088C12.0156 7.49671 12.0606 7.50004 12.1056 7.50004C12.8431 7.50004 13.5472 6.68838 13.7139 5.61088Z",
783
+ "M4.74152 10.765C5.42152 10.4716 5.61985 9.33246 5.18819 8.22163C4.82485 7.28496 4.12902 6.66663 3.51402 6.66663C3.39735 6.66663 3.28319 6.68913 3.17485 6.73496C2.49485 7.02829 2.29652 8.16746 2.72819 9.27829C3.09152 10.215 3.78735 10.8333 4.40235 10.8333C4.51902 10.8333 4.63319 10.8108 4.74152 10.765Z"
784
+ ];
785
+ var TRASH_PATH = "M7.5 2.5H12.5M2.5 5H17.5M15.8333 5L15.2489 13.7661C15.1612 15.0813 15.1174 15.7389 14.8333 16.2375C14.5833 16.6765 14.206 17.0294 13.7514 17.2497C13.235 17.5 12.5759 17.5 11.2578 17.5H8.74221C7.42409 17.5 6.76503 17.5 6.24861 17.2497C5.79396 17.0294 5.41674 16.6765 5.16665 16.2375C4.88259 15.7389 4.83875 15.0813 4.75107 13.7661L4.16667 5M8.33333 8.75V12.9167M11.6667 8.75V12.9167";
786
+ function QuietHoursIcon({ size = 20, color = colors.white }) {
787
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: QUIET_HOURS_PATH, fill: color }) });
788
+ }
789
+ function NoSmokingIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
790
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: NO_SMOKING_PATHS.map((d) => /* @__PURE__ */ jsxRuntime.jsx(
791
+ Svg19.Path,
792
+ {
793
+ d,
794
+ stroke: color,
795
+ strokeWidth,
796
+ strokeLinecap: "round",
797
+ strokeLinejoin: "round"
798
+ },
799
+ d
800
+ )) });
801
+ }
802
+ function PawIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
803
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: PAW_PATHS.map((d) => /* @__PURE__ */ jsxRuntime.jsx(
804
+ Svg19.Path,
805
+ {
806
+ d,
807
+ stroke: color,
808
+ strokeWidth,
809
+ strokeLinecap: "round",
810
+ strokeLinejoin: "round"
811
+ },
812
+ d
813
+ )) });
814
+ }
815
+ function TrashIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
816
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
817
+ Svg19.Path,
818
+ {
819
+ d: TRASH_PATH,
820
+ stroke: color,
821
+ strokeWidth,
822
+ strokeLinecap: "round",
823
+ strokeLinejoin: "round"
824
+ }
825
+ ) });
715
826
  }
716
827
 
717
828
  // src/icons/Facebook/facebookPath.ts
718
829
  var FACEBOOK_PATH = "M10.0003 1.69922C5.41699 1.69922 1.66699 5.44089 1.66699 10.0492C1.66699 14.2159 4.71699 17.6742 8.70033 18.2992V12.4659H6.58366V10.0492H8.70033V8.20755C8.70033 6.11589 9.94199 4.96589 11.8503 4.96589C12.7587 4.96589 13.7087 5.12422 13.7087 5.12422V7.18255H12.6587C11.6253 7.18255 11.3003 7.82422 11.3003 8.48255V10.0492H13.617L13.242 12.4659H11.3003V18.2992C13.264 17.9891 15.0522 16.9871 16.3419 15.4743C17.6317 13.9614 18.3381 12.0373 18.3337 10.0492C18.3337 5.44089 14.5837 1.69922 10.0003 1.69922Z";
719
830
  function FacebookIcon({ size = 20, color = colors.white }) {
720
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: FACEBOOK_PATH, fill: color }) });
831
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: FACEBOOK_PATH, fill: color }) });
721
832
  }
722
833
 
723
834
  // src/icons/Filters/filtersPath.ts
724
835
  var FILTERS_PATH = "M5 10H15M2.5 5H17.5M7.5 15H12.5";
725
836
  function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
726
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
727
- Svg16.Path,
837
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
838
+ Svg19.Path,
728
839
  {
729
840
  d: FILTERS_PATH,
730
841
  stroke: color,
@@ -735,11 +846,26 @@ function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
735
846
  ) });
736
847
  }
737
848
 
849
+ // src/icons/Fullscreen/fullscreenPath.ts
850
+ var FULLSCREEN_PATH = "M16 8L21 3M21 8V3H16M8 8L3 3M8 3L3 3L3 8M8 16L3 21M3 16L3 21H8M16 16L21 21M16 21H21V16";
851
+ function FullscreenIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
852
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
853
+ Svg19.Path,
854
+ {
855
+ d: FULLSCREEN_PATH,
856
+ stroke: color,
857
+ strokeWidth,
858
+ strokeLinecap: "round",
859
+ strokeLinejoin: "round"
860
+ }
861
+ ) });
862
+ }
863
+
738
864
  // src/icons/Heart/heartPath.ts
739
865
  var HEART_PATH = "M7.99547 3.42388C6.66257 1.8656 4.43987 1.44643 2.76984 2.87334C1.0998 4.30026 0.864686 6.68598 2.17617 8.3736C3.26659 9.77674 6.56656 12.7361 7.64811 13.6939C7.76911 13.801 7.82961 13.8546 7.90018 13.8757C7.96178 13.8941 8.02917 13.8941 8.09077 13.8757C8.16134 13.8546 8.22184 13.801 8.34284 13.6939C9.42439 12.7361 12.7244 9.77674 13.8148 8.3736C15.1263 6.68598 14.9199 4.28525 13.2211 2.87334C11.5224 1.46144 9.32838 1.8656 7.99547 3.42388Z";
740
866
  function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
741
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
742
- Svg16.Path,
867
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
868
+ Svg19.Path,
743
869
  {
744
870
  d: HEART_PATH,
745
871
  stroke: color,
@@ -755,8 +881,8 @@ function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
755
881
  // src/icons/Globe/globePath.ts
756
882
  var GLOBE_PATH = "M18.3333 10C18.3333 14.6024 14.6024 18.3333 10 18.3333M18.3333 10C18.3333 5.39763 14.6024 1.66667 10 1.66667M18.3333 10H1.66667M10 18.3333C5.39763 18.3333 1.66667 14.6024 1.66667 10M10 18.3333C12.0833 16.0511 13.2675 13.0836 13.3333 10C13.2675 6.91643 12.0833 3.94892 10 1.66667M10 18.3333C7.91667 16.0511 6.73248 13.0836 6.66667 10C6.73248 6.91643 7.91667 3.94892 10 1.66667M1.66667 10C1.66667 5.39763 5.39763 1.66667 10 1.66667";
757
883
  function GlobeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
758
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
759
- Svg16.Path,
884
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
885
+ Svg19.Path,
760
886
  {
761
887
  d: GLOBE_PATH,
762
888
  stroke: color,
@@ -774,8 +900,8 @@ function HelpCircleIcon({
774
900
  color = colors.primary,
775
901
  strokeWidth = 1.5
776
902
  }) {
777
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
778
- Svg16.Path,
903
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
904
+ Svg19.Path,
779
905
  {
780
906
  d: HELP_CIRCLE_PATH,
781
907
  stroke: color,
@@ -787,10 +913,10 @@ function HelpCircleIcon({
787
913
  }
788
914
 
789
915
  // src/icons/Home/homePath.ts
790
- var HOME_PATH = "M1.66675 16.6667H3.33341M3.33341 16.6667H8.33341M3.33341 16.6667V9.54352C3.33341 9.09823 3.33341 8.87548 3.38756 8.66828C3.43554 8.48466 3.51491 8.31089 3.6215 8.15387C3.74178 7.97668 3.90895 7.82974 4.24406 7.53652L8.24538 4.03537C8.86662 3.49178 9.17726 3.21997 9.5271 3.11652C9.83559 3.02529 10.1644 3.02529 10.4729 3.11652C10.823 3.22005 11.1341 3.49212 11.7563 4.03652L15.7563 7.53652C16.0914 7.82974 16.2586 7.97668 16.3789 8.15387C16.4855 8.31089 16.5642 8.48466 16.6122 8.66828C16.6664 8.87548 16.6667 9.09824 16.6667 9.54352V16.6667M8.33341 16.6667H11.6667M8.33341 16.6667V13.3334C8.33341 12.4129 9.07961 11.6667 10.0001 11.6667C10.9206 11.6667 11.6667 12.4129 11.6667 13.3334V16.6667M11.6667 16.6667H16.6667M16.6667 16.6667H18.3334";
916
+ var HOME_PATH = "M6.77168 11.6663C7.14172 13.104 8.4468 14.1663 10 14.1663C11.5532 14.1663 12.8583 13.104 13.2283 11.6663M9.18141 2.30297L3.52949 6.6989C3.15168 6.99276 2.96278 7.13968 2.82669 7.32368C2.70614 7.48667 2.61633 7.67029 2.56169 7.86551C2.5 8.0859 2.5 8.32521 2.5 8.80384V14.833C2.5 15.7664 2.5 16.2331 2.68166 16.5896C2.84144 16.9032 3.09641 17.1582 3.41002 17.318C3.76654 17.4996 4.23325 17.4996 5.16667 17.4996H14.8333C15.7668 17.4996 16.2335 17.4996 16.59 17.318C16.9036 17.1582 17.1586 16.9032 17.3183 16.5896C17.5 16.2331 17.5 15.7664 17.5 14.833V8.80384C17.5 8.32521 17.5 8.0859 17.4383 7.86551C17.3837 7.67029 17.2939 7.48667 17.1733 7.32368C17.0372 7.13968 16.8483 6.99276 16.4705 6.69891L10.8186 2.30297C10.5258 2.07526 10.3794 1.9614 10.2178 1.91763C10.0752 1.87902 9.92484 1.87902 9.78221 1.91763C9.62057 1.9614 9.47418 2.07526 9.18141 2.30297Z";
791
917
  function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
792
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
793
- Svg16.Path,
918
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
919
+ Svg19.Path,
794
920
  {
795
921
  d: HOME_PATH,
796
922
  stroke: color,
@@ -804,14 +930,14 @@ function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
804
930
  // src/icons/Instagram/instagramPath.ts
805
931
  var INSTAGRAM_PATH = "M6.49984 1.66748H13.4998C16.1665 1.66748 18.3332 3.83415 18.3332 6.50081V13.5008C18.3332 14.7827 17.8239 16.0121 16.9175 16.9185C16.0111 17.8249 14.7817 18.3341 13.4998 18.3341H6.49984C3.83317 18.3341 1.6665 16.1675 1.6665 13.5008V6.50081C1.6665 5.21893 2.17573 3.98956 3.08215 3.08313C3.98858 2.17671 5.21796 1.66748 6.49984 1.66748ZM6.33317 3.33415C5.53752 3.33415 4.77446 3.65022 4.21185 4.21283C3.64924 4.77544 3.33317 5.5385 3.33317 6.33415V13.6675C3.33317 15.3258 4.67484 16.6675 6.33317 16.6675H13.6665C14.4622 16.6675 15.2252 16.3514 15.7878 15.7888C16.3504 15.2262 16.6665 14.4631 16.6665 13.6675V6.33415C16.6665 4.67581 15.3248 3.33415 13.6665 3.33415H6.33317ZM14.3748 4.58415C14.6511 4.58415 14.9161 4.69389 15.1114 4.88924C15.3068 5.08459 15.4165 5.34955 15.4165 5.62581C15.4165 5.90208 15.3068 6.16703 15.1114 6.36238C14.9161 6.55773 14.6511 6.66748 14.3748 6.66748C14.0986 6.66748 13.8336 6.55773 13.6383 6.36238C13.4429 6.16703 13.3332 5.90208 13.3332 5.62581C13.3332 5.34955 13.4429 5.08459 13.6383 4.88924C13.8336 4.69389 14.0986 4.58415 14.3748 4.58415ZM9.99984 5.83415C11.1049 5.83415 12.1647 6.27313 12.9461 7.05454C13.7275 7.83594 14.1665 8.89574 14.1665 10.0008C14.1665 11.1059 13.7275 12.1657 12.9461 12.9471C12.1647 13.7285 11.1049 14.1675 9.99984 14.1675C8.89477 14.1675 7.83496 13.7285 7.05356 12.9471C6.27216 12.1657 5.83317 11.1059 5.83317 10.0008C5.83317 8.89574 6.27216 7.83594 7.05356 7.05454C7.83496 6.27313 8.89477 5.83415 9.99984 5.83415ZM9.99984 7.50081C9.3368 7.50081 8.70091 7.76421 8.23207 8.23305C7.76323 8.70189 7.49984 9.33777 7.49984 10.0008C7.49984 10.6639 7.76323 11.2997 8.23207 11.7686C8.70091 12.2374 9.3368 12.5008 9.99984 12.5008C10.6629 12.5008 11.2988 12.2374 11.7676 11.7686C12.2364 11.2997 12.4998 10.6639 12.4998 10.0008C12.4998 9.33777 12.2364 8.70189 11.7676 8.23305C11.2988 7.76421 10.6629 7.50081 9.99984 7.50081Z";
806
932
  function InstagramIcon({ size = 20, color = colors.white }) {
807
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: INSTAGRAM_PATH, fill: color }) });
933
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: INSTAGRAM_PATH, fill: color }) });
808
934
  }
809
935
 
810
936
  // src/icons/Key/keyPath.ts
811
937
  var KEY_PATH = "M5.28673 10.0002L7.0545 11.768M7.6435 7.64301L9.41127 9.41078M10.0003 5.28624L11.768 7.05401M4.22553 11.0604L11.0609 4.22505C11.7209 3.56502 12.0513 3.235 12.4318 3.11136C12.7666 3.00259 13.127 3.00259 13.4618 3.11136C13.8421 3.23494 14.1718 3.56464 14.8311 4.22393L15.775 5.16785C16.4351 5.82788 16.7654 6.15867 16.8891 6.53922C16.9979 6.87396 16.9976 7.23381 16.8889 7.56855C16.7652 7.9491 16.4353 8.27937 15.7753 8.9394L8.93989 15.7748C8.27986 16.4348 7.94959 16.7647 7.56904 16.8884C7.2343 16.9971 6.87445 16.9974 6.53971 16.8886C6.15916 16.765 5.82837 16.4346 5.16834 15.7745L4.22441 14.8306C3.56513 14.1713 3.23542 13.8416 3.11185 13.4613C3.00308 13.1266 3.00308 12.7661 3.11185 12.4313C3.23549 12.0508 3.56551 11.7204 4.22553 11.0604Z";
812
938
  function KeyIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
813
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
814
- Svg16.Path,
939
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
940
+ Svg19.Path,
815
941
  {
816
942
  d: KEY_PATH,
817
943
  stroke: color,
@@ -829,8 +955,8 @@ function LayoutGridIcon({
829
955
  color = colors.primary,
830
956
  strokeWidth = 1.5
831
957
  }) {
832
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
833
- Svg16.Path,
958
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
959
+ Svg19.Path,
834
960
  {
835
961
  d: LAYOUT_GRID_PATH,
836
962
  stroke: color,
@@ -844,14 +970,14 @@ function LayoutGridIcon({
844
970
  // src/icons/LinkedIn/linkedinPath.ts
845
971
  var LINKEDIN_PATH = "M15.8333 2.50098C16.2754 2.50098 16.6993 2.67657 17.0118 2.98913C17.3244 3.30169 17.5 3.72562 17.5 4.16764V15.8343C17.5 16.2763 17.3244 16.7003 17.0118 17.0128C16.6993 17.3254 16.2754 17.501 15.8333 17.501H4.16667C3.72464 17.501 3.30072 17.3254 2.98816 17.0128C2.67559 16.7003 2.5 16.2763 2.5 15.8343V4.16764C2.5 3.72562 2.67559 3.30169 2.98816 2.98913C3.30072 2.67657 3.72464 2.50098 4.16667 2.50098H15.8333ZM15.4167 15.4176V11.001C15.4167 10.2805 15.1304 9.58948 14.621 9.08C14.1115 8.57053 13.4205 8.28431 12.7 8.28431C11.9917 8.28431 11.1667 8.71764 10.7667 9.36764V8.44264H8.44167V15.4176H10.7667V11.3093C10.7667 10.6676 11.2833 10.1426 11.925 10.1426C12.2344 10.1426 12.5312 10.2656 12.75 10.4844C12.9687 10.7031 13.0917 10.9999 13.0917 11.3093V15.4176H15.4167ZM5.73333 7.13431C6.10464 7.13431 6.46073 6.98681 6.72328 6.72426C6.98583 6.46171 7.13333 6.10561 7.13333 5.73431C7.13333 4.95931 6.50833 4.32598 5.73333 4.32598C5.35982 4.32598 5.0016 4.47435 4.73749 4.73847C4.47338 5.00258 4.325 5.3608 4.325 5.73431C4.325 6.50931 4.95833 7.13431 5.73333 7.13431ZM6.89167 15.4176V8.44264H4.58333V15.4176H6.89167Z";
846
972
  function LinkedInIcon({ size = 20, color = colors.white }) {
847
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: LINKEDIN_PATH, fill: color }) });
973
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: LINKEDIN_PATH, fill: color }) });
848
974
  }
849
975
 
850
976
  // src/icons/ListView/listViewPath.ts
851
977
  var LIST_VIEW_PATH = "M7 2.5H3.83333C3.36662 2.5 3.13327 2.5 2.95501 2.59083C2.79821 2.67072 2.67072 2.79821 2.59083 2.95501C2.5 3.13327 2.5 3.36662 2.5 3.83333V7C2.5 7.46671 2.5 7.70007 2.59083 7.87833C2.67072 8.03513 2.79821 8.16261 2.95501 8.24251C3.13327 8.33333 3.36662 8.33333 3.83333 8.33333H7C7.46671 8.33333 7.70007 8.33333 7.87833 8.24251C8.03513 8.16261 8.16261 8.03513 8.24251 7.87833C8.33333 7.70007 8.33333 7.46671 8.33333 7V3.83333C8.33333 3.36662 8.33333 3.13327 8.24251 2.95501C8.16261 2.79821 8.03513 2.67072 7.87833 2.59083C7.70007 2.5 7.46671 2.5 7 2.5ZM16.1667 2.5H13C12.5333 2.5 12.2999 2.5 12.1217 2.59083C11.9649 2.67072 11.8374 2.79821 11.7575 2.95501C11.6667 3.13327 11.6667 3.36662 11.6667 3.83333V7C11.6667 7.46671 11.6667 7.70007 11.7575 7.87833C11.8374 8.03513 11.9649 8.16261 12.1217 8.24251C12.2999 8.33333 12.5333 8.33333 13 8.33333H16.1667C16.6334 8.33333 16.8667 8.33333 17.045 8.24251C17.2018 8.16261 17.3293 8.03513 17.4092 7.87833C17.5 7.70007 17.5 7.46671 17.5 7V3.83333C17.5 3.36662 17.5 3.13327 17.4092 2.95501C17.3293 2.79821 17.2018 2.67072 17.045 2.59083C16.8667 2.5 16.6334 2.5 16.1667 2.5ZM16.1667 11.6667H13C12.5333 11.6667 12.2999 11.6667 12.1217 11.7575C11.9649 11.8374 11.8374 11.9649 11.7575 12.1217C11.6667 12.2999 11.6667 12.5333 11.6667 13V16.1667C11.6667 16.6334 11.6667 16.8667 11.7575 17.045C11.8374 17.2018 11.9649 17.3293 12.1217 17.4092C12.2999 17.5 12.5333 17.5 13 17.5H16.1667C16.6334 17.5 16.8667 17.5 17.045 17.4092C17.2018 17.3293 17.3293 17.2018 17.4092 17.045C17.5 16.8667 17.5 16.6334 17.5 16.1667V13C17.5 12.5333 17.5 12.2999 17.4092 12.1217C17.3293 11.9649 17.2018 11.8374 17.045 11.7575C16.8667 11.6667 16.6334 11.6667 16.1667 11.6667ZM7 11.6667H3.83333C3.36662 11.6667 3.13327 11.6667 2.95501 11.7575C2.79821 11.8374 2.67072 11.9649 2.59083 12.1217C2.5 12.2999 2.5 12.5333 2.5 13V16.1667C2.5 16.6334 2.5 16.8667 2.59083 17.045C2.67072 17.2018 2.79821 17.3293 2.95501 17.4092C3.13327 17.5 3.36662 17.5 3.83333 17.5H7C7.46671 17.5 7.70007 17.5 7.87833 17.4092C8.03513 17.3293 8.16261 17.2018 8.24251 17.045C8.33333 16.8667 8.33333 16.6334 8.33333 16.1667V13C8.33333 12.5333 8.33333 12.2999 8.24251 12.1217C8.16261 11.9649 8.03513 11.8374 7.87833 11.7575C7.70007 11.6667 7.46671 11.6667 7 11.6667Z";
852
978
  function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
853
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
854
- Svg16.Path,
979
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
980
+ Svg19.Path,
855
981
  {
856
982
  d: LIST_VIEW_PATH,
857
983
  stroke: color,
@@ -865,8 +991,8 @@ function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
865
991
  // src/icons/LocationPin/locationPinPath.ts
866
992
  var LOCATION_PIN_PATH = "M4.16675 8.26904C4.16675 12.3122 7.70381 15.6558 9.26941 16.9377C9.49347 17.1211 9.60684 17.214 9.774 17.261C9.90417 17.2977 10.0957 17.2977 10.2259 17.261C10.3934 17.2139 10.506 17.122 10.7309 16.9378C12.2965 15.6559 15.8333 12.3126 15.8333 8.26941C15.8333 6.73932 15.2188 5.27171 14.1248 4.18977C13.0309 3.10783 11.5472 2.5 10.0001 2.5C8.45305 2.5 6.96925 3.10792 5.87529 4.18986C4.78133 5.2718 4.16675 6.73895 4.16675 8.26904ZM8.33341 7.5C8.33341 8.42047 9.07961 9.16667 10.0001 9.16667C10.9206 9.16667 11.6667 8.42047 11.6667 7.5C11.6667 6.57953 10.9206 5.83333 10.0001 5.83333C9.07961 5.83333 8.33341 6.57953 8.33341 7.5Z";
867
993
  function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
868
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
869
- Svg16.Path,
994
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
995
+ Svg19.Path,
870
996
  {
871
997
  d: LOCATION_PIN_PATH,
872
998
  stroke: color,
@@ -877,11 +1003,32 @@ function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 })
877
1003
  ) });
878
1004
  }
879
1005
 
1006
+ // src/icons/LocationUser/locationUserPath.ts
1007
+ var LOCATION_USER_PATH = "M10.9127 8.5267C10.8313 8.4943 10.7443 8.47826 10.6566 8.47949C10.569 8.48073 10.4825 8.4992 10.402 8.53387C10.3216 8.56854 10.2487 8.61872 10.1876 8.68154C10.1265 8.74437 10.0784 8.81861 10.046 8.90003C10.0136 8.98145 9.99758 9.06845 9.99882 9.15607C10 9.24369 10.0185 9.3302 10.0532 9.41068C10.0879 9.49116 10.138 9.56402 10.2009 9.62511C10.2637 9.68619 10.3379 9.7343 10.4193 9.7667C11.3927 10.1534 11.9993 10.7534 11.9993 11.3334C11.9993 12.28 10.3593 13.3334 7.99935 13.3334C5.63935 13.3334 3.99935 12.28 3.99935 11.3334C3.99935 10.7534 4.60602 10.1534 5.57935 9.7667C5.74378 9.70128 5.87549 9.57321 5.94551 9.41068C6.01552 9.24815 6.0181 9.06446 5.95268 8.90003C5.88726 8.73559 5.7592 8.60388 5.59667 8.53387C5.43414 8.46386 5.25045 8.46128 5.08602 8.5267C3.57268 9.1267 2.66602 10.1734 2.66602 11.3334C2.66602 13.2 5.00602 14.6667 7.99935 14.6667C10.9927 14.6667 13.3327 13.2 13.3327 11.3334C13.3327 10.1734 12.426 9.1267 10.9127 8.5267ZM7.33268 6.57336V11.3334C7.33268 11.5102 7.40292 11.6797 7.52794 11.8048C7.65297 11.9298 7.82254 12 7.99935 12C8.17616 12 8.34573 11.9298 8.47075 11.8048C8.59578 11.6797 8.66602 11.5102 8.66602 11.3334V6.57336C9.29445 6.4111 9.84214 6.02521 10.2064 5.48802C10.5707 4.95084 10.7265 4.29924 10.6448 3.65536C10.563 3.01149 10.2492 2.41954 9.76217 1.99048C9.27517 1.56142 8.6484 1.32471 7.99935 1.32471C7.3503 1.32471 6.72353 1.56142 6.23653 1.99048C5.74952 2.41954 5.43572 3.01149 5.35394 3.65536C5.27215 4.29924 5.42801 4.95084 5.79228 5.48802C6.15656 6.02521 6.70424 6.4111 7.33268 6.57336V6.57336ZM7.99935 2.6667C8.26306 2.6667 8.52084 2.74489 8.74011 2.8914C8.95937 3.03791 9.13027 3.24615 9.23119 3.48978C9.33211 3.73342 9.35851 4.00151 9.30706 4.26015C9.25562 4.51879 9.12863 4.75637 8.94216 4.94284C8.75569 5.12931 8.51811 5.2563 8.25947 5.30774C8.00083 5.35919 7.73274 5.33279 7.4891 5.23187C7.24547 5.13095 7.03723 4.96005 6.89072 4.74079C6.74421 4.52152 6.66602 4.26374 6.66602 4.00003C6.66602 3.64641 6.80649 3.30727 7.05654 3.05722C7.30659 2.80717 7.64573 2.6667 7.99935 2.6667Z";
1008
+ function LocationUserIcon({ size = 16, color = colors.grey0 }) {
1009
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: LOCATION_USER_PATH, fill: color }) });
1010
+ }
1011
+
1012
+ // src/icons/Lock/lockPath.ts
1013
+ var LOCK_PATH = "M22.6673 13.3333V10.6667C22.6673 6.98477 19.6825 4 16.0007 4C12.3188 4 9.33398 6.98477 9.33398 10.6667V13.3333M16.0007 19.3333V22M11.734 28H20.2673C22.5075 28 23.6276 28 24.4833 27.564C25.2359 27.1805 25.8479 26.5686 26.2313 25.816C26.6673 24.9603 26.6673 23.8402 26.6673 21.6V19.7333C26.6673 17.4931 26.6673 16.373 26.2313 15.5174C25.8479 14.7647 25.2359 14.1528 24.4833 13.7693C23.6276 13.3333 22.5075 13.3333 20.2673 13.3333H11.734C9.49377 13.3333 8.37367 13.3333 7.51802 13.7693C6.76537 14.1528 6.15345 14.7647 5.76996 15.5174C5.33398 16.373 5.33398 17.4931 5.33398 19.7333V21.6C5.33398 23.8402 5.33398 24.9603 5.76996 25.816C6.15345 26.5686 6.76537 27.1805 7.51802 27.564C8.37367 28 9.49377 28 11.734 28Z";
1014
+ function LockIcon({ size = 32, color = colors.primary, strokeWidth = 2 }) {
1015
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 32 32", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1016
+ Svg19.Path,
1017
+ {
1018
+ d: LOCK_PATH,
1019
+ stroke: color,
1020
+ strokeWidth,
1021
+ strokeLinecap: "round",
1022
+ strokeLinejoin: "round"
1023
+ }
1024
+ ) });
1025
+ }
1026
+
880
1027
  // src/icons/LogOut/logOutPath.ts
881
1028
  var LOG_OUT_PATH = "M10.6667 4.66667L14 8L10.6667 11.3333M14 8H6M6 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.7157 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2V10.8C2 11.9201 2 12.4802 2.21799 12.908C2.40973 13.2843 2.71569 13.5903 3.09202 13.782C3.51984 14 4.0799 14 5.2 14H6";
882
1029
  function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
883
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
884
- Svg16.Path,
1030
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1031
+ Svg19.Path,
885
1032
  {
886
1033
  d: LOG_OUT_PATH,
887
1034
  stroke: color,
@@ -895,8 +1042,8 @@ function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
895
1042
  // src/icons/Mail/mailPath.ts
896
1043
  var MAIL_PATH = "M3.33333 4.99984L8.42303 8.84339L8.42473 8.8448C8.98987 9.25924 9.27261 9.46658 9.5823 9.54668C9.85602 9.61748 10.1438 9.61748 10.4175 9.54668C10.7274 9.46651 11.011 9.25856 11.5771 8.84339C11.5771 8.84339 14.8417 6.33812 16.6667 4.99984M2.5 13.1667V6.83333C2.5 5.89991 2.5 5.43285 2.68166 5.07633C2.84144 4.76273 3.09623 4.50795 3.40983 4.34816C3.76635 4.1665 4.23341 4.1665 5.16683 4.1665H14.8335C15.7669 4.1665 16.233 4.1665 16.5895 4.34816C16.9031 4.50795 17.1587 4.76273 17.3185 5.07633C17.5 5.43251 17.5 5.899 17.5 6.8306V13.1695C17.5 14.1011 17.5 14.5669 17.3185 14.9231C17.1587 15.2367 16.9031 15.4919 16.5895 15.6517C16.2333 15.8332 15.7675 15.8332 14.8359 15.8332H5.16409C4.23249 15.8332 3.766 15.8332 3.40983 15.6517C3.09623 15.4919 2.84144 15.2367 2.68166 14.9231C2.5 14.5666 2.5 14.1001 2.5 13.1667Z";
897
1044
  function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
898
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
899
- Svg16.Path,
1045
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1046
+ Svg19.Path,
900
1047
  {
901
1048
  d: MAIL_PATH,
902
1049
  stroke: color,
@@ -910,8 +1057,8 @@ function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
910
1057
  // src/icons/MapView/mapViewPath.ts
911
1058
  var MAP_VIEW_PATH = "M13.3332 4.99984L7.49984 1.6665L1.6665 4.99984V18.3332L7.49984 14.9998M13.3332 4.99984L18.3332 1.6665V14.9998L13.3332 18.3332L7.49984 14.9998M7.49984 14.9998V1.6665M13.3332 18.3332V4.99984";
912
1059
  function MapViewIcon({ size = 20, color = colors.grey400, strokeWidth = 2 }) {
913
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
914
- Svg16.Path,
1060
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1061
+ Svg19.Path,
915
1062
  {
916
1063
  d: MAP_VIEW_PATH,
917
1064
  stroke: color,
@@ -931,8 +1078,8 @@ function MapControlIcon({
931
1078
  color = colors.white,
932
1079
  strokeWidth = 2
933
1080
  }) {
934
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
935
- Svg16.Path,
1081
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1082
+ Svg19.Path,
936
1083
  {
937
1084
  d: path,
938
1085
  stroke: color,
@@ -958,8 +1105,8 @@ function MenuIcon({
958
1105
  strokeWidth = 2,
959
1106
  open = false
960
1107
  }) {
961
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
962
- Svg16.Path,
1108
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1109
+ Svg19.Path,
963
1110
  {
964
1111
  d: open ? MENU_CLOSE_PATH : MENU_PATH,
965
1112
  stroke: color,
@@ -974,8 +1121,8 @@ function MenuIcon({
974
1121
  // src/icons/Minus/minusPath.ts
975
1122
  var MINUS_PATH = "M3.33337 8H12.6667";
976
1123
  function MinusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
977
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
978
- Svg16.Path,
1124
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1125
+ Svg19.Path,
979
1126
  {
980
1127
  d: MINUS_PATH,
981
1128
  stroke: color,
@@ -989,8 +1136,8 @@ function MinusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
989
1136
  // src/icons/Navigate/navigatePath.ts
990
1137
  var NAVIGATE_PATH = "M5.691 14.2339C11.5836 17.7694 16.2976 13.0554 15.7084 4.21658C6.86968 3.62732 2.15584 8.34151 5.691 14.2339ZM5.691 14.2339C5.69093 14.2338 5.69107 14.234 5.691 14.2339ZM5.691 14.2339L4.16675 15.7576M5.691 14.2339L8.88079 11.0436";
991
1138
  function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
992
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
993
- Svg16.Path,
1139
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1140
+ Svg19.Path,
994
1141
  {
995
1142
  d: NAVIGATE_PATH,
996
1143
  stroke: color,
@@ -1004,8 +1151,8 @@ function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1004
1151
  // src/icons/Phone/phonePath.ts
1005
1152
  var PHONE_PATH = "M7.91872 3.54768C7.66561 2.91492 7.05276 2.5 6.37126 2.5H4.07895C3.20692 2.5 2.5 3.20675 2.5 4.07878C2.5 11.491 8.50898 17.5 15.9212 17.5C16.7933 17.5 17.5 16.793 17.5 15.921L17.5004 13.6283C17.5004 12.9468 17.0856 12.334 16.4528 12.0809L14.2558 11.2024C13.6874 10.9751 13.0402 11.0774 12.57 11.4693L12.0029 11.9422C11.3407 12.4941 10.3664 12.4502 9.75683 11.8407L8.16018 10.2425C7.55066 9.63302 7.50561 8.65945 8.05745 7.99724L8.53027 7.43025C8.92218 6.95996 9.02541 6.31263 8.79805 5.74424L7.91872 3.54768Z";
1006
1153
  function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1007
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1008
- Svg16.Path,
1154
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1155
+ Svg19.Path,
1009
1156
  {
1010
1157
  d: PHONE_PATH,
1011
1158
  stroke: color,
@@ -1019,8 +1166,8 @@ function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1019
1166
  // src/icons/Plus/plusPath.ts
1020
1167
  var PLUS_PATH = "M8.00004 3.33325V12.6666M3.33337 7.99992H12.6667";
1021
1168
  function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
1022
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1023
- Svg16.Path,
1169
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1170
+ Svg19.Path,
1024
1171
  {
1025
1172
  d: PLUS_PATH,
1026
1173
  stroke: color,
@@ -1031,6 +1178,40 @@ function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
1031
1178
  ) });
1032
1179
  }
1033
1180
 
1181
+ // src/icons/Refresh/refreshPath.ts
1182
+ var REFRESH_PATH = "M17.4993 8.33333C17.4993 8.33333 15.8285 6.05685 14.4712 4.69854C13.1138 3.34022 11.238 2.5 9.16602 2.5C5.02388 2.5 1.66602 5.85786 1.66602 10C1.66602 14.1421 5.02388 17.5 9.16602 17.5C12.5853 17.5 15.4701 15.2119 16.3729 12.0833M12.4993 8.33333H17.4993V3.33333";
1183
+ function RefreshIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
1184
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1185
+ Svg19.Path,
1186
+ {
1187
+ d: REFRESH_PATH,
1188
+ stroke: color,
1189
+ strokeWidth,
1190
+ strokeLinecap: "round",
1191
+ strokeLinejoin: "round"
1192
+ }
1193
+ ) });
1194
+ }
1195
+
1196
+ // src/icons/RefundStatus/refundStatusPath.ts
1197
+ var REFUND_STATUS_PATH = "M15.1333 7.66667L13.8004 9L12.4666 7.66667M13.9634 8.66667C13.9876 8.44778 14 8.22534 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14C9.88484 14 11.5667 13.1309 12.6667 11.7716M8 4.66667V8L10 9.33333";
1198
+ function RefundStatusIcon({
1199
+ size = 16,
1200
+ color = colors.primary,
1201
+ strokeWidth = 2
1202
+ }) {
1203
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1204
+ Svg19.Path,
1205
+ {
1206
+ d: REFUND_STATUS_PATH,
1207
+ stroke: color,
1208
+ strokeWidth,
1209
+ strokeLinecap: "round",
1210
+ strokeLinejoin: "round"
1211
+ }
1212
+ ) });
1213
+ }
1214
+
1034
1215
  // src/icons/Search/searchPath.ts
1035
1216
  var SEARCH_CIRCLE_PATH = "M9.16667 15.8333C12.8486 15.8333 15.8333 12.8486 15.8333 9.16667C15.8333 5.48477 12.8486 2.5 9.16667 2.5C5.48477 2.5 2.5 5.48477 2.5 9.16667C2.5 12.8486 5.48477 15.8333 9.16667 15.8333Z";
1036
1217
  var SEARCH_HANDLE_PATH = "M17.5 17.5L13.875 13.875";
@@ -1039,9 +1220,9 @@ function SearchIcon({
1039
1220
  color = colors.primary,
1040
1221
  strokeWidth = 2
1041
1222
  }) {
1042
- return /* @__PURE__ */ jsxRuntime.jsxs(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
1223
+ return /* @__PURE__ */ jsxRuntime.jsxs(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
1043
1224
  /* @__PURE__ */ jsxRuntime.jsx(
1044
- Svg16.Path,
1225
+ Svg19.Path,
1045
1226
  {
1046
1227
  d: SEARCH_CIRCLE_PATH,
1047
1228
  stroke: color,
@@ -1051,7 +1232,7 @@ function SearchIcon({
1051
1232
  }
1052
1233
  ),
1053
1234
  /* @__PURE__ */ jsxRuntime.jsx(
1054
- Svg16.Path,
1235
+ Svg19.Path,
1055
1236
  {
1056
1237
  d: SEARCH_HANDLE_PATH,
1057
1238
  stroke: color,
@@ -1066,8 +1247,8 @@ function SearchIcon({
1066
1247
  // src/icons/Settings/settingsPath.ts
1067
1248
  var SETTINGS_PATH = "M8.00004 10C9.10461 10 10 9.10457 10 8C10 6.89543 9.10461 6 8.00004 6C6.89547 6 6.00004 6.89543 6.00004 8C6.00004 9.10457 6.89547 10 8.00004 10Z M12.4849 9.81818C12.4042 10.001 12.3801 10.2038 12.4158 10.4004C12.4514 10.597 12.5452 10.7784 12.6849 10.9212L12.7213 10.9576C12.834 11.0702 12.9234 11.2038 12.9844 11.351C13.0454 11.4981 13.0768 11.6559 13.0768 11.8152C13.0768 11.9744 13.0454 12.1322 12.9844 12.2793C12.9234 12.4265 12.834 12.5602 12.7213 12.6727C12.6087 12.7854 12.475 12.8748 12.3278 12.9358C12.1807 12.9968 12.023 13.0282 11.8637 13.0282C11.7044 13.0282 11.5467 12.9968 11.3995 12.9358C11.2524 12.8748 11.1187 12.7854 11.0061 12.6727L10.9697 12.6364C10.8269 12.4966 10.6455 12.4029 10.4489 12.3673C10.2523 12.3316 10.0495 12.3557 9.86671 12.4364C9.68745 12.5132 9.53458 12.6408 9.42689 12.8034C9.31921 12.966 9.26142 13.1565 9.26065 13.3515V13.4545C9.26065 13.776 9.13294 14.0843 8.90562 14.3116C8.67831 14.539 8.37 14.6667 8.04853 14.6667C7.72705 14.6667 7.41874 14.539 7.19143 14.3116C6.96411 14.0843 6.8364 13.776 6.8364 13.4545V13.4C6.83171 13.1994 6.76678 13.0048 6.65005 12.8416C6.53331 12.6784 6.37018 12.5541 6.18186 12.4848C5.99906 12.4042 5.79629 12.3801 5.59968 12.4158C5.40308 12.4514 5.22166 12.5451 5.07883 12.6849L5.04246 12.7212C4.92989 12.8339 4.79621 12.9233 4.64906 12.9843C4.50191 13.0453 4.34418 13.0767 4.18489 13.0767C4.0256 13.0767 3.86787 13.0453 3.72072 12.9843C3.57357 12.9233 3.43989 12.8339 3.32731 12.7212C3.21461 12.6086 3.12521 12.475 3.06421 12.3278C3.00321 12.1807 2.97181 12.0229 2.97181 11.8636C2.97181 11.7043 3.00321 11.5466 3.06421 11.3995C3.12521 11.2523 3.21461 11.1186 3.32731 11.0061L3.36368 10.9697C3.5034 10.8269 3.59712 10.6454 3.63277 10.4488C3.66842 10.2522 3.64435 10.0495 3.56368 9.86667C3.48685 9.68741 3.35929 9.53454 3.19669 9.42686C3.03409 9.31917 2.84355 9.26139 2.64853 9.26061H2.5455C2.22402 9.26061 1.91571 9.1329 1.6884 8.90559C1.46108 8.67827 1.33337 8.36996 1.33337 8.04849C1.33337 7.72701 1.46108 7.4187 1.6884 7.19139C1.91571 6.96407 2.22402 6.83637 2.5455 6.83637H2.60004C2.80064 6.83167 2.9952 6.76674 3.1584 6.65001C3.32161 6.53328 3.44593 6.37014 3.51519 6.18182C3.59587 5.99902 3.61993 5.79625 3.58429 5.59965C3.54864 5.40304 3.45491 5.22163 3.31519 5.07879L3.27883 5.04243C3.16613 4.92985 3.07672 4.79617 3.01573 4.64902C2.95473 4.50187 2.92333 4.34414 2.92333 4.18485C2.92333 4.02556 2.95473 3.86783 3.01573 3.72068C3.07672 3.57353 3.16613 3.43985 3.27883 3.32728C3.3914 3.21458 3.52509 3.12517 3.67223 3.06417C3.81938 3.00317 3.97711 2.97178 4.1364 2.97178C4.2957 2.97178 4.45343 3.00317 4.60057 3.06417C4.74772 3.12517 4.88141 3.21458 4.99398 3.32728L5.03034 3.36364C5.17318 3.50336 5.3546 3.59708 5.5512 3.63273C5.7478 3.66838 5.95058 3.64431 6.13337 3.56364H6.18186C6.36111 3.48681 6.51399 3.35925 6.62167 3.19665C6.72935 3.03405 6.78714 2.84351 6.78792 2.64849V2.54546C6.78792 2.22398 6.91562 1.91567 7.14294 1.68836C7.37026 1.46104 7.67857 1.33334 8.00004 1.33334C8.32151 1.33334 8.62982 1.46104 8.85714 1.68836C9.08446 1.91567 9.21216 2.22398 9.21216 2.54546V2.6C9.21294 2.79502 9.27073 2.98556 9.37841 3.14816C9.48609 3.31076 9.63897 3.43833 9.81822 3.51515C10.001 3.59583 10.2038 3.6199 10.4004 3.58425C10.597 3.5486 10.7784 3.45487 10.9213 3.31515L10.9576 3.27879C11.0702 3.16609 11.2039 3.07669 11.351 3.01569C11.4982 2.95469 11.6559 2.92329 11.8152 2.92329C11.9745 2.92329 12.1322 2.95469 12.2794 3.01569C12.4265 3.07669 12.5602 3.16609 12.6728 3.27879C12.7855 3.39136 12.8749 3.52505 12.9359 3.6722C12.9969 3.81935 13.0283 3.97707 13.0283 4.13637C13.0283 4.29566 12.9969 4.45339 12.9359 4.60054C12.8749 4.74769 12.7855 4.88137 12.6728 4.99394L12.6364 5.03031C12.4967 5.17314 12.403 5.35456 12.3673 5.55116C12.3317 5.74776 12.3557 5.95054 12.4364 6.13334V6.18182C12.5132 6.36107 12.6408 6.51395 12.8034 6.62163C12.966 6.72932 13.1565 6.7871 13.3516 6.78788H13.4546C13.7761 6.78788 14.0844 6.91559 14.3117 7.1429C14.539 7.37022 14.6667 7.67853 14.6667 8C14.6667 8.32148 14.539 8.62978 14.3117 8.8571C14.0844 9.08442 13.7761 9.21212 13.4546 9.21212H13.4C13.205 9.2129 13.0145 9.27069 12.8519 9.37837C12.6893 9.48605 12.5617 9.63893 12.4849 9.81818Z";
1068
1249
  function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
1069
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1070
- Svg16.Path,
1250
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1251
+ Svg19.Path,
1071
1252
  {
1072
1253
  d: SETTINGS_PATH,
1073
1254
  stroke: color,
@@ -1082,9 +1263,9 @@ function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 })
1082
1263
  var SHOW_PATH = "M1.66669 10C1.66669 10 4.16669 4.16667 10 4.16667C15.8334 4.16667 18.3334 10 18.3334 10C18.3334 10 15.8334 15.8333 10 15.8333C4.16669 15.8333 1.66669 10 1.66669 10Z";
1083
1264
  var SHOW_PUPIL_PATH = "M10 12.5C11.3807 12.5 12.5 11.3807 12.5 10C12.5 8.61929 11.3807 7.5 10 7.5C8.61929 7.5 7.5 8.61929 7.5 10C7.5 11.3807 8.61929 12.5 10 12.5Z";
1084
1265
  function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1085
- return /* @__PURE__ */ jsxRuntime.jsxs(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
1266
+ return /* @__PURE__ */ jsxRuntime.jsxs(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
1086
1267
  /* @__PURE__ */ jsxRuntime.jsx(
1087
- Svg16.Path,
1268
+ Svg19.Path,
1088
1269
  {
1089
1270
  d: SHOW_PATH,
1090
1271
  stroke: color,
@@ -1094,7 +1275,7 @@ function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1094
1275
  }
1095
1276
  ),
1096
1277
  /* @__PURE__ */ jsxRuntime.jsx(
1097
- Svg16.Path,
1278
+ Svg19.Path,
1098
1279
  {
1099
1280
  d: SHOW_PUPIL_PATH,
1100
1281
  stroke: color,
@@ -1109,8 +1290,8 @@ function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1109
1290
  // src/icons/Sidebar/sidebarPath.ts
1110
1291
  var SIDEBAR_PATH = "M12.5 2.5V17.5M6.5 2.5H13.5C14.9001 2.5 15.6002 2.5 16.135 2.77248C16.6054 3.01217 16.9878 3.39462 17.2275 3.86502C17.5 4.3998 17.5 5.09987 17.5 6.5V13.5C17.5 14.9001 17.5 15.6002 17.2275 16.135C16.9878 16.6054 16.6054 16.9878 16.135 17.2275C15.6002 17.5 14.9001 17.5 13.5 17.5H6.5C5.09987 17.5 4.3998 17.5 3.86502 17.2275C3.39462 16.9878 3.01217 16.6054 2.77248 16.135C2.5 15.6002 2.5 14.9001 2.5 13.5V6.5C2.5 5.09987 2.5 4.3998 2.77248 3.86502C3.01217 3.39462 3.39462 3.01217 3.86502 2.77248C4.3998 2.5 5.09987 2.5 6.5 2.5Z";
1111
1292
  function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1112
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1113
- Svg16.Path,
1293
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1294
+ Svg19.Path,
1114
1295
  {
1115
1296
  d: SIDEBAR_PATH,
1116
1297
  stroke: color,
@@ -1122,10 +1303,10 @@ function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1122
1303
  }
1123
1304
 
1124
1305
  // src/icons/Sort/sortPath.ts
1125
- var SORT_PATH = "M3.5 2V10M5.5 8L3.5 10L1.5 8M8.5 10V2M10.5 4L8.5 2L6.5 4";
1126
- function SortIcon({ size = 12, color = colors.grey150, strokeWidth = 1.5 }) {
1127
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1128
- Svg16.Path,
1306
+ var SORT_PATH = "M5.83333 3.33301V16.6663M9.16667 13.333L5.83333 16.6663L2.5 13.333M14.1667 16.6663V3.33301M17.5 6.66634L14.1667 3.33301L10.8333 6.66634";
1307
+ function SortIcon({ size = 20, color = colors.grey300, strokeWidth = 2 }) {
1308
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1309
+ Svg19.Path,
1129
1310
  {
1130
1311
  d: SORT_PATH,
1131
1312
  stroke: color,
@@ -1146,8 +1327,8 @@ function StarIcon({
1146
1327
  strokeWidth = 2
1147
1328
  }) {
1148
1329
  const resolvedColor = color ?? (active ? "#E38E5E" : colors.grey150);
1149
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1150
- Svg16.Path,
1330
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1331
+ Svg19.Path,
1151
1332
  {
1152
1333
  d: STAR_PATH,
1153
1334
  fill: active ? resolvedColor : "none",
@@ -1164,8 +1345,8 @@ function StarFilledIcon({
1164
1345
  color = "#E38E5E",
1165
1346
  strokeWidth = 2
1166
1347
  }) {
1167
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: color, children: /* @__PURE__ */ jsxRuntime.jsx(
1168
- Svg16.Path,
1348
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: color, children: /* @__PURE__ */ jsxRuntime.jsx(
1349
+ Svg19.Path,
1169
1350
  {
1170
1351
  d: STAR_PATH,
1171
1352
  fill: color,
@@ -1180,8 +1361,8 @@ function StarFilledIcon({
1180
1361
  // src/icons/User/userPath.ts
1181
1362
  var USER_PATH = "M15.8334 17.5C15.8334 14.2783 13.2217 11.6667 10 11.6667C6.77836 11.6667 4.16669 14.2783 4.16669 17.5M10 9.16667C8.15907 9.16667 6.66669 7.67428 6.66669 5.83333C6.66669 3.99238 8.15907 2.5 10 2.5C11.841 2.5 13.3334 3.99238 13.3334 5.83333C13.3334 7.67428 11.841 9.16667 10 9.16667Z";
1182
1363
  function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1183
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1184
- Svg16.Path,
1364
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1365
+ Svg19.Path,
1185
1366
  {
1186
1367
  d: USER_PATH,
1187
1368
  stroke: color,
@@ -1195,7 +1376,7 @@ function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
1195
1376
  // src/icons/UsersAlt/usersAltPath.ts
1196
1377
  var USERS_ALT_PATH = "M14.35 14.2566C14.9725 13.7177 15.4718 13.0513 15.814 12.3024C16.1562 11.5536 16.3333 10.7399 16.3333 9.91659C16.3333 8.36949 15.7187 6.88576 14.6248 5.7918C13.5308 4.69783 12.0471 4.08325 10.5 4.08325C8.95289 4.08325 7.46916 4.69783 6.3752 5.7918C5.28124 6.88576 4.66666 8.36949 4.66666 9.91659C4.66665 10.7399 4.84376 11.5536 5.18597 12.3024C5.52818 13.0513 6.02748 13.7177 6.64999 14.2566C5.01682 14.9961 3.6312 16.1904 2.6588 17.6966C1.6864 19.2027 1.16837 20.9571 1.16666 22.7499C1.16666 23.0593 1.28957 23.3561 1.50837 23.5749C1.72716 23.7937 2.0239 23.9166 2.33332 23.9166C2.64274 23.9166 2.93949 23.7937 3.15828 23.5749C3.37707 23.3561 3.49999 23.0593 3.49999 22.7499C3.49999 20.8934 4.23749 19.1129 5.55024 17.8002C6.863 16.4874 8.64347 15.7499 10.5 15.7499C12.3565 15.7499 14.137 16.4874 15.4497 17.8002C16.7625 19.1129 17.5 20.8934 17.5 22.7499C17.5 23.0593 17.6229 23.3561 17.8417 23.5749C18.0605 23.7937 18.3572 23.9166 18.6667 23.9166C18.9761 23.9166 19.2728 23.7937 19.4916 23.5749C19.7104 23.3561 19.8333 23.0593 19.8333 22.7499C19.8316 20.9571 19.3136 19.2027 18.3412 17.6966C17.3688 16.1904 15.9832 14.9961 14.35 14.2566ZM10.5 13.4166C9.80775 13.4166 9.13107 13.2113 8.55549 12.8267C7.97992 12.4421 7.53132 11.8955 7.26641 11.256C7.0015 10.6164 6.93219 9.9127 7.06724 9.23377C7.20229 8.55484 7.53563 7.9312 8.02512 7.44171C8.5146 6.95223 9.13824 6.61889 9.81717 6.48384C10.4961 6.34879 11.1998 6.4181 11.8394 6.68301C12.4789 6.94791 13.0255 7.39652 13.4101 7.97209C13.7947 8.54766 14 9.22435 14 9.91659C14 10.8448 13.6312 11.7351 12.9749 12.3915C12.3185 13.0478 11.4282 13.4166 10.5 13.4166ZM21.8633 13.7899C22.61 12.9491 23.0977 11.9105 23.2678 10.799C23.4378 9.68748 23.2831 8.55051 22.822 7.52492C22.361 6.49933 21.6134 5.62885 20.6692 5.01825C19.725 4.40764 18.6244 4.08295 17.5 4.08325C17.1906 4.08325 16.8938 4.20617 16.675 4.42496C16.4562 4.64375 16.3333 4.9405 16.3333 5.24992C16.3333 5.55934 16.4562 5.85608 16.675 6.07488C16.8938 6.29367 17.1906 6.41659 17.5 6.41659C18.4282 6.41659 19.3185 6.78533 19.9749 7.44171C20.6312 8.09809 21 8.98833 21 9.91659C20.9983 10.5294 20.8358 11.131 20.5287 11.6612C20.2216 12.1915 19.7807 12.6319 19.25 12.9383C19.077 13.038 18.9325 13.1805 18.8304 13.3521C18.7283 13.5237 18.6719 13.7186 18.6667 13.9183C18.6618 14.1163 18.7074 14.3123 18.7993 14.4879C18.8911 14.6634 19.0262 14.8127 19.1917 14.9216L19.6467 15.2249L19.7983 15.3066C21.2046 15.9736 22.391 17.0286 23.2178 18.3473C24.0446 19.666 24.4773 21.1935 24.465 22.7499C24.465 23.0593 24.5879 23.3561 24.8067 23.5749C25.0255 23.7937 25.3222 23.9166 25.6317 23.9166C25.9411 23.9166 26.2378 23.7937 26.4566 23.5749C26.6754 23.3561 26.7983 23.0593 26.7983 22.7499C26.8079 20.9596 26.3594 19.1965 25.4957 17.6283C24.632 16.0601 23.3816 14.7388 21.8633 13.7899Z";
1197
1378
  function UsersAltIcon({ size = 28, color = colors.white }) {
1198
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: USERS_ALT_PATH, fill: color }) });
1379
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: USERS_ALT_PATH, fill: color }) });
1199
1380
  }
1200
1381
 
1201
1382
  // src/icons/Video/videoPath.ts
@@ -1204,8 +1385,8 @@ var VIDEO_PATHS = [
1204
1385
  "M1.33337 6.53333C1.33337 5.41322 1.33337 4.85317 1.55136 4.42535C1.74311 4.04902 2.04907 3.74306 2.42539 3.55132C2.85322 3.33333 3.41327 3.33333 4.53337 3.33333H8.13337C9.25348 3.33333 9.81353 3.33333 10.2414 3.55132C10.6177 3.74306 10.9236 4.04902 11.1154 4.42535C11.3334 4.85317 11.3334 5.41322 11.3334 6.53333V9.46666C11.3334 10.5868 11.3334 11.1468 11.1154 11.5746C10.9236 11.951 10.6177 12.2569 10.2414 12.4487C9.81353 12.6667 9.25348 12.6667 8.13337 12.6667H4.53337C3.41327 12.6667 2.85322 12.6667 2.42539 12.4487C2.04907 12.2569 1.74311 11.951 1.55136 11.5746C1.33337 11.1468 1.33337 10.5868 1.33337 9.46666V6.53333Z"
1205
1386
  ];
1206
1387
  function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
1207
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: VIDEO_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
1208
- Svg16.Path,
1388
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: VIDEO_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
1389
+ Svg19.Path,
1209
1390
  {
1210
1391
  d: path,
1211
1392
  stroke: color,
@@ -1217,12 +1398,44 @@ function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
1217
1398
  )) });
1218
1399
  }
1219
1400
 
1401
+ // src/icons/VideoOff/videoOffPath.ts
1402
+ var VIDEO_OFF_PATH = "M5 5C3.34315 5 2 6.34315 2 8V16C2 17.6569 3.34315 19 5 19H14C15.3527 19 16.4962 18.1048 16.8705 16.8745M17 12L20.6343 8.36569C21.0627 7.93731 21.2769 7.72312 21.4608 7.70865C21.6203 7.69609 21.7763 7.76068 21.8802 7.88238C22 8.02265 22 8.32556 22 8.93137V15.0686C22 15.6744 22 15.9774 21.8802 16.1176C21.7763 16.2393 21.6203 16.3039 21.4608 16.2914C21.2769 16.2769 21.0627 16.0627 20.6343 15.6343L17 12ZM17 12V9.8C17 8.11984 17 7.27976 16.673 6.63803C16.3854 6.07354 15.9265 5.6146 15.362 5.32698C14.7202 5 13.8802 5 12.2 5H9.5M2 2L22 22";
1403
+ function VideoOffIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
1404
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1405
+ Svg19.Path,
1406
+ {
1407
+ d: VIDEO_OFF_PATH,
1408
+ stroke: color,
1409
+ strokeWidth,
1410
+ strokeLinecap: "round",
1411
+ strokeLinejoin: "round"
1412
+ }
1413
+ ) });
1414
+ }
1415
+
1416
+ // src/icons/ZoomOut/zoomOutPath.ts
1417
+ var ZOOM_OUT_PATH = "M3 8H3.2C4.88016 8 5.72024 8 6.36197 7.67302C6.92646 7.3854 7.3854 6.92646 7.67302 6.36197C8 5.72024 8 4.88016 8 3.2V3M3 16H3.2C4.88016 16 5.72024 16 6.36197 16.327C6.92646 16.6146 7.3854 17.0735 7.67302 17.638C8 18.2798 8 19.1198 8 20.8V21M16 3V3.2C16 4.88016 16 5.72024 16.327 6.36197C16.6146 6.92646 17.0735 7.3854 17.638 7.67302C18.2798 8 19.1198 8 20.8 8H21M16 21V20.8C16 19.1198 16 18.2798 16.327 17.638C16.6146 17.0735 17.0735 16.6146 17.638 16.327C18.2798 16 19.1198 16 20.8 16H21";
1418
+ function ZoomOutIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
1419
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
1420
+ Svg19.Path,
1421
+ {
1422
+ d: ZOOM_OUT_PATH,
1423
+ stroke: color,
1424
+ strokeWidth,
1425
+ strokeLinecap: "round",
1426
+ strokeLinejoin: "round"
1427
+ }
1428
+ ) });
1429
+ }
1430
+
1220
1431
  // src/icons/registry.ts
1221
1432
  var icons = {
1433
+ alertTriangle: AlertTriangleIcon,
1222
1434
  areaExpand: AreaExpandIcon,
1223
1435
  apple: AppleIcon,
1224
1436
  arrowRight: ArrowRightIcon,
1225
1437
  bag: BagIcon,
1438
+ ban: BanIcon,
1226
1439
  bell: BellIcon,
1227
1440
  building: BuildingIcon,
1228
1441
  calendar: CalendarIcon,
@@ -1235,13 +1448,16 @@ var icons = {
1235
1448
  chevronLeft: ChevronLeftIcon,
1236
1449
  clock: ClockIcon,
1237
1450
  close: CloseIcon,
1451
+ edit: EditIcon,
1238
1452
  clockFilled: ClockFilledIcon,
1239
1453
  copy: CopyIcon,
1454
+ download: DownloadIcon,
1240
1455
  bathrooms: BathroomsIcon,
1241
1456
  bedrooms: BedroomsIcon,
1242
1457
  cardLocation: CardLocationIcon,
1243
1458
  facebook: FacebookIcon,
1244
1459
  filters: FiltersIcon,
1460
+ fullscreen: FullscreenIcon,
1245
1461
  guests: GuestsIcon,
1246
1462
  heart: HeartIcon,
1247
1463
  globe: GlobeIcon,
@@ -1254,6 +1470,8 @@ var icons = {
1254
1470
  linkedin: LinkedInIcon,
1255
1471
  listView: ListViewIcon,
1256
1472
  locationPin: LocationPinIcon,
1473
+ locationUser: LocationUserIcon,
1474
+ lock: LockIcon,
1257
1475
  logOut: LogOutIcon,
1258
1476
  mail: MailIcon,
1259
1477
  mapView: MapViewIcon,
@@ -1262,10 +1480,15 @@ var icons = {
1262
1480
  menu: MenuIcon,
1263
1481
  minus: MinusIcon,
1264
1482
  navigate: NavigateIcon,
1483
+ noSmoking: NoSmokingIcon,
1484
+ paw: PawIcon,
1265
1485
  phone: PhoneIcon,
1266
1486
  qrCode: QrCodeIcon,
1487
+ quietHours: QuietHoursIcon,
1267
1488
  ratingStar: RatingStarIcon,
1268
1489
  plus: PlusIcon,
1490
+ refresh: RefreshIcon,
1491
+ refundStatus: RefundStatusIcon,
1269
1492
  search: SearchIcon,
1270
1493
  saveHeart: SaveHeartIcon,
1271
1494
  share: ShareIcon,
@@ -1276,10 +1499,13 @@ var icons = {
1276
1499
  star: StarIcon,
1277
1500
  starFilled: StarFilledIcon,
1278
1501
  tooltipArrow: TooltipArrowIcon,
1502
+ trash: TrashIcon,
1279
1503
  user: UserIcon,
1280
1504
  usersAlt: UsersAltIcon,
1281
1505
  video: VideoIcon,
1282
- whatsApp: WhatsAppIcon
1506
+ videoOff: VideoOffIcon,
1507
+ whatsApp: WhatsAppIcon,
1508
+ zoomOut: ZoomOutIcon
1283
1509
  };
1284
1510
  var iconNames = Object.keys(icons);
1285
1511
  var iconGroups = {
@@ -1290,6 +1516,7 @@ var iconGroups = {
1290
1516
  "home",
1291
1517
  "listView",
1292
1518
  "locationPin",
1519
+ "locationUser",
1293
1520
  "mapCollapse",
1294
1521
  "mapExpand",
1295
1522
  "mapView",
@@ -1298,6 +1525,8 @@ var iconGroups = {
1298
1525
  ],
1299
1526
  actions: [
1300
1527
  "show",
1528
+ "alertTriangle",
1529
+ "ban",
1301
1530
  "bell",
1302
1531
  "camera",
1303
1532
  "key",
@@ -1305,19 +1534,25 @@ var iconGroups = {
1305
1534
  "checkBadge",
1306
1535
  "checkSuccess",
1307
1536
  "copy",
1537
+ "download",
1308
1538
  "search",
1309
1539
  "calendar",
1310
1540
  "calendarOutline",
1311
1541
  "close",
1542
+ "edit",
1312
1543
  "ratingStar",
1313
1544
  "saveHeart",
1314
1545
  "share",
1315
1546
  "filters",
1547
+ "fullscreen",
1316
1548
  "heart",
1549
+ "zoomOut",
1317
1550
  "star",
1318
1551
  "starFilled",
1319
1552
  "minus",
1320
1553
  "plus",
1554
+ "refresh",
1555
+ "refundStatus",
1321
1556
  "sort"
1322
1557
  ],
1323
1558
  objects: [
@@ -1329,10 +1564,16 @@ var iconGroups = {
1329
1564
  "clock",
1330
1565
  "clockFilled",
1331
1566
  "guests",
1567
+ "lock",
1568
+ "noSmoking",
1569
+ "paw",
1332
1570
  "qrCode",
1571
+ "quietHours",
1572
+ "trash",
1333
1573
  "user",
1334
1574
  "usersAlt",
1335
1575
  "video",
1576
+ "videoOff",
1336
1577
  "whatsApp"
1337
1578
  ],
1338
1579
  communication: ["mail", "phone"],
@@ -1416,8 +1657,8 @@ var AMENITY_PATHS = {
1416
1657
  ]
1417
1658
  };
1418
1659
  function AmenityIcon({ name, size = 20, color = colors.primary }) {
1419
- return /* @__PURE__ */ jsxRuntime.jsx(Svg16__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: AMENITY_PATHS[name].map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(
1420
- Svg16.Path,
1660
+ return /* @__PURE__ */ jsxRuntime.jsx(Svg19__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: AMENITY_PATHS[name].map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(
1661
+ Svg19.Path,
1421
1662
  {
1422
1663
  d: path.d,
1423
1664
  fill: path.fill ? color : "none",
@@ -1840,7 +2081,7 @@ function BrandLogo({
1840
2081
  const size = resolveBrandLogoSize(width, height);
1841
2082
  const fill = BRAND_LOGO_COLORS[variant];
1842
2083
  return /* @__PURE__ */ jsxRuntime.jsx(
1843
- Svg16__default.default,
2084
+ Svg19__default.default,
1844
2085
  {
1845
2086
  width: size.width,
1846
2087
  height: size.height,
@@ -1850,7 +2091,7 @@ function BrandLogo({
1850
2091
  accessible: true,
1851
2092
  accessibilityRole: "image",
1852
2093
  accessibilityLabel,
1853
- children: BRAND_LOGO_PATHS.map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(Svg16.Path, { d: path, fill }, index))
2094
+ children: BRAND_LOGO_PATHS.map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(Svg19.Path, { d: path, fill }, index))
1854
2095
  }
1855
2096
  );
1856
2097
  }
@@ -2117,8 +2358,8 @@ var AvatarSimple = react.forwardRef(
2117
2358
  ) : null }),
2118
2359
  !compact ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles5.details, children: [
2119
2360
  /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles5.textBlock, children: [
2120
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles5.name, numberOfLines: 1, children: name }),
2121
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles5.email, numberOfLines: 1, children: email })
2361
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles5.name, numberOfLines: 1, ellipsizeMode: "tail", children: name }),
2362
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles5.email, numberOfLines: 1, ellipsizeMode: "tail", children: email })
2122
2363
  ] }),
2123
2364
  /* @__PURE__ */ jsxRuntime.jsx(
2124
2365
  reactNative.Pressable,
@@ -2206,6 +2447,194 @@ var styles5 = reactNative.StyleSheet.create({
2206
2447
  flexShrink: 0
2207
2448
  }
2208
2449
  });
2450
+ var HEADER_HEIGHT = 64;
2451
+ var MENU_ICON_SIZE = 28;
2452
+ var ICON_BUTTON_SIZE = 32;
2453
+ var ICON_BUTTON_ICON_SIZE = 16;
2454
+ var BACK_TITLE_GAP = 12;
2455
+ var TITLE_BADGE_GAP = 12;
2456
+ var MENU_TITLE_GAP = 16;
2457
+ var RIGHT_GAP = 16;
2458
+ var AccountHeader = react.forwardRef(
2459
+ function AccountHeader2({
2460
+ title,
2461
+ onBackPress,
2462
+ onMenuPress,
2463
+ onNotificationsPress,
2464
+ badge,
2465
+ backAccessibilityLabel = "Back",
2466
+ menuAccessibilityLabel = "Open menu",
2467
+ notificationsAccessibilityLabel = "Notifications",
2468
+ style,
2469
+ className,
2470
+ ...rest
2471
+ }, forwardedRef) {
2472
+ const containerRef = react.useRef(null);
2473
+ const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
2474
+ const resolvedClassName = className?.trim() || void 0;
2475
+ const showBack = onBackPress != null;
2476
+ const showMenu = !showBack && onMenuPress != null;
2477
+ const isCompact = showMenu;
2478
+ useApplyWebClassName(containerRef, resolvedClassName);
2479
+ return /* @__PURE__ */ jsxRuntime.jsxs(
2480
+ reactNative.View,
2481
+ {
2482
+ ...rest,
2483
+ ref: setContainerRef,
2484
+ accessibilityRole: "header",
2485
+ style: [styles6.base, isCompact ? styles6.compact : styles6.desktop, style],
2486
+ children: [
2487
+ /* @__PURE__ */ jsxRuntime.jsxs(
2488
+ reactNative.View,
2489
+ {
2490
+ style: [
2491
+ styles6.start,
2492
+ showBack ? styles6.startWithBack : null,
2493
+ showMenu ? styles6.startWithMenu : null
2494
+ ],
2495
+ children: [
2496
+ showBack ? /* @__PURE__ */ jsxRuntime.jsx(
2497
+ reactNative.Pressable,
2498
+ {
2499
+ accessibilityRole: "button",
2500
+ accessibilityLabel: backAccessibilityLabel,
2501
+ hitSlop: 8,
2502
+ onPress: onBackPress,
2503
+ style: styles6.iconButton,
2504
+ children: /* @__PURE__ */ jsxRuntime.jsx(
2505
+ ChevronLeftIcon,
2506
+ {
2507
+ color: colors.white,
2508
+ size: ICON_BUTTON_ICON_SIZE,
2509
+ strokeWidth: 1.5
2510
+ }
2511
+ )
2512
+ }
2513
+ ) : null,
2514
+ showMenu ? /* @__PURE__ */ jsxRuntime.jsx(
2515
+ reactNative.Pressable,
2516
+ {
2517
+ accessibilityRole: "button",
2518
+ accessibilityLabel: menuAccessibilityLabel,
2519
+ hitSlop: 8,
2520
+ onPress: onMenuPress,
2521
+ style: styles6.menuButton,
2522
+ children: /* @__PURE__ */ jsxRuntime.jsx(MenuIcon, { color: colors.white, size: MENU_ICON_SIZE, strokeWidth: 1.5 })
2523
+ }
2524
+ ) : null,
2525
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles6.titleRow, children: [
2526
+ /* @__PURE__ */ jsxRuntime.jsx(
2527
+ reactNative.Text,
2528
+ {
2529
+ numberOfLines: 1,
2530
+ style: [
2531
+ styles6.title,
2532
+ showBack || !isCompact ? styles6.titleDesktop : styles6.titleCompact
2533
+ ],
2534
+ children: title
2535
+ }
2536
+ ),
2537
+ badge != null ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles6.badgeSlot, children: badge }) : null
2538
+ ] })
2539
+ ]
2540
+ }
2541
+ ),
2542
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles6.end, children: /* @__PURE__ */ jsxRuntime.jsx(
2543
+ reactNative.Pressable,
2544
+ {
2545
+ accessibilityRole: "button",
2546
+ accessibilityLabel: notificationsAccessibilityLabel,
2547
+ onPress: onNotificationsPress,
2548
+ style: styles6.iconButton,
2549
+ children: /* @__PURE__ */ jsxRuntime.jsx(BellIcon, { color: colors.white, size: ICON_BUTTON_ICON_SIZE, strokeWidth: 1.5 })
2550
+ }
2551
+ ) })
2552
+ ]
2553
+ }
2554
+ );
2555
+ }
2556
+ );
2557
+ var styles6 = reactNative.StyleSheet.create({
2558
+ base: {
2559
+ height: HEADER_HEIGHT,
2560
+ width: "100%",
2561
+ flexDirection: "row",
2562
+ alignItems: "center",
2563
+ justifyContent: "space-between",
2564
+ backgroundColor: colors.dark,
2565
+ borderBottomWidth: 1,
2566
+ borderBottomColor: colors.grey700
2567
+ },
2568
+ desktop: {
2569
+ paddingTop: 16,
2570
+ paddingBottom: 16,
2571
+ paddingLeft: 24,
2572
+ paddingRight: 24
2573
+ },
2574
+ compact: {
2575
+ padding: 16
2576
+ },
2577
+ start: {
2578
+ flex: 1,
2579
+ minWidth: 0,
2580
+ flexDirection: "row",
2581
+ alignItems: "center"
2582
+ },
2583
+ startWithBack: {
2584
+ gap: BACK_TITLE_GAP
2585
+ },
2586
+ startWithMenu: {
2587
+ gap: MENU_TITLE_GAP
2588
+ },
2589
+ titleRow: {
2590
+ flex: 1,
2591
+ minWidth: 0,
2592
+ flexDirection: "row",
2593
+ alignItems: "center",
2594
+ gap: TITLE_BADGE_GAP
2595
+ },
2596
+ end: {
2597
+ flexShrink: 0,
2598
+ marginLeft: RIGHT_GAP
2599
+ },
2600
+ iconButton: {
2601
+ width: ICON_BUTTON_SIZE,
2602
+ height: ICON_BUTTON_SIZE,
2603
+ padding: 8,
2604
+ alignItems: "center",
2605
+ justifyContent: "center",
2606
+ borderRadius: 5,
2607
+ backgroundColor: colors.grey800,
2608
+ borderWidth: 1,
2609
+ borderColor: colors.grey700,
2610
+ flexShrink: 0
2611
+ },
2612
+ menuButton: {
2613
+ width: MENU_ICON_SIZE,
2614
+ height: MENU_ICON_SIZE,
2615
+ alignItems: "center",
2616
+ justifyContent: "center",
2617
+ flexShrink: 0
2618
+ },
2619
+ title: {
2620
+ flexShrink: 1,
2621
+ fontFamily: fonts.sans,
2622
+ fontWeight: "600",
2623
+ letterSpacing: 0,
2624
+ color: colors.white
2625
+ },
2626
+ titleDesktop: {
2627
+ fontSize: 16,
2628
+ lineHeight: 22
2629
+ },
2630
+ titleCompact: {
2631
+ fontSize: 14,
2632
+ lineHeight: 20
2633
+ },
2634
+ badgeSlot: {
2635
+ flexShrink: 0
2636
+ }
2637
+ });
2209
2638
  var ICON_SIZE3 = 20;
2210
2639
  var webBlurStyle2 = reactNative.Platform.OS === "web" ? {
2211
2640
  backdropFilter: "blur(10.3px)",
@@ -2236,59 +2665,498 @@ var Badge = react.forwardRef(function Badge2({ label, variant = "default", icon:
2236
2665
  {
2237
2666
  ...rest,
2238
2667
  ref: setContainerRef,
2239
- style: [
2240
- styles6.base,
2241
- { backgroundColor: preset.backgroundColor },
2242
- preset.border ? styles6.transparentBorder : null,
2243
- preset.blur ? webBlurStyle2 : null,
2244
- style
2245
- ],
2246
- accessibilityRole: "text",
2247
- accessibilityLabel: accessibilityLabel ?? label,
2248
- children: [
2249
- Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles6.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE3, color: preset.iconColor }) }) : null,
2250
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles6.label, reactNative.Platform.OS === "android" ? styles6.labelAndroid : null], children: label })
2251
- ]
2668
+ style: [
2669
+ styles7.base,
2670
+ { backgroundColor: preset.backgroundColor },
2671
+ preset.border ? styles7.transparentBorder : null,
2672
+ preset.blur ? webBlurStyle2 : null,
2673
+ style
2674
+ ],
2675
+ accessibilityRole: "text",
2676
+ accessibilityLabel: accessibilityLabel ?? label,
2677
+ children: [
2678
+ Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles7.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE3, color: preset.iconColor }) }) : null,
2679
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles7.label, reactNative.Platform.OS === "android" ? styles7.labelAndroid : null], children: label })
2680
+ ]
2681
+ }
2682
+ );
2683
+ });
2684
+ var styles7 = reactNative.StyleSheet.create({
2685
+ base: {
2686
+ flexDirection: "row",
2687
+ alignItems: "center",
2688
+ alignSelf: "flex-start",
2689
+ minHeight: 44,
2690
+ paddingVertical: 12,
2691
+ paddingHorizontal: 16,
2692
+ gap: 12,
2693
+ borderRadius: 79,
2694
+ overflow: "hidden",
2695
+ borderWidth: 0,
2696
+ borderColor: "transparent",
2697
+ borderStyle: "solid"
2698
+ },
2699
+ transparentBorder: {
2700
+ borderWidth: 1,
2701
+ borderColor: colors.whiteAlpha5,
2702
+ borderStyle: "solid"
2703
+ },
2704
+ iconSlot: {
2705
+ width: ICON_SIZE3,
2706
+ height: ICON_SIZE3,
2707
+ alignItems: "center",
2708
+ justifyContent: "center",
2709
+ flexShrink: 0
2710
+ },
2711
+ label: {
2712
+ ...badgeTypography,
2713
+ color: colors.white
2714
+ },
2715
+ labelAndroid: {
2716
+ includeFontPadding: false
2717
+ }
2718
+ });
2719
+ var toneConfig = {
2720
+ active: {
2721
+ backgroundColor: colors.greenMuted,
2722
+ color: colors.green
2723
+ },
2724
+ completed: {
2725
+ backgroundColor: colors.greyMuted,
2726
+ color: colors.grey0
2727
+ },
2728
+ cancelled: {
2729
+ backgroundColor: colors.cancelledMuted,
2730
+ color: colors.red
2731
+ }
2732
+ };
2733
+ var webBlurStyle3 = reactNative.Platform.OS === "web" ? {
2734
+ backdropFilter: "blur(39.5px)",
2735
+ WebkitBackdropFilter: "blur(39.5px)"
2736
+ } : {};
2737
+ var StatusBadge = react.forwardRef(
2738
+ function StatusBadge2({ label, tone = "active", style, className, accessibilityLabel, ...rest }, forwardedRef) {
2739
+ const containerRef = react.useRef(null);
2740
+ const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
2741
+ const preset = toneConfig[tone];
2742
+ useApplyWebClassName(containerRef, className);
2743
+ return /* @__PURE__ */ jsxRuntime.jsx(
2744
+ reactNative.View,
2745
+ {
2746
+ ...rest,
2747
+ ref: setContainerRef,
2748
+ accessibilityRole: "text",
2749
+ accessibilityLabel: accessibilityLabel ?? label,
2750
+ style: [styles8.base, { backgroundColor: preset.backgroundColor }, webBlurStyle3, style],
2751
+ children: /* @__PURE__ */ jsxRuntime.jsx(
2752
+ reactNative.Text,
2753
+ {
2754
+ style: [
2755
+ styles8.label,
2756
+ { color: preset.color },
2757
+ reactNative.Platform.OS === "android" ? styles8.labelAndroid : null
2758
+ ],
2759
+ children: label
2760
+ }
2761
+ )
2762
+ }
2763
+ );
2764
+ }
2765
+ );
2766
+ var styles8 = reactNative.StyleSheet.create({
2767
+ base: {
2768
+ height: 28,
2769
+ minHeight: 28,
2770
+ flexDirection: "row",
2771
+ alignItems: "center",
2772
+ alignSelf: "flex-start",
2773
+ justifyContent: "center",
2774
+ gap: 6,
2775
+ paddingVertical: 6,
2776
+ paddingHorizontal: 12,
2777
+ borderRadius: 50,
2778
+ overflow: "hidden"
2779
+ },
2780
+ label: {
2781
+ fontFamily: fonts.sans,
2782
+ fontSize: 12,
2783
+ fontWeight: "600",
2784
+ lineHeight: 12,
2785
+ letterSpacing: 0
2786
+ },
2787
+ labelAndroid: {
2788
+ includeFontPadding: false
2789
+ }
2790
+ });
2791
+ var TRACK_WIDTH = 48;
2792
+ var DOT_HEIGHT = 6;
2793
+ var INACTIVE_SIZE = 6;
2794
+ var GAP = 4;
2795
+ function activePillWidth(count) {
2796
+ if (count <= 1) return TRACK_WIDTH;
2797
+ const inactiveCount = count - 1;
2798
+ return TRACK_WIDTH - inactiveCount * INACTIVE_SIZE - inactiveCount * GAP;
2799
+ }
2800
+ var PaginationDots = react.forwardRef(
2801
+ function PaginationDots2({ count, activeIndex, onDotPress, accessibilityLabel, style, className, ...rest }, forwardedRef) {
2802
+ const containerRef = react.useRef(null);
2803
+ const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
2804
+ const safeCount = Math.max(0, count);
2805
+ const safeActive = safeCount === 0 ? 0 : Math.min(Math.max(activeIndex, 0), safeCount - 1);
2806
+ const pillWidth = Math.max(INACTIVE_SIZE, activePillWidth(safeCount));
2807
+ useApplyWebClassName(containerRef, className);
2808
+ if (safeCount <= 0) {
2809
+ return null;
2810
+ }
2811
+ return /* @__PURE__ */ jsxRuntime.jsx(
2812
+ reactNative.View,
2813
+ {
2814
+ ...rest,
2815
+ ref: setContainerRef,
2816
+ accessibilityRole: "adjustable",
2817
+ accessibilityLabel: accessibilityLabel ?? `Slide ${safeActive + 1} of ${safeCount}`,
2818
+ style: [styles9.root, style],
2819
+ children: Array.from({ length: safeCount }, (_, index) => {
2820
+ const active = index === safeActive;
2821
+ return /* @__PURE__ */ jsxRuntime.jsx(
2822
+ reactNative.Pressable,
2823
+ {
2824
+ accessibilityRole: "button",
2825
+ accessibilityLabel: `Go to slide ${index + 1}`,
2826
+ accessibilityState: { selected: active },
2827
+ disabled: onDotPress == null,
2828
+ hitSlop: 8,
2829
+ onPress: () => onDotPress?.(index),
2830
+ style: [
2831
+ styles9.dot,
2832
+ active ? [styles9.dotActive, { width: pillWidth }] : styles9.dotInactive
2833
+ ]
2834
+ },
2835
+ index
2836
+ );
2837
+ })
2838
+ }
2839
+ );
2840
+ }
2841
+ );
2842
+ var styles9 = reactNative.StyleSheet.create({
2843
+ root: {
2844
+ width: TRACK_WIDTH,
2845
+ flexDirection: "row",
2846
+ alignItems: "center",
2847
+ justifyContent: "center",
2848
+ gap: GAP
2849
+ },
2850
+ dot: {
2851
+ height: DOT_HEIGHT,
2852
+ borderRadius: DOT_HEIGHT
2853
+ },
2854
+ dotActive: {
2855
+ backgroundColor: colors.white
2856
+ },
2857
+ dotInactive: {
2858
+ width: INACTIVE_SIZE,
2859
+ backgroundColor: colors.whiteAlpha40
2860
+ }
2861
+ });
2862
+ var WIDTH = 121;
2863
+ var HEIGHT = 48;
2864
+ var ICON_SIZE4 = 24;
2865
+ var StepPager = react.forwardRef(function StepPager2({
2866
+ index,
2867
+ count,
2868
+ onPrevious,
2869
+ onNext,
2870
+ previousAccessibilityLabel = "Previous",
2871
+ nextAccessibilityLabel = "Next",
2872
+ style,
2873
+ className,
2874
+ accessibilityLabel,
2875
+ ...rest
2876
+ }, forwardedRef) {
2877
+ const containerRef = react.useRef(null);
2878
+ const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
2879
+ const safeCount = Math.max(0, count);
2880
+ const safeIndex = safeCount === 0 ? 0 : Math.min(Math.max(index, 0), safeCount - 1);
2881
+ const label = safeCount === 0 ? "0/0" : `${safeIndex + 1}/${safeCount}`;
2882
+ const atStart = safeIndex <= 0;
2883
+ const atEnd = safeIndex >= safeCount - 1;
2884
+ useApplyWebClassName(containerRef, className);
2885
+ return /* @__PURE__ */ jsxRuntime.jsxs(
2886
+ reactNative.View,
2887
+ {
2888
+ ...rest,
2889
+ ref: setContainerRef,
2890
+ accessibilityRole: "adjustable",
2891
+ accessibilityLabel: accessibilityLabel ?? label,
2892
+ accessibilityValue: {
2893
+ min: safeCount === 0 ? 0 : 1,
2894
+ max: safeCount,
2895
+ now: safeCount === 0 ? 0 : safeIndex + 1,
2896
+ text: label
2897
+ },
2898
+ style: [styles10.root, webBlurStyle4, style],
2899
+ children: [
2900
+ /* @__PURE__ */ jsxRuntime.jsx(
2901
+ reactNative.Pressable,
2902
+ {
2903
+ onPress: onPrevious,
2904
+ disabled: atStart || !onPrevious,
2905
+ hitSlop: 4,
2906
+ accessibilityRole: "button",
2907
+ accessibilityLabel: previousAccessibilityLabel,
2908
+ accessibilityState: { disabled: atStart || !onPrevious },
2909
+ style: [styles10.navButton, (atStart || !onPrevious) && styles10.navDisabled],
2910
+ children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: ICON_SIZE4, color: colors.white, strokeWidth: 2 })
2911
+ }
2912
+ ),
2913
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles10.label, children: label }),
2914
+ /* @__PURE__ */ jsxRuntime.jsx(
2915
+ reactNative.Pressable,
2916
+ {
2917
+ onPress: onNext,
2918
+ disabled: atEnd || !onNext,
2919
+ hitSlop: 4,
2920
+ accessibilityRole: "button",
2921
+ accessibilityLabel: nextAccessibilityLabel,
2922
+ accessibilityState: { disabled: atEnd || !onNext },
2923
+ style: [styles10.navButton, (atEnd || !onNext) && styles10.navDisabled],
2924
+ children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles10.chevronRight, children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: ICON_SIZE4, color: colors.white, strokeWidth: 2 }) })
2925
+ }
2926
+ )
2927
+ ]
2928
+ }
2929
+ );
2930
+ });
2931
+ var webBlurStyle4 = reactNative.Platform.OS === "web" ? {
2932
+ backdropFilter: "blur(50px)",
2933
+ WebkitBackdropFilter: "blur(50px)"
2934
+ } : {};
2935
+ var styles10 = reactNative.StyleSheet.create({
2936
+ root: {
2937
+ width: WIDTH,
2938
+ height: HEIGHT,
2939
+ flexDirection: "row",
2940
+ alignItems: "center",
2941
+ justifyContent: "center",
2942
+ gap: 12,
2943
+ padding: 12,
2944
+ borderRadius: 77,
2945
+ backgroundColor: colors.whiteAlpha6,
2946
+ overflow: "hidden"
2947
+ },
2948
+ navButton: {
2949
+ width: ICON_SIZE4,
2950
+ height: ICON_SIZE4,
2951
+ alignItems: "center",
2952
+ justifyContent: "center"
2953
+ },
2954
+ navDisabled: {
2955
+ opacity: 0.35
2956
+ },
2957
+ chevronRight: {
2958
+ transform: [{ scaleX: -1 }]
2959
+ },
2960
+ label: {
2961
+ fontFamily: fonts.sans,
2962
+ fontSize: 16,
2963
+ fontWeight: "700",
2964
+ lineHeight: 16,
2965
+ letterSpacing: 0,
2966
+ color: colors.white,
2967
+ textAlign: "center"
2968
+ }
2969
+ });
2970
+ var ICON_SLOT = 36;
2971
+ var ICON_SIZE5 = 20;
2972
+ var InfoTile = react.forwardRef(function InfoTile2({
2973
+ title,
2974
+ description,
2975
+ icon: Icon2,
2976
+ iconProps,
2977
+ iconSize = ICON_SIZE5,
2978
+ iconSlotBackgroundColor = colors.grey600,
2979
+ style,
2980
+ className,
2981
+ accessibilityLabel,
2982
+ ...rest
2983
+ }, forwardedRef) {
2984
+ const containerRef = react.useRef(null);
2985
+ const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
2986
+ const hasDescription = Boolean(description?.trim());
2987
+ useApplyWebClassName(containerRef, className);
2988
+ return /* @__PURE__ */ jsxRuntime.jsxs(
2989
+ reactNative.View,
2990
+ {
2991
+ ...rest,
2992
+ ref: setContainerRef,
2993
+ accessibilityRole: "text",
2994
+ accessibilityLabel: accessibilityLabel ?? (hasDescription ? `${title}. ${description}` : title),
2995
+ style: [styles11.root, style],
2996
+ children: [
2997
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles11.iconSlot, { backgroundColor: iconSlotBackgroundColor }], children: /* @__PURE__ */ jsxRuntime.jsx(Icon2, { ...iconProps, size: iconSize, color: iconProps?.color ?? colors.white }) }),
2998
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles11.textBlock, children: [
2999
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles11.title, children: title }),
3000
+ hasDescription ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles11.description, children: description }) : null
3001
+ ] })
3002
+ ]
3003
+ }
3004
+ );
3005
+ });
3006
+ var styles11 = reactNative.StyleSheet.create({
3007
+ root: {
3008
+ flexDirection: "row",
3009
+ alignItems: "center",
3010
+ alignSelf: "flex-start",
3011
+ gap: 16,
3012
+ padding: 12,
3013
+ borderRadius: 16,
3014
+ backgroundColor: colors.grey700
3015
+ },
3016
+ iconSlot: {
3017
+ width: ICON_SLOT,
3018
+ height: ICON_SLOT,
3019
+ padding: 8,
3020
+ borderRadius: 8,
3021
+ alignItems: "center",
3022
+ justifyContent: "center",
3023
+ flexShrink: 0
3024
+ },
3025
+ textBlock: {
3026
+ flexShrink: 1,
3027
+ minWidth: 0,
3028
+ flexDirection: "column",
3029
+ gap: 6
3030
+ },
3031
+ title: {
3032
+ fontFamily: fonts.sans,
3033
+ fontSize: 14,
3034
+ fontWeight: "500",
3035
+ lineHeight: 14,
3036
+ letterSpacing: 0,
3037
+ color: colors.white
3038
+ },
3039
+ description: {
3040
+ fontFamily: fonts.sans,
3041
+ fontSize: 12,
3042
+ fontWeight: "400",
3043
+ lineHeight: 12,
3044
+ letterSpacing: 0,
3045
+ color: colors.lightGrey
3046
+ }
3047
+ });
3048
+ var BADGE_SIZE = 42;
3049
+ var ROW_GAP = 12;
3050
+ var CONNECTOR_WIDTH = 2;
3051
+ var CONNECTOR_HEIGHT = 19;
3052
+ var CONNECTOR_GAP = 8;
3053
+ var webBlurStyle5 = reactNative.Platform.OS === "web" ? {
3054
+ backdropFilter: "blur(20px)",
3055
+ WebkitBackdropFilter: "blur(20px)"
3056
+ } : {};
3057
+ var StepList = react.forwardRef(function StepList2({ steps, style, className, accessibilityLabel, ...rest }, forwardedRef) {
3058
+ const containerRef = react.useRef(null);
3059
+ const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
3060
+ useApplyWebClassName(containerRef, className);
3061
+ if (steps.length === 0) {
3062
+ return null;
3063
+ }
3064
+ return /* @__PURE__ */ jsxRuntime.jsx(
3065
+ reactNative.View,
3066
+ {
3067
+ ...rest,
3068
+ ref: setContainerRef,
3069
+ accessibilityRole: "summary",
3070
+ accessibilityLabel,
3071
+ style: [styles12.root, style],
3072
+ children: steps.map((description, index) => {
3073
+ const isLast = index === steps.length - 1;
3074
+ const number = index + 1;
3075
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles12.stepBlock, children: [
3076
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles12.row, children: [
3077
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles12.badge, webBlurStyle5], children: /* @__PURE__ */ jsxRuntime.jsx(
3078
+ reactNative.Text,
3079
+ {
3080
+ style: [
3081
+ styles12.badgeLabel,
3082
+ reactNative.Platform.OS === "android" ? styles12.labelAndroid : null
3083
+ ],
3084
+ children: String(number)
3085
+ }
3086
+ ) }),
3087
+ /* @__PURE__ */ jsxRuntime.jsx(
3088
+ reactNative.Text,
3089
+ {
3090
+ style: [styles12.description, reactNative.Platform.OS === "android" ? styles12.labelAndroid : null],
3091
+ children: description
3092
+ }
3093
+ )
3094
+ ] }),
3095
+ !isLast ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles12.connectorSlot, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles12.connector }) }) : null
3096
+ ] }, `${number}-${description}`);
3097
+ })
2252
3098
  }
2253
3099
  );
2254
3100
  });
2255
- var styles6 = reactNative.StyleSheet.create({
2256
- base: {
3101
+ var styles12 = reactNative.StyleSheet.create({
3102
+ root: {
3103
+ width: "100%"
3104
+ },
3105
+ stepBlock: {
3106
+ width: "100%"
3107
+ },
3108
+ row: {
2257
3109
  flexDirection: "row",
2258
3110
  alignItems: "center",
2259
- alignSelf: "flex-start",
2260
- minHeight: 44,
2261
- paddingVertical: 12,
2262
- paddingHorizontal: 16,
2263
- gap: 12,
2264
- borderRadius: 79,
2265
- overflow: "hidden",
2266
- borderWidth: 0,
2267
- borderColor: "transparent",
2268
- borderStyle: "solid"
2269
- },
2270
- transparentBorder: {
2271
- borderWidth: 1,
2272
- borderColor: colors.whiteAlpha5,
2273
- borderStyle: "solid"
3111
+ gap: ROW_GAP,
3112
+ width: "100%"
2274
3113
  },
2275
- iconSlot: {
2276
- width: ICON_SIZE3,
2277
- height: ICON_SIZE3,
3114
+ badge: {
3115
+ width: BADGE_SIZE,
3116
+ height: BADGE_SIZE,
3117
+ borderRadius: 79,
3118
+ backgroundColor: colors.grey600,
2278
3119
  alignItems: "center",
2279
3120
  justifyContent: "center",
2280
- flexShrink: 0
3121
+ flexShrink: 0,
3122
+ overflow: "hidden"
2281
3123
  },
2282
- label: {
2283
- ...badgeTypography,
3124
+ badgeLabel: {
3125
+ fontFamily: fonts.sans,
3126
+ fontSize: 14,
3127
+ fontWeight: "500",
3128
+ lineHeight: 14,
3129
+ letterSpacing: 0,
3130
+ color: colors.white,
3131
+ textAlign: "center"
3132
+ },
3133
+ description: {
3134
+ flex: 1,
3135
+ minWidth: 0,
3136
+ fontFamily: fonts.sans,
3137
+ fontSize: 14,
3138
+ fontWeight: "400",
3139
+ lineHeight: 14,
3140
+ letterSpacing: 0,
2284
3141
  color: colors.white
2285
3142
  },
3143
+ connectorSlot: {
3144
+ width: BADGE_SIZE,
3145
+ alignItems: "center",
3146
+ paddingVertical: CONNECTOR_GAP
3147
+ },
3148
+ connector: {
3149
+ width: CONNECTOR_WIDTH,
3150
+ height: CONNECTOR_HEIGHT,
3151
+ borderRadius: 98,
3152
+ backgroundColor: colors.grey600
3153
+ },
2286
3154
  labelAndroid: {
2287
3155
  includeFontPadding: false
2288
3156
  }
2289
3157
  });
2290
3158
  var BUTTON_SIZE = 32;
2291
- var webBlurStyle3 = reactNative.Platform.OS === "web" ? {
3159
+ var webBlurStyle6 = reactNative.Platform.OS === "web" ? {
2292
3160
  backdropFilter: "blur(20px)",
2293
3161
  WebkitBackdropFilter: "blur(20px)"
2294
3162
  } : {};
@@ -2325,7 +3193,7 @@ var Counter = react.forwardRef(function Counter2({
2325
3193
  if (!isControlled) setUncontrolledValue(next);
2326
3194
  onValueChange?.(next);
2327
3195
  };
2328
- return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...rest, ref: setContainerRef, style: [styles7.base, style], children: [
3196
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...rest, ref: setContainerRef, style: [styles13.base, style], children: [
2329
3197
  /* @__PURE__ */ jsxRuntime.jsx(
2330
3198
  reactNative.Pressable,
2331
3199
  {
@@ -2335,11 +3203,11 @@ var Counter = react.forwardRef(function Counter2({
2335
3203
  accessibilityRole: "button",
2336
3204
  accessibilityLabel: "Decrease value",
2337
3205
  accessibilityState: { disabled: decrementDisabled },
2338
- style: [styles7.button, webBlurStyle3, decrementDisabled && styles7.buttonDisabled],
3206
+ style: [styles13.button, webBlurStyle6, decrementDisabled && styles13.buttonDisabled],
2339
3207
  children: /* @__PURE__ */ jsxRuntime.jsx(MinusIcon, {})
2340
3208
  }
2341
3209
  ),
2342
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles7.value, children: resolvedValue }),
3210
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles13.value, children: resolvedValue }),
2343
3211
  /* @__PURE__ */ jsxRuntime.jsx(
2344
3212
  reactNative.Pressable,
2345
3213
  {
@@ -2349,13 +3217,13 @@ var Counter = react.forwardRef(function Counter2({
2349
3217
  accessibilityRole: "button",
2350
3218
  accessibilityLabel: "Increase value",
2351
3219
  accessibilityState: { disabled: incrementDisabled },
2352
- style: [styles7.button, webBlurStyle3, incrementDisabled && styles7.buttonDisabled],
3220
+ style: [styles13.button, webBlurStyle6, incrementDisabled && styles13.buttonDisabled],
2353
3221
  children: /* @__PURE__ */ jsxRuntime.jsx(PlusIcon, {})
2354
3222
  }
2355
3223
  )
2356
3224
  ] });
2357
3225
  });
2358
- var styles7 = reactNative.StyleSheet.create({
3226
+ var styles13 = reactNative.StyleSheet.create({
2359
3227
  base: {
2360
3228
  flexDirection: "row",
2361
3229
  alignItems: "center",
@@ -2379,7 +3247,7 @@ var styles7 = reactNative.StyleSheet.create({
2379
3247
  color: colors.white
2380
3248
  }
2381
3249
  });
2382
- var ICON_SIZE4 = 20;
3250
+ var ICON_SIZE6 = 20;
2383
3251
  var ANIMATION_DURATION = 200;
2384
3252
  var OPTION_HORIZONTAL_PADDING = 16;
2385
3253
  var OPTION_CONTENT_GAP = 12;
@@ -2475,9 +3343,9 @@ var SegmentedToggle = react.forwardRef(
2475
3343
  onLayout?.(event);
2476
3344
  },
2477
3345
  style: [
2478
- styles8.base,
2479
- fullWidth ? styles8.fullWidth : styles8.contentWidth,
2480
- disabled && styles8.disabled,
3346
+ styles14.base,
3347
+ fullWidth ? styles14.fullWidth : styles14.contentWidth,
3348
+ disabled && styles14.disabled,
2481
3349
  style
2482
3350
  ],
2483
3351
  accessibilityRole: "radiogroup",
@@ -2498,10 +3366,10 @@ var SegmentedToggle = react.forwardRef(
2498
3366
  return nextWidths;
2499
3367
  });
2500
3368
  },
2501
- style: styles8.optionMeasurement,
3369
+ style: styles14.optionMeasurement,
2502
3370
  children: [
2503
- Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE4 }) : null,
2504
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles8.label, styles8.contentWidthLabel], children: label })
3371
+ Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE6 }) : null,
3372
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles14.label, styles14.contentWidthLabel], children: label })
2505
3373
  ]
2506
3374
  },
2507
3375
  `${optionValue}-measurement`
@@ -2511,7 +3379,7 @@ var SegmentedToggle = react.forwardRef(
2511
3379
  {
2512
3380
  pointerEvents: "none",
2513
3381
  style: [
2514
- styles8.activeIndicator,
3382
+ styles14.activeIndicator,
2515
3383
  { width: selectedOptionWidth, transform: [{ translateX: indicatorTranslateX }] }
2516
3384
  ]
2517
3385
  }
@@ -2531,18 +3399,18 @@ var SegmentedToggle = react.forwardRef(
2531
3399
  accessibilityLabel: label,
2532
3400
  accessibilityState: { selected, disabled },
2533
3401
  style: [
2534
- styles8.option,
2535
- fullWidth ? styles8.optionFullWidth : [styles8.optionContentWidth, optionWidth > 0 && { width: optionWidth }]
3402
+ styles14.option,
3403
+ fullWidth ? styles14.optionFullWidth : [styles14.optionContentWidth, optionWidth > 0 && { width: optionWidth }]
2536
3404
  ],
2537
- children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles8.optionContent, children: [
2538
- Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE4, color: iconColor }) : null,
3405
+ children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles14.optionContent, children: [
3406
+ Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE6, color: iconColor }) : null,
2539
3407
  /* @__PURE__ */ jsxRuntime.jsx(
2540
3408
  reactNative.Text,
2541
3409
  {
2542
3410
  numberOfLines: fullWidth ? 1 : void 0,
2543
3411
  style: [
2544
- styles8.label,
2545
- !fullWidth && styles8.contentWidthLabel,
3412
+ styles14.label,
3413
+ !fullWidth && styles14.contentWidthLabel,
2546
3414
  { color: labelColor }
2547
3415
  ],
2548
3416
  children: label
@@ -2558,7 +3426,7 @@ var SegmentedToggle = react.forwardRef(
2558
3426
  );
2559
3427
  }
2560
3428
  );
2561
- var styles8 = reactNative.StyleSheet.create({
3429
+ var styles14 = reactNative.StyleSheet.create({
2562
3430
  base: {
2563
3431
  height: 44,
2564
3432
  flexDirection: "row",
@@ -2624,11 +3492,11 @@ var styles8 = reactNative.StyleSheet.create({
2624
3492
  });
2625
3493
  var SIDEBAR_WIDTH = 300;
2626
3494
  var SIDEBAR_COLLAPSED_WIDTH = 72;
2627
- var HEADER_HEIGHT = 64;
3495
+ var HEADER_HEIGHT2 = 64;
2628
3496
  var LOGO_WIDTH = 31;
2629
3497
  var LOGO_HEIGHT = 44;
2630
3498
  var TOGGLE_SIZE = 20;
2631
- var MENU_ICON_SIZE = 16;
3499
+ var MENU_ICON_SIZE2 = 16;
2632
3500
  var PROFILE_SECTION_HEIGHT = 80;
2633
3501
  var SIDEBAR_TRANSITION_MS = 300;
2634
3502
  var Sidebar = react.forwardRef(function Sidebar2({
@@ -2643,6 +3511,7 @@ var Sidebar = react.forwardRef(function Sidebar2({
2643
3511
  collapsed: collapsedProp,
2644
3512
  defaultCollapsed = false,
2645
3513
  onCollapsedChange,
3514
+ showCollapseToggle = true,
2646
3515
  style,
2647
3516
  className,
2648
3517
  ...rest
@@ -2683,58 +3552,68 @@ var Sidebar = react.forwardRef(function Sidebar2({
2683
3552
  {
2684
3553
  ...rest,
2685
3554
  ref: setContainerRef,
2686
- style: [styles9.root, { width: widthAnim }, style],
3555
+ style: [styles15.root, { width: widthAnim }, style],
2687
3556
  accessibilityRole: "menu",
2688
3557
  children: [
2689
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles9.header, collapsed ? styles9.headerCollapsed : styles9.headerExpanded], children: [
2690
- /* @__PURE__ */ jsxRuntime.jsx(
2691
- reactNative.Animated.View,
2692
- {
2693
- pointerEvents: collapsed ? "none" : "auto",
2694
- style: [
2695
- styles9.logoSlot,
3558
+ /* @__PURE__ */ jsxRuntime.jsxs(
3559
+ reactNative.View,
3560
+ {
3561
+ style: [
3562
+ styles15.header,
3563
+ collapsed ? styles15.headerCollapsed : styles15.headerExpanded,
3564
+ !showCollapseToggle ? styles15.headerNoToggle : null
3565
+ ],
3566
+ children: [
3567
+ /* @__PURE__ */ jsxRuntime.jsx(
3568
+ reactNative.Animated.View,
2696
3569
  {
2697
- opacity: labelOpacity,
2698
- maxWidth: collapsed ? 0 : LOGO_WIDTH
3570
+ pointerEvents: collapsed ? "none" : "auto",
3571
+ style: [
3572
+ styles15.logoSlot,
3573
+ {
3574
+ opacity: labelOpacity,
3575
+ maxWidth: collapsed ? 0 : LOGO_WIDTH
3576
+ }
3577
+ ],
3578
+ accessibilityElementsHidden: collapsed,
3579
+ importantForAccessibility: collapsed ? "no-hide-descendants" : "auto",
3580
+ children: /* @__PURE__ */ jsxRuntime.jsx(
3581
+ BrandLogo,
3582
+ {
3583
+ accessibilityLabel: logoAccessibilityLabel,
3584
+ height: LOGO_HEIGHT,
3585
+ variant: "brand",
3586
+ width: LOGO_WIDTH
3587
+ }
3588
+ )
2699
3589
  }
2700
- ],
2701
- accessibilityElementsHidden: collapsed,
2702
- importantForAccessibility: collapsed ? "no-hide-descendants" : "auto",
2703
- children: /* @__PURE__ */ jsxRuntime.jsx(
2704
- BrandLogo,
3590
+ ),
3591
+ showCollapseToggle ? /* @__PURE__ */ jsxRuntime.jsx(
3592
+ reactNative.Pressable,
2705
3593
  {
2706
- accessibilityLabel: logoAccessibilityLabel,
2707
- height: LOGO_HEIGHT,
2708
- variant: "brand",
2709
- width: LOGO_WIDTH
3594
+ accessibilityRole: "button",
3595
+ accessibilityLabel: collapsed ? expandAccessibilityLabel : collapseAccessibilityLabel,
3596
+ accessibilityState: { expanded: !collapsed },
3597
+ hitSlop: 8,
3598
+ onPress: () => setCollapsed(!collapsed),
3599
+ style: styles15.toggleButton,
3600
+ children: /* @__PURE__ */ jsxRuntime.jsx(SidebarIcon, { color: colors.grey100, size: TOGGLE_SIZE, strokeWidth: 2 })
2710
3601
  }
2711
- )
2712
- }
2713
- ),
2714
- /* @__PURE__ */ jsxRuntime.jsx(
2715
- reactNative.Pressable,
2716
- {
2717
- accessibilityRole: "button",
2718
- accessibilityLabel: collapsed ? expandAccessibilityLabel : collapseAccessibilityLabel,
2719
- accessibilityState: { expanded: !collapsed },
2720
- hitSlop: 8,
2721
- onPress: () => setCollapsed(!collapsed),
2722
- style: styles9.toggleButton,
2723
- children: /* @__PURE__ */ jsxRuntime.jsx(SidebarIcon, { color: colors.grey100, size: TOGGLE_SIZE, strokeWidth: 2 })
2724
- }
2725
- )
2726
- ] }),
3602
+ ) : null
3603
+ ]
3604
+ }
3605
+ ),
2727
3606
  /* @__PURE__ */ jsxRuntime.jsx(
2728
3607
  reactNative.View,
2729
3608
  {
2730
3609
  accessibilityLabel: navigationAccessibilityLabel,
2731
3610
  accessibilityRole: "menu",
2732
- style: styles9.nav,
3611
+ style: styles15.nav,
2733
3612
  children: items.map((item) => {
2734
3613
  const isActive = Boolean(item.active);
2735
3614
  const iconColor = isActive ? colors.primary : colors.grey300;
2736
3615
  const Icon2 = item.icon;
2737
- const iconNode = /* @__PURE__ */ jsxRuntime.jsx(Icon2, { color: iconColor, size: MENU_ICON_SIZE, strokeWidth: 1.5 });
3616
+ const iconNode = /* @__PURE__ */ jsxRuntime.jsx(Icon2, { color: iconColor, size: MENU_ICON_SIZE2, strokeWidth: 1.5 });
2738
3617
  return /* @__PURE__ */ jsxRuntime.jsx(
2739
3618
  MenuItem,
2740
3619
  {
@@ -2745,18 +3624,18 @@ var Sidebar = react.forwardRef(function Sidebar2({
2745
3624
  hoverColor: colors.grey700,
2746
3625
  onPress: item.onPress,
2747
3626
  labelStyle: [
2748
- styles9.menuLabel,
3627
+ styles15.menuLabel,
2749
3628
  { color: isActive ? colors.white : colors.grey200 },
2750
- collapsed ? styles9.menuLabelCollapsed : styles9.menuLabelExpanded
3629
+ collapsed ? styles15.menuLabelCollapsed : styles15.menuLabelExpanded
2751
3630
  ],
2752
- style: [styles9.menuItem, collapsed ? styles9.menuItemCollapsed : null]
3631
+ style: [styles15.menuItem, collapsed ? styles15.menuItemCollapsed : null]
2753
3632
  },
2754
3633
  item.key
2755
3634
  );
2756
3635
  })
2757
3636
  }
2758
3637
  ),
2759
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles9.footer, collapsed ? styles9.footerCollapsed : styles9.footerExpanded], children: /* @__PURE__ */ jsxRuntime.jsx(
3638
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles15.footer, collapsed ? styles15.footerCollapsed : styles15.footerExpanded], children: /* @__PURE__ */ jsxRuntime.jsx(
2760
3639
  AvatarSimple,
2761
3640
  {
2762
3641
  name: user.name,
@@ -2771,7 +3650,7 @@ var Sidebar = react.forwardRef(function Sidebar2({
2771
3650
  }
2772
3651
  );
2773
3652
  });
2774
- var styles9 = reactNative.StyleSheet.create({
3653
+ var styles15 = reactNative.StyleSheet.create({
2775
3654
  root: {
2776
3655
  flexDirection: "column",
2777
3656
  alignSelf: "stretch",
@@ -2785,7 +3664,7 @@ var styles9 = reactNative.StyleSheet.create({
2785
3664
  },
2786
3665
  header: {
2787
3666
  zIndex: 1,
2788
- height: HEADER_HEIGHT,
3667
+ height: HEADER_HEIGHT2,
2789
3668
  width: "100%",
2790
3669
  flexDirection: "row",
2791
3670
  alignItems: "center",
@@ -2797,6 +3676,9 @@ var styles9 = reactNative.StyleSheet.create({
2797
3676
  justifyContent: "space-between",
2798
3677
  paddingHorizontal: 24
2799
3678
  },
3679
+ headerNoToggle: {
3680
+ justifyContent: "flex-start"
3681
+ },
2800
3682
  headerCollapsed: {
2801
3683
  justifyContent: "center",
2802
3684
  paddingHorizontal: 0
@@ -2873,7 +3755,7 @@ var defaultLanguageOptions = [
2873
3755
  ];
2874
3756
  var CONTROL_WIDTH = 90;
2875
3757
  var CONTROL_HEIGHT = 35;
2876
- var ICON_SIZE5 = 16;
3758
+ var ICON_SIZE7 = 16;
2877
3759
  var LanguageSwitcher = react.forwardRef(
2878
3760
  function LanguageSwitcher2({
2879
3761
  options = defaultLanguageOptions,
@@ -2953,7 +3835,7 @@ var LanguageSwitcher = react.forwardRef(
2953
3835
  {
2954
3836
  ...rest,
2955
3837
  ref: setWrapperRef,
2956
- style: [styles10.wrapper, isOpen && styles10.wrapperOpen, disabled && styles10.disabled, style],
3838
+ style: [styles16.wrapper, isOpen && styles16.wrapperOpen, disabled && styles16.disabled, style],
2957
3839
  children: [
2958
3840
  /* @__PURE__ */ jsxRuntime.jsxs(
2959
3841
  reactNative.Pressable,
@@ -2968,17 +3850,17 @@ var LanguageSwitcher = react.forwardRef(
2968
3850
  onHoverIn: () => setTriggerHovered(true),
2969
3851
  onHoverOut: () => setTriggerHovered(false),
2970
3852
  style: ({ pressed }) => [
2971
- styles10.trigger,
2972
- (triggerHovered || pressed || isOpen) && styles10.triggerActive
3853
+ styles16.trigger,
3854
+ (triggerHovered || pressed || isOpen) && styles16.triggerActive
2973
3855
  ],
2974
3856
  children: [
2975
- /* @__PURE__ */ jsxRuntime.jsx(GlobeIcon, { size: ICON_SIZE5, color: colors.white, strokeWidth: 2 }),
2976
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles10.triggerLabel, numberOfLines: 1, children: selectedOption?.label ?? "" }),
2977
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles10.chevron, isOpen && styles10.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { size: ICON_SIZE5, color: colors.white, strokeWidth: 2 }) })
3857
+ /* @__PURE__ */ jsxRuntime.jsx(GlobeIcon, { size: ICON_SIZE7, color: colors.white, strokeWidth: 2 }),
3858
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles16.triggerLabel, numberOfLines: 1, children: selectedOption?.label ?? "" }),
3859
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles16.chevron, isOpen && styles16.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { size: ICON_SIZE7, color: colors.white, strokeWidth: 2 }) })
2978
3860
  ]
2979
3861
  }
2980
3862
  ),
2981
- isOpen && options.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles10.menu, accessibilityRole: "menu", children: options.map((option) => {
3863
+ isOpen && options.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles16.menu, accessibilityRole: "menu", children: options.map((option) => {
2982
3864
  const selected = option.value === selectedValue;
2983
3865
  return /* @__PURE__ */ jsxRuntime.jsx(
2984
3866
  reactNative.Pressable,
@@ -2990,10 +3872,10 @@ var LanguageSwitcher = react.forwardRef(
2990
3872
  onHoverIn: () => setHoveredValue(option.value),
2991
3873
  onHoverOut: () => setHoveredValue(null),
2992
3874
  style: ({ pressed }) => [
2993
- styles10.item,
2994
- selected ? styles10.itemSelected : (hoveredValue === option.value || pressed) && styles10.itemHovered
3875
+ styles16.item,
3876
+ selected ? styles16.itemSelected : (hoveredValue === option.value || pressed) && styles16.itemHovered
2995
3877
  ],
2996
- children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles10.itemLabel, selected && styles10.itemLabelSelected], children: option.label })
3878
+ children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles16.itemLabel, selected && styles16.itemLabelSelected], children: option.label })
2997
3879
  },
2998
3880
  option.value
2999
3881
  );
@@ -3003,7 +3885,7 @@ var LanguageSwitcher = react.forwardRef(
3003
3885
  );
3004
3886
  }
3005
3887
  );
3006
- var styles10 = reactNative.StyleSheet.create({
3888
+ var styles16 = reactNative.StyleSheet.create({
3007
3889
  wrapper: {
3008
3890
  position: "relative",
3009
3891
  width: CONTROL_WIDTH,
@@ -3036,8 +3918,8 @@ var styles10 = reactNative.StyleSheet.create({
3036
3918
  color: colors.white
3037
3919
  },
3038
3920
  chevron: {
3039
- width: ICON_SIZE5,
3040
- height: ICON_SIZE5,
3921
+ width: ICON_SIZE7,
3922
+ height: ICON_SIZE7,
3041
3923
  flexShrink: 0,
3042
3924
  alignItems: "center",
3043
3925
  justifyContent: "center"
@@ -3079,12 +3961,12 @@ var styles10 = reactNative.StyleSheet.create({
3079
3961
  color: colors.primary
3080
3962
  }
3081
3963
  });
3082
- var ICON_SIZE6 = 25.63181;
3964
+ var ICON_SIZE8 = 25.63181;
3083
3965
  var StatCard = react.forwardRef(function StatCard2({
3084
3966
  label,
3085
3967
  icon: Icon2,
3086
3968
  iconProps,
3087
- iconSize = ICON_SIZE6,
3969
+ iconSize = ICON_SIZE8,
3088
3970
  style,
3089
3971
  className,
3090
3972
  accessibilityLabel,
@@ -3099,17 +3981,17 @@ var StatCard = react.forwardRef(function StatCard2({
3099
3981
  {
3100
3982
  ...rest,
3101
3983
  ref: setContainerRef,
3102
- style: [styles11.base, style],
3984
+ style: [styles17.base, style],
3103
3985
  accessibilityRole: "text",
3104
3986
  accessibilityLabel: accessibilityLabel ?? label,
3105
3987
  children: [
3106
3988
  /* @__PURE__ */ jsxRuntime.jsx(Icon2, { ...iconProps, size: iconSize, color: iconProps?.color ?? colors.white }),
3107
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles11.label, children: label })
3989
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.label, children: label })
3108
3990
  ]
3109
3991
  }
3110
3992
  );
3111
3993
  });
3112
- var styles11 = reactNative.StyleSheet.create({
3994
+ var styles17 = reactNative.StyleSheet.create({
3113
3995
  base: {
3114
3996
  width: 204.5,
3115
3997
  minHeight: 114,
@@ -3173,6 +4055,7 @@ var Button = react.forwardRef(
3173
4055
  size = "lg",
3174
4056
  showIcon = false,
3175
4057
  icon,
4058
+ iconBadgeBackgroundColor,
3176
4059
  style,
3177
4060
  textStyle,
3178
4061
  className,
@@ -3195,7 +4078,7 @@ var Button = react.forwardRef(
3195
4078
  useApplyWebClassName(textRef, textClassName);
3196
4079
  const iconNode = customIcon ?? /* @__PURE__ */ jsxRuntime.jsx(ArrowRightIcon, { size: metrics.iconSize, color: preset.iconColor });
3197
4080
  const containerStyle = [
3198
- styles12.base,
4081
+ styles18.base,
3199
4082
  {
3200
4083
  minHeight: metrics.minHeight,
3201
4084
  borderRadius: metrics.borderRadius,
@@ -3206,16 +4089,16 @@ var Button = react.forwardRef(
3206
4089
  paddingRight: hasIcon ? metrics.paddingRightWithIcon : metrics.paddingRight,
3207
4090
  gap: hasIcon ? metrics.gap : 0
3208
4091
  },
3209
- hasIcon ? styles12.contentWithIcon : styles12.contentWithoutIcon,
3210
- disabled && styles12.disabled,
4092
+ hasIcon ? styles18.contentWithIcon : styles18.contentWithoutIcon,
4093
+ disabled && styles18.disabled,
3211
4094
  style
3212
4095
  ];
3213
4096
  const labelStyle = [
3214
- styles12.label,
4097
+ styles18.label,
3215
4098
  metrics.text,
3216
4099
  { color: preset.textColor },
3217
- reactNative.Platform.OS === "android" ? styles12.labelAndroid : null,
3218
- !hasIcon && styles12.labelCentered,
4100
+ reactNative.Platform.OS === "android" ? styles18.labelAndroid : null,
4101
+ !hasIcon && styles18.labelCentered,
3219
4102
  textStyle
3220
4103
  ];
3221
4104
  return /* @__PURE__ */ jsxRuntime.jsxs(
@@ -3236,12 +4119,12 @@ var Button = react.forwardRef(
3236
4119
  reactNative.View,
3237
4120
  {
3238
4121
  style: [
3239
- styles12.iconContainer,
4122
+ styles18.iconContainer,
3240
4123
  {
3241
4124
  width: metrics.iconContainerSize,
3242
4125
  height: metrics.iconContainerSize,
3243
4126
  borderRadius: metrics.iconContainerSize / 2,
3244
- backgroundColor: preset.iconBadgeBackgroundColor
4127
+ backgroundColor: iconBadgeBackgroundColor ?? preset.iconBadgeBackgroundColor
3245
4128
  }
3246
4129
  ],
3247
4130
  children: iconNode
@@ -3252,7 +4135,7 @@ var Button = react.forwardRef(
3252
4135
  );
3253
4136
  }
3254
4137
  );
3255
- var styles12 = reactNative.StyleSheet.create({
4138
+ var styles18 = reactNative.StyleSheet.create({
3256
4139
  base: {
3257
4140
  flexDirection: "row",
3258
4141
  alignItems: "center",
@@ -3336,13 +4219,13 @@ var Checkbox = react.forwardRef(function Checkbox2({
3336
4219
  accessibilityRole: "checkbox",
3337
4220
  accessibilityLabel: resolvedAccessibilityLabel,
3338
4221
  accessibilityState: { checked: isActive, disabled },
3339
- style: [styles13.root, disabled && styles13.disabled, style],
4222
+ style: [styles19.root, disabled && styles19.disabled, style],
3340
4223
  children: [
3341
4224
  /* @__PURE__ */ jsxRuntime.jsx(
3342
4225
  reactNative.View,
3343
4226
  {
3344
4227
  style: [
3345
- styles13.box,
4228
+ styles19.box,
3346
4229
  {
3347
4230
  backgroundColor: chrome.backgroundColor,
3348
4231
  borderColor: chrome.borderColor
@@ -3351,12 +4234,12 @@ var Checkbox = react.forwardRef(function Checkbox2({
3351
4234
  children: isActive ? /* @__PURE__ */ jsxRuntime.jsx(CheckIcon, { size: CHECK_SIZE, color: colors.primary, strokeWidth: CHECK_STROKE }) : null
3352
4235
  }
3353
4236
  ),
3354
- labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles13.label, labelStyle], children: labelContent }) : labelContent : null
4237
+ labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles19.label, labelStyle], children: labelContent }) : labelContent : null
3355
4238
  ]
3356
4239
  }
3357
4240
  );
3358
4241
  });
3359
- var styles13 = reactNative.StyleSheet.create({
4242
+ var styles19 = reactNative.StyleSheet.create({
3360
4243
  root: {
3361
4244
  flexDirection: "row",
3362
4245
  alignItems: "center",
@@ -3415,6 +4298,24 @@ function formatDate(date) {
3415
4298
  const month = String(date.getMonth() + 1).padStart(2, "0");
3416
4299
  return `${day}.${month}.${date.getFullYear()}`;
3417
4300
  }
4301
+ function abbreviateMonthName(monthName, letterCount = 3) {
4302
+ const chars = Array.from(monthName);
4303
+ let visual = 0;
4304
+ let end = 0;
4305
+ while (end < chars.length && visual < letterCount) {
4306
+ if (chars[end] === "\u0578" && chars[end + 1] === "\u0582") {
4307
+ end += 2;
4308
+ } else {
4309
+ end += 1;
4310
+ }
4311
+ visual += 1;
4312
+ }
4313
+ return chars.slice(0, end).join("");
4314
+ }
4315
+ function formatDateDayShortMonth(date, monthNames, letterCount = 3) {
4316
+ const month = abbreviateMonthName(monthNames[date.getMonth()] ?? "", letterCount);
4317
+ return `${date.getDate()} ${month} ${date.getFullYear()}`;
4318
+ }
3418
4319
  function getMonthMatrix(monthDate, weekStartsOn = 1) {
3419
4320
  const year = monthDate.getFullYear();
3420
4321
  const month = monthDate.getMonth();
@@ -3455,7 +4356,7 @@ var RANGE_TRIGGER_WIDTH = 382;
3455
4356
  var TRIGGER_HEIGHT = 44;
3456
4357
  var TRIGGER_RADIUS = 60;
3457
4358
  var MENU_RADIUS2 = 20;
3458
- var ICON_SIZE7 = 20;
4359
+ var ICON_SIZE9 = 20;
3459
4360
  var NAV_ICON_SIZE = 20;
3460
4361
  var DAY_CELL_HEIGHT = 44;
3461
4362
  var DAY_CIRCLE_SIZE = 44;
@@ -3464,13 +4365,13 @@ function RangeTriggerField({
3464
4365
  value,
3465
4366
  time
3466
4367
  }) {
3467
- return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles14.rangeField, children: [
3468
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles14.rangeLabel, children: label }),
3469
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles14.rangeValueRow, children: [
3470
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles14.rangeDate, children: value }),
3471
- time ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles14.rangeTimeWrap, children: [
4368
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles20.rangeField, children: [
4369
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles20.rangeLabel, children: label }),
4370
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles20.rangeValueRow, children: [
4371
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles20.rangeDate, children: value }),
4372
+ time ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles20.rangeTimeWrap, children: [
3472
4373
  /* @__PURE__ */ jsxRuntime.jsx(ClockFilledIcon, { color: colors.lightGrey, size: 16 }),
3473
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles14.rangeTime, children: time })
4374
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles20.rangeTime, children: time })
3474
4375
  ] }) : null
3475
4376
  ] })
3476
4377
  ] });
@@ -3496,9 +4397,10 @@ var DatePicker = react.forwardRef(
3496
4397
  defaultVisibleMonth,
3497
4398
  monthNames = DEFAULT_MONTH_NAMES,
3498
4399
  weekdayLabels = DEFAULT_WEEKDAY_LABELS,
3499
- formatValue = formatDate,
4400
+ formatValue: formatValueProp,
3500
4401
  weekStartsOn = 1,
3501
4402
  calendarStyle,
4403
+ hideTrigger = false,
3502
4404
  style,
3503
4405
  className,
3504
4406
  accessibilityLabel,
@@ -3511,6 +4413,8 @@ var DatePicker = react.forwardRef(
3511
4413
  ...rest
3512
4414
  } = props;
3513
4415
  const isRange = props.range === true;
4416
+ const usesRangeTrigger = isRange && variant !== "default";
4417
+ const formatValue = formatValueProp ?? (usesRangeTrigger ? (date) => formatDateDayShortMonth(date, monthNames) : formatDate);
3514
4418
  const valueProp = props.value;
3515
4419
  const rootRef = react.useRef(null);
3516
4420
  const triggerRef = react.useRef(null);
@@ -3525,9 +4429,16 @@ var DatePicker = react.forwardRef(
3525
4429
  );
3526
4430
  const [uncontrolledOpen, setUncontrolledOpen] = react.useState(defaultOpen);
3527
4431
  const [hoveredDayKey, setHoveredDayKey] = react.useState(null);
4432
+ const [menuAlignEnd, setMenuAlignEnd] = react.useState(false);
3528
4433
  const rangeValue = isRange ? isValueControlled ? valueProp ?? EMPTY_RANGE : uncontrolledRange : EMPTY_RANGE;
3529
4434
  const singleValue = !isRange ? isValueControlled ? valueProp ?? null : uncontrolledSingle : null;
3530
4435
  const isOpen = isOpenControlled ? openProp : uncontrolledOpen;
4436
+ const defaultMenuWidth = usesRangeTrigger ? RANGE_TRIGGER_WIDTH : DEFAULT_WIDTH;
4437
+ const resolvedMenuWidth = react.useMemo(() => {
4438
+ const flat = reactNative.StyleSheet.flatten(calendarStyle);
4439
+ const width = flat?.width;
4440
+ return typeof width === "number" ? width : defaultMenuWidth;
4441
+ }, [calendarStyle, defaultMenuWidth]);
3531
4442
  const [visibleMonth, setVisibleMonth] = react.useState(() => {
3532
4443
  const anchor = defaultVisibleMonth ?? (isRange ? rangeValue.start : singleValue) ?? /* @__PURE__ */ new Date();
3533
4444
  return new Date(anchor.getFullYear(), anchor.getMonth(), 1);
@@ -3542,10 +4453,25 @@ var DatePicker = react.forwardRef(
3542
4453
  setVisibleMonth(new Date(anchor.getFullYear(), anchor.getMonth(), 1));
3543
4454
  } else {
3544
4455
  setHoveredDayKey(null);
4456
+ setMenuAlignEnd(false);
3545
4457
  }
3546
4458
  },
3547
4459
  [isOpenControlled, isRange, onOpenChange, rangeValue.start, singleValue]
3548
4460
  );
4461
+ react.useLayoutEffect(() => {
4462
+ if (reactNative.Platform.OS !== "web" || !isOpen || hideTrigger) return;
4463
+ const updateMenuAlign = () => {
4464
+ const trigger = triggerRef.current;
4465
+ const rect = trigger?.getBoundingClientRect?.();
4466
+ if (!rect) return;
4467
+ const viewportPadding = 8;
4468
+ const overflowsRight = rect.left + resolvedMenuWidth > window.innerWidth - viewportPadding;
4469
+ setMenuAlignEnd(overflowsRight);
4470
+ };
4471
+ updateMenuAlign();
4472
+ window.addEventListener("resize", updateMenuAlign);
4473
+ return () => window.removeEventListener("resize", updateMenuAlign);
4474
+ }, [hideTrigger, isOpen, resolvedMenuWidth]);
3549
4475
  react.useEffect(() => {
3550
4476
  if (reactNative.Platform.OS !== "web" || !isOpen) return;
3551
4477
  const handlePointerDown = (event) => {
@@ -3623,7 +4549,6 @@ var DatePicker = react.forwardRef(
3623
4549
  const today = react.useMemo(() => startOfDay(/* @__PURE__ */ new Date()), []);
3624
4550
  const hasValue = isRange ? rangeValue.start != null : singleValue != null;
3625
4551
  const triggerLabel = isRange ? rangeValue.start && rangeValue.end ? `${formatValue(rangeValue.start)} - ${formatValue(rangeValue.end)}` : rangeValue.start ? `${formatValue(rangeValue.start)} - ...` : placeholder : singleValue ? formatValue(singleValue) : placeholder;
3626
- const usesRangeTrigger = isRange && variant !== "default";
3627
4552
  const usesVerticalRangeTrigger = usesRangeTrigger && variant === "range-vertical";
3628
4553
  const triggerBorderColor = usesRangeTrigger ? isOpen ? colors.primary : colors.grey500 : isOpen ? colors.primaryMuted : colors.grey700;
3629
4554
  const triggerTextColor = hasValue ? colors.white : colors.grey100;
@@ -3636,15 +4561,16 @@ var DatePicker = react.forwardRef(
3636
4561
  ...rest,
3637
4562
  ref: setRootRef,
3638
4563
  style: [
3639
- styles14.root,
3640
- usesRangeTrigger && styles14.rangeRoot,
3641
- isOpen && styles14.rootOpen,
3642
- disabled && styles14.disabled,
4564
+ styles20.root,
4565
+ usesRangeTrigger && styles20.rangeRoot,
4566
+ hideTrigger && styles20.rootHideTrigger,
4567
+ isOpen && styles20.rootOpen,
4568
+ disabled && styles20.disabled,
3643
4569
  style
3644
4570
  ],
3645
4571
  accessibilityState: { disabled, expanded: isOpen },
3646
- children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles14.triggerWrap, isOpen && styles14.triggerWrapOpen], children: [
3647
- /* @__PURE__ */ jsxRuntime.jsx(
4572
+ children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles20.triggerWrap, isOpen && styles20.triggerWrapOpen], children: [
4573
+ hideTrigger ? null : /* @__PURE__ */ jsxRuntime.jsx(
3648
4574
  reactNative.Pressable,
3649
4575
  {
3650
4576
  ref: triggerRef,
@@ -3654,9 +4580,9 @@ var DatePicker = react.forwardRef(
3654
4580
  accessibilityLabel: resolvedAccessibilityLabel,
3655
4581
  accessibilityState: { disabled, expanded: isOpen },
3656
4582
  style: [
3657
- styles14.trigger,
3658
- usesRangeTrigger && styles14.rangeTrigger,
3659
- usesRangeTrigger && (usesVerticalRangeTrigger ? styles14.rangeTriggerVertical : styles14.rangeTriggerHorizontal),
4583
+ styles20.trigger,
4584
+ usesRangeTrigger && styles20.rangeTrigger,
4585
+ usesRangeTrigger && (usesVerticalRangeTrigger ? styles20.rangeTriggerVertical : styles20.rangeTriggerHorizontal),
3660
4586
  {
3661
4587
  borderColor: triggerBorderColor,
3662
4588
  backgroundColor: usesRangeTrigger ? "transparent" : colors.grey700
@@ -3667,156 +4593,171 @@ var DatePicker = react.forwardRef(
3667
4593
  /* @__PURE__ */ jsxRuntime.jsx(
3668
4594
  reactNative.View,
3669
4595
  {
3670
- style: usesVerticalRangeTrigger ? styles14.rangeDividerVertical : styles14.rangeDividerHorizontal
4596
+ style: usesVerticalRangeTrigger ? styles20.rangeDividerVertical : styles20.rangeDividerHorizontal
3671
4597
  }
3672
4598
  ),
3673
4599
  /* @__PURE__ */ jsxRuntime.jsx(RangeTriggerField, { label: endLabel, time: endTime, value: endValue })
3674
4600
  ] }) : /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
3675
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles14.triggerText, { color: triggerTextColor }], numberOfLines: 1, children: triggerLabel }),
3676
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles14.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(CalendarOutlineIcon, { size: ICON_SIZE7, color: colors.grey100 }) })
4601
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles20.triggerText, { color: triggerTextColor }], numberOfLines: 1, children: triggerLabel }),
4602
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles20.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(CalendarOutlineIcon, { size: ICON_SIZE9, color: colors.grey100 }) })
3677
4603
  ] })
3678
4604
  }
3679
4605
  ),
3680
- isOpen ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles14.menu, usesRangeTrigger && styles14.rangeMenu, calendarStyle], children: [
3681
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles14.calendarHeader, children: [
3682
- /* @__PURE__ */ jsxRuntime.jsx(
3683
- reactNative.Pressable,
3684
- {
3685
- onPress: handlePrevMonth,
3686
- hitSlop: 8,
3687
- accessibilityRole: "button",
3688
- accessibilityLabel: "Previous month",
3689
- style: styles14.navButton,
3690
- children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: NAV_ICON_SIZE, color: colors.white })
3691
- }
3692
- ),
3693
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.Text, { style: styles14.monthHeading, children: [
3694
- monthNames[visibleMonth.getMonth()],
3695
- " ",
3696
- visibleMonth.getFullYear()
3697
- ] }),
3698
- /* @__PURE__ */ jsxRuntime.jsx(
3699
- reactNative.Pressable,
3700
- {
3701
- onPress: handleNextMonth,
3702
- hitSlop: 8,
3703
- accessibilityRole: "button",
3704
- accessibilityLabel: "Next month",
3705
- style: styles14.navButton,
3706
- children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles14.navIconMirror, children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: NAV_ICON_SIZE, color: colors.white }) })
3707
- }
3708
- )
3709
- ] }),
3710
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { children: [
3711
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles14.weekdayRow, children: weekdayLabels.map((weekdayLabel, index) => /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles14.dayCellWrap, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles14.weekdayText, children: weekdayLabel }) }, `${weekdayLabel}-${index}`)) }),
3712
- weeks.map((week, weekIndex) => {
3713
- let rangeHighlightStyle = null;
3714
- if (isRange && rangeValue.start && rangeValue.end) {
3715
- const rangeIndices = week.reduce((acc, day, index) => {
3716
- if (isWithinRange(day, rangeValue.start, rangeValue.end)) {
3717
- acc.push(index);
3718
- }
3719
- return acc;
3720
- }, []);
3721
- if (rangeIndices.length > 0) {
3722
- const first = rangeIndices[0];
3723
- const last = rangeIndices[rangeIndices.length - 1];
3724
- const startsHere = isSameDay(week[first], rangeValue.start);
3725
- const endsHere = isSameDay(week[last], rangeValue.end);
3726
- const cellPct = 100 / 7;
3727
- const halfCellPct = cellPct / 2;
3728
- let leftPct = first * cellPct;
3729
- let widthPct = (last - first + 1) * cellPct;
3730
- if (startsHere) {
3731
- leftPct += halfCellPct;
3732
- widthPct -= halfCellPct;
3733
- }
3734
- if (endsHere) {
3735
- widthPct -= halfCellPct;
4606
+ isOpen ? /* @__PURE__ */ jsxRuntime.jsxs(
4607
+ reactNative.View,
4608
+ {
4609
+ style: [
4610
+ styles20.menu,
4611
+ usesRangeTrigger && styles20.rangeMenu,
4612
+ hideTrigger ? styles20.menuInline : menuAlignEnd ? styles20.menuAlignEnd : styles20.menuAlignStart,
4613
+ calendarStyle
4614
+ ],
4615
+ children: [
4616
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles20.calendarHeader, children: [
4617
+ /* @__PURE__ */ jsxRuntime.jsx(
4618
+ reactNative.Pressable,
4619
+ {
4620
+ onPress: handlePrevMonth,
4621
+ hitSlop: 8,
4622
+ accessibilityRole: "button",
4623
+ accessibilityLabel: "Previous month",
4624
+ style: styles20.navButton,
4625
+ children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: NAV_ICON_SIZE, color: colors.white })
3736
4626
  }
3737
- if (widthPct > 0) {
3738
- rangeHighlightStyle = {
3739
- left: `${leftPct}%`,
3740
- width: `${widthPct}%`
3741
- };
4627
+ ),
4628
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.Text, { style: styles20.monthHeading, children: [
4629
+ monthNames[visibleMonth.getMonth()],
4630
+ " ",
4631
+ visibleMonth.getFullYear()
4632
+ ] }),
4633
+ /* @__PURE__ */ jsxRuntime.jsx(
4634
+ reactNative.Pressable,
4635
+ {
4636
+ onPress: handleNextMonth,
4637
+ hitSlop: 8,
4638
+ accessibilityRole: "button",
4639
+ accessibilityLabel: "Next month",
4640
+ style: styles20.navButton,
4641
+ children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles20.navIconMirror, children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: NAV_ICON_SIZE, color: colors.white }) })
3742
4642
  }
3743
- }
3744
- }
3745
- return /* @__PURE__ */ jsxRuntime.jsxs(
3746
- reactNative.View,
3747
- {
3748
- style: [styles14.weekRow, weekIndex > 0 && styles14.weekRowSpaced],
3749
- children: [
3750
- rangeHighlightStyle ? /* @__PURE__ */ jsxRuntime.jsx(
3751
- reactNative.View,
3752
- {
3753
- pointerEvents: "none",
3754
- style: [styles14.rangeHighlight, rangeHighlightStyle]
4643
+ )
4644
+ ] }),
4645
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { children: [
4646
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles20.weekdayRow, children: weekdayLabels.map((weekdayLabel, index) => /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles20.dayCellWrap, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles20.weekdayText, children: weekdayLabel }) }, `${weekdayLabel}-${index}`)) }),
4647
+ weeks.map((week, weekIndex) => {
4648
+ let rangeHighlightStyle = null;
4649
+ if (isRange && rangeValue.start && rangeValue.end) {
4650
+ const rangeIndices = week.reduce((acc, day, index) => {
4651
+ if (isWithinRange(day, rangeValue.start, rangeValue.end)) {
4652
+ acc.push(index);
3755
4653
  }
3756
- ) : null,
3757
- week.map((day, dayIndex) => {
3758
- const inCurrentMonth = isSameMonth(day, visibleMonth);
3759
- const isToday = isSameDay(day, today);
3760
- const isSelectedSingle = !isRange && isSameDay(day, singleValue);
3761
- const isRangeStart = isRange && isSameDay(day, rangeValue.start);
3762
- const isRangeEnd = isRange && isSameDay(day, rangeValue.end);
3763
- const isSelectedEndpoint = isSelectedSingle || isRangeStart || isRangeEnd;
3764
- const dayDisabled = disabled || isDateDisabled(day, minDate, maxDate);
3765
- const dayKey = startOfDay(day).getTime();
3766
- const isHovered = !dayDisabled && !isSelectedEndpoint && hoveredDayKey === dayKey;
3767
- const dayTextColor = isSelectedEndpoint ? colors.white : dayDisabled ? colors.grey400 : isToday ? colors.primary : !inCurrentMonth ? colors.grey300 : colors.white;
3768
- return /* @__PURE__ */ jsxRuntime.jsxs(
3769
- reactNative.Pressable,
3770
- {
3771
- onPress: () => handleDayPress(day),
3772
- disabled: dayDisabled,
3773
- onHoverIn: () => setHoveredDayKey(dayKey),
3774
- onHoverOut: () => setHoveredDayKey((current) => current === dayKey ? null : current),
3775
- onPressIn: () => setHoveredDayKey(dayKey),
3776
- onPressOut: () => setHoveredDayKey((current) => current === dayKey ? null : current),
3777
- style: styles14.dayCellWrap,
3778
- accessibilityRole: "button",
3779
- accessibilityLabel: formatValue(day),
3780
- accessibilityState: {
3781
- disabled: dayDisabled,
3782
- selected: isSelectedEndpoint
3783
- },
3784
- children: [
3785
- /* @__PURE__ */ jsxRuntime.jsx(
3786
- reactNative.View,
3787
- {
3788
- style: [
3789
- styles14.dayCircle,
3790
- isSelectedEndpoint && styles14.dayCircleSelected,
3791
- isHovered && styles14.dayCircleHovered
3792
- ],
3793
- children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles14.dayText, { color: dayTextColor }], children: day.getDate() })
3794
- }
3795
- ),
3796
- isToday && !isSelectedEndpoint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles14.todayDot }) : null
3797
- ]
3798
- },
3799
- dayIndex
3800
- );
3801
- })
3802
- ]
3803
- },
3804
- weekIndex
3805
- );
3806
- })
3807
- ] })
3808
- ] }) : null
4654
+ return acc;
4655
+ }, []);
4656
+ if (rangeIndices.length > 0) {
4657
+ const first = rangeIndices[0];
4658
+ const last = rangeIndices[rangeIndices.length - 1];
4659
+ const startsHere = isSameDay(week[first], rangeValue.start);
4660
+ const endsHere = isSameDay(week[last], rangeValue.end);
4661
+ const cellPct = 100 / 7;
4662
+ const halfCellPct = cellPct / 2;
4663
+ let leftPct = first * cellPct;
4664
+ let widthPct = (last - first + 1) * cellPct;
4665
+ if (startsHere) {
4666
+ leftPct += halfCellPct;
4667
+ widthPct -= halfCellPct;
4668
+ }
4669
+ if (endsHere) {
4670
+ widthPct -= halfCellPct;
4671
+ }
4672
+ if (widthPct > 0) {
4673
+ rangeHighlightStyle = {
4674
+ left: `${leftPct}%`,
4675
+ width: `${widthPct}%`
4676
+ };
4677
+ }
4678
+ }
4679
+ }
4680
+ return /* @__PURE__ */ jsxRuntime.jsxs(
4681
+ reactNative.View,
4682
+ {
4683
+ style: [styles20.weekRow, weekIndex > 0 && styles20.weekRowSpaced],
4684
+ children: [
4685
+ rangeHighlightStyle ? /* @__PURE__ */ jsxRuntime.jsx(
4686
+ reactNative.View,
4687
+ {
4688
+ pointerEvents: "none",
4689
+ style: [styles20.rangeHighlight, rangeHighlightStyle]
4690
+ }
4691
+ ) : null,
4692
+ week.map((day, dayIndex) => {
4693
+ const inCurrentMonth = isSameMonth(day, visibleMonth);
4694
+ const isToday = isSameDay(day, today);
4695
+ const isSelectedSingle = !isRange && isSameDay(day, singleValue);
4696
+ const isRangeStart = isRange && isSameDay(day, rangeValue.start);
4697
+ const isRangeEnd = isRange && isSameDay(day, rangeValue.end);
4698
+ const isSelectedEndpoint = isSelectedSingle || isRangeStart || isRangeEnd;
4699
+ const dayDisabled = disabled || isDateDisabled(day, minDate, maxDate);
4700
+ const dayKey = startOfDay(day).getTime();
4701
+ const isHovered = !dayDisabled && !isSelectedEndpoint && hoveredDayKey === dayKey;
4702
+ const dayTextColor = isSelectedEndpoint ? colors.white : dayDisabled ? colors.grey400 : isToday ? colors.primary : !inCurrentMonth ? colors.grey300 : colors.white;
4703
+ return /* @__PURE__ */ jsxRuntime.jsxs(
4704
+ reactNative.Pressable,
4705
+ {
4706
+ onPress: () => handleDayPress(day),
4707
+ disabled: dayDisabled,
4708
+ onHoverIn: () => setHoveredDayKey(dayKey),
4709
+ onHoverOut: () => setHoveredDayKey((current) => current === dayKey ? null : current),
4710
+ onPressIn: () => setHoveredDayKey(dayKey),
4711
+ onPressOut: () => setHoveredDayKey((current) => current === dayKey ? null : current),
4712
+ style: styles20.dayCellWrap,
4713
+ accessibilityRole: "button",
4714
+ accessibilityLabel: formatValue(day),
4715
+ accessibilityState: {
4716
+ disabled: dayDisabled,
4717
+ selected: isSelectedEndpoint
4718
+ },
4719
+ children: [
4720
+ /* @__PURE__ */ jsxRuntime.jsx(
4721
+ reactNative.View,
4722
+ {
4723
+ style: [
4724
+ styles20.dayCircle,
4725
+ isSelectedEndpoint && styles20.dayCircleSelected,
4726
+ isHovered && styles20.dayCircleHovered
4727
+ ],
4728
+ children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles20.dayText, { color: dayTextColor }], children: day.getDate() })
4729
+ }
4730
+ ),
4731
+ isToday && !isSelectedEndpoint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles20.todayDot }) : null
4732
+ ]
4733
+ },
4734
+ dayIndex
4735
+ );
4736
+ })
4737
+ ]
4738
+ },
4739
+ weekIndex
4740
+ );
4741
+ })
4742
+ ] })
4743
+ ]
4744
+ }
4745
+ ) : null
3809
4746
  ] })
3810
4747
  }
3811
4748
  );
3812
4749
  }
3813
4750
  );
3814
- var styles14 = reactNative.StyleSheet.create({
4751
+ var styles20 = reactNative.StyleSheet.create({
3815
4752
  root: {
3816
4753
  width: DEFAULT_WIDTH,
3817
4754
  gap: 8,
3818
4755
  alignSelf: "flex-start"
3819
4756
  },
4757
+ rootHideTrigger: {
4758
+ width: "auto",
4759
+ gap: 0
4760
+ },
3820
4761
  rootOpen: {
3821
4762
  zIndex: 30
3822
4763
  },
@@ -3870,7 +4811,7 @@ var styles14 = reactNative.StyleSheet.create({
3870
4811
  justifyContent: "center",
3871
4812
  gap: 8,
3872
4813
  paddingVertical: 12,
3873
- paddingHorizontal: 16
4814
+ paddingHorizontal: 12
3874
4815
  },
3875
4816
  rangeLabel: {
3876
4817
  ...datePickerTypography.rangeLabel,
@@ -3880,13 +4821,16 @@ var styles14 = reactNative.StyleSheet.create({
3880
4821
  minWidth: 0,
3881
4822
  flexDirection: "row",
3882
4823
  alignItems: "center",
3883
- justifyContent: "space-between",
3884
- gap: 12
4824
+ justifyContent: "flex-start",
4825
+ flexWrap: "nowrap",
4826
+ gap: 10
3885
4827
  },
3886
4828
  rangeDate: {
3887
4829
  ...datePickerTypography.rangeDate,
3888
- flexShrink: 1,
3889
- color: colors.white
4830
+ flexShrink: 0,
4831
+ color: colors.white,
4832
+ // @ts-expect-error RN Web — keep the full date on one line
4833
+ whiteSpace: "nowrap"
3890
4834
  },
3891
4835
  rangeTimeWrap: {
3892
4836
  flexShrink: 0,
@@ -3909,8 +4853,8 @@ var styles14 = reactNative.StyleSheet.create({
3909
4853
  backgroundColor: colors.grey500
3910
4854
  },
3911
4855
  iconSlot: {
3912
- width: ICON_SIZE7,
3913
- height: ICON_SIZE7,
4856
+ width: ICON_SIZE9,
4857
+ height: ICON_SIZE9,
3914
4858
  alignItems: "center",
3915
4859
  justifyContent: "center",
3916
4860
  flexShrink: 0
@@ -3918,7 +4862,6 @@ var styles14 = reactNative.StyleSheet.create({
3918
4862
  menu: {
3919
4863
  position: "absolute",
3920
4864
  top: "100%",
3921
- left: 0,
3922
4865
  width: DEFAULT_WIDTH,
3923
4866
  marginTop: 8,
3924
4867
  zIndex: 10,
@@ -3935,6 +4878,21 @@ var styles14 = reactNative.StyleSheet.create({
3935
4878
  }
3936
4879
  })
3937
4880
  },
4881
+ menuAlignStart: {
4882
+ left: 0,
4883
+ right: "auto"
4884
+ },
4885
+ menuAlignEnd: {
4886
+ left: "auto",
4887
+ right: 0
4888
+ },
4889
+ menuInline: {
4890
+ position: "relative",
4891
+ top: "auto",
4892
+ left: "auto",
4893
+ right: "auto",
4894
+ marginTop: 0
4895
+ },
3938
4896
  rangeMenu: {
3939
4897
  width: RANGE_TRIGGER_WIDTH
3940
4898
  },
@@ -4012,6 +4970,46 @@ var styles14 = reactNative.StyleSheet.create({
4012
4970
  backgroundColor: colors.primary
4013
4971
  }
4014
4972
  });
4973
+ var SIZE = 48;
4974
+ var PADDING = 12;
4975
+ var ICON_SIZE10 = 24;
4976
+ var RADIUS = 64;
4977
+ var FloatingActionButton = react.forwardRef(function FloatingActionButton2({ onPress, disabled = false, icon, accessibilityLabel = "Add", style, className, ...rest }, forwardedRef) {
4978
+ const containerRef = react.useRef(null);
4979
+ const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
4980
+ const resolvedClassName = className?.trim() || void 0;
4981
+ useApplyWebClassName(containerRef, resolvedClassName);
4982
+ return /* @__PURE__ */ jsxRuntime.jsx(
4983
+ reactNative.TouchableOpacity,
4984
+ {
4985
+ ...rest,
4986
+ ref: setContainerRef,
4987
+ onPress,
4988
+ disabled,
4989
+ activeOpacity: 0.7,
4990
+ accessibilityRole: "button",
4991
+ accessibilityLabel,
4992
+ accessibilityState: { disabled },
4993
+ style: [styles21.base, disabled && styles21.disabled, style],
4994
+ children: icon ?? /* @__PURE__ */ jsxRuntime.jsx(PlusIcon, { color: colors.white, size: ICON_SIZE10, strokeWidth: 2 })
4995
+ }
4996
+ );
4997
+ });
4998
+ var styles21 = reactNative.StyleSheet.create({
4999
+ base: {
5000
+ width: SIZE,
5001
+ height: SIZE,
5002
+ padding: PADDING,
5003
+ borderRadius: RADIUS,
5004
+ backgroundColor: colors.primary,
5005
+ alignItems: "center",
5006
+ justifyContent: "center",
5007
+ gap: 10
5008
+ },
5009
+ disabled: {
5010
+ opacity: 0.6
5011
+ }
5012
+ });
4015
5013
  function renderStatefulIcon(icon, FallbackIcon, props) {
4016
5014
  if (icon == null) {
4017
5015
  return /* @__PURE__ */ jsxRuntime.jsx(FallbackIcon, { ...props });
@@ -4155,13 +5153,13 @@ var Input = react.forwardRef(function Input2({
4155
5153
  });
4156
5154
  useApplyWebClassName(rootRef, className);
4157
5155
  useApplyWebClassName(inputRef, inputClassName);
4158
- return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [styles15.root, disabled && styles15.disabled, style], children: [
4159
- showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles15.label, { color: chrome.labelColor }], children: label }) : null,
5156
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [styles22.root, disabled && styles22.disabled, style], children: [
5157
+ showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles22.label, { color: chrome.labelColor }], children: label }) : null,
4160
5158
  /* @__PURE__ */ jsxRuntime.jsxs(
4161
5159
  reactNative.View,
4162
5160
  {
4163
5161
  style: [
4164
- styles15.field,
5162
+ styles22.field,
4165
5163
  {
4166
5164
  height: metrics.height,
4167
5165
  borderRadius: metrics.borderRadius,
@@ -4176,7 +5174,7 @@ var Input = react.forwardRef(function Input2({
4176
5174
  fieldStyle
4177
5175
  ],
4178
5176
  children: [
4179
- hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles15.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }], children: leftIconNode }) : null,
5177
+ hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles22.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }], children: leftIconNode }) : null,
4180
5178
  /* @__PURE__ */ jsxRuntime.jsx(
4181
5179
  reactNative.TextInput,
4182
5180
  {
@@ -4200,11 +5198,11 @@ var Input = react.forwardRef(function Input2({
4200
5198
  onBlur?.(event);
4201
5199
  },
4202
5200
  style: [
4203
- styles15.input,
5201
+ styles22.input,
4204
5202
  metrics.text,
4205
5203
  { color: chrome.textColor },
4206
- reactNative.Platform.OS === "web" ? styles15.inputWeb : null,
4207
- reactNative.Platform.OS === "android" ? styles15.inputAndroid : null,
5204
+ reactNative.Platform.OS === "web" ? styles22.inputWeb : null,
5205
+ reactNative.Platform.OS === "android" ? styles22.inputAndroid : null,
4208
5206
  inputStyle
4209
5207
  ],
4210
5208
  accessibilityLabel: resolvedAccessibilityLabel,
@@ -4216,20 +5214,20 @@ var Input = react.forwardRef(function Input2({
4216
5214
  {
4217
5215
  onPress: onRightIconPress,
4218
5216
  disabled,
4219
- style: [styles15.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }],
5217
+ style: [styles22.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }],
4220
5218
  accessibilityRole: "button",
4221
5219
  accessibilityLabel: rightIconAccessibilityLabel,
4222
5220
  hitSlop: 8,
4223
5221
  children: rightIconNode
4224
5222
  }
4225
- ) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles15.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }], children: rightIconNode }) : null
5223
+ ) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles22.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }], children: rightIconNode }) : null
4226
5224
  ]
4227
5225
  }
4228
5226
  ),
4229
- showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles15.hint, { color: chrome.hintColor }], children: hint }) : null
5227
+ showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles22.hint, { color: chrome.hintColor }], children: hint }) : null
4230
5228
  ] });
4231
5229
  });
4232
- var styles15 = reactNative.StyleSheet.create({
5230
+ var styles22 = reactNative.StyleSheet.create({
4233
5231
  root: {
4234
5232
  width: DEFAULT_WIDTH2,
4235
5233
  gap: 8,
@@ -4387,9 +5385,9 @@ var VerificationCodeInput = react.forwardRef(function VerificationCodeInput2({
4387
5385
  ...viewProps,
4388
5386
  ref: rootRef,
4389
5387
  style: [
4390
- styles16.root,
5388
+ styles23.root,
4391
5389
  { width: rootWidth, maxWidth: "100%", gap: cellGap },
4392
- disabled && styles16.disabled,
5390
+ disabled && styles23.disabled,
4393
5391
  style
4394
5392
  ],
4395
5393
  children: Array.from({ length: safeLength }, (_, index) => {
@@ -4417,15 +5415,15 @@ var VerificationCodeInput = react.forwardRef(function VerificationCodeInput2({
4417
5415
  onSubmitEditing: () => onSubmit?.(currentCode),
4418
5416
  selectTextOnFocus: true,
4419
5417
  style: [
4420
- styles16.cell,
5418
+ styles23.cell,
4421
5419
  {
4422
5420
  width: cellWidth,
4423
5421
  height: CELL_HEIGHT,
4424
5422
  borderColor,
4425
5423
  color: error ? colors.red : colors.white
4426
5424
  },
4427
- reactNative.Platform.OS === "web" ? styles16.cellWeb : null,
4428
- reactNative.Platform.OS === "android" ? styles16.cellAndroid : null,
5425
+ reactNative.Platform.OS === "web" ? styles23.cellWeb : null,
5426
+ reactNative.Platform.OS === "android" ? styles23.cellAndroid : null,
4429
5427
  inputStyle
4430
5428
  ],
4431
5429
  value: currentCode[index] ?? ""
@@ -4436,7 +5434,7 @@ var VerificationCodeInput = react.forwardRef(function VerificationCodeInput2({
4436
5434
  }
4437
5435
  );
4438
5436
  });
4439
- var styles16 = reactNative.StyleSheet.create({
5437
+ var styles23 = reactNative.StyleSheet.create({
4440
5438
  root: {
4441
5439
  minWidth: 0,
4442
5440
  alignSelf: "center",
@@ -4473,7 +5471,7 @@ var TRIGGER_RADIUS2 = 60;
4473
5471
  var MENU_RADIUS3 = 24;
4474
5472
  var MENU_MAX_LIST_HEIGHT = 248;
4475
5473
  var ITEM_RADIUS2 = 12;
4476
- var ICON_SIZE8 = 20;
5474
+ var ICON_SIZE11 = 20;
4477
5475
  var CHIP_GAP = 6;
4478
5476
  var FALLBACK_ELLIPSIS_WIDTH = 20;
4479
5477
  function itemBackground(state) {
@@ -4546,25 +5544,25 @@ function MultiValueChips({ options, disabled, onRemove }) {
4546
5544
  const next = Math.ceil(event.nativeEvent.layout.width);
4547
5545
  setEllipsisWidth((current) => current === next ? current : next);
4548
5546
  };
4549
- return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles17.multiValueRoot, children: [
4550
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { pointerEvents: "none", style: styles17.measureRow, children: [
5547
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles24.multiValueRoot, children: [
5548
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { pointerEvents: "none", style: styles24.measureRow, children: [
4551
5549
  options.map((option) => /* @__PURE__ */ jsxRuntime.jsxs(
4552
5550
  reactNative.View,
4553
5551
  {
4554
- style: styles17.chip,
5552
+ style: styles24.chip,
4555
5553
  onLayout: (event) => handleChipLayout(option.value, event),
4556
5554
  children: [
4557
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.chipLabel, numberOfLines: 1, children: option.label }),
4558
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.chipRemove, children: "\xD7" })
5555
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.chipLabel, numberOfLines: 1, children: option.label }),
5556
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.chipRemove, children: "\xD7" })
4559
5557
  ]
4560
5558
  },
4561
5559
  `measure-${option.value}`
4562
5560
  )),
4563
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.ellipsis, onLayout: handleEllipsisLayout, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.ellipsisText, children: "..." }) })
5561
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles24.ellipsis, onLayout: handleEllipsisLayout, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.ellipsisText, children: "..." }) })
4564
5562
  ] }),
4565
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles17.chipsRow, onLayout: handleContainerLayout, children: [
4566
- visible.map((option) => /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles17.chip, children: [
4567
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.chipLabel, numberOfLines: 1, children: option.label }),
5563
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles24.chipsRow, onLayout: handleContainerLayout, children: [
5564
+ visible.map((option) => /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles24.chip, children: [
5565
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.chipLabel, numberOfLines: 1, children: option.label }),
4568
5566
  /* @__PURE__ */ jsxRuntime.jsx(
4569
5567
  reactNative.Pressable,
4570
5568
  {
@@ -4576,11 +5574,11 @@ function MultiValueChips({ options, disabled, onRemove }) {
4576
5574
  hitSlop: 6,
4577
5575
  accessibilityRole: "button",
4578
5576
  accessibilityLabel: `Remove ${option.label}`,
4579
- children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.chipRemove, children: "\xD7" })
5577
+ children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.chipRemove, children: "\xD7" })
4580
5578
  }
4581
5579
  )
4582
5580
  ] }, option.value)),
4583
- hasOverflow ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.ellipsis, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.ellipsisText, children: "..." }) }) : null
5581
+ hasOverflow ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles24.ellipsis, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.ellipsisText, children: "..." }) }) : null
4584
5582
  ] })
4585
5583
  ] });
4586
5584
  }
@@ -4605,6 +5603,7 @@ var Select = react.forwardRef(
4605
5603
  onSearchChange,
4606
5604
  loading = false,
4607
5605
  emptyText = "No results",
5606
+ valueColor,
4608
5607
  style,
4609
5608
  className,
4610
5609
  accessibilityLabel,
@@ -4789,12 +5788,12 @@ var Select = react.forwardRef(
4789
5788
  setOpen
4790
5789
  ]);
4791
5790
  const leftIconNode = renderStatefulIcon(leftIcon, UserIcon, {
4792
- size: ICON_SIZE8,
4793
- color: error ? colors.red : isOpen ? colors.primary : colors.grey100
5791
+ size: ICON_SIZE11,
5792
+ color: error ? colors.red : colors.primary
4794
5793
  });
4795
5794
  const hasLeftIcon = showLeftIcon || leftIcon != null;
4796
5795
  const triggerBorderColor = error ? colors.redMuted : isOpen ? colors.primaryMuted : colors.grey700;
4797
- const triggerTextColor = hasValue ? error ? colors.red : colors.white : error ? colors.red : colors.grey100;
5796
+ const triggerTextColor = hasValue ? error ? colors.red : valueColor ?? colors.white : error ? colors.red : colors.grey100;
4798
5797
  const labelColor = error ? colors.red : colors.white;
4799
5798
  const hintColor = error ? colors.red : colors.grey100;
4800
5799
  const singleLabel = selectedOptions[0]?.label ?? placeholder;
@@ -4804,11 +5803,11 @@ var Select = react.forwardRef(
4804
5803
  {
4805
5804
  ...rest,
4806
5805
  ref: setRootRef,
4807
- style: [styles17.root, isOpen && styles17.rootOpen, disabled && styles17.disabled, style],
5806
+ style: [styles24.root, isOpen && styles24.rootOpen, disabled && styles24.disabled, style],
4808
5807
  accessibilityState: { disabled, expanded: isOpen },
4809
5808
  children: [
4810
- showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles17.label, { color: labelColor }], children: label }) : null,
4811
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles17.triggerWrap, isOpen && styles17.triggerWrapOpen], children: [
5809
+ showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles24.label, { color: labelColor }], children: label }) : null,
5810
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles24.triggerWrap, isOpen && styles24.triggerWrapOpen], children: [
4812
5811
  /* @__PURE__ */ jsxRuntime.jsxs(
4813
5812
  reactNative.Pressable,
4814
5813
  {
@@ -4819,29 +5818,29 @@ var Select = react.forwardRef(
4819
5818
  accessibilityLabel: resolvedAccessibilityLabel,
4820
5819
  accessibilityState: { disabled, expanded: isOpen },
4821
5820
  style: [
4822
- styles17.trigger,
5821
+ styles24.trigger,
4823
5822
  {
4824
5823
  borderColor: triggerBorderColor,
4825
5824
  backgroundColor: colors.grey700
4826
5825
  }
4827
5826
  ],
4828
5827
  children: [
4829
- hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.iconSlot, children: leftIconNode }) : null,
4830
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.triggerContent, children: multiple && hasValue ? /* @__PURE__ */ jsxRuntime.jsx(
5828
+ hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles24.iconSlot, children: leftIconNode }) : null,
5829
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles24.triggerContent, children: multiple && hasValue ? /* @__PURE__ */ jsxRuntime.jsx(
4831
5830
  MultiValueChips,
4832
5831
  {
4833
5832
  options: selectedOptions,
4834
5833
  disabled,
4835
5834
  onRemove: handleRemoveChip
4836
5835
  }
4837
- ) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles17.triggerText, { color: triggerTextColor }], numberOfLines: 1, children: multiple ? placeholder : singleLabel }) }),
4838
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles17.iconSlot, isOpen && styles17.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { size: ICON_SIZE8, color: isOpen ? colors.primary : colors.grey100 }) })
5836
+ ) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles24.triggerText, { color: triggerTextColor }], numberOfLines: 1, children: multiple ? placeholder : singleLabel }) }),
5837
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles24.iconSlot, isOpen && styles24.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { size: ICON_SIZE11, color: isOpen ? colors.primary : colors.grey100 }) })
4839
5838
  ]
4840
5839
  }
4841
5840
  ),
4842
- isOpen ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles17.menu, children: [
4843
- showSearch ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles17.searchField, children: [
4844
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(SearchIcon, { size: ICON_SIZE8, color: colors.grey100 }) }),
5841
+ isOpen ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles24.menu, children: [
5842
+ showSearch ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles24.searchField, children: [
5843
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles24.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(SearchIcon, { size: ICON_SIZE11, color: colors.grey100 }) }),
4845
5844
  /* @__PURE__ */ jsxRuntime.jsx(
4846
5845
  reactNative.TextInput,
4847
5846
  {
@@ -4852,9 +5851,9 @@ var Select = react.forwardRef(
4852
5851
  placeholder: searchPlaceholder,
4853
5852
  placeholderTextColor: colors.grey100,
4854
5853
  style: [
4855
- styles17.searchInput,
4856
- reactNative.Platform.OS === "web" ? styles17.searchInputWeb : null,
4857
- reactNative.Platform.OS === "android" ? styles17.searchInputAndroid : null
5854
+ styles24.searchInput,
5855
+ reactNative.Platform.OS === "web" ? styles24.searchInputWeb : null,
5856
+ reactNative.Platform.OS === "android" ? styles24.searchInputAndroid : null
4858
5857
  ],
4859
5858
  accessibilityLabel: searchPlaceholder
4860
5859
  }
@@ -4863,12 +5862,12 @@ var Select = react.forwardRef(
4863
5862
  /* @__PURE__ */ jsxRuntime.jsxs(
4864
5863
  reactNative.ScrollView,
4865
5864
  {
4866
- style: styles17.optionList,
4867
- contentContainerStyle: styles17.optionListContent,
5865
+ style: styles24.optionList,
5866
+ contentContainerStyle: styles24.optionListContent,
4868
5867
  keyboardShouldPersistTaps: "handled",
4869
5868
  showsVerticalScrollIndicator: false,
4870
5869
  children: [
4871
- loading ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.statusRow, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.statusText, children: "Loading..." }) }) : filteredOptions.length === 0 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.statusRow, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.statusText, children: emptyText }) }) : null,
5870
+ loading ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles24.statusRow, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.statusText, children: "Loading..." }) }) : filteredOptions.length === 0 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles24.statusRow, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.statusText, children: emptyText }) }) : null,
4872
5871
  !loading && filteredOptions.map((option) => {
4873
5872
  const isSelected = selectedValues.includes(option.value);
4874
5873
  const isHovered = hoveredValue === option.value;
@@ -4885,14 +5884,14 @@ var Select = react.forwardRef(
4885
5884
  accessibilityRole: multiple ? "checkbox" : "button",
4886
5885
  accessibilityState: { selected: isSelected, checked: isSelected, disabled },
4887
5886
  style: [
4888
- styles17.item,
5887
+ styles24.item,
4889
5888
  {
4890
5889
  backgroundColor: itemBackground(visualState)
4891
5890
  }
4892
5891
  ],
4893
5892
  children: [
4894
- multiple ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style: styles17.itemCheckbox, children: /* @__PURE__ */ jsxRuntime.jsx(Checkbox, { value: isSelected, variant: "light" }) }) : null,
4895
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles17.itemLabel, numberOfLines: 1, children: option.label })
5893
+ multiple ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style: styles24.itemCheckbox, children: /* @__PURE__ */ jsxRuntime.jsx(Checkbox, { value: isSelected, variant: "light" }) }) : null,
5894
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles24.itemLabel, numberOfLines: 1, children: option.label })
4896
5895
  ]
4897
5896
  },
4898
5897
  option.value
@@ -4903,13 +5902,13 @@ var Select = react.forwardRef(
4903
5902
  )
4904
5903
  ] }) : null
4905
5904
  ] }),
4906
- showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles17.hint, { color: hintColor }], children: hint }) : null
5905
+ showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles24.hint, { color: hintColor }], children: hint }) : null
4907
5906
  ]
4908
5907
  }
4909
5908
  );
4910
5909
  }
4911
5910
  );
4912
- var styles17 = reactNative.StyleSheet.create({
5911
+ var styles24 = reactNative.StyleSheet.create({
4913
5912
  root: {
4914
5913
  width: DEFAULT_WIDTH3,
4915
5914
  gap: 8,
@@ -4999,8 +5998,8 @@ var styles17 = reactNative.StyleSheet.create({
4999
5998
  lineHeight: 16
5000
5999
  },
5001
6000
  iconSlot: {
5002
- width: ICON_SIZE8,
5003
- height: ICON_SIZE8,
6001
+ width: ICON_SIZE11,
6002
+ height: ICON_SIZE11,
5004
6003
  alignItems: "center",
5005
6004
  justifyContent: "center",
5006
6005
  flexShrink: 0
@@ -5171,13 +6170,13 @@ var Textarea = react.forwardRef(function Textarea2({
5171
6170
  const resolvedAccessibilityLabel = accessibilityLabel ?? (showLabel ? void 0 : label);
5172
6171
  useApplyWebClassName(rootRef, className);
5173
6172
  useApplyWebClassName(inputRef, inputClassName);
5174
- return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [styles18.root, disabled && styles18.disabled, style], children: [
5175
- showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles18.label, { color: chrome.labelColor }], children: label }) : null,
6173
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [styles25.root, disabled && styles25.disabled, style], children: [
6174
+ showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles25.label, { color: chrome.labelColor }], children: label }) : null,
5176
6175
  /* @__PURE__ */ jsxRuntime.jsx(
5177
6176
  reactNative.View,
5178
6177
  {
5179
6178
  style: [
5180
- styles18.field,
6179
+ styles25.field,
5181
6180
  {
5182
6181
  borderColor: chrome.borderColor,
5183
6182
  backgroundColor: chrome.backgroundColor
@@ -5209,11 +6208,11 @@ var Textarea = react.forwardRef(function Textarea2({
5209
6208
  onBlur?.(event);
5210
6209
  },
5211
6210
  style: [
5212
- styles18.input,
6211
+ styles25.input,
5213
6212
  textareaTypography.field,
5214
6213
  { color: chrome.textColor },
5215
- reactNative.Platform.OS === "web" ? styles18.inputWeb : null,
5216
- reactNative.Platform.OS === "android" ? styles18.inputAndroid : null,
6214
+ reactNative.Platform.OS === "web" ? styles25.inputWeb : null,
6215
+ reactNative.Platform.OS === "android" ? styles25.inputAndroid : null,
5217
6216
  inputStyle
5218
6217
  ],
5219
6218
  accessibilityLabel: resolvedAccessibilityLabel,
@@ -5222,10 +6221,10 @@ var Textarea = react.forwardRef(function Textarea2({
5222
6221
  )
5223
6222
  }
5224
6223
  ),
5225
- showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles18.hint, { color: chrome.hintColor }], children: hint }) : null
6224
+ showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles25.hint, { color: chrome.hintColor }], children: hint }) : null
5226
6225
  ] });
5227
6226
  });
5228
- var styles18 = reactNative.StyleSheet.create({
6227
+ var styles25 = reactNative.StyleSheet.create({
5229
6228
  root: {
5230
6229
  width: DEFAULT_WIDTH4,
5231
6230
  gap: 8,
@@ -5262,12 +6261,12 @@ var styles18 = reactNative.StyleSheet.create({
5262
6261
  ...textareaTypography.hint
5263
6262
  }
5264
6263
  });
5265
- var TRACK_WIDTH = 44;
6264
+ var TRACK_WIDTH2 = 44;
5266
6265
  var TRACK_HEIGHT = 24;
5267
6266
  var TRACK_RADIUS = 43;
5268
6267
  var TRACK_PADDING2 = 4;
5269
6268
  var THUMB_SIZE = TRACK_HEIGHT - TRACK_PADDING2 * 2;
5270
- var THUMB_TRAVEL = TRACK_WIDTH - TRACK_PADDING2 * 2 - THUMB_SIZE;
6269
+ var THUMB_TRAVEL = TRACK_WIDTH2 - TRACK_PADDING2 * 2 - THUMB_SIZE;
5271
6270
  var ANIMATION_DURATION2 = 300;
5272
6271
  var Toggle = react.forwardRef(function Toggle2({
5273
6272
  value,
@@ -5325,13 +6324,13 @@ var Toggle = react.forwardRef(function Toggle2({
5325
6324
  accessibilityRole: "switch",
5326
6325
  accessibilityLabel: resolvedAccessibilityLabel,
5327
6326
  accessibilityState: { checked: isActive, disabled },
5328
- style: [styles19.pressable, disabled && styles19.disabled, style],
6327
+ style: [styles26.pressable, disabled && styles26.disabled, style],
5329
6328
  children: [
5330
6329
  /* @__PURE__ */ jsxRuntime.jsx(
5331
6330
  reactNative.Animated.View,
5332
6331
  {
5333
6332
  style: [
5334
- styles19.track,
6333
+ styles26.track,
5335
6334
  {
5336
6335
  backgroundColor: trackBackgroundColor
5337
6336
  }
@@ -5340,7 +6339,7 @@ var Toggle = react.forwardRef(function Toggle2({
5340
6339
  reactNative.Animated.View,
5341
6340
  {
5342
6341
  style: [
5343
- styles19.thumb,
6342
+ styles26.thumb,
5344
6343
  {
5345
6344
  transform: [{ translateX: thumbTranslateX }]
5346
6345
  }
@@ -5349,12 +6348,12 @@ var Toggle = react.forwardRef(function Toggle2({
5349
6348
  )
5350
6349
  }
5351
6350
  ),
5352
- labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles19.label, labelStyle], children: labelContent }) : labelContent : null
6351
+ labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles26.label, labelStyle], children: labelContent }) : labelContent : null
5353
6352
  ]
5354
6353
  }
5355
6354
  );
5356
6355
  });
5357
- var styles19 = reactNative.StyleSheet.create({
6356
+ var styles26 = reactNative.StyleSheet.create({
5358
6357
  pressable: {
5359
6358
  flexDirection: "row",
5360
6359
  alignItems: "center",
@@ -5365,7 +6364,7 @@ var styles19 = reactNative.StyleSheet.create({
5365
6364
  opacity: 0.6
5366
6365
  },
5367
6366
  track: {
5368
- width: TRACK_WIDTH,
6367
+ width: TRACK_WIDTH2,
5369
6368
  height: TRACK_HEIGHT,
5370
6369
  borderRadius: TRACK_RADIUS,
5371
6370
  padding: TRACK_PADDING2,
@@ -5429,21 +6428,21 @@ var RatingInput = react.forwardRef(
5429
6428
  {
5430
6429
  ...rest,
5431
6430
  ref: setContainerRef,
5432
- style: [styles20.root, disabled && styles20.disabled, style],
6431
+ style: [styles27.root, disabled && styles27.disabled, style],
5433
6432
  children: [
5434
- showValue ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: [styles20.value, valueStyle], children: selectedValue.toFixed(precision) }) : null,
6433
+ showValue ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: [styles27.value, valueStyle], children: selectedValue.toFixed(precision) }) : null,
5435
6434
  /* @__PURE__ */ jsxRuntime.jsx(
5436
6435
  reactNative.View,
5437
6436
  {
5438
6437
  accessibilityRole: readOnly ? "image" : "radiogroup",
5439
6438
  accessibilityLabel: resolvedAccessibilityLabel,
5440
6439
  accessibilityState: { disabled },
5441
- style: [styles20.stars, { gap: resolvedStarGap }],
6440
+ style: [styles27.stars, { gap: resolvedStarGap }],
5442
6441
  children: Array.from({ length: STAR_COUNT }, (_, index) => {
5443
6442
  const starValue = index + 1;
5444
6443
  const isSelected = starValue <= selectedStarCount;
5445
6444
  const icon = isSelected ? /* @__PURE__ */ jsxRuntime.jsx(StarFilledIcon, { size: iconWidth, height: iconHeight }) : /* @__PURE__ */ jsxRuntime.jsx(StarIcon, { size: iconWidth, height: iconHeight });
5446
- const itemStyle = [styles20.starItem, { width: size, height: size }];
6445
+ const itemStyle = [styles27.starItem, { width: size, height: size }];
5447
6446
  if (readOnly) {
5448
6447
  return /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: itemStyle, children: icon }, starValue);
5449
6448
  }
@@ -5469,7 +6468,7 @@ var RatingInput = react.forwardRef(
5469
6468
  );
5470
6469
  }
5471
6470
  );
5472
- var styles20 = reactNative.StyleSheet.create({
6471
+ var styles27 = reactNative.StyleSheet.create({
5473
6472
  root: {
5474
6473
  flexDirection: "row",
5475
6474
  alignItems: "center",
@@ -5533,19 +6532,19 @@ var CommentCard = react.forwardRef(
5533
6532
  setExpanded(next);
5534
6533
  onExpandedChange?.(next);
5535
6534
  };
5536
- return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...rest, ref: setContainerRef, style: [styles21.root, style], children: [
5537
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles21.header, children: [
5538
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles21.avatar, children: hasImage ? /* @__PURE__ */ jsxRuntime.jsx(
6535
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...rest, ref: setContainerRef, style: [styles28.root, style], children: [
6536
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles28.header, children: [
6537
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles28.avatar, children: hasImage ? /* @__PURE__ */ jsxRuntime.jsx(
5539
6538
  reactNative.Image,
5540
6539
  {
5541
6540
  source: { uri: imageUrl ?? void 0 },
5542
- style: styles21.avatarImage,
6541
+ style: styles28.avatarImage,
5543
6542
  onError: () => setImageFailed(true)
5544
6543
  }
5545
6544
  ) : /* @__PURE__ */ jsxRuntime.jsx(UserIcon, { size: 20, color: colors.primary }) }),
5546
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles21.identity, children: [
5547
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles21.name, children: userName }),
5548
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles21.date, children: date })
6545
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles28.identity, children: [
6546
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles28.name, children: userName }),
6547
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles28.date, children: date })
5549
6548
  ] }),
5550
6549
  /* @__PURE__ */ jsxRuntime.jsx(RatingInput, { value: rating, readOnly: true, showValue: false, size: 16 })
5551
6550
  ] }),
@@ -5553,7 +6552,7 @@ var CommentCard = react.forwardRef(
5553
6552
  reactNative.Text,
5554
6553
  {
5555
6554
  numberOfLines: expanded ? void 0 : maxCommentLines,
5556
- style: [styles21.comment, commentStyle],
6555
+ style: [styles28.comment, commentStyle],
5557
6556
  children: commentText
5558
6557
  }
5559
6558
  ),
@@ -5566,14 +6565,14 @@ var CommentCard = react.forwardRef(
5566
6565
  hitSlop: 6,
5567
6566
  onHoverIn: () => setActionHovered(true),
5568
6567
  onHoverOut: () => setActionHovered(false),
5569
- style: styles21.action,
6568
+ style: styles28.action,
5570
6569
  children: /* @__PURE__ */ jsxRuntime.jsx(
5571
6570
  reactNative.Text,
5572
6571
  {
5573
6572
  style: [
5574
- styles21.actionText,
5575
- expanded && styles21.closeActionText,
5576
- actionHovered && (expanded ? styles21.closeActionTextHovered : styles21.openActionTextHovered)
6573
+ styles28.actionText,
6574
+ expanded && styles28.closeActionText,
6575
+ actionHovered && (expanded ? styles28.closeActionTextHovered : styles28.openActionTextHovered)
5577
6576
  ],
5578
6577
  children: expanded ? readLessLabel : readMoreLabel
5579
6578
  }
@@ -5583,7 +6582,7 @@ var CommentCard = react.forwardRef(
5583
6582
  ] });
5584
6583
  }
5585
6584
  );
5586
- var styles21 = reactNative.StyleSheet.create({
6585
+ var styles28 = reactNative.StyleSheet.create({
5587
6586
  root: {
5588
6587
  width: CARD_WIDTH2,
5589
6588
  minHeight: CARD_MIN_HEIGHT,
@@ -6022,7 +7021,7 @@ var Range = react.forwardRef(function Range2({
6022
7021
  ...rest,
6023
7022
  ref: setRootRef,
6024
7023
  onLayout,
6025
- style: [styles22.root, disabled && styles22.disabled, style],
7024
+ style: [styles29.root, disabled && styles29.disabled, style],
6026
7025
  children: [
6027
7026
  /* @__PURE__ */ jsxRuntime.jsxs(
6028
7027
  reactNative.Pressable,
@@ -6036,16 +7035,16 @@ var Range = react.forwardRef(function Range2({
6036
7035
  updateNearestFromTrack(event.nativeEvent.offsetX);
6037
7036
  } : void 0,
6038
7037
  onPress: reactNative.Platform.OS === "web" ? void 0 : handleTrackPress,
6039
- style: styles22.sliderPlane,
7038
+ style: styles29.sliderPlane,
6040
7039
  tabIndex: -1,
6041
7040
  children: [
6042
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style: styles22.track }),
7041
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style: styles29.track }),
6043
7042
  /* @__PURE__ */ jsxRuntime.jsx(
6044
7043
  reactNative.View,
6045
7044
  {
6046
7045
  pointerEvents: "none",
6047
7046
  style: [
6048
- styles22.activeTrack,
7047
+ styles29.activeTrack,
6049
7048
  {
6050
7049
  left: TRACK_HORIZONTAL_INSET + fromOffset,
6051
7050
  width: toOffset - fromOffset + THUMB_SIZE2
@@ -6087,9 +7086,9 @@ var Range = react.forwardRef(function Range2({
6087
7086
  onAccessibilityAction: (event) => handleAccessibilityAction(event, effectiveFrom, updateFromInput),
6088
7087
  pointerEvents: disabled ? "none" : "auto",
6089
7088
  style: [
6090
- styles22.thumb,
6091
- reactNative.Platform.OS === "web" && styles22.thumbWeb,
6092
- focusedThumb === "from" && reactNative.Platform.OS === "web" && styles22.thumbFocusedWeb,
7089
+ styles29.thumb,
7090
+ reactNative.Platform.OS === "web" && styles29.thumbWeb,
7091
+ focusedThumb === "from" && reactNative.Platform.OS === "web" && styles29.thumbFocusedWeb,
6093
7092
  { left: TRACK_HORIZONTAL_INSET + fromOffset }
6094
7093
  ],
6095
7094
  tabIndex: disabled ? -1 : 0
@@ -6129,9 +7128,9 @@ var Range = react.forwardRef(function Range2({
6129
7128
  onAccessibilityAction: (event) => handleAccessibilityAction(event, effectiveTo, updateToInput),
6130
7129
  pointerEvents: disabled ? "none" : "auto",
6131
7130
  style: [
6132
- styles22.thumb,
6133
- reactNative.Platform.OS === "web" && styles22.thumbWeb,
6134
- focusedThumb === "to" && reactNative.Platform.OS === "web" && styles22.thumbFocusedWeb,
7131
+ styles29.thumb,
7132
+ reactNative.Platform.OS === "web" && styles29.thumbWeb,
7133
+ focusedThumb === "to" && reactNative.Platform.OS === "web" && styles29.thumbFocusedWeb,
6135
7134
  { left: TRACK_HORIZONTAL_INSET + toOffset }
6136
7135
  ],
6137
7136
  tabIndex: disabled ? -1 : 0
@@ -6140,7 +7139,7 @@ var Range = react.forwardRef(function Range2({
6140
7139
  ]
6141
7140
  }
6142
7141
  ),
6143
- /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles22.inputs, children: [
7142
+ /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles29.inputs, children: [
6144
7143
  /* @__PURE__ */ jsxRuntime.jsx(
6145
7144
  RangeInput,
6146
7145
  {
@@ -6191,7 +7190,7 @@ function RangeInput({
6191
7190
  placeholder,
6192
7191
  value
6193
7192
  }) {
6194
- return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles22.inputField, focused && styles22.inputFieldFocused], children: [
7193
+ return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles29.inputField, focused && styles29.inputFieldFocused], children: [
6195
7194
  /* @__PURE__ */ jsxRuntime.jsx(
6196
7195
  reactNative.TextInput,
6197
7196
  {
@@ -6207,15 +7206,15 @@ function RangeInput({
6207
7206
  placeholder,
6208
7207
  placeholderTextColor: colors.grey150,
6209
7208
  returnKeyType: "done",
6210
- style: [styles22.input, reactNative.Platform.OS === "web" && styles22.inputWeb],
7209
+ style: [styles29.input, reactNative.Platform.OS === "web" && styles29.inputWeb],
6211
7210
  tabIndex: disabled ? -1 : void 0,
6212
7211
  value
6213
7212
  }
6214
7213
  ),
6215
- /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles22.currencySlot, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles22.currency, children: currency }) })
7214
+ /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles29.currencySlot, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles29.currency, children: currency }) })
6216
7215
  ] });
6217
7216
  }
6218
- var styles22 = reactNative.StyleSheet.create({
7217
+ var styles29 = reactNative.StyleSheet.create({
6219
7218
  root: {
6220
7219
  width: DEFAULT_WIDTH5,
6221
7220
  gap: 15,
@@ -6319,6 +7318,54 @@ var styles22 = reactNative.StyleSheet.create({
6319
7318
  }
6320
7319
  });
6321
7320
 
7321
+ // src/utils/popoverAlign.ts
7322
+ function fitsCenter(triggerRect, panelWidth, viewportWidth, padding) {
7323
+ const centerX = triggerRect.left + triggerRect.width / 2;
7324
+ const left = centerX - panelWidth / 2;
7325
+ const right = centerX + panelWidth / 2;
7326
+ return left >= padding && right <= viewportWidth - padding;
7327
+ }
7328
+ function fitsEnd(triggerRect, panelWidth, padding) {
7329
+ return triggerRect.right - panelWidth >= padding;
7330
+ }
7331
+ function fitsStart(triggerRect, panelWidth, viewportWidth, padding) {
7332
+ return triggerRect.left + panelWidth <= viewportWidth - padding;
7333
+ }
7334
+ function resolvePopoverAlign({
7335
+ triggerRect,
7336
+ panelWidth,
7337
+ viewportWidth,
7338
+ padding = 8,
7339
+ preferred = "auto"
7340
+ }) {
7341
+ if (preferred !== "auto") {
7342
+ return preferred;
7343
+ }
7344
+ if (fitsCenter(triggerRect, panelWidth, viewportWidth, padding)) {
7345
+ return "center";
7346
+ }
7347
+ const spaceLeft = triggerRect.right - padding;
7348
+ const spaceRight = viewportWidth - padding - triggerRect.left;
7349
+ if (spaceRight >= spaceLeft) {
7350
+ if (fitsStart(triggerRect, panelWidth, viewportWidth, padding)) {
7351
+ return "start";
7352
+ }
7353
+ if (fitsEnd(triggerRect, panelWidth, padding)) {
7354
+ return "end";
7355
+ }
7356
+ } else {
7357
+ if (fitsEnd(triggerRect, panelWidth, padding)) {
7358
+ return "end";
7359
+ }
7360
+ if (fitsStart(triggerRect, panelWidth, viewportWidth, padding)) {
7361
+ return "start";
7362
+ }
7363
+ }
7364
+ return spaceRight >= spaceLeft ? "start" : "end";
7365
+ }
7366
+
7367
+ exports.AccountHeader = AccountHeader;
7368
+ exports.AlertTriangleIcon = AlertTriangleIcon;
6322
7369
  exports.Amenity = Amenity;
6323
7370
  exports.AmenityIcon = AmenityIcon;
6324
7371
  exports.AppleIcon = AppleIcon;
@@ -6331,6 +7378,7 @@ exports.BRAND_LOGO_DEFAULT_HEIGHT = BRAND_LOGO_DEFAULT_HEIGHT;
6331
7378
  exports.BRAND_LOGO_DEFAULT_WIDTH = BRAND_LOGO_DEFAULT_WIDTH;
6332
7379
  exports.Badge = Badge;
6333
7380
  exports.BagIcon = BagIcon;
7381
+ exports.BanIcon = BanIcon;
6334
7382
  exports.BathroomsIcon = BathroomsIcon;
6335
7383
  exports.BedroomsIcon = BedroomsIcon;
6336
7384
  exports.BellIcon = BellIcon;
@@ -6354,9 +7402,13 @@ exports.CommentCard = CommentCard;
6354
7402
  exports.CopyIcon = CopyIcon;
6355
7403
  exports.Counter = Counter;
6356
7404
  exports.DatePicker = DatePicker;
7405
+ exports.DownloadIcon = DownloadIcon;
7406
+ exports.EditIcon = EditIcon;
6357
7407
  exports.FacebookIcon = FacebookIcon;
6358
7408
  exports.FavoritesButton = FavoritesButton;
6359
7409
  exports.FiltersIcon = FiltersIcon;
7410
+ exports.FloatingActionButton = FloatingActionButton;
7411
+ exports.FullscreenIcon = FullscreenIcon;
6360
7412
  exports.GlobeIcon = GlobeIcon;
6361
7413
  exports.GooglePlayIcon = GooglePlayIcon;
6362
7414
  exports.GuestsIcon = GuestsIcon;
@@ -6364,6 +7416,7 @@ exports.HeartIcon = HeartIcon;
6364
7416
  exports.HelpCircleIcon = HelpCircleIcon;
6365
7417
  exports.HomeIcon = HomeIcon;
6366
7418
  exports.Icon = Icon;
7419
+ exports.InfoTile = InfoTile;
6367
7420
  exports.Input = Input;
6368
7421
  exports.InstagramIcon = InstagramIcon;
6369
7422
  exports.KeyIcon = KeyIcon;
@@ -6372,6 +7425,8 @@ exports.LayoutGridIcon = LayoutGridIcon;
6372
7425
  exports.LinkedInIcon = LinkedInIcon;
6373
7426
  exports.ListViewIcon = ListViewIcon;
6374
7427
  exports.LocationPinIcon = LocationPinIcon;
7428
+ exports.LocationUserIcon = LocationUserIcon;
7429
+ exports.LockIcon = LockIcon;
6375
7430
  exports.LogOutIcon = LogOutIcon;
6376
7431
  exports.MailIcon = MailIcon;
6377
7432
  exports.MapCollapseIcon = MapCollapseIcon;
@@ -6381,12 +7436,18 @@ exports.MenuIcon = MenuIcon;
6381
7436
  exports.MenuItem = MenuItem;
6382
7437
  exports.MinusIcon = MinusIcon;
6383
7438
  exports.NavigateIcon = NavigateIcon;
7439
+ exports.NoSmokingIcon = NoSmokingIcon;
7440
+ exports.PaginationDots = PaginationDots;
7441
+ exports.PawIcon = PawIcon;
6384
7442
  exports.PhoneIcon = PhoneIcon;
6385
7443
  exports.PlusIcon = PlusIcon;
6386
7444
  exports.QrCodeIcon = QrCodeIcon;
7445
+ exports.QuietHoursIcon = QuietHoursIcon;
6387
7446
  exports.Range = Range;
6388
7447
  exports.RatingInput = RatingInput;
6389
7448
  exports.RatingStarIcon = RatingStarIcon;
7449
+ exports.RefreshIcon = RefreshIcon;
7450
+ exports.RefundStatusIcon = RefundStatusIcon;
6390
7451
  exports.SaveHeartIcon = SaveHeartIcon;
6391
7452
  exports.SearchIcon = SearchIcon;
6392
7453
  exports.SegmentedToggle = SegmentedToggle;
@@ -6400,14 +7461,21 @@ exports.SortIcon = SortIcon;
6400
7461
  exports.StarFilledIcon = StarFilledIcon;
6401
7462
  exports.StarIcon = StarIcon;
6402
7463
  exports.StatCard = StatCard;
7464
+ exports.StatusBadge = StatusBadge;
7465
+ exports.StepList = StepList;
7466
+ exports.StepPager = StepPager;
6403
7467
  exports.Textarea = Textarea;
6404
7468
  exports.Toggle = Toggle;
6405
7469
  exports.TooltipArrowIcon = TooltipArrowIcon;
7470
+ exports.TrashIcon = TrashIcon;
6406
7471
  exports.UserIcon = UserIcon;
6407
7472
  exports.UsersAltIcon = UsersAltIcon;
6408
7473
  exports.VerificationCodeInput = VerificationCodeInput;
6409
7474
  exports.VideoIcon = VideoIcon;
7475
+ exports.VideoOffIcon = VideoOffIcon;
6410
7476
  exports.WhatsAppIcon = WhatsAppIcon;
7477
+ exports.ZoomOutIcon = ZoomOutIcon;
7478
+ exports.abbreviateMonthName = abbreviateMonthName;
6411
7479
  exports.avatarTypography = avatarTypography;
6412
7480
  exports.badgeTypography = badgeTypography;
6413
7481
  exports.buttonTypography = buttonTypography;
@@ -6417,6 +7485,8 @@ exports.counterTypography = counterTypography;
6417
7485
  exports.datePickerTypography = datePickerTypography;
6418
7486
  exports.defaultLanguageOptions = defaultLanguageOptions;
6419
7487
  exports.fonts = fonts;
7488
+ exports.formatDate = formatDate;
7489
+ exports.formatDateDayShortMonth = formatDateDayShortMonth;
6420
7490
  exports.getIconsByGroup = getIconsByGroup;
6421
7491
  exports.grey = grey;
6422
7492
  exports.iconGroupNames = iconGroupNames;
@@ -6426,6 +7496,7 @@ exports.icons = icons;
6426
7496
  exports.inputTypography = inputTypography;
6427
7497
  exports.languageSwitcherTypography = languageSwitcherTypography;
6428
7498
  exports.ratingTypography = ratingTypography;
7499
+ exports.resolvePopoverAlign = resolvePopoverAlign;
6429
7500
  exports.segmentedToggleTypography = segmentedToggleTypography;
6430
7501
  exports.selectTypography = selectTypography;
6431
7502
  exports.statCardTypography = statCardTypography;