@ecohouse/ui 0.1.38 → 0.1.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +639 -338
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -73
- package/dist/index.d.ts +8 -73
- package/dist/index.js +567 -262
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/src/components/DatePicker/DatePicker.tsx +2 -1
- package/src/components/Drawer/Drawer.stories.tsx +79 -0
- package/src/components/Drawer/Drawer.tsx +392 -0
- package/src/components/Drawer/index.ts +2 -0
- package/src/components/StatusBadge/StatusBadge.tsx +1 -1
- package/src/components/index.ts +3 -0
- package/src/icons/CalendarMinus/CalendarMinusIcon.tsx +25 -0
- package/src/icons/CalendarMinus/CalendarMinusIcon.web.tsx +31 -0
- package/src/icons/CalendarMinus/calendarMinusPath.ts +3 -0
- package/src/icons/CalendarMinus/index.ts +1 -0
- package/src/icons/index.ts +1 -2
- package/src/icons/registry.ts +3 -6
- package/src/index.ts +1 -9
- package/src/theme/colors.ts +1 -0
- package/src/web/styles/account-header.css +22 -0
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { forwardRef, useRef, useMemo, useState, useCallback, useEffect, useLayoutEffect, useId, useImperativeHandle, isValidElement, cloneElement } from 'react';
|
|
2
2
|
import { View, Text, Platform, Pressable, StyleSheet, Image, useWindowDimensions, Animated, Easing, TouchableOpacity, Modal as Modal$1, TextInput, ActivityIndicator, ScrollView, PanResponder } from 'react-native';
|
|
3
|
-
import
|
|
3
|
+
import Svg21, { Path } from 'react-native-svg';
|
|
4
4
|
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
var __create = Object.create;
|
|
@@ -9449,15 +9449,15 @@ var require_react_dom_development = __commonJS({
|
|
|
9449
9449
|
};
|
|
9450
9450
|
}
|
|
9451
9451
|
var warnValidStyle$1 = warnValidStyle;
|
|
9452
|
-
function createDangerousStringForStyles(
|
|
9452
|
+
function createDangerousStringForStyles(styles40) {
|
|
9453
9453
|
{
|
|
9454
9454
|
var serialized = "";
|
|
9455
9455
|
var delimiter = "";
|
|
9456
|
-
for (var styleName in
|
|
9457
|
-
if (!
|
|
9456
|
+
for (var styleName in styles40) {
|
|
9457
|
+
if (!styles40.hasOwnProperty(styleName)) {
|
|
9458
9458
|
continue;
|
|
9459
9459
|
}
|
|
9460
|
-
var styleValue =
|
|
9460
|
+
var styleValue = styles40[styleName];
|
|
9461
9461
|
if (styleValue != null) {
|
|
9462
9462
|
var isCustomProperty = styleName.indexOf("--") === 0;
|
|
9463
9463
|
serialized += delimiter + (isCustomProperty ? styleName : hyphenateStyleName(styleName)) + ":";
|
|
@@ -9468,19 +9468,19 @@ var require_react_dom_development = __commonJS({
|
|
|
9468
9468
|
return serialized || null;
|
|
9469
9469
|
}
|
|
9470
9470
|
}
|
|
9471
|
-
function setValueForStyles(node,
|
|
9471
|
+
function setValueForStyles(node, styles40) {
|
|
9472
9472
|
var style2 = node.style;
|
|
9473
|
-
for (var styleName in
|
|
9474
|
-
if (!
|
|
9473
|
+
for (var styleName in styles40) {
|
|
9474
|
+
if (!styles40.hasOwnProperty(styleName)) {
|
|
9475
9475
|
continue;
|
|
9476
9476
|
}
|
|
9477
9477
|
var isCustomProperty = styleName.indexOf("--") === 0;
|
|
9478
9478
|
{
|
|
9479
9479
|
if (!isCustomProperty) {
|
|
9480
|
-
warnValidStyle$1(styleName,
|
|
9480
|
+
warnValidStyle$1(styleName, styles40[styleName]);
|
|
9481
9481
|
}
|
|
9482
9482
|
}
|
|
9483
|
-
var styleValue = dangerousStyleValue(styleName,
|
|
9483
|
+
var styleValue = dangerousStyleValue(styleName, styles40[styleName], isCustomProperty);
|
|
9484
9484
|
if (styleName === "float") {
|
|
9485
9485
|
styleName = "cssFloat";
|
|
9486
9486
|
}
|
|
@@ -9494,9 +9494,9 @@ var require_react_dom_development = __commonJS({
|
|
|
9494
9494
|
function isValueEmpty(value) {
|
|
9495
9495
|
return value == null || typeof value === "boolean" || value === "";
|
|
9496
9496
|
}
|
|
9497
|
-
function expandShorthandMap(
|
|
9497
|
+
function expandShorthandMap(styles40) {
|
|
9498
9498
|
var expanded = {};
|
|
9499
|
-
for (var key in
|
|
9499
|
+
for (var key in styles40) {
|
|
9500
9500
|
var longhands = shorthandToLonghand[key] || [key];
|
|
9501
9501
|
for (var i = 0; i < longhands.length; i++) {
|
|
9502
9502
|
expanded[longhands[i]] = key;
|
|
@@ -27555,7 +27555,7 @@ var require_react_dom_development = __commonJS({
|
|
|
27555
27555
|
return root2;
|
|
27556
27556
|
}
|
|
27557
27557
|
var ReactVersion = "18.3.1";
|
|
27558
|
-
function
|
|
27558
|
+
function createPortal3(children, containerInfo, implementation) {
|
|
27559
27559
|
var key = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : null;
|
|
27560
27560
|
{
|
|
27561
27561
|
checkKeyStringCoercion(key);
|
|
@@ -28411,7 +28411,7 @@ var require_react_dom_development = __commonJS({
|
|
|
28411
28411
|
if (!isValidContainer(container)) {
|
|
28412
28412
|
throw new Error("Target container is not a DOM element.");
|
|
28413
28413
|
}
|
|
28414
|
-
return
|
|
28414
|
+
return createPortal3(children, container, null, key);
|
|
28415
28415
|
}
|
|
28416
28416
|
function renderSubtreeIntoContainer(parentComponent, element, containerNode, callback) {
|
|
28417
28417
|
return unstable_renderSubtreeIntoContainer(parentComponent, element, containerNode, callback);
|
|
@@ -28530,6 +28530,7 @@ var grey = {
|
|
|
28530
28530
|
};
|
|
28531
28531
|
var colors = {
|
|
28532
28532
|
primary: "#B46436",
|
|
28533
|
+
primaryLight: "#E38E5E",
|
|
28533
28534
|
black: "#000000",
|
|
28534
28535
|
white: "#ffffff",
|
|
28535
28536
|
whiteAlpha86: "#FFFFFFDB",
|
|
@@ -28811,7 +28812,7 @@ function ArrowRightIcon({
|
|
|
28811
28812
|
color = colors.primary,
|
|
28812
28813
|
strokeWidth = 2
|
|
28813
28814
|
}) {
|
|
28814
|
-
return /* @__PURE__ */ jsx(
|
|
28815
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28815
28816
|
Path,
|
|
28816
28817
|
{
|
|
28817
28818
|
d: ARROW_RIGHT_PATH,
|
|
@@ -28823,25 +28824,10 @@ function ArrowRightIcon({
|
|
|
28823
28824
|
) });
|
|
28824
28825
|
}
|
|
28825
28826
|
|
|
28826
|
-
// src/icons/ArrowLeft/arrowLeftPath.ts
|
|
28827
|
-
var ARROW_LEFT_PATH = "M10.1972 6.59961L4.80078 11.9994L10.1972 17.3996M4.80078 11.9965H19.202";
|
|
28828
|
-
function ArrowLeftIcon({ size = 24, color = colors.white, strokeWidth = 1.35 }) {
|
|
28829
|
-
return /* @__PURE__ */ jsx(Svg22, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28830
|
-
Path,
|
|
28831
|
-
{
|
|
28832
|
-
d: ARROW_LEFT_PATH,
|
|
28833
|
-
stroke: color,
|
|
28834
|
-
strokeWidth,
|
|
28835
|
-
strokeLinecap: "round",
|
|
28836
|
-
strokeLinejoin: "round"
|
|
28837
|
-
}
|
|
28838
|
-
) });
|
|
28839
|
-
}
|
|
28840
|
-
|
|
28841
28827
|
// src/icons/AlertTriangle/alertTrianglePath.ts
|
|
28842
28828
|
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";
|
|
28843
28829
|
function AlertTriangleIcon({ size = 16, color = "#E38E5E", strokeWidth = 1.5 }) {
|
|
28844
|
-
return /* @__PURE__ */ jsx(
|
|
28830
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28845
28831
|
Path,
|
|
28846
28832
|
{
|
|
28847
28833
|
d: ALERT_TRIANGLE_PATH,
|
|
@@ -28877,16 +28863,16 @@ var GOOGLE_PLAY_PATHS = [
|
|
|
28877
28863
|
}
|
|
28878
28864
|
];
|
|
28879
28865
|
function AppleIcon({ size = 30, color = colors.white }) {
|
|
28880
|
-
return /* @__PURE__ */ jsx(
|
|
28866
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size * 25 / 30, height: size, viewBox: "0 0 25 30", fill: "none", children: APPLE_PATHS.map((path) => /* @__PURE__ */ jsx(Path, { d: path, fill: color }, path)) });
|
|
28881
28867
|
}
|
|
28882
28868
|
function GooglePlayIcon({ size = 30 }) {
|
|
28883
|
-
return /* @__PURE__ */ jsx(
|
|
28869
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size * 27 / 30, height: size, viewBox: "0 0 27 30", fill: "none", children: GOOGLE_PLAY_PATHS.map((path) => /* @__PURE__ */ jsx(Path, { d: path.d, fill: path.color }, path.d)) });
|
|
28884
28870
|
}
|
|
28885
28871
|
|
|
28886
28872
|
// src/icons/Bag/bagPath.ts
|
|
28887
28873
|
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";
|
|
28888
28874
|
function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
28889
|
-
return /* @__PURE__ */ jsx(
|
|
28875
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28890
28876
|
Path,
|
|
28891
28877
|
{
|
|
28892
28878
|
d: BAG_PATH,
|
|
@@ -28901,13 +28887,13 @@ function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28901
28887
|
// src/icons/Ban/banPath.ts
|
|
28902
28888
|
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";
|
|
28903
28889
|
function BanIcon({ size = 28, color = colors.primary }) {
|
|
28904
|
-
return /* @__PURE__ */ jsx(
|
|
28890
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: BAN_PATH, fill: color }) });
|
|
28905
28891
|
}
|
|
28906
28892
|
|
|
28907
28893
|
// src/icons/Bell/bellPath.ts
|
|
28908
28894
|
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";
|
|
28909
28895
|
function BellIcon({ size = 16, color = colors.white, strokeWidth = 1.5 }) {
|
|
28910
|
-
return /* @__PURE__ */ jsx(
|
|
28896
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28911
28897
|
Path,
|
|
28912
28898
|
{
|
|
28913
28899
|
d: BELL_PATH,
|
|
@@ -28922,7 +28908,7 @@ function BellIcon({ size = 16, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
28922
28908
|
// src/icons/Building/buildingPath.ts
|
|
28923
28909
|
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";
|
|
28924
28910
|
function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
28925
|
-
return /* @__PURE__ */ jsx(
|
|
28911
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28926
28912
|
Path,
|
|
28927
28913
|
{
|
|
28928
28914
|
d: BUILDING_PATH,
|
|
@@ -28937,7 +28923,7 @@ function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28937
28923
|
// src/icons/Calendar/calendarPath.ts
|
|
28938
28924
|
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";
|
|
28939
28925
|
function CalendarIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
28940
|
-
return /* @__PURE__ */ jsx(
|
|
28926
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28941
28927
|
Path,
|
|
28942
28928
|
{
|
|
28943
28929
|
d: CALENDAR_PATH,
|
|
@@ -28949,6 +28935,25 @@ function CalendarIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 })
|
|
|
28949
28935
|
) });
|
|
28950
28936
|
}
|
|
28951
28937
|
|
|
28938
|
+
// src/icons/CalendarMinus/calendarMinusPath.ts
|
|
28939
|
+
var CALENDAR_MINUS_PATH = "M12.5 14.9998H17.5M17.5 9.58317V7.33317C17.5 5.93304 17.5 5.23297 17.2275 4.69819C16.9878 4.22779 16.6054 3.84534 16.135 3.60565C15.6002 3.33317 14.9001 3.33317 13.5 3.33317H6.5C5.09987 3.33317 4.3998 3.33317 3.86502 3.60565C3.39462 3.84534 3.01217 4.22779 2.77248 4.69819C2.5 5.23297 2.5 5.93304 2.5 7.33317V14.3332C2.5 15.7333 2.5 16.4334 2.77248 16.9681C3.01217 17.4386 3.39462 17.821 3.86502 18.0607C4.3998 18.3332 5.09987 18.3332 6.5 18.3332H10.4167M17.5 8.33317H2.5M13.3333 1.6665V4.99984M6.66667 1.6665V4.99984";
|
|
28940
|
+
function CalendarMinusIcon({
|
|
28941
|
+
size = 20,
|
|
28942
|
+
color = colors.grey200,
|
|
28943
|
+
strokeWidth = 2
|
|
28944
|
+
}) {
|
|
28945
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28946
|
+
Path,
|
|
28947
|
+
{
|
|
28948
|
+
d: CALENDAR_MINUS_PATH,
|
|
28949
|
+
stroke: color,
|
|
28950
|
+
strokeWidth,
|
|
28951
|
+
strokeLinecap: "round",
|
|
28952
|
+
strokeLinejoin: "round"
|
|
28953
|
+
}
|
|
28954
|
+
) });
|
|
28955
|
+
}
|
|
28956
|
+
|
|
28952
28957
|
// src/icons/CalendarOutline/calendarOutlinePath.ts
|
|
28953
28958
|
var CALENDAR_OUTLINE_PATH = "M10.6667 1.33334V4.00001M5.33333 1.33334V4.00001M2 6.66668H14M5.2 2.66668H10.8C11.9201 2.66668 12.4802 2.66668 12.908 2.88466C13.2843 3.07641 13.5903 3.38237 13.782 3.7587C14 4.18652 14 4.74657 14 5.86668V11.4667C14 12.5868 14 13.1468 13.782 13.5747C13.5903 13.951 13.2843 14.2569 12.908 14.4487C12.4802 14.6667 11.9201 14.6667 10.8 14.6667H5.2C4.0799 14.6667 3.51984 14.6667 3.09202 14.4487C2.71569 14.2569 2.40973 13.951 2.21799 13.5747C2 13.1468 2 12.5868 2 11.4667V5.86668C2 4.74657 2 4.18652 2.21799 3.7587C2.40973 3.38237 2.71569 3.07641 3.09202 2.88466C3.51984 2.66668 4.0799 2.66668 5.2 2.66668Z";
|
|
28954
28959
|
function CalendarOutlineIcon({
|
|
@@ -28956,7 +28961,7 @@ function CalendarOutlineIcon({
|
|
|
28956
28961
|
color = colors.primary,
|
|
28957
28962
|
strokeWidth = 1.5
|
|
28958
28963
|
}) {
|
|
28959
|
-
return /* @__PURE__ */ jsx(
|
|
28964
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28960
28965
|
Path,
|
|
28961
28966
|
{
|
|
28962
28967
|
d: CALENDAR_OUTLINE_PATH,
|
|
@@ -28971,7 +28976,7 @@ function CalendarOutlineIcon({
|
|
|
28971
28976
|
// src/icons/Camera/cameraPath.ts
|
|
28972
28977
|
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";
|
|
28973
28978
|
function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
28974
|
-
return /* @__PURE__ */ jsx(
|
|
28979
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28975
28980
|
Path,
|
|
28976
28981
|
{
|
|
28977
28982
|
d: CAMERA_PATH,
|
|
@@ -28986,13 +28991,13 @@ function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28986
28991
|
// src/icons/CameraFilled/cameraFilledPath.ts
|
|
28987
28992
|
var CAMERA_FILLED_PATH = "M25.3327 8.66605H23.626L23.1993 7.33271C22.9228 6.55035 22.4097 5.87338 21.7312 5.39559C21.0528 4.9178 20.2425 4.66285 19.4127 4.66605H12.586C11.7481 4.66761 10.9318 4.93229 10.2524 5.42272C9.57295 5.91315 9.06469 6.60456 8.79935 7.39938L8.37268 8.73271H6.66602C5.60515 8.73271 4.58773 9.15414 3.83759 9.90428C3.08744 10.6544 2.66602 11.6718 2.66602 12.7327V23.3994C2.66602 24.4602 3.08744 25.4777 3.83759 26.2278C4.58773 26.978 5.60515 27.3994 6.66602 27.3994H25.3327C26.3935 27.3994 27.411 26.978 28.1611 26.2278C28.9113 25.4777 29.3327 24.4602 29.3327 23.3994V12.7327C29.3415 12.2018 29.2446 11.6745 29.0476 11.1815C28.8505 10.6885 28.5573 10.2396 28.1849 9.86109C27.8126 9.48256 27.3687 9.18195 26.879 8.97678C26.3893 8.7716 25.8636 8.66597 25.3327 8.66605ZM26.666 23.3327C26.666 23.6863 26.5255 24.0255 26.2755 24.2755C26.0254 24.5256 25.6863 24.666 25.3327 24.666H6.66602C6.31239 24.666 5.97326 24.5256 5.72321 24.2755C5.47316 24.0255 5.33268 23.6863 5.33268 23.3327V12.666C5.33268 12.3124 5.47316 11.9733 5.72321 11.7232C5.97326 11.4732 6.31239 11.3327 6.66602 11.3327H9.33268C9.62344 11.3479 9.91117 11.2675 10.1519 11.1038C10.3927 10.94 10.5732 10.702 10.666 10.426L11.386 8.23938C11.4755 7.97455 11.6459 7.74453 11.8732 7.58183C12.1005 7.41914 12.3732 7.33199 12.6527 7.33271H19.4793C19.7589 7.33199 20.0316 7.41914 20.2589 7.58183C20.4862 7.74453 20.6566 7.97455 20.746 8.23938L21.466 10.426C21.5516 10.6804 21.7119 10.903 21.926 11.0647C22.1401 11.2265 22.398 11.3199 22.666 11.3327H25.3327C25.6863 11.3327 26.0254 11.4732 26.2755 11.7232C26.5255 11.9733 26.666 12.3124 26.666 12.666V23.3327ZM15.9993 11.3327C14.9445 11.3327 13.9134 11.6455 13.0363 12.2315C12.1592 12.8176 11.4757 13.6505 11.072 14.6251C10.6683 15.5996 10.5627 16.672 10.7685 17.7065C10.9743 18.7411 11.4822 19.6914 12.2281 20.4373C12.974 21.1832 13.9243 21.6911 14.9589 21.8969C15.9934 22.1027 17.0658 21.9971 18.0403 21.5934C19.0149 21.1897 19.8478 20.5061 20.4339 19.6291C21.0199 18.752 21.3327 17.7209 21.3327 16.666C21.3327 15.2516 20.7708 13.895 19.7706 12.8948C18.7704 11.8946 17.4138 11.3327 15.9993 11.3327ZM15.9993 19.3327C15.4719 19.3327 14.9564 19.1763 14.5178 18.8833C14.0793 18.5903 13.7375 18.1738 13.5357 17.6865C13.3338 17.1993 13.281 16.6631 13.3839 16.1458C13.4868 15.6285 13.7408 15.1534 14.1137 14.7804C14.4867 14.4075 14.9618 14.1535 15.4791 14.0506C15.9964 13.9477 16.5326 14.0005 17.0198 14.2024C17.5071 14.4042 17.9236 14.746 18.2166 15.1845C18.5096 15.6231 18.666 16.1386 18.666 16.666C18.666 17.3733 18.3851 18.0516 17.885 18.5517C17.3849 19.0518 16.7066 19.3327 15.9993 19.3327Z";
|
|
28988
28993
|
function CameraFilledIcon({ size = 32, color = colors.primary }) {
|
|
28989
|
-
return /* @__PURE__ */ jsx(
|
|
28994
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 32 32", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: CAMERA_FILLED_PATH, fill: color }) });
|
|
28990
28995
|
}
|
|
28991
28996
|
|
|
28992
28997
|
// src/icons/Check/checkPath.ts
|
|
28993
28998
|
var CHECK_PATH = "M4.16669 10.8333L7.50002 14.1667L15.8334 5.83334";
|
|
28994
28999
|
function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
28995
|
-
return /* @__PURE__ */ jsx(
|
|
29000
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
28996
29001
|
Path,
|
|
28997
29002
|
{
|
|
28998
29003
|
d: CHECK_PATH,
|
|
@@ -29007,7 +29012,7 @@ function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29007
29012
|
// src/icons/CheckBadge/checkBadgePath.ts
|
|
29008
29013
|
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";
|
|
29009
29014
|
function CheckBadgeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29010
|
-
return /* @__PURE__ */ jsx(
|
|
29015
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29011
29016
|
Path,
|
|
29012
29017
|
{
|
|
29013
29018
|
d: CHECK_BADGE_PATH,
|
|
@@ -29026,7 +29031,7 @@ function ChevronDownIcon({
|
|
|
29026
29031
|
color = colors.primary,
|
|
29027
29032
|
strokeWidth = 2
|
|
29028
29033
|
}) {
|
|
29029
|
-
return /* @__PURE__ */ jsx(
|
|
29034
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29030
29035
|
Path,
|
|
29031
29036
|
{
|
|
29032
29037
|
d: CHEVRON_DOWN_PATH,
|
|
@@ -29041,7 +29046,7 @@ function ChevronDownIcon({
|
|
|
29041
29046
|
// src/icons/ChevronLeft/chevronLeftPath.ts
|
|
29042
29047
|
var CHEVRON_LEFT_PATH = "M12.5 15L7.5 10L12.5 5";
|
|
29043
29048
|
function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29044
|
-
return /* @__PURE__ */ jsx(
|
|
29049
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29045
29050
|
Path,
|
|
29046
29051
|
{
|
|
29047
29052
|
d: CHEVRON_LEFT_PATH,
|
|
@@ -29056,7 +29061,7 @@ function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 })
|
|
|
29056
29061
|
// src/icons/Clock/clockPath.ts
|
|
29057
29062
|
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";
|
|
29058
29063
|
function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29059
|
-
return /* @__PURE__ */ jsx(
|
|
29064
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29060
29065
|
Path,
|
|
29061
29066
|
{
|
|
29062
29067
|
d: CLOCK_PATH,
|
|
@@ -29071,7 +29076,7 @@ function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29071
29076
|
// src/icons/Close/closePath.ts
|
|
29072
29077
|
var CLOSE_PATH = "M15 5L5 15M5 5L15 15";
|
|
29073
29078
|
function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29074
|
-
return /* @__PURE__ */ jsx(
|
|
29079
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29075
29080
|
Path,
|
|
29076
29081
|
{
|
|
29077
29082
|
d: CLOSE_PATH,
|
|
@@ -29083,29 +29088,10 @@ function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29083
29088
|
) });
|
|
29084
29089
|
}
|
|
29085
29090
|
|
|
29086
|
-
// src/icons/CurrentLocation/currentLocationPath.ts
|
|
29087
|
-
var CURRENT_LOCATION_PATH = "M17.4167 9.08333H14.0833M4.08333 9.08333H0.75M9.08333 4.08333V0.75M9.08333 17.4167V14.0833M15.75 9.08333C15.75 12.7652 12.7652 15.75 9.08333 15.75C5.40144 15.75 2.41667 12.7652 2.41667 9.08333C2.41667 5.40144 5.40144 2.41667 9.08333 2.41667C12.7652 2.41667 15.75 5.40144 15.75 9.08333ZM11.5833 9.08333C11.5833 10.464 10.464 11.5833 9.08333 11.5833C7.70262 11.5833 6.58333 10.464 6.58333 9.08333C6.58333 7.70262 7.70262 6.58333 9.08333 6.58333C10.464 6.58333 11.5833 7.70262 11.5833 9.08333Z";
|
|
29088
|
-
function CurrentLocationIcon({
|
|
29089
|
-
size = 19,
|
|
29090
|
-
color = colors.primary,
|
|
29091
|
-
strokeWidth = 1.5
|
|
29092
|
-
}) {
|
|
29093
|
-
return /* @__PURE__ */ jsx(Svg22, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29094
|
-
Path,
|
|
29095
|
-
{
|
|
29096
|
-
d: CURRENT_LOCATION_PATH,
|
|
29097
|
-
stroke: color,
|
|
29098
|
-
strokeWidth,
|
|
29099
|
-
strokeLinecap: "round",
|
|
29100
|
-
strokeLinejoin: "round"
|
|
29101
|
-
}
|
|
29102
|
-
) });
|
|
29103
|
-
}
|
|
29104
|
-
|
|
29105
29091
|
// src/icons/Edit/editPath.ts
|
|
29106
29092
|
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";
|
|
29107
29093
|
function EditIcon({ size = 12, color = colors.grey0, strokeWidth = 2 }) {
|
|
29108
|
-
return /* @__PURE__ */ jsx(
|
|
29094
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29109
29095
|
Path,
|
|
29110
29096
|
{
|
|
29111
29097
|
d: EDIT_PATH,
|
|
@@ -29132,7 +29118,7 @@ function SaveHeartIcon({
|
|
|
29132
29118
|
strokeWidth = 2,
|
|
29133
29119
|
fillOpacity = 0
|
|
29134
29120
|
}) {
|
|
29135
|
-
return /* @__PURE__ */ jsx(
|
|
29121
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29136
29122
|
Path,
|
|
29137
29123
|
{
|
|
29138
29124
|
d: SAVE_HEART_PATH,
|
|
@@ -29146,7 +29132,7 @@ function SaveHeartIcon({
|
|
|
29146
29132
|
) });
|
|
29147
29133
|
}
|
|
29148
29134
|
function RatingStarIcon({ size = 12, color = "#E38E5E", strokeWidth = 2 }) {
|
|
29149
|
-
return /* @__PURE__ */ jsx(
|
|
29135
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29150
29136
|
Path,
|
|
29151
29137
|
{
|
|
29152
29138
|
d: RATING_STAR_PATH,
|
|
@@ -29164,7 +29150,7 @@ function CardLocationIcon({
|
|
|
29164
29150
|
strokeWidth = 1.5,
|
|
29165
29151
|
secondaryColor = colors.grey700
|
|
29166
29152
|
}) {
|
|
29167
|
-
return /* @__PURE__ */ jsxs(
|
|
29153
|
+
return /* @__PURE__ */ jsxs(Svg21, { width: size, height: size, viewBox: "0 0 13 13", fill: "none", children: [
|
|
29168
29154
|
/* @__PURE__ */ jsx(
|
|
29169
29155
|
Path,
|
|
29170
29156
|
{
|
|
@@ -29203,7 +29189,7 @@ function FilledCardIcon({
|
|
|
29203
29189
|
color,
|
|
29204
29190
|
fillOpacity
|
|
29205
29191
|
}) {
|
|
29206
|
-
return /* @__PURE__ */ jsx(
|
|
29192
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: path, fill: color, fillOpacity }) });
|
|
29207
29193
|
}
|
|
29208
29194
|
function GuestsIcon({ size = 16, color = colors.white, fillOpacity = 0.4 }) {
|
|
29209
29195
|
return /* @__PURE__ */ jsx(FilledCardIcon, { path: GUESTS_PATH, size, color, fillOpacity });
|
|
@@ -29231,7 +29217,7 @@ var COPY_PATH = "M6.66699 13.3337V15.667C6.66699 16.6004 6.66699 17.0671 6.84865
|
|
|
29231
29217
|
var CHECK_SUCCESS_PATH = "M16.6663 5L7.49967 14.1667L3.33301 10";
|
|
29232
29218
|
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";
|
|
29233
29219
|
function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29234
|
-
return /* @__PURE__ */ jsx(
|
|
29220
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29235
29221
|
Path,
|
|
29236
29222
|
{
|
|
29237
29223
|
d: SHARE_PATH,
|
|
@@ -29243,7 +29229,7 @@ function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29243
29229
|
) });
|
|
29244
29230
|
}
|
|
29245
29231
|
function DownloadIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29246
|
-
return /* @__PURE__ */ jsx(
|
|
29232
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29247
29233
|
Path,
|
|
29248
29234
|
{
|
|
29249
29235
|
d: DOWNLOAD_PATH,
|
|
@@ -29255,7 +29241,7 @@ function DownloadIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29255
29241
|
) });
|
|
29256
29242
|
}
|
|
29257
29243
|
function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29258
|
-
return /* @__PURE__ */ jsx(
|
|
29244
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: AREA_EXPAND_PATHS.map((path) => /* @__PURE__ */ jsx(
|
|
29259
29245
|
Path,
|
|
29260
29246
|
{
|
|
29261
29247
|
d: path,
|
|
@@ -29268,16 +29254,16 @@ function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29268
29254
|
)) });
|
|
29269
29255
|
}
|
|
29270
29256
|
function ClockFilledIcon({ size = 16, color = colors.white }) {
|
|
29271
|
-
return /* @__PURE__ */ jsx(
|
|
29257
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: CLOCK_FILLED_PATH, fill: color }) });
|
|
29272
29258
|
}
|
|
29273
29259
|
function QrCodeIcon({ size = 24, color = colors.primary }) {
|
|
29274
|
-
return /* @__PURE__ */ jsx(
|
|
29260
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: QR_CODE_PATH, fill: color }) });
|
|
29275
29261
|
}
|
|
29276
29262
|
function WhatsAppIcon({ size = 24, color = colors.white }) {
|
|
29277
|
-
return /* @__PURE__ */ jsx(
|
|
29263
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: WHATSAPP_PATH, fill: color }) });
|
|
29278
29264
|
}
|
|
29279
29265
|
function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29280
|
-
return /* @__PURE__ */ jsx(
|
|
29266
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29281
29267
|
Path,
|
|
29282
29268
|
{
|
|
29283
29269
|
d: COPY_PATH,
|
|
@@ -29289,7 +29275,7 @@ function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
|
29289
29275
|
) });
|
|
29290
29276
|
}
|
|
29291
29277
|
function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 }) {
|
|
29292
|
-
return /* @__PURE__ */ jsx(
|
|
29278
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29293
29279
|
Path,
|
|
29294
29280
|
{
|
|
29295
29281
|
d: CHECK_SUCCESS_PATH,
|
|
@@ -29301,7 +29287,7 @@ function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 })
|
|
|
29301
29287
|
) });
|
|
29302
29288
|
}
|
|
29303
29289
|
function TooltipArrowIcon({ size = 10, color = colors.grey600 }) {
|
|
29304
|
-
return /* @__PURE__ */ jsx(
|
|
29290
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size * 8 / 10, viewBox: "0 0 10 8", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: TOOLTIP_ARROW_PATH, fill: color }) });
|
|
29305
29291
|
}
|
|
29306
29292
|
|
|
29307
29293
|
// src/icons/HouseRules/houseRulesPaths.ts
|
|
@@ -29321,10 +29307,10 @@ var PAW_PATHS = [
|
|
|
29321
29307
|
];
|
|
29322
29308
|
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";
|
|
29323
29309
|
function QuietHoursIcon({ size = 20, color = colors.white }) {
|
|
29324
|
-
return /* @__PURE__ */ jsx(
|
|
29310
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: QUIET_HOURS_PATH, fill: color }) });
|
|
29325
29311
|
}
|
|
29326
29312
|
function NoSmokingIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
29327
|
-
return /* @__PURE__ */ jsx(
|
|
29313
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: NO_SMOKING_PATHS.map((d) => /* @__PURE__ */ jsx(
|
|
29328
29314
|
Path,
|
|
29329
29315
|
{
|
|
29330
29316
|
d,
|
|
@@ -29337,7 +29323,7 @@ function NoSmokingIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
29337
29323
|
)) });
|
|
29338
29324
|
}
|
|
29339
29325
|
function PawIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
29340
|
-
return /* @__PURE__ */ jsx(
|
|
29326
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: PAW_PATHS.map((d) => /* @__PURE__ */ jsx(
|
|
29341
29327
|
Path,
|
|
29342
29328
|
{
|
|
29343
29329
|
d,
|
|
@@ -29350,7 +29336,7 @@ function PawIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
29350
29336
|
)) });
|
|
29351
29337
|
}
|
|
29352
29338
|
function TrashIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29353
|
-
return /* @__PURE__ */ jsx(
|
|
29339
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29354
29340
|
Path,
|
|
29355
29341
|
{
|
|
29356
29342
|
d: TRASH_PATH,
|
|
@@ -29365,13 +29351,13 @@ function TrashIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29365
29351
|
// src/icons/Facebook/facebookPath.ts
|
|
29366
29352
|
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";
|
|
29367
29353
|
function FacebookIcon({ size = 20, color = colors.white }) {
|
|
29368
|
-
return /* @__PURE__ */ jsx(
|
|
29354
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: FACEBOOK_PATH, fill: color }) });
|
|
29369
29355
|
}
|
|
29370
29356
|
|
|
29371
29357
|
// src/icons/Filters/filtersPath.ts
|
|
29372
29358
|
var FILTERS_PATH = "M5 10H15M2.5 5H17.5M7.5 15H12.5";
|
|
29373
29359
|
function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29374
|
-
return /* @__PURE__ */ jsx(
|
|
29360
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29375
29361
|
Path,
|
|
29376
29362
|
{
|
|
29377
29363
|
d: FILTERS_PATH,
|
|
@@ -29386,7 +29372,7 @@ function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
|
29386
29372
|
// src/icons/Fullscreen/fullscreenPath.ts
|
|
29387
29373
|
var FULLSCREEN_PATH = "M16 8L21 3M21 8V3H16M8 8L3 3M8 3L3 3L3 8M8 16L3 21M3 16L3 21H8M16 16L21 21M16 21H21V16";
|
|
29388
29374
|
function FullscreenIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29389
|
-
return /* @__PURE__ */ jsx(
|
|
29375
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29390
29376
|
Path,
|
|
29391
29377
|
{
|
|
29392
29378
|
d: FULLSCREEN_PATH,
|
|
@@ -29401,7 +29387,7 @@ function FullscreenIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29401
29387
|
// src/icons/Heart/heartPath.ts
|
|
29402
29388
|
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";
|
|
29403
29389
|
function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29404
|
-
return /* @__PURE__ */ jsx(
|
|
29390
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29405
29391
|
Path,
|
|
29406
29392
|
{
|
|
29407
29393
|
d: HEART_PATH,
|
|
@@ -29419,7 +29405,7 @@ function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
|
29419
29405
|
var HEADSET_PATH = "M3 11H6C6.53043 11 7.03914 11.2107 7.41421 11.5858C7.78929 11.9609 8 12.4696 8 13V16C8 16.5304 7.78929 17.0391 7.41421 17.4142C7.03914 17.7893 6.53043 18 6 18H5C4.46957 18 3.96086 17.7893 3.58579 17.4142C3.21071 17.0391 3 16.5304 3 16V11ZM3 11C3 9.8181 3.23279 8.64778 3.68508 7.55585C4.13738 6.46392 4.80031 5.47177 5.63604 4.63604C6.47177 3.80031 7.46392 3.13738 8.55585 2.68508C9.64778 2.23279 10.8181 2 12 2C13.1819 2 14.3522 2.23279 15.4442 2.68508C16.5361 3.13738 17.5282 3.80031 18.364 4.63604C19.1997 5.47177 19.8626 6.46392 20.3149 7.55585C20.7672 8.64778 21 9.8181 21 11M21 11V16C21 16.5304 20.7893 17.0391 20.4142 17.4142C20.0391 17.7893 19.5304 18 19 18H18C17.4696 18 16.9609 17.7893 16.5858 17.4142C16.2107 17.0391 16 16.5304 16 16V13C16 12.4696 16.2107 11.9609 16.5858 11.5858C16.9609 11.2107 17.4696 11 18 11H21Z";
|
|
29420
29406
|
var HEADSET_MIC_PATH = "M21 16V18C21 19.0609 20.5786 20.0783 19.8284 20.8284C19.0783 21.5786 18.0609 22 17 22H12";
|
|
29421
29407
|
function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
29422
|
-
return /* @__PURE__ */ jsxs(
|
|
29408
|
+
return /* @__PURE__ */ jsxs(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: [
|
|
29423
29409
|
/* @__PURE__ */ jsx(
|
|
29424
29410
|
Path,
|
|
29425
29411
|
{
|
|
@@ -29446,7 +29432,7 @@ function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
|
29446
29432
|
// src/icons/Globe/globePath.ts
|
|
29447
29433
|
var GLOBE_PATH = "M1.3335 8.00004H14.6668M1.3335 8.00004C1.3335 11.6819 4.31826 14.6667 8.00016 14.6667M1.3335 8.00004C1.3335 4.31814 4.31826 1.33337 8.00016 1.33337M14.6668 8.00004C14.6668 11.6819 11.6821 14.6667 8.00016 14.6667M14.6668 8.00004C14.6668 4.31814 11.6821 1.33337 8.00016 1.33337M8.00016 1.33337C9.66768 3.15894 10.6153 5.52806 10.6668 8.00004C10.6153 10.472 9.66768 12.8411 8.00016 14.6667M8.00016 1.33337C6.33264 3.15894 5.38499 5.52806 5.3335 8.00004C5.38499 10.472 6.33264 12.8411 8.00016 14.6667";
|
|
29448
29434
|
function GlobeIcon({ size = 16, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29449
|
-
return /* @__PURE__ */ jsx(
|
|
29435
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29450
29436
|
Path,
|
|
29451
29437
|
{
|
|
29452
29438
|
d: GLOBE_PATH,
|
|
@@ -29465,7 +29451,7 @@ function HelpCircleIcon({
|
|
|
29465
29451
|
color = colors.primary,
|
|
29466
29452
|
strokeWidth = 1.5
|
|
29467
29453
|
}) {
|
|
29468
|
-
return /* @__PURE__ */ jsx(
|
|
29454
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29469
29455
|
Path,
|
|
29470
29456
|
{
|
|
29471
29457
|
d: HELP_CIRCLE_PATH,
|
|
@@ -29480,7 +29466,7 @@ function HelpCircleIcon({
|
|
|
29480
29466
|
// src/icons/Hide/hidePath.ts
|
|
29481
29467
|
var HIDE_PATH = "M10.7429 5.09232C11.1494 5.03223 11.5686 5 12.0004 5C17.1054 5 20.4553 9.50484 21.5807 11.2868C21.7169 11.5025 21.785 11.6103 21.8231 11.7767C21.8518 11.9016 21.8517 12.0987 21.8231 12.2236C21.7849 12.3899 21.7164 12.4985 21.5792 12.7156C21.2793 13.1901 20.8222 13.8571 20.2165 14.5805M6.72432 6.71504C4.56225 8.1817 3.09445 10.2194 2.42111 11.2853C2.28428 11.5019 2.21587 11.6102 2.17774 11.7765C2.1491 11.9014 2.14909 12.0984 2.17771 12.2234C2.21583 12.3897 2.28393 12.4975 2.42013 12.7132C3.54554 14.4952 6.89541 19 12.0004 19C14.0588 19 15.8319 18.2676 17.2888 17.2766M3.00042 3L21.0004 21M9.8791 9.87868C9.3362 10.4216 9.00042 11.1716 9.00042 12C9.00042 13.6569 10.3436 15 12.0004 15C12.8288 15 13.5788 14.6642 14.1217 14.1213";
|
|
29482
29468
|
function HideIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29483
|
-
return /* @__PURE__ */ jsx(
|
|
29469
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29484
29470
|
Path,
|
|
29485
29471
|
{
|
|
29486
29472
|
d: HIDE_PATH,
|
|
@@ -29495,7 +29481,7 @@ function HideIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29495
29481
|
// src/icons/Home/homePath.ts
|
|
29496
29482
|
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";
|
|
29497
29483
|
function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29498
|
-
return /* @__PURE__ */ jsx(
|
|
29484
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29499
29485
|
Path,
|
|
29500
29486
|
{
|
|
29501
29487
|
d: HOME_PATH,
|
|
@@ -29510,13 +29496,13 @@ function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29510
29496
|
// src/icons/Instagram/instagramPath.ts
|
|
29511
29497
|
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";
|
|
29512
29498
|
function InstagramIcon({ size = 20, color = colors.white }) {
|
|
29513
|
-
return /* @__PURE__ */ jsx(
|
|
29499
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: INSTAGRAM_PATH, fill: color }) });
|
|
29514
29500
|
}
|
|
29515
29501
|
|
|
29516
29502
|
// src/icons/Key/keyPath.ts
|
|
29517
29503
|
var KEY_PATH = "M14.1668 8.33333V6.66667C14.1668 4.36548 12.3013 2.5 10.0002 2.5C7.69898 2.5 5.8335 4.36548 5.8335 6.66667V8.33333M10.0002 12.0833V13.75M7.3335 17.5H12.6668C14.067 17.5 14.767 17.5 15.3018 17.2275C15.7722 16.9878 16.1547 16.6054 16.3943 16.135C16.6668 15.6002 16.6668 14.9001 16.6668 13.5V12.3333C16.6668 10.9332 16.6668 10.2331 16.3943 9.69836C16.1547 9.22795 15.7722 8.8455 15.3018 8.60582C14.767 8.33333 14.067 8.33333 12.6668 8.33333H7.3335C5.93336 8.33333 5.2333 8.33333 4.69852 8.60582C4.22811 8.8455 3.84566 9.22795 3.60598 9.69836C3.3335 10.2331 3.3335 10.9332 3.3335 12.3333V13.5C3.3335 14.9001 3.3335 15.6002 3.60598 16.135C3.84566 16.6054 4.22811 16.9878 4.69852 17.2275C5.2333 17.5 5.93336 17.5 7.3335 17.5Z";
|
|
29518
29504
|
function KeyIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29519
|
-
return /* @__PURE__ */ jsx(
|
|
29505
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29520
29506
|
Path,
|
|
29521
29507
|
{
|
|
29522
29508
|
d: KEY_PATH,
|
|
@@ -29535,7 +29521,7 @@ function LayoutGridIcon({
|
|
|
29535
29521
|
color = colors.primary,
|
|
29536
29522
|
strokeWidth = 1.5
|
|
29537
29523
|
}) {
|
|
29538
|
-
return /* @__PURE__ */ jsx(
|
|
29524
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29539
29525
|
Path,
|
|
29540
29526
|
{
|
|
29541
29527
|
d: LAYOUT_GRID_PATH,
|
|
@@ -29550,13 +29536,13 @@ function LayoutGridIcon({
|
|
|
29550
29536
|
// src/icons/LinkedIn/linkedinPath.ts
|
|
29551
29537
|
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";
|
|
29552
29538
|
function LinkedInIcon({ size = 20, color = colors.white }) {
|
|
29553
|
-
return /* @__PURE__ */ jsx(
|
|
29539
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: LINKEDIN_PATH, fill: color }) });
|
|
29554
29540
|
}
|
|
29555
29541
|
|
|
29556
29542
|
// src/icons/ListView/listViewPath.ts
|
|
29557
29543
|
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";
|
|
29558
29544
|
function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29559
|
-
return /* @__PURE__ */ jsx(
|
|
29545
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29560
29546
|
Path,
|
|
29561
29547
|
{
|
|
29562
29548
|
d: LIST_VIEW_PATH,
|
|
@@ -29571,7 +29557,7 @@ function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29571
29557
|
// src/icons/LocationPin/locationPinPath.ts
|
|
29572
29558
|
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";
|
|
29573
29559
|
function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29574
|
-
return /* @__PURE__ */ jsx(
|
|
29560
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29575
29561
|
Path,
|
|
29576
29562
|
{
|
|
29577
29563
|
d: LOCATION_PIN_PATH,
|
|
@@ -29586,13 +29572,13 @@ function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 })
|
|
|
29586
29572
|
// src/icons/LocationUser/locationUserPath.ts
|
|
29587
29573
|
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";
|
|
29588
29574
|
function LocationUserIcon({ size = 16, color = colors.grey0 }) {
|
|
29589
|
-
return /* @__PURE__ */ jsx(
|
|
29575
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: LOCATION_USER_PATH, fill: color }) });
|
|
29590
29576
|
}
|
|
29591
29577
|
|
|
29592
29578
|
// src/icons/Lock/lockPath.ts
|
|
29593
29579
|
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";
|
|
29594
29580
|
function LockIcon({ size = 32, color = colors.primary, strokeWidth = 2 }) {
|
|
29595
|
-
return /* @__PURE__ */ jsx(
|
|
29581
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 32 32", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29596
29582
|
Path,
|
|
29597
29583
|
{
|
|
29598
29584
|
d: LOCK_PATH,
|
|
@@ -29607,7 +29593,7 @@ function LockIcon({ size = 32, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29607
29593
|
// src/icons/LogOut/logOutPath.ts
|
|
29608
29594
|
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";
|
|
29609
29595
|
function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
|
|
29610
|
-
return /* @__PURE__ */ jsx(
|
|
29596
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29611
29597
|
Path,
|
|
29612
29598
|
{
|
|
29613
29599
|
d: LOG_OUT_PATH,
|
|
@@ -29622,7 +29608,7 @@ function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
|
|
|
29622
29608
|
// src/icons/Mail/mailPath.ts
|
|
29623
29609
|
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";
|
|
29624
29610
|
function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29625
|
-
return /* @__PURE__ */ jsx(
|
|
29611
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29626
29612
|
Path,
|
|
29627
29613
|
{
|
|
29628
29614
|
d: MAIL_PATH,
|
|
@@ -29637,7 +29623,7 @@ function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29637
29623
|
// src/icons/MapView/mapViewPath.ts
|
|
29638
29624
|
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";
|
|
29639
29625
|
function MapViewIcon({ size = 20, color = colors.grey400, strokeWidth = 2 }) {
|
|
29640
|
-
return /* @__PURE__ */ jsx(
|
|
29626
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29641
29627
|
Path,
|
|
29642
29628
|
{
|
|
29643
29629
|
d: MAP_VIEW_PATH,
|
|
@@ -29658,7 +29644,7 @@ function MapControlIcon({
|
|
|
29658
29644
|
color = colors.white,
|
|
29659
29645
|
strokeWidth = 2
|
|
29660
29646
|
}) {
|
|
29661
|
-
return /* @__PURE__ */ jsx(
|
|
29647
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29662
29648
|
Path,
|
|
29663
29649
|
{
|
|
29664
29650
|
d: path,
|
|
@@ -29685,7 +29671,7 @@ function MenuIcon({
|
|
|
29685
29671
|
strokeWidth = 2,
|
|
29686
29672
|
open = false
|
|
29687
29673
|
}) {
|
|
29688
|
-
return /* @__PURE__ */ jsx(
|
|
29674
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29689
29675
|
Path,
|
|
29690
29676
|
{
|
|
29691
29677
|
d: open ? MENU_CLOSE_PATH : MENU_PATH,
|
|
@@ -29701,7 +29687,7 @@ function MenuIcon({
|
|
|
29701
29687
|
// src/icons/MenuLines/menuLinesPath.ts
|
|
29702
29688
|
var MENU_LINES_PATH = "M5.83398 19.8337H15.1673M5.83398 14.0003H22.1673M5.83398 8.16699H15.1673";
|
|
29703
29689
|
function MenuLinesIcon({ size = 28, color = colors.white, strokeWidth = 2 }) {
|
|
29704
|
-
return /* @__PURE__ */ jsx(
|
|
29690
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29705
29691
|
Path,
|
|
29706
29692
|
{
|
|
29707
29693
|
d: MENU_LINES_PATH,
|
|
@@ -29716,7 +29702,7 @@ function MenuLinesIcon({ size = 28, color = colors.white, strokeWidth = 2 }) {
|
|
|
29716
29702
|
// src/icons/Minus/minusPath.ts
|
|
29717
29703
|
var MINUS_PATH = "M3.33337 8H12.6667";
|
|
29718
29704
|
function MinusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
29719
|
-
return /* @__PURE__ */ jsx(
|
|
29705
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29720
29706
|
Path,
|
|
29721
29707
|
{
|
|
29722
29708
|
d: MINUS_PATH,
|
|
@@ -29736,7 +29722,7 @@ function MoreHorizontalIcon({
|
|
|
29736
29722
|
color = colors.white,
|
|
29737
29723
|
strokeWidth = 2
|
|
29738
29724
|
}) {
|
|
29739
|
-
return /* @__PURE__ */ jsx(
|
|
29725
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size * ASPECT_RATIO, viewBox: "0 0 13 4", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29740
29726
|
Path,
|
|
29741
29727
|
{
|
|
29742
29728
|
d: MORE_HORIZONTAL_PATH,
|
|
@@ -29751,7 +29737,7 @@ function MoreHorizontalIcon({
|
|
|
29751
29737
|
// src/icons/Navigate/navigatePath.ts
|
|
29752
29738
|
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";
|
|
29753
29739
|
function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29754
|
-
return /* @__PURE__ */ jsx(
|
|
29740
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29755
29741
|
Path,
|
|
29756
29742
|
{
|
|
29757
29743
|
d: NAVIGATE_PATH,
|
|
@@ -29766,7 +29752,7 @@ function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29766
29752
|
// src/icons/Phone/phonePath.ts
|
|
29767
29753
|
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";
|
|
29768
29754
|
function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29769
|
-
return /* @__PURE__ */ jsx(
|
|
29755
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29770
29756
|
Path,
|
|
29771
29757
|
{
|
|
29772
29758
|
d: PHONE_PATH,
|
|
@@ -29781,7 +29767,7 @@ function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29781
29767
|
// src/icons/Plus/plusPath.ts
|
|
29782
29768
|
var PLUS_PATH = "M8.00004 3.33325V12.6666M3.33337 7.99992H12.6667";
|
|
29783
29769
|
function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
29784
|
-
return /* @__PURE__ */ jsx(
|
|
29770
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29785
29771
|
Path,
|
|
29786
29772
|
{
|
|
29787
29773
|
d: PLUS_PATH,
|
|
@@ -29796,7 +29782,7 @@ function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
|
29796
29782
|
// src/icons/Refresh/refreshPath.ts
|
|
29797
29783
|
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";
|
|
29798
29784
|
function RefreshIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29799
|
-
return /* @__PURE__ */ jsx(
|
|
29785
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29800
29786
|
Path,
|
|
29801
29787
|
{
|
|
29802
29788
|
d: REFRESH_PATH,
|
|
@@ -29815,7 +29801,7 @@ function RefundStatusIcon({
|
|
|
29815
29801
|
color = colors.primary,
|
|
29816
29802
|
strokeWidth = 2
|
|
29817
29803
|
}) {
|
|
29818
|
-
return /* @__PURE__ */ jsx(
|
|
29804
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29819
29805
|
Path,
|
|
29820
29806
|
{
|
|
29821
29807
|
d: REFUND_STATUS_PATH,
|
|
@@ -29835,7 +29821,7 @@ function SearchIcon({
|
|
|
29835
29821
|
color = colors.primary,
|
|
29836
29822
|
strokeWidth = 2
|
|
29837
29823
|
}) {
|
|
29838
|
-
return /* @__PURE__ */ jsxs(
|
|
29824
|
+
return /* @__PURE__ */ jsxs(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
|
|
29839
29825
|
/* @__PURE__ */ jsx(
|
|
29840
29826
|
Path,
|
|
29841
29827
|
{
|
|
@@ -29862,7 +29848,7 @@ function SearchIcon({
|
|
|
29862
29848
|
// src/icons/Settings/settingsPath.ts
|
|
29863
29849
|
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";
|
|
29864
29850
|
function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29865
|
-
return /* @__PURE__ */ jsx(
|
|
29851
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29866
29852
|
Path,
|
|
29867
29853
|
{
|
|
29868
29854
|
d: SETTINGS_PATH,
|
|
@@ -29878,7 +29864,7 @@ function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 })
|
|
|
29878
29864
|
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";
|
|
29879
29865
|
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";
|
|
29880
29866
|
function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29881
|
-
return /* @__PURE__ */ jsxs(
|
|
29867
|
+
return /* @__PURE__ */ jsxs(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
|
|
29882
29868
|
/* @__PURE__ */ jsx(
|
|
29883
29869
|
Path,
|
|
29884
29870
|
{
|
|
@@ -29905,7 +29891,7 @@ function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29905
29891
|
// src/icons/Sidebar/sidebarPath.ts
|
|
29906
29892
|
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";
|
|
29907
29893
|
function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29908
|
-
return /* @__PURE__ */ jsx(
|
|
29894
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29909
29895
|
Path,
|
|
29910
29896
|
{
|
|
29911
29897
|
d: SIDEBAR_PATH,
|
|
@@ -29920,7 +29906,7 @@ function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29920
29906
|
// src/icons/Sort/sortPath.ts
|
|
29921
29907
|
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";
|
|
29922
29908
|
function SortIcon({ size = 20, color = colors.grey300, strokeWidth = 2 }) {
|
|
29923
|
-
return /* @__PURE__ */ jsx(
|
|
29909
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29924
29910
|
Path,
|
|
29925
29911
|
{
|
|
29926
29912
|
d: SORT_PATH,
|
|
@@ -29942,7 +29928,7 @@ function StarIcon({
|
|
|
29942
29928
|
strokeWidth = 2
|
|
29943
29929
|
}) {
|
|
29944
29930
|
const resolvedColor = color ?? (active ? "#E38E5E" : colors.grey150);
|
|
29945
|
-
return /* @__PURE__ */ jsx(
|
|
29931
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29946
29932
|
Path,
|
|
29947
29933
|
{
|
|
29948
29934
|
d: STAR_PATH,
|
|
@@ -29960,7 +29946,7 @@ function StarFilledIcon({
|
|
|
29960
29946
|
color = "#E38E5E",
|
|
29961
29947
|
strokeWidth = 2
|
|
29962
29948
|
}) {
|
|
29963
|
-
return /* @__PURE__ */ jsx(
|
|
29949
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: color, children: /* @__PURE__ */ jsx(
|
|
29964
29950
|
Path,
|
|
29965
29951
|
{
|
|
29966
29952
|
d: STAR_PATH,
|
|
@@ -29976,7 +29962,7 @@ function StarFilledIcon({
|
|
|
29976
29962
|
// src/icons/TableView/tableViewPath.ts
|
|
29977
29963
|
var TABLE_VIEW_PATH = "M1 6L16 6M6 1L6 16M5 1H12C13.4001 1 14.1002 1 14.635 1.27248C15.1054 1.51217 15.4878 1.89462 15.7275 2.36502C16 2.8998 16 3.59987 16 5V12C16 13.4001 16 14.1002 15.7275 14.635C15.4878 15.1054 15.1054 15.4878 14.635 15.7275C14.1002 16 13.4001 16 12 16H5C3.59987 16 2.8998 16 2.36502 15.7275C1.89462 15.4878 1.51217 15.1054 1.27248 14.635C1 14.1002 1 13.4001 1 12V5C1 3.59987 1 2.8998 1.27248 2.36502C1.51217 1.89462 1.89462 1.51217 2.36502 1.27248C2.8998 1 3.59987 1 5 1Z";
|
|
29978
29964
|
function TableViewIcon({ size = 17, color = colors.grey400, strokeWidth = 2 }) {
|
|
29979
|
-
return /* @__PURE__ */ jsx(
|
|
29965
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 17 17", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29980
29966
|
Path,
|
|
29981
29967
|
{
|
|
29982
29968
|
d: TABLE_VIEW_PATH,
|
|
@@ -29991,7 +29977,7 @@ function TableViewIcon({ size = 17, color = colors.grey400, strokeWidth = 2 }) {
|
|
|
29991
29977
|
// src/icons/User/userPath.ts
|
|
29992
29978
|
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";
|
|
29993
29979
|
function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29994
|
-
return /* @__PURE__ */ jsx(
|
|
29980
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
|
|
29995
29981
|
Path,
|
|
29996
29982
|
{
|
|
29997
29983
|
d: USER_PATH,
|
|
@@ -30006,7 +29992,7 @@ function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
30006
29992
|
// src/icons/UsersAlt/usersAltPath.ts
|
|
30007
29993
|
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";
|
|
30008
29994
|
function UsersAltIcon({ size = 28, color = colors.white }) {
|
|
30009
|
-
return /* @__PURE__ */ jsx(
|
|
29995
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsx(Path, { d: USERS_ALT_PATH, fill: color }) });
|
|
30010
29996
|
}
|
|
30011
29997
|
|
|
30012
29998
|
// src/icons/Video/videoPath.ts
|
|
@@ -30015,7 +30001,7 @@ var VIDEO_PATHS = [
|
|
|
30015
30001
|
"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"
|
|
30016
30002
|
];
|
|
30017
30003
|
function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
30018
|
-
return /* @__PURE__ */ jsx(
|
|
30004
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: VIDEO_PATHS.map((path) => /* @__PURE__ */ jsx(
|
|
30019
30005
|
Path,
|
|
30020
30006
|
{
|
|
30021
30007
|
d: path,
|
|
@@ -30031,7 +30017,7 @@ function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
|
30031
30017
|
// src/icons/VideoOff/videoOffPath.ts
|
|
30032
30018
|
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";
|
|
30033
30019
|
function VideoOffIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
30034
|
-
return /* @__PURE__ */ jsx(
|
|
30020
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
30035
30021
|
Path,
|
|
30036
30022
|
{
|
|
30037
30023
|
d: VIDEO_OFF_PATH,
|
|
@@ -30046,7 +30032,7 @@ function VideoOffIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
30046
30032
|
// src/icons/ZoomOut/zoomOutPath.ts
|
|
30047
30033
|
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";
|
|
30048
30034
|
function ZoomOutIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
30049
|
-
return /* @__PURE__ */ jsx(
|
|
30035
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
30050
30036
|
Path,
|
|
30051
30037
|
{
|
|
30052
30038
|
d: ZOOM_OUT_PATH,
|
|
@@ -30063,13 +30049,13 @@ var icons = {
|
|
|
30063
30049
|
alertTriangle: AlertTriangleIcon,
|
|
30064
30050
|
areaExpand: AreaExpandIcon,
|
|
30065
30051
|
apple: AppleIcon,
|
|
30066
|
-
arrowLeft: ArrowLeftIcon,
|
|
30067
30052
|
arrowRight: ArrowRightIcon,
|
|
30068
30053
|
bag: BagIcon,
|
|
30069
30054
|
ban: BanIcon,
|
|
30070
30055
|
bell: BellIcon,
|
|
30071
30056
|
building: BuildingIcon,
|
|
30072
30057
|
calendar: CalendarIcon,
|
|
30058
|
+
calendarMinus: CalendarMinusIcon,
|
|
30073
30059
|
calendarOutline: CalendarOutlineIcon,
|
|
30074
30060
|
camera: CameraIcon,
|
|
30075
30061
|
cameraFilled: CameraFilledIcon,
|
|
@@ -30080,7 +30066,6 @@ var icons = {
|
|
|
30080
30066
|
chevronLeft: ChevronLeftIcon,
|
|
30081
30067
|
clock: ClockIcon,
|
|
30082
30068
|
close: CloseIcon,
|
|
30083
|
-
currentLocation: CurrentLocationIcon,
|
|
30084
30069
|
edit: EditIcon,
|
|
30085
30070
|
clockFilled: ClockFilledIcon,
|
|
30086
30071
|
copy: CopyIcon,
|
|
@@ -30148,11 +30133,9 @@ var icons = {
|
|
|
30148
30133
|
var iconNames = Object.keys(icons);
|
|
30149
30134
|
var iconGroups = {
|
|
30150
30135
|
navigation: [
|
|
30151
|
-
"arrowLeft",
|
|
30152
30136
|
"arrowRight",
|
|
30153
30137
|
"chevronDown",
|
|
30154
30138
|
"chevronLeft",
|
|
30155
|
-
"currentLocation",
|
|
30156
30139
|
"home",
|
|
30157
30140
|
"listView",
|
|
30158
30141
|
"locationPin",
|
|
@@ -30180,6 +30163,7 @@ var iconGroups = {
|
|
|
30180
30163
|
"download",
|
|
30181
30164
|
"search",
|
|
30182
30165
|
"calendar",
|
|
30166
|
+
"calendarMinus",
|
|
30183
30167
|
"calendarOutline",
|
|
30184
30168
|
"close",
|
|
30185
30169
|
"edit",
|
|
@@ -30302,7 +30286,7 @@ var AMENITY_PATHS = {
|
|
|
30302
30286
|
]
|
|
30303
30287
|
};
|
|
30304
30288
|
function AmenityIcon({ name, size = 20, color = colors.primary }) {
|
|
30305
|
-
return /* @__PURE__ */ jsx(
|
|
30289
|
+
return /* @__PURE__ */ jsx(Svg21, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: AMENITY_PATHS[name].map((path, index) => /* @__PURE__ */ jsx(
|
|
30306
30290
|
Path,
|
|
30307
30291
|
{
|
|
30308
30292
|
d: path.d,
|
|
@@ -30844,7 +30828,7 @@ function BrandLogo({
|
|
|
30844
30828
|
const size = resolveBrandLogoSize(width, height);
|
|
30845
30829
|
const fill = BRAND_LOGO_COLORS[variant];
|
|
30846
30830
|
return /* @__PURE__ */ jsx(
|
|
30847
|
-
|
|
30831
|
+
Svg21,
|
|
30848
30832
|
{
|
|
30849
30833
|
width: size.width,
|
|
30850
30834
|
height: size.height,
|
|
@@ -31554,7 +31538,7 @@ var styles10 = StyleSheet.create({
|
|
|
31554
31538
|
label: {
|
|
31555
31539
|
fontFamily: fonts.sans,
|
|
31556
31540
|
fontSize: 12,
|
|
31557
|
-
fontWeight: "
|
|
31541
|
+
fontWeight: "700",
|
|
31558
31542
|
lineHeight: 12,
|
|
31559
31543
|
letterSpacing: 0
|
|
31560
31544
|
},
|
|
@@ -32091,7 +32075,7 @@ var styles15 = StyleSheet.create({
|
|
|
32091
32075
|
});
|
|
32092
32076
|
var DESKTOP_MIN_WIDTH3 = 1024;
|
|
32093
32077
|
var CHEVRON_SIZE3 = 24;
|
|
32094
|
-
|
|
32078
|
+
forwardRef(function Accordion2({
|
|
32095
32079
|
title,
|
|
32096
32080
|
children,
|
|
32097
32081
|
open: openProp,
|
|
@@ -32432,7 +32416,7 @@ var styles18 = StyleSheet.create({
|
|
|
32432
32416
|
flex: 1
|
|
32433
32417
|
}
|
|
32434
32418
|
});
|
|
32435
|
-
|
|
32419
|
+
forwardRef(
|
|
32436
32420
|
function QuantityInput2({
|
|
32437
32421
|
label,
|
|
32438
32422
|
icon: Icon2,
|
|
@@ -34246,9 +34230,10 @@ var styles26 = StyleSheet.create({
|
|
|
34246
34230
|
},
|
|
34247
34231
|
rangeValueRow: {
|
|
34248
34232
|
minWidth: 0,
|
|
34233
|
+
width: "100%",
|
|
34249
34234
|
flexDirection: "row",
|
|
34250
34235
|
alignItems: "center",
|
|
34251
|
-
justifyContent: "
|
|
34236
|
+
justifyContent: "space-between",
|
|
34252
34237
|
flexWrap: "nowrap",
|
|
34253
34238
|
gap: 10
|
|
34254
34239
|
},
|
|
@@ -34588,6 +34573,326 @@ var styles28 = StyleSheet.create({
|
|
|
34588
34573
|
maxHeight: "100%"
|
|
34589
34574
|
}
|
|
34590
34575
|
});
|
|
34576
|
+
|
|
34577
|
+
// src/components/Drawer/Drawer.tsx
|
|
34578
|
+
var import_react_dom2 = __toESM(require_react_dom());
|
|
34579
|
+
var BACKDROP_COLOR2 = "#09090933";
|
|
34580
|
+
var DEFAULT_WIDTH2 = 652;
|
|
34581
|
+
var DEFAULT_DURATION = 320;
|
|
34582
|
+
var WEB_Z_INDEX2 = 500;
|
|
34583
|
+
var CLOSE_ICON_SIZE = 24;
|
|
34584
|
+
forwardRef(function Drawer2({
|
|
34585
|
+
open,
|
|
34586
|
+
onClose,
|
|
34587
|
+
children,
|
|
34588
|
+
title,
|
|
34589
|
+
width = DEFAULT_WIDTH2,
|
|
34590
|
+
animationDuration = DEFAULT_DURATION,
|
|
34591
|
+
closeOnBackdropPress = true,
|
|
34592
|
+
backdropAccessibilityLabel = "Close",
|
|
34593
|
+
closeAccessibilityLabel = "Close",
|
|
34594
|
+
style,
|
|
34595
|
+
className
|
|
34596
|
+
}, forwardedRef) {
|
|
34597
|
+
const panelRef = useRef(null);
|
|
34598
|
+
const setPanelRef = useMemo(() => mergeRefs(panelRef, forwardedRef), [forwardedRef]);
|
|
34599
|
+
const resolvedClassName = className?.trim() || void 0;
|
|
34600
|
+
const closeTimeoutRef = useRef(null);
|
|
34601
|
+
const [mounted, setMounted] = useState(open);
|
|
34602
|
+
const [entered, setEntered] = useState(false);
|
|
34603
|
+
const animatedWidth = useRef(new Animated.Value(open ? width : 0)).current;
|
|
34604
|
+
const animatedBackdrop = useRef(new Animated.Value(open ? 1 : 0)).current;
|
|
34605
|
+
useApplyWebClassName(panelRef, resolvedClassName, mounted && Platform.OS === "web");
|
|
34606
|
+
useEffect(() => {
|
|
34607
|
+
if (!mounted || Platform.OS !== "web") return void 0;
|
|
34608
|
+
const previousOverflow = document.body.style.overflow;
|
|
34609
|
+
document.body.style.overflow = "hidden";
|
|
34610
|
+
const onKeyDown = (event) => {
|
|
34611
|
+
if (event.key === "Escape") onClose();
|
|
34612
|
+
};
|
|
34613
|
+
document.addEventListener("keydown", onKeyDown);
|
|
34614
|
+
return () => {
|
|
34615
|
+
document.body.style.overflow = previousOverflow;
|
|
34616
|
+
document.removeEventListener("keydown", onKeyDown);
|
|
34617
|
+
};
|
|
34618
|
+
}, [mounted, onClose]);
|
|
34619
|
+
useEffect(() => {
|
|
34620
|
+
if (Platform.OS !== "web") return void 0;
|
|
34621
|
+
if (closeTimeoutRef.current) {
|
|
34622
|
+
clearTimeout(closeTimeoutRef.current);
|
|
34623
|
+
closeTimeoutRef.current = null;
|
|
34624
|
+
}
|
|
34625
|
+
if (open) {
|
|
34626
|
+
setMounted(true);
|
|
34627
|
+
const frame = requestAnimationFrame(() => {
|
|
34628
|
+
requestAnimationFrame(() => setEntered(true));
|
|
34629
|
+
});
|
|
34630
|
+
return () => cancelAnimationFrame(frame);
|
|
34631
|
+
}
|
|
34632
|
+
setEntered(false);
|
|
34633
|
+
closeTimeoutRef.current = setTimeout(() => {
|
|
34634
|
+
setMounted(false);
|
|
34635
|
+
closeTimeoutRef.current = null;
|
|
34636
|
+
}, animationDuration + 50);
|
|
34637
|
+
return () => {
|
|
34638
|
+
if (closeTimeoutRef.current) {
|
|
34639
|
+
clearTimeout(closeTimeoutRef.current);
|
|
34640
|
+
closeTimeoutRef.current = null;
|
|
34641
|
+
}
|
|
34642
|
+
};
|
|
34643
|
+
}, [open, animationDuration]);
|
|
34644
|
+
useEffect(() => {
|
|
34645
|
+
if (Platform.OS === "web") return void 0;
|
|
34646
|
+
if (open) {
|
|
34647
|
+
setMounted(true);
|
|
34648
|
+
Animated.parallel([
|
|
34649
|
+
Animated.timing(animatedWidth, {
|
|
34650
|
+
toValue: width,
|
|
34651
|
+
duration: animationDuration,
|
|
34652
|
+
easing: Easing.out(Easing.cubic),
|
|
34653
|
+
useNativeDriver: false
|
|
34654
|
+
}),
|
|
34655
|
+
Animated.timing(animatedBackdrop, {
|
|
34656
|
+
toValue: 1,
|
|
34657
|
+
duration: animationDuration,
|
|
34658
|
+
easing: Easing.out(Easing.cubic),
|
|
34659
|
+
useNativeDriver: true
|
|
34660
|
+
})
|
|
34661
|
+
]).start();
|
|
34662
|
+
return void 0;
|
|
34663
|
+
}
|
|
34664
|
+
Animated.parallel([
|
|
34665
|
+
Animated.timing(animatedWidth, {
|
|
34666
|
+
toValue: 0,
|
|
34667
|
+
duration: animationDuration,
|
|
34668
|
+
easing: Easing.in(Easing.cubic),
|
|
34669
|
+
useNativeDriver: false
|
|
34670
|
+
}),
|
|
34671
|
+
Animated.timing(animatedBackdrop, {
|
|
34672
|
+
toValue: 0,
|
|
34673
|
+
duration: animationDuration,
|
|
34674
|
+
easing: Easing.in(Easing.cubic),
|
|
34675
|
+
useNativeDriver: true
|
|
34676
|
+
})
|
|
34677
|
+
]).start(({ finished }) => {
|
|
34678
|
+
if (finished) setMounted(false);
|
|
34679
|
+
});
|
|
34680
|
+
return void 0;
|
|
34681
|
+
}, [open, width, animationDuration, animatedWidth, animatedBackdrop]);
|
|
34682
|
+
const handleWebTransitionEnd = useCallback(
|
|
34683
|
+
(event) => {
|
|
34684
|
+
if (event.target !== event.currentTarget) return;
|
|
34685
|
+
if (event.propertyName !== "width") return;
|
|
34686
|
+
if (!open) {
|
|
34687
|
+
if (closeTimeoutRef.current) {
|
|
34688
|
+
clearTimeout(closeTimeoutRef.current);
|
|
34689
|
+
closeTimeoutRef.current = null;
|
|
34690
|
+
}
|
|
34691
|
+
setMounted(false);
|
|
34692
|
+
}
|
|
34693
|
+
},
|
|
34694
|
+
[open]
|
|
34695
|
+
);
|
|
34696
|
+
const header = title != null && title !== "" ? /* @__PURE__ */ jsxs(View, { style: styles29.header, children: [
|
|
34697
|
+
/* @__PURE__ */ jsx(Text, { style: styles29.title, numberOfLines: 1, children: title }),
|
|
34698
|
+
/* @__PURE__ */ jsx(
|
|
34699
|
+
Pressable,
|
|
34700
|
+
{
|
|
34701
|
+
accessibilityRole: "button",
|
|
34702
|
+
accessibilityLabel: closeAccessibilityLabel,
|
|
34703
|
+
hitSlop: 8,
|
|
34704
|
+
onPress: onClose,
|
|
34705
|
+
style: styles29.closeButton,
|
|
34706
|
+
children: /* @__PURE__ */ jsx(CloseIcon, { color: colors.white, size: CLOSE_ICON_SIZE })
|
|
34707
|
+
}
|
|
34708
|
+
)
|
|
34709
|
+
] }) : null;
|
|
34710
|
+
const panelContent = /* @__PURE__ */ jsxs(
|
|
34711
|
+
View,
|
|
34712
|
+
{
|
|
34713
|
+
ref: setPanelRef,
|
|
34714
|
+
accessibilityViewIsModal: true,
|
|
34715
|
+
style: [styles29.panelInner, { width }, style],
|
|
34716
|
+
onStartShouldSetResponder: () => true,
|
|
34717
|
+
children: [
|
|
34718
|
+
header,
|
|
34719
|
+
/* @__PURE__ */ jsx(View, { style: styles29.body, children })
|
|
34720
|
+
]
|
|
34721
|
+
}
|
|
34722
|
+
);
|
|
34723
|
+
if (Platform.OS === "web") {
|
|
34724
|
+
if (!mounted || typeof document === "undefined") return null;
|
|
34725
|
+
return (0, import_react_dom2.createPortal)(
|
|
34726
|
+
/* @__PURE__ */ jsxs(
|
|
34727
|
+
"div",
|
|
34728
|
+
{
|
|
34729
|
+
style: {
|
|
34730
|
+
position: "fixed",
|
|
34731
|
+
top: 0,
|
|
34732
|
+
right: 0,
|
|
34733
|
+
bottom: 0,
|
|
34734
|
+
left: 0,
|
|
34735
|
+
zIndex: WEB_Z_INDEX2,
|
|
34736
|
+
display: "flex",
|
|
34737
|
+
justifyContent: "flex-end",
|
|
34738
|
+
pointerEvents: "auto"
|
|
34739
|
+
},
|
|
34740
|
+
role: "presentation",
|
|
34741
|
+
children: [
|
|
34742
|
+
/* @__PURE__ */ jsx(
|
|
34743
|
+
"button",
|
|
34744
|
+
{
|
|
34745
|
+
type: "button",
|
|
34746
|
+
"aria-label": backdropAccessibilityLabel,
|
|
34747
|
+
disabled: !closeOnBackdropPress,
|
|
34748
|
+
onClick: closeOnBackdropPress ? onClose : void 0,
|
|
34749
|
+
style: {
|
|
34750
|
+
position: "absolute",
|
|
34751
|
+
top: 0,
|
|
34752
|
+
right: 0,
|
|
34753
|
+
bottom: 0,
|
|
34754
|
+
left: 0,
|
|
34755
|
+
backgroundColor: BACKDROP_COLOR2,
|
|
34756
|
+
backdropFilter: "blur(18px)",
|
|
34757
|
+
WebkitBackdropFilter: "blur(18px)",
|
|
34758
|
+
border: "none",
|
|
34759
|
+
padding: 0,
|
|
34760
|
+
margin: 0,
|
|
34761
|
+
cursor: closeOnBackdropPress ? "pointer" : "default",
|
|
34762
|
+
opacity: entered ? 1 : 0,
|
|
34763
|
+
transition: `opacity ${animationDuration}ms ease`
|
|
34764
|
+
}
|
|
34765
|
+
}
|
|
34766
|
+
),
|
|
34767
|
+
/* @__PURE__ */ jsx(
|
|
34768
|
+
"div",
|
|
34769
|
+
{
|
|
34770
|
+
onTransitionEnd: handleWebTransitionEnd,
|
|
34771
|
+
style: {
|
|
34772
|
+
position: "relative",
|
|
34773
|
+
zIndex: 1,
|
|
34774
|
+
height: "100%",
|
|
34775
|
+
width: entered ? Math.min(width, typeof window !== "undefined" ? window.innerWidth : width) : 0,
|
|
34776
|
+
minWidth: 0,
|
|
34777
|
+
maxWidth: "100%",
|
|
34778
|
+
overflow: "hidden",
|
|
34779
|
+
transition: `width ${animationDuration}ms cubic-bezier(0.32, 0.72, 0, 1)`,
|
|
34780
|
+
willChange: "width",
|
|
34781
|
+
boxSizing: "border-box"
|
|
34782
|
+
},
|
|
34783
|
+
children: /* @__PURE__ */ jsx(
|
|
34784
|
+
"div",
|
|
34785
|
+
{
|
|
34786
|
+
style: {
|
|
34787
|
+
width,
|
|
34788
|
+
maxWidth: "100%",
|
|
34789
|
+
height: "100%",
|
|
34790
|
+
marginLeft: "auto",
|
|
34791
|
+
display: "flex",
|
|
34792
|
+
flexDirection: "column"
|
|
34793
|
+
},
|
|
34794
|
+
children: panelContent
|
|
34795
|
+
}
|
|
34796
|
+
)
|
|
34797
|
+
}
|
|
34798
|
+
)
|
|
34799
|
+
]
|
|
34800
|
+
}
|
|
34801
|
+
),
|
|
34802
|
+
document.body
|
|
34803
|
+
);
|
|
34804
|
+
}
|
|
34805
|
+
if (!mounted) return null;
|
|
34806
|
+
return /* @__PURE__ */ jsx(
|
|
34807
|
+
Modal$1,
|
|
34808
|
+
{
|
|
34809
|
+
visible: mounted,
|
|
34810
|
+
transparent: true,
|
|
34811
|
+
animationType: "none",
|
|
34812
|
+
onRequestClose: onClose,
|
|
34813
|
+
statusBarTranslucent: true,
|
|
34814
|
+
children: /* @__PURE__ */ jsxs(View, { style: styles29.root, accessibilityViewIsModal: true, children: [
|
|
34815
|
+
/* @__PURE__ */ jsx(
|
|
34816
|
+
Animated.View,
|
|
34817
|
+
{
|
|
34818
|
+
pointerEvents: "none",
|
|
34819
|
+
style: [styles29.backdrop, { opacity: animatedBackdrop }]
|
|
34820
|
+
}
|
|
34821
|
+
),
|
|
34822
|
+
/* @__PURE__ */ jsx(
|
|
34823
|
+
Pressable,
|
|
34824
|
+
{
|
|
34825
|
+
accessibilityRole: "button",
|
|
34826
|
+
accessibilityLabel: backdropAccessibilityLabel,
|
|
34827
|
+
disabled: !closeOnBackdropPress,
|
|
34828
|
+
onPress: closeOnBackdropPress ? onClose : void 0,
|
|
34829
|
+
style: StyleSheet.absoluteFill
|
|
34830
|
+
}
|
|
34831
|
+
),
|
|
34832
|
+
/* @__PURE__ */ jsx(Animated.View, { style: [styles29.panelShell, { width: animatedWidth }], children: panelContent })
|
|
34833
|
+
] })
|
|
34834
|
+
}
|
|
34835
|
+
);
|
|
34836
|
+
});
|
|
34837
|
+
var styles29 = StyleSheet.create({
|
|
34838
|
+
root: {
|
|
34839
|
+
flex: 1,
|
|
34840
|
+
flexDirection: "row",
|
|
34841
|
+
justifyContent: "flex-end"
|
|
34842
|
+
},
|
|
34843
|
+
backdrop: {
|
|
34844
|
+
...StyleSheet.absoluteFillObject,
|
|
34845
|
+
backgroundColor: BACKDROP_COLOR2
|
|
34846
|
+
},
|
|
34847
|
+
panelShell: {
|
|
34848
|
+
zIndex: 1,
|
|
34849
|
+
height: "100%",
|
|
34850
|
+
maxWidth: "100%",
|
|
34851
|
+
overflow: "hidden",
|
|
34852
|
+
alignItems: "flex-end",
|
|
34853
|
+
minWidth: 0
|
|
34854
|
+
},
|
|
34855
|
+
panelInner: {
|
|
34856
|
+
height: "100%",
|
|
34857
|
+
maxWidth: "100%",
|
|
34858
|
+
backgroundColor: colors.grey800,
|
|
34859
|
+
flexShrink: 0
|
|
34860
|
+
},
|
|
34861
|
+
header: {
|
|
34862
|
+
height: 65,
|
|
34863
|
+
flexDirection: "row",
|
|
34864
|
+
alignItems: "center",
|
|
34865
|
+
justifyContent: "space-between",
|
|
34866
|
+
paddingTop: 20,
|
|
34867
|
+
paddingRight: 24,
|
|
34868
|
+
paddingBottom: 20,
|
|
34869
|
+
paddingLeft: 24,
|
|
34870
|
+
borderBottomWidth: 1,
|
|
34871
|
+
borderBottomColor: colors.grey650
|
|
34872
|
+
},
|
|
34873
|
+
title: {
|
|
34874
|
+
flex: 1,
|
|
34875
|
+
fontFamily: fonts.sans,
|
|
34876
|
+
fontSize: 16,
|
|
34877
|
+
fontWeight: "600",
|
|
34878
|
+
lineHeight: 22,
|
|
34879
|
+
letterSpacing: 0,
|
|
34880
|
+
color: colors.white,
|
|
34881
|
+
marginRight: 12,
|
|
34882
|
+
overflow: "visible"
|
|
34883
|
+
},
|
|
34884
|
+
closeButton: {
|
|
34885
|
+
width: CLOSE_ICON_SIZE,
|
|
34886
|
+
height: CLOSE_ICON_SIZE,
|
|
34887
|
+
alignItems: "center",
|
|
34888
|
+
justifyContent: "center",
|
|
34889
|
+
flexShrink: 0
|
|
34890
|
+
},
|
|
34891
|
+
body: {
|
|
34892
|
+
flex: 1,
|
|
34893
|
+
minHeight: 0
|
|
34894
|
+
}
|
|
34895
|
+
});
|
|
34591
34896
|
function renderStatefulIcon(icon, FallbackIcon, props) {
|
|
34592
34897
|
if (icon == null) {
|
|
34593
34898
|
return /* @__PURE__ */ jsx(FallbackIcon, { ...props });
|
|
@@ -34601,7 +34906,7 @@ function renderStatefulIcon(icon, FallbackIcon, props) {
|
|
|
34601
34906
|
}
|
|
34602
34907
|
return icon;
|
|
34603
34908
|
}
|
|
34604
|
-
var
|
|
34909
|
+
var DEFAULT_WIDTH3 = 308;
|
|
34605
34910
|
var sizeConfig2 = {
|
|
34606
34911
|
lg: {
|
|
34607
34912
|
height: 44,
|
|
@@ -34738,7 +35043,7 @@ var Input = forwardRef(function Input2({
|
|
|
34738
35043
|
useApplyWebClassName(rootRef, className);
|
|
34739
35044
|
useApplyWebClassName(inputRef, inputClassName);
|
|
34740
35045
|
const fieldChromeStyle = [
|
|
34741
|
-
|
|
35046
|
+
styles30.field,
|
|
34742
35047
|
{
|
|
34743
35048
|
height: metrics.height,
|
|
34744
35049
|
borderRadius: metrics.borderRadius,
|
|
@@ -34750,11 +35055,11 @@ var Input = forwardRef(function Input2({
|
|
|
34750
35055
|
borderColor: chrome.borderColor,
|
|
34751
35056
|
backgroundColor: chrome.backgroundColor
|
|
34752
35057
|
},
|
|
34753
|
-
Platform.OS === "web" ?
|
|
35058
|
+
Platform.OS === "web" ? styles30.fieldWeb : null,
|
|
34754
35059
|
fieldStyle
|
|
34755
35060
|
];
|
|
34756
|
-
return /* @__PURE__ */ jsxs(View, { ref: rootRef, style: [
|
|
34757
|
-
showLabel && label ? /* @__PURE__ */ jsx(Pressable, { disabled, onPress: focusInput, style:
|
|
35061
|
+
return /* @__PURE__ */ jsxs(View, { ref: rootRef, style: [styles30.root, disabled && styles30.disabled, style], children: [
|
|
35062
|
+
showLabel && label ? /* @__PURE__ */ jsx(Pressable, { disabled, onPress: focusInput, style: styles30.labelPressable, children: /* @__PURE__ */ jsx(Text, { style: [styles30.label, { color: chrome.labelColor }], children: label }) }) : null,
|
|
34758
35063
|
/* @__PURE__ */ jsxs(
|
|
34759
35064
|
Pressable,
|
|
34760
35065
|
{
|
|
@@ -34763,7 +35068,7 @@ var Input = forwardRef(function Input2({
|
|
|
34763
35068
|
onPress: focusInput,
|
|
34764
35069
|
style: fieldChromeStyle,
|
|
34765
35070
|
children: [
|
|
34766
|
-
hasLeftIcon ? /* @__PURE__ */ jsx(View, { style: [
|
|
35071
|
+
hasLeftIcon ? /* @__PURE__ */ jsx(View, { style: [styles30.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }], children: leftIconNode }) : null,
|
|
34767
35072
|
/* @__PURE__ */ jsx(
|
|
34768
35073
|
TextInput,
|
|
34769
35074
|
{
|
|
@@ -34788,11 +35093,11 @@ var Input = forwardRef(function Input2({
|
|
|
34788
35093
|
onBlur?.(event);
|
|
34789
35094
|
},
|
|
34790
35095
|
style: [
|
|
34791
|
-
|
|
35096
|
+
styles30.input,
|
|
34792
35097
|
metrics.text,
|
|
34793
35098
|
{ color: chrome.textColor },
|
|
34794
|
-
Platform.OS === "web" ?
|
|
34795
|
-
Platform.OS === "android" ?
|
|
35099
|
+
Platform.OS === "web" ? styles30.inputWeb : null,
|
|
35100
|
+
Platform.OS === "android" ? styles30.inputAndroid : null,
|
|
34796
35101
|
inputStyle
|
|
34797
35102
|
],
|
|
34798
35103
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
@@ -34804,7 +35109,7 @@ var Input = forwardRef(function Input2({
|
|
|
34804
35109
|
{
|
|
34805
35110
|
onPress: onRightIconPress,
|
|
34806
35111
|
disabled,
|
|
34807
|
-
style: [
|
|
35112
|
+
style: [styles30.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }],
|
|
34808
35113
|
accessibilityRole: "button",
|
|
34809
35114
|
accessibilityLabel: rightIconAccessibilityLabel,
|
|
34810
35115
|
hitSlop: 8,
|
|
@@ -34816,19 +35121,19 @@ var Input = forwardRef(function Input2({
|
|
|
34816
35121
|
accessibilityRole: "none",
|
|
34817
35122
|
disabled,
|
|
34818
35123
|
onPress: focusInput,
|
|
34819
|
-
style: [
|
|
35124
|
+
style: [styles30.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }],
|
|
34820
35125
|
children: rightIconNode
|
|
34821
35126
|
}
|
|
34822
35127
|
) : null
|
|
34823
35128
|
]
|
|
34824
35129
|
}
|
|
34825
35130
|
),
|
|
34826
|
-
showHint && hint ? /* @__PURE__ */ jsx(Text, { style: [
|
|
35131
|
+
showHint && hint ? /* @__PURE__ */ jsx(Text, { style: [styles30.hint, { color: chrome.hintColor }], children: hint }) : null
|
|
34827
35132
|
] });
|
|
34828
35133
|
});
|
|
34829
|
-
var
|
|
35134
|
+
var styles30 = StyleSheet.create({
|
|
34830
35135
|
root: {
|
|
34831
|
-
width:
|
|
35136
|
+
width: DEFAULT_WIDTH3,
|
|
34832
35137
|
gap: 8,
|
|
34833
35138
|
alignSelf: "flex-start"
|
|
34834
35139
|
},
|
|
@@ -34878,7 +35183,7 @@ var MENU_MAX_HEIGHT = 248;
|
|
|
34878
35183
|
var BLUR_CLOSE_DELAY_MS = 120;
|
|
34879
35184
|
var AUTOCOMPLETE_ROOT_Z_INDEX = 1100;
|
|
34880
35185
|
var AUTOCOMPLETE_MENU_Z_INDEX = 1101;
|
|
34881
|
-
|
|
35186
|
+
forwardRef(
|
|
34882
35187
|
function AutocompleteInput2({
|
|
34883
35188
|
value,
|
|
34884
35189
|
options,
|
|
@@ -34964,7 +35269,7 @@ var AutocompleteInput = forwardRef(
|
|
|
34964
35269
|
View,
|
|
34965
35270
|
{
|
|
34966
35271
|
ref: setRootRef,
|
|
34967
|
-
style: [
|
|
35272
|
+
style: [styles31.root, open && styles31.rootOpen, containerStyle],
|
|
34968
35273
|
accessibilityState: { disabled, expanded: open },
|
|
34969
35274
|
children: [
|
|
34970
35275
|
/* @__PURE__ */ jsx(
|
|
@@ -35001,16 +35306,16 @@ var AutocompleteInput = forwardRef(
|
|
|
35001
35306
|
onSubmitEditing: submit
|
|
35002
35307
|
}
|
|
35003
35308
|
),
|
|
35004
|
-
showMenu ? /* @__PURE__ */ jsx(View, { ref: menuRef, style: [
|
|
35309
|
+
showMenu ? /* @__PURE__ */ jsx(View, { ref: menuRef, style: [styles31.menu, menuStyle], children: loading ? /* @__PURE__ */ jsxs(View, { style: styles31.statusRow, children: [
|
|
35005
35310
|
/* @__PURE__ */ jsx(ActivityIndicator, { color: colors.primary, size: "small" }),
|
|
35006
|
-
/* @__PURE__ */ jsx(Text, { style:
|
|
35007
|
-
] }) : options.length === 0 ? /* @__PURE__ */ jsx(View, { style:
|
|
35311
|
+
/* @__PURE__ */ jsx(Text, { style: styles31.statusText, children: loadingText })
|
|
35312
|
+
] }) : options.length === 0 ? /* @__PURE__ */ jsx(View, { style: styles31.statusRow, children: /* @__PURE__ */ jsx(Text, { style: styles31.statusText, children: emptyText }) }) : /* @__PURE__ */ jsx(
|
|
35008
35313
|
ScrollView,
|
|
35009
35314
|
{
|
|
35010
35315
|
keyboardShouldPersistTaps: "handled",
|
|
35011
35316
|
nestedScrollEnabled: true,
|
|
35012
35317
|
showsVerticalScrollIndicator: true,
|
|
35013
|
-
style:
|
|
35318
|
+
style: styles31.list,
|
|
35014
35319
|
children: options.map((option, index) => {
|
|
35015
35320
|
const highlighted = index === highlightedIndex;
|
|
35016
35321
|
return /* @__PURE__ */ jsx(
|
|
@@ -35019,10 +35324,10 @@ var AutocompleteInput = forwardRef(
|
|
|
35019
35324
|
accessibilityRole: "button",
|
|
35020
35325
|
onHoverIn: () => setHighlightedIndex(index),
|
|
35021
35326
|
onPress: () => selectOption(option),
|
|
35022
|
-
style: [
|
|
35327
|
+
style: [styles31.option, highlighted && styles31.optionHighlighted],
|
|
35023
35328
|
children: renderOption ? renderOption(option, highlighted) : /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
35024
|
-
/* @__PURE__ */ jsx(Text, { numberOfLines: 1, style:
|
|
35025
|
-
option.description ? /* @__PURE__ */ jsx(Text, { numberOfLines: 1, style:
|
|
35329
|
+
/* @__PURE__ */ jsx(Text, { numberOfLines: 1, style: styles31.optionLabel, children: option.label }),
|
|
35330
|
+
option.description ? /* @__PURE__ */ jsx(Text, { numberOfLines: 1, style: styles31.optionDescription, children: option.description }) : null
|
|
35026
35331
|
] })
|
|
35027
35332
|
},
|
|
35028
35333
|
option.value
|
|
@@ -35035,7 +35340,7 @@ var AutocompleteInput = forwardRef(
|
|
|
35035
35340
|
);
|
|
35036
35341
|
}
|
|
35037
35342
|
);
|
|
35038
|
-
var
|
|
35343
|
+
var styles31 = StyleSheet.create({
|
|
35039
35344
|
root: {
|
|
35040
35345
|
position: "relative",
|
|
35041
35346
|
width: 308
|
|
@@ -35221,8 +35526,8 @@ var VerificationCodeInput = forwardRef(function VerificationCodeInput2({
|
|
|
35221
35526
|
const cellGap = mobile ? MOBILE_GAP : DESKTOP_GAP;
|
|
35222
35527
|
const rowWidth = cellWidth * safeLength + cellGap * Math.max(0, safeLength - 1);
|
|
35223
35528
|
const showErrorMessage = Boolean(error && errorMessage);
|
|
35224
|
-
return /* @__PURE__ */ jsxs(View, { ...viewProps, ref: rootRef, style: [
|
|
35225
|
-
/* @__PURE__ */ jsx(View, { style: [
|
|
35529
|
+
return /* @__PURE__ */ jsxs(View, { ...viewProps, ref: rootRef, style: [styles32.wrapper, disabled && styles32.disabled, style], children: [
|
|
35530
|
+
/* @__PURE__ */ jsx(View, { style: [styles32.row, { width: rowWidth, maxWidth: "100%", gap: cellGap }], children: Array.from({ length: safeLength }, (_, index) => {
|
|
35226
35531
|
const active = focusedIndex === index;
|
|
35227
35532
|
const borderColor = error ? colors.red : active ? colors.primary : colors.grey600;
|
|
35228
35533
|
return /* @__PURE__ */ jsx(
|
|
@@ -35247,15 +35552,15 @@ var VerificationCodeInput = forwardRef(function VerificationCodeInput2({
|
|
|
35247
35552
|
onSubmitEditing: () => onSubmit?.(currentCode),
|
|
35248
35553
|
selectTextOnFocus: true,
|
|
35249
35554
|
style: [
|
|
35250
|
-
|
|
35555
|
+
styles32.cell,
|
|
35251
35556
|
{
|
|
35252
35557
|
width: cellWidth,
|
|
35253
35558
|
height: cellHeight,
|
|
35254
35559
|
borderColor,
|
|
35255
35560
|
color: error ? colors.red : colors.white
|
|
35256
35561
|
},
|
|
35257
|
-
Platform.OS === "web" ?
|
|
35258
|
-
Platform.OS === "android" ?
|
|
35562
|
+
Platform.OS === "web" ? styles32.cellWeb : null,
|
|
35563
|
+
Platform.OS === "android" ? styles32.cellAndroid : null,
|
|
35259
35564
|
inputStyle
|
|
35260
35565
|
],
|
|
35261
35566
|
value: currentCode[index] ?? ""
|
|
@@ -35263,10 +35568,10 @@ var VerificationCodeInput = forwardRef(function VerificationCodeInput2({
|
|
|
35263
35568
|
index
|
|
35264
35569
|
);
|
|
35265
35570
|
}) }),
|
|
35266
|
-
showErrorMessage ? /* @__PURE__ */ jsx(Text, { accessibilityLiveRegion: "assertive", style:
|
|
35571
|
+
showErrorMessage ? /* @__PURE__ */ jsx(Text, { accessibilityLiveRegion: "assertive", style: styles32.errorMessage, children: errorMessage }) : null
|
|
35267
35572
|
] });
|
|
35268
35573
|
});
|
|
35269
|
-
var
|
|
35574
|
+
var styles32 = StyleSheet.create({
|
|
35270
35575
|
wrapper: {
|
|
35271
35576
|
minWidth: 0,
|
|
35272
35577
|
alignSelf: "center",
|
|
@@ -35311,7 +35616,7 @@ var styles31 = StyleSheet.create({
|
|
|
35311
35616
|
color: colors.red
|
|
35312
35617
|
}
|
|
35313
35618
|
});
|
|
35314
|
-
var
|
|
35619
|
+
var DEFAULT_WIDTH4 = 308;
|
|
35315
35620
|
var TRIGGER_HEIGHT2 = 44;
|
|
35316
35621
|
var TRIGGER_RADIUS2 = 60;
|
|
35317
35622
|
var MENU_RADIUS3 = 24;
|
|
@@ -35390,25 +35695,25 @@ function MultiValueChips({ options, disabled, onRemove }) {
|
|
|
35390
35695
|
const next = Math.ceil(event.nativeEvent.layout.width);
|
|
35391
35696
|
setEllipsisWidth((current) => current === next ? current : next);
|
|
35392
35697
|
};
|
|
35393
|
-
return /* @__PURE__ */ jsxs(View, { style:
|
|
35394
|
-
/* @__PURE__ */ jsxs(View, { pointerEvents: "none", style:
|
|
35698
|
+
return /* @__PURE__ */ jsxs(View, { style: styles33.multiValueRoot, children: [
|
|
35699
|
+
/* @__PURE__ */ jsxs(View, { pointerEvents: "none", style: styles33.measureRow, children: [
|
|
35395
35700
|
options.map((option) => /* @__PURE__ */ jsxs(
|
|
35396
35701
|
View,
|
|
35397
35702
|
{
|
|
35398
|
-
style:
|
|
35703
|
+
style: styles33.chip,
|
|
35399
35704
|
onLayout: (event) => handleChipLayout(option.value, event),
|
|
35400
35705
|
children: [
|
|
35401
|
-
/* @__PURE__ */ jsx(Text, { style:
|
|
35402
|
-
/* @__PURE__ */ jsx(Text, { style:
|
|
35706
|
+
/* @__PURE__ */ jsx(Text, { style: styles33.chipLabel, numberOfLines: 1, children: option.label }),
|
|
35707
|
+
/* @__PURE__ */ jsx(Text, { style: styles33.chipRemove, children: "\xD7" })
|
|
35403
35708
|
]
|
|
35404
35709
|
},
|
|
35405
35710
|
`measure-${option.value}`
|
|
35406
35711
|
)),
|
|
35407
|
-
/* @__PURE__ */ jsx(View, { style:
|
|
35712
|
+
/* @__PURE__ */ jsx(View, { style: styles33.ellipsis, onLayout: handleEllipsisLayout, children: /* @__PURE__ */ jsx(Text, { style: styles33.ellipsisText, children: "..." }) })
|
|
35408
35713
|
] }),
|
|
35409
|
-
/* @__PURE__ */ jsxs(View, { style:
|
|
35410
|
-
visible.map((option) => /* @__PURE__ */ jsxs(View, { style:
|
|
35411
|
-
/* @__PURE__ */ jsx(Text, { style:
|
|
35714
|
+
/* @__PURE__ */ jsxs(View, { style: styles33.chipsRow, onLayout: handleContainerLayout, children: [
|
|
35715
|
+
visible.map((option) => /* @__PURE__ */ jsxs(View, { style: styles33.chip, children: [
|
|
35716
|
+
/* @__PURE__ */ jsx(Text, { style: styles33.chipLabel, numberOfLines: 1, children: option.label }),
|
|
35412
35717
|
/* @__PURE__ */ jsx(
|
|
35413
35718
|
Pressable,
|
|
35414
35719
|
{
|
|
@@ -35420,11 +35725,11 @@ function MultiValueChips({ options, disabled, onRemove }) {
|
|
|
35420
35725
|
hitSlop: 6,
|
|
35421
35726
|
accessibilityRole: "button",
|
|
35422
35727
|
accessibilityLabel: `Remove ${option.label}`,
|
|
35423
|
-
children: /* @__PURE__ */ jsx(Text, { style:
|
|
35728
|
+
children: /* @__PURE__ */ jsx(Text, { style: styles33.chipRemove, children: "\xD7" })
|
|
35424
35729
|
}
|
|
35425
35730
|
)
|
|
35426
35731
|
] }, option.value)),
|
|
35427
|
-
hasOverflow ? /* @__PURE__ */ jsx(View, { style:
|
|
35732
|
+
hasOverflow ? /* @__PURE__ */ jsx(View, { style: styles33.ellipsis, children: /* @__PURE__ */ jsx(Text, { style: styles33.ellipsisText, children: "..." }) }) : null
|
|
35428
35733
|
] })
|
|
35429
35734
|
] });
|
|
35430
35735
|
}
|
|
@@ -35695,11 +36000,11 @@ var Select = forwardRef(
|
|
|
35695
36000
|
{
|
|
35696
36001
|
...rest,
|
|
35697
36002
|
ref: setRootRef,
|
|
35698
|
-
style: [
|
|
36003
|
+
style: [styles33.root, isOpen && styles33.rootOpen, disabled && styles33.disabled, style],
|
|
35699
36004
|
accessibilityState: { disabled, expanded: isOpen },
|
|
35700
36005
|
children: [
|
|
35701
|
-
showLabel && label ? /* @__PURE__ */ jsx(Text, { style: [
|
|
35702
|
-
/* @__PURE__ */ jsxs(View, { style: [
|
|
36006
|
+
showLabel && label ? /* @__PURE__ */ jsx(Text, { style: [styles33.label, { color: labelColor }], children: label }) : null,
|
|
36007
|
+
/* @__PURE__ */ jsxs(View, { style: [styles33.triggerWrap, isOpen && styles33.triggerWrapOpen], children: [
|
|
35703
36008
|
/* @__PURE__ */ jsxs(
|
|
35704
36009
|
Pressable,
|
|
35705
36010
|
{
|
|
@@ -35710,23 +36015,23 @@ var Select = forwardRef(
|
|
|
35710
36015
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
35711
36016
|
accessibilityState: { disabled, expanded: isOpen },
|
|
35712
36017
|
style: [
|
|
35713
|
-
|
|
36018
|
+
styles33.trigger,
|
|
35714
36019
|
{
|
|
35715
36020
|
borderColor: triggerBorderColor,
|
|
35716
36021
|
backgroundColor: colors.grey700
|
|
35717
36022
|
}
|
|
35718
36023
|
],
|
|
35719
36024
|
children: [
|
|
35720
|
-
hasLeftIcon ? /* @__PURE__ */ jsx(View, { style:
|
|
35721
|
-
/* @__PURE__ */ jsx(View, { style:
|
|
36025
|
+
hasLeftIcon ? /* @__PURE__ */ jsx(View, { style: styles33.iconSlot, children: leftIconNode }) : null,
|
|
36026
|
+
/* @__PURE__ */ jsx(View, { style: styles33.triggerContent, children: multiple && hasValue ? /* @__PURE__ */ jsx(
|
|
35722
36027
|
MultiValueChips,
|
|
35723
36028
|
{
|
|
35724
36029
|
options: selectedOptions,
|
|
35725
36030
|
disabled,
|
|
35726
36031
|
onRemove: handleRemoveChip
|
|
35727
36032
|
}
|
|
35728
|
-
) : /* @__PURE__ */ jsx(Text, { style: [
|
|
35729
|
-
/* @__PURE__ */ jsx(View, { style: [
|
|
36033
|
+
) : /* @__PURE__ */ jsx(Text, { style: [styles33.triggerText, { color: triggerTextColor }], numberOfLines: 1, children: multiple ? placeholder : singleLabel }) }),
|
|
36034
|
+
/* @__PURE__ */ jsx(View, { style: [styles33.iconSlot, isOpen && styles33.chevronOpen], children: /* @__PURE__ */ jsx(ChevronDownIcon, { size: ICON_SIZE13, color: isOpen ? colors.primary : colors.grey100 }) })
|
|
35730
36035
|
]
|
|
35731
36036
|
}
|
|
35732
36037
|
),
|
|
@@ -35734,14 +36039,14 @@ var Select = forwardRef(
|
|
|
35734
36039
|
View,
|
|
35735
36040
|
{
|
|
35736
36041
|
style: [
|
|
35737
|
-
|
|
35738
|
-
menuAlignEnd ?
|
|
35739
|
-
menuPlaceAbove ?
|
|
36042
|
+
styles33.menu,
|
|
36043
|
+
menuAlignEnd ? styles33.menuAlignEnd : styles33.menuAlignStart,
|
|
36044
|
+
menuPlaceAbove ? styles33.menuAbove : styles33.menuBelow,
|
|
35740
36045
|
menuStyle
|
|
35741
36046
|
],
|
|
35742
36047
|
children: [
|
|
35743
|
-
showSearch ? /* @__PURE__ */ jsxs(View, { style:
|
|
35744
|
-
/* @__PURE__ */ jsx(View, { style:
|
|
36048
|
+
showSearch ? /* @__PURE__ */ jsxs(View, { style: styles33.searchField, children: [
|
|
36049
|
+
/* @__PURE__ */ jsx(View, { style: styles33.iconSlot, children: /* @__PURE__ */ jsx(SearchIcon, { size: ICON_SIZE13, color: colors.grey100 }) }),
|
|
35745
36050
|
/* @__PURE__ */ jsx(
|
|
35746
36051
|
TextInput,
|
|
35747
36052
|
{
|
|
@@ -35752,9 +36057,9 @@ var Select = forwardRef(
|
|
|
35752
36057
|
placeholder: searchPlaceholder,
|
|
35753
36058
|
placeholderTextColor: colors.grey100,
|
|
35754
36059
|
style: [
|
|
35755
|
-
|
|
35756
|
-
Platform.OS === "web" ?
|
|
35757
|
-
Platform.OS === "android" ?
|
|
36060
|
+
styles33.searchInput,
|
|
36061
|
+
Platform.OS === "web" ? styles33.searchInputWeb : null,
|
|
36062
|
+
Platform.OS === "android" ? styles33.searchInputAndroid : null
|
|
35758
36063
|
],
|
|
35759
36064
|
accessibilityLabel: searchPlaceholder
|
|
35760
36065
|
}
|
|
@@ -35763,12 +36068,12 @@ var Select = forwardRef(
|
|
|
35763
36068
|
/* @__PURE__ */ jsxs(
|
|
35764
36069
|
ScrollView,
|
|
35765
36070
|
{
|
|
35766
|
-
style:
|
|
35767
|
-
contentContainerStyle:
|
|
36071
|
+
style: styles33.optionList,
|
|
36072
|
+
contentContainerStyle: styles33.optionListContent,
|
|
35768
36073
|
keyboardShouldPersistTaps: "handled",
|
|
35769
36074
|
showsVerticalScrollIndicator: false,
|
|
35770
36075
|
children: [
|
|
35771
|
-
loading ? /* @__PURE__ */ jsx(View, { style:
|
|
36076
|
+
loading ? /* @__PURE__ */ jsx(View, { style: styles33.statusRow, children: /* @__PURE__ */ jsx(Text, { style: styles33.statusText, children: "Loading..." }) }) : filteredOptions.length === 0 ? /* @__PURE__ */ jsx(View, { style: styles33.statusRow, children: /* @__PURE__ */ jsx(Text, { style: styles33.statusText, children: emptyText }) }) : null,
|
|
35772
36077
|
!loading && filteredOptions.map((option) => {
|
|
35773
36078
|
const isSelected = selectedValues.includes(option.value);
|
|
35774
36079
|
const isHovered = hoveredValue === option.value;
|
|
@@ -35785,14 +36090,14 @@ var Select = forwardRef(
|
|
|
35785
36090
|
accessibilityRole: multiple ? "checkbox" : "button",
|
|
35786
36091
|
accessibilityState: { selected: isSelected, checked: isSelected, disabled },
|
|
35787
36092
|
style: [
|
|
35788
|
-
|
|
36093
|
+
styles33.item,
|
|
35789
36094
|
{
|
|
35790
36095
|
backgroundColor: itemBackground(visualState)
|
|
35791
36096
|
}
|
|
35792
36097
|
],
|
|
35793
36098
|
children: [
|
|
35794
|
-
multiple ? /* @__PURE__ */ jsx(View, { pointerEvents: "none", style:
|
|
35795
|
-
/* @__PURE__ */ jsx(Text, { style:
|
|
36099
|
+
multiple ? /* @__PURE__ */ jsx(View, { pointerEvents: "none", style: styles33.itemCheckbox, children: /* @__PURE__ */ jsx(Checkbox, { value: isSelected, variant: "light" }) }) : null,
|
|
36100
|
+
/* @__PURE__ */ jsx(Text, { style: styles33.itemLabel, numberOfLines: 1, children: option.label })
|
|
35796
36101
|
]
|
|
35797
36102
|
},
|
|
35798
36103
|
option.value
|
|
@@ -35805,15 +36110,15 @@ var Select = forwardRef(
|
|
|
35805
36110
|
}
|
|
35806
36111
|
) : null
|
|
35807
36112
|
] }),
|
|
35808
|
-
showHint && hint ? /* @__PURE__ */ jsx(Text, { style: [
|
|
36113
|
+
showHint && hint ? /* @__PURE__ */ jsx(Text, { style: [styles33.hint, { color: hintColor }], children: hint }) : null
|
|
35809
36114
|
]
|
|
35810
36115
|
}
|
|
35811
36116
|
);
|
|
35812
36117
|
}
|
|
35813
36118
|
);
|
|
35814
|
-
var
|
|
36119
|
+
var styles33 = StyleSheet.create({
|
|
35815
36120
|
root: {
|
|
35816
|
-
width:
|
|
36121
|
+
width: DEFAULT_WIDTH4,
|
|
35817
36122
|
gap: 8,
|
|
35818
36123
|
alignSelf: "flex-start"
|
|
35819
36124
|
},
|
|
@@ -36004,7 +36309,7 @@ var styles32 = StyleSheet.create({
|
|
|
36004
36309
|
...selectTypography.hint
|
|
36005
36310
|
}
|
|
36006
36311
|
});
|
|
36007
|
-
var
|
|
36312
|
+
var DEFAULT_WIDTH5 = 308;
|
|
36008
36313
|
var FIELD_HEIGHT = 100;
|
|
36009
36314
|
var FIELD_RADIUS = 16;
|
|
36010
36315
|
var FIELD_PADDING_VERTICAL = 12;
|
|
@@ -36096,8 +36401,8 @@ var Textarea = forwardRef(function Textarea2({
|
|
|
36096
36401
|
};
|
|
36097
36402
|
useApplyWebClassName(rootRef, className);
|
|
36098
36403
|
useApplyWebClassName(inputRef, inputClassName);
|
|
36099
|
-
return /* @__PURE__ */ jsxs(View, { ref: rootRef, style: [
|
|
36100
|
-
showLabel && label ? /* @__PURE__ */ jsx(Pressable, { disabled, onPress: focusInput, style:
|
|
36404
|
+
return /* @__PURE__ */ jsxs(View, { ref: rootRef, style: [styles34.root, disabled && styles34.disabled, style], children: [
|
|
36405
|
+
showLabel && label ? /* @__PURE__ */ jsx(Pressable, { disabled, onPress: focusInput, style: styles34.labelPressable, children: /* @__PURE__ */ jsx(Text, { style: [styles34.label, { color: chrome.labelColor }], children: label }) }) : null,
|
|
36101
36406
|
/* @__PURE__ */ jsx(
|
|
36102
36407
|
Pressable,
|
|
36103
36408
|
{
|
|
@@ -36105,12 +36410,12 @@ var Textarea = forwardRef(function Textarea2({
|
|
|
36105
36410
|
disabled,
|
|
36106
36411
|
onPress: focusInput,
|
|
36107
36412
|
style: [
|
|
36108
|
-
|
|
36413
|
+
styles34.field,
|
|
36109
36414
|
{
|
|
36110
36415
|
borderColor: chrome.borderColor,
|
|
36111
36416
|
backgroundColor: chrome.backgroundColor
|
|
36112
36417
|
},
|
|
36113
|
-
Platform.OS === "web" ?
|
|
36418
|
+
Platform.OS === "web" ? styles34.fieldWeb : null,
|
|
36114
36419
|
fieldStyle
|
|
36115
36420
|
],
|
|
36116
36421
|
children: /* @__PURE__ */ jsx(
|
|
@@ -36139,11 +36444,11 @@ var Textarea = forwardRef(function Textarea2({
|
|
|
36139
36444
|
onBlur?.(event);
|
|
36140
36445
|
},
|
|
36141
36446
|
style: [
|
|
36142
|
-
|
|
36447
|
+
styles34.input,
|
|
36143
36448
|
textareaTypography.field,
|
|
36144
36449
|
{ color: chrome.textColor },
|
|
36145
|
-
Platform.OS === "web" ?
|
|
36146
|
-
Platform.OS === "android" ?
|
|
36450
|
+
Platform.OS === "web" ? styles34.inputWeb : null,
|
|
36451
|
+
Platform.OS === "android" ? styles34.inputAndroid : null,
|
|
36147
36452
|
inputStyle
|
|
36148
36453
|
],
|
|
36149
36454
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
@@ -36152,12 +36457,12 @@ var Textarea = forwardRef(function Textarea2({
|
|
|
36152
36457
|
)
|
|
36153
36458
|
}
|
|
36154
36459
|
),
|
|
36155
|
-
showHint && hint ? /* @__PURE__ */ jsx(Text, { style: [
|
|
36460
|
+
showHint && hint ? /* @__PURE__ */ jsx(Text, { style: [styles34.hint, { color: chrome.hintColor }], children: hint }) : null
|
|
36156
36461
|
] });
|
|
36157
36462
|
});
|
|
36158
|
-
var
|
|
36463
|
+
var styles34 = StyleSheet.create({
|
|
36159
36464
|
root: {
|
|
36160
|
-
width:
|
|
36465
|
+
width: DEFAULT_WIDTH5,
|
|
36161
36466
|
gap: 8,
|
|
36162
36467
|
alignSelf: "flex-start"
|
|
36163
36468
|
},
|
|
@@ -36265,13 +36570,13 @@ var Toggle = forwardRef(function Toggle2({
|
|
|
36265
36570
|
accessibilityRole: "switch",
|
|
36266
36571
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
36267
36572
|
accessibilityState: { checked: isActive, disabled },
|
|
36268
|
-
style: [
|
|
36573
|
+
style: [styles35.pressable, disabled && styles35.disabled, style],
|
|
36269
36574
|
children: [
|
|
36270
36575
|
/* @__PURE__ */ jsx(
|
|
36271
36576
|
Animated.View,
|
|
36272
36577
|
{
|
|
36273
36578
|
style: [
|
|
36274
|
-
|
|
36579
|
+
styles35.track,
|
|
36275
36580
|
{
|
|
36276
36581
|
backgroundColor: trackBackgroundColor
|
|
36277
36582
|
}
|
|
@@ -36280,7 +36585,7 @@ var Toggle = forwardRef(function Toggle2({
|
|
|
36280
36585
|
Animated.View,
|
|
36281
36586
|
{
|
|
36282
36587
|
style: [
|
|
36283
|
-
|
|
36588
|
+
styles35.thumb,
|
|
36284
36589
|
{
|
|
36285
36590
|
transform: [{ translateX: thumbTranslateX }]
|
|
36286
36591
|
}
|
|
@@ -36289,12 +36594,12 @@ var Toggle = forwardRef(function Toggle2({
|
|
|
36289
36594
|
)
|
|
36290
36595
|
}
|
|
36291
36596
|
),
|
|
36292
|
-
labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsx(Text, { style: [
|
|
36597
|
+
labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsx(Text, { style: [styles35.label, labelStyle], children: labelContent }) : labelContent : null
|
|
36293
36598
|
]
|
|
36294
36599
|
}
|
|
36295
36600
|
);
|
|
36296
36601
|
});
|
|
36297
|
-
var
|
|
36602
|
+
var styles35 = StyleSheet.create({
|
|
36298
36603
|
pressable: {
|
|
36299
36604
|
flexDirection: "row",
|
|
36300
36605
|
alignItems: "center",
|
|
@@ -36347,13 +36652,13 @@ var ToggleRow = forwardRef(function ToggleRow2({
|
|
|
36347
36652
|
...rest,
|
|
36348
36653
|
ref: setContainerRef,
|
|
36349
36654
|
style: [
|
|
36350
|
-
|
|
36655
|
+
styles36.root,
|
|
36351
36656
|
{
|
|
36352
36657
|
minHeight: isDesktop ? 65 : 57,
|
|
36353
36658
|
paddingTop: isDesktop ? 20 : 16,
|
|
36354
36659
|
paddingBottom: isDesktop ? 20 : 16
|
|
36355
36660
|
},
|
|
36356
|
-
!showBorder &&
|
|
36661
|
+
!showBorder && styles36.noBorder,
|
|
36357
36662
|
style
|
|
36358
36663
|
],
|
|
36359
36664
|
children: [
|
|
@@ -36361,7 +36666,7 @@ var ToggleRow = forwardRef(function ToggleRow2({
|
|
|
36361
36666
|
Text,
|
|
36362
36667
|
{
|
|
36363
36668
|
style: [
|
|
36364
|
-
|
|
36669
|
+
styles36.label,
|
|
36365
36670
|
{
|
|
36366
36671
|
fontSize: labelSize,
|
|
36367
36672
|
lineHeight: isDesktop ? 20 : 18,
|
|
@@ -36386,7 +36691,7 @@ var ToggleRow = forwardRef(function ToggleRow2({
|
|
|
36386
36691
|
}
|
|
36387
36692
|
);
|
|
36388
36693
|
});
|
|
36389
|
-
var
|
|
36694
|
+
var styles36 = StyleSheet.create({
|
|
36390
36695
|
root: {
|
|
36391
36696
|
width: "100%",
|
|
36392
36697
|
flexDirection: "row",
|
|
@@ -36458,21 +36763,21 @@ var RatingInput = forwardRef(
|
|
|
36458
36763
|
{
|
|
36459
36764
|
...rest,
|
|
36460
36765
|
ref: setContainerRef,
|
|
36461
|
-
style: [
|
|
36766
|
+
style: [styles37.root, disabled && styles37.disabled, style],
|
|
36462
36767
|
children: [
|
|
36463
|
-
showValue ? /* @__PURE__ */ jsx(Text, { numberOfLines: 1, style: [
|
|
36768
|
+
showValue ? /* @__PURE__ */ jsx(Text, { numberOfLines: 1, style: [styles37.value, valueStyle], children: selectedValue.toFixed(precision) }) : null,
|
|
36464
36769
|
/* @__PURE__ */ jsx(
|
|
36465
36770
|
View,
|
|
36466
36771
|
{
|
|
36467
36772
|
accessibilityRole: readOnly ? "image" : "radiogroup",
|
|
36468
36773
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
36469
36774
|
accessibilityState: { disabled },
|
|
36470
|
-
style: [
|
|
36775
|
+
style: [styles37.stars, { gap: resolvedStarGap }],
|
|
36471
36776
|
children: Array.from({ length: STAR_COUNT }, (_, index) => {
|
|
36472
36777
|
const starValue = index + 1;
|
|
36473
36778
|
const isSelected = starValue <= selectedStarCount;
|
|
36474
36779
|
const icon = isSelected ? /* @__PURE__ */ jsx(StarFilledIcon, { size: iconWidth, height: iconHeight }) : /* @__PURE__ */ jsx(StarIcon, { size: iconWidth, height: iconHeight });
|
|
36475
|
-
const itemStyle = [
|
|
36780
|
+
const itemStyle = [styles37.starItem, { width: size, height: size }];
|
|
36476
36781
|
if (readOnly) {
|
|
36477
36782
|
return /* @__PURE__ */ jsx(View, { style: itemStyle, children: icon }, starValue);
|
|
36478
36783
|
}
|
|
@@ -36498,7 +36803,7 @@ var RatingInput = forwardRef(
|
|
|
36498
36803
|
);
|
|
36499
36804
|
}
|
|
36500
36805
|
);
|
|
36501
|
-
var
|
|
36806
|
+
var styles37 = StyleSheet.create({
|
|
36502
36807
|
root: {
|
|
36503
36808
|
flexDirection: "row",
|
|
36504
36809
|
alignItems: "center",
|
|
@@ -36562,19 +36867,19 @@ var CommentCard = forwardRef(
|
|
|
36562
36867
|
setExpanded(next);
|
|
36563
36868
|
onExpandedChange?.(next);
|
|
36564
36869
|
};
|
|
36565
|
-
return /* @__PURE__ */ jsxs(View, { ...rest, ref: setContainerRef, style: [
|
|
36566
|
-
/* @__PURE__ */ jsxs(View, { style:
|
|
36567
|
-
/* @__PURE__ */ jsx(View, { style:
|
|
36870
|
+
return /* @__PURE__ */ jsxs(View, { ...rest, ref: setContainerRef, style: [styles38.root, style], children: [
|
|
36871
|
+
/* @__PURE__ */ jsxs(View, { style: styles38.header, children: [
|
|
36872
|
+
/* @__PURE__ */ jsx(View, { style: styles38.avatar, children: hasImage ? /* @__PURE__ */ jsx(
|
|
36568
36873
|
Image,
|
|
36569
36874
|
{
|
|
36570
36875
|
source: { uri: imageUrl ?? void 0 },
|
|
36571
|
-
style:
|
|
36876
|
+
style: styles38.avatarImage,
|
|
36572
36877
|
onError: () => setImageFailed(true)
|
|
36573
36878
|
}
|
|
36574
36879
|
) : /* @__PURE__ */ jsx(UserIcon, { size: 20, color: colors.primary }) }),
|
|
36575
|
-
/* @__PURE__ */ jsxs(View, { style:
|
|
36576
|
-
/* @__PURE__ */ jsx(Text, { numberOfLines: 1, style:
|
|
36577
|
-
/* @__PURE__ */ jsx(Text, { numberOfLines: 1, style:
|
|
36880
|
+
/* @__PURE__ */ jsxs(View, { style: styles38.identity, children: [
|
|
36881
|
+
/* @__PURE__ */ jsx(Text, { numberOfLines: 1, style: styles38.name, children: userName }),
|
|
36882
|
+
/* @__PURE__ */ jsx(Text, { numberOfLines: 1, style: styles38.date, children: date })
|
|
36578
36883
|
] }),
|
|
36579
36884
|
/* @__PURE__ */ jsx(RatingInput, { value: rating, readOnly: true, showValue: false, size: 16 })
|
|
36580
36885
|
] }),
|
|
@@ -36582,7 +36887,7 @@ var CommentCard = forwardRef(
|
|
|
36582
36887
|
Text,
|
|
36583
36888
|
{
|
|
36584
36889
|
numberOfLines: expanded ? void 0 : maxCommentLines,
|
|
36585
|
-
style: [
|
|
36890
|
+
style: [styles38.comment, commentStyle],
|
|
36586
36891
|
children: commentText
|
|
36587
36892
|
}
|
|
36588
36893
|
),
|
|
@@ -36595,14 +36900,14 @@ var CommentCard = forwardRef(
|
|
|
36595
36900
|
hitSlop: 6,
|
|
36596
36901
|
onHoverIn: () => setActionHovered(true),
|
|
36597
36902
|
onHoverOut: () => setActionHovered(false),
|
|
36598
|
-
style:
|
|
36903
|
+
style: styles38.action,
|
|
36599
36904
|
children: /* @__PURE__ */ jsx(
|
|
36600
36905
|
Text,
|
|
36601
36906
|
{
|
|
36602
36907
|
style: [
|
|
36603
|
-
|
|
36604
|
-
expanded &&
|
|
36605
|
-
actionHovered && (expanded ?
|
|
36908
|
+
styles38.actionText,
|
|
36909
|
+
expanded && styles38.closeActionText,
|
|
36910
|
+
actionHovered && (expanded ? styles38.closeActionTextHovered : styles38.openActionTextHovered)
|
|
36606
36911
|
],
|
|
36607
36912
|
children: expanded ? readLessLabel : readMoreLabel
|
|
36608
36913
|
}
|
|
@@ -36612,7 +36917,7 @@ var CommentCard = forwardRef(
|
|
|
36612
36917
|
] });
|
|
36613
36918
|
}
|
|
36614
36919
|
);
|
|
36615
|
-
var
|
|
36920
|
+
var styles38 = StyleSheet.create({
|
|
36616
36921
|
root: {
|
|
36617
36922
|
width: CARD_WIDTH2,
|
|
36618
36923
|
minHeight: CARD_MIN_HEIGHT,
|
|
@@ -36712,7 +37017,7 @@ function normalizeRangeValue(value, min, max) {
|
|
|
36712
37017
|
}
|
|
36713
37018
|
return { from, to };
|
|
36714
37019
|
}
|
|
36715
|
-
var
|
|
37020
|
+
var DEFAULT_WIDTH6 = 347;
|
|
36716
37021
|
var TRACK_HEIGHT2 = 4;
|
|
36717
37022
|
var TRACK_HORIZONTAL_INSET = 20;
|
|
36718
37023
|
var THUMB_SIZE2 = 20;
|
|
@@ -36763,7 +37068,7 @@ var Range = forwardRef(function Range2({
|
|
|
36763
37068
|
upperBound
|
|
36764
37069
|
);
|
|
36765
37070
|
const latestValueRef = useRef(resolvedValue);
|
|
36766
|
-
const [trackWidth, setTrackWidth] = useState(
|
|
37071
|
+
const [trackWidth, setTrackWidth] = useState(DEFAULT_WIDTH6);
|
|
36767
37072
|
const [fromDraft, setFromDraft] = useState(
|
|
36768
37073
|
resolvedValue.from === void 0 ? "" : formatValue(resolvedValue.from)
|
|
36769
37074
|
);
|
|
@@ -37051,7 +37356,7 @@ var Range = forwardRef(function Range2({
|
|
|
37051
37356
|
...rest,
|
|
37052
37357
|
ref: setRootRef,
|
|
37053
37358
|
onLayout,
|
|
37054
|
-
style: [
|
|
37359
|
+
style: [styles39.root, disabled && styles39.disabled, style],
|
|
37055
37360
|
children: [
|
|
37056
37361
|
/* @__PURE__ */ jsxs(
|
|
37057
37362
|
Pressable,
|
|
@@ -37065,16 +37370,16 @@ var Range = forwardRef(function Range2({
|
|
|
37065
37370
|
updateNearestFromTrack(event.nativeEvent.offsetX);
|
|
37066
37371
|
} : void 0,
|
|
37067
37372
|
onPress: Platform.OS === "web" ? void 0 : handleTrackPress,
|
|
37068
|
-
style:
|
|
37373
|
+
style: styles39.sliderPlane,
|
|
37069
37374
|
tabIndex: -1,
|
|
37070
37375
|
children: [
|
|
37071
|
-
/* @__PURE__ */ jsx(View, { pointerEvents: "none", style:
|
|
37376
|
+
/* @__PURE__ */ jsx(View, { pointerEvents: "none", style: styles39.track }),
|
|
37072
37377
|
/* @__PURE__ */ jsx(
|
|
37073
37378
|
View,
|
|
37074
37379
|
{
|
|
37075
37380
|
pointerEvents: "none",
|
|
37076
37381
|
style: [
|
|
37077
|
-
|
|
37382
|
+
styles39.activeTrack,
|
|
37078
37383
|
{
|
|
37079
37384
|
left: TRACK_HORIZONTAL_INSET + fromOffset,
|
|
37080
37385
|
width: toOffset - fromOffset + THUMB_SIZE2
|
|
@@ -37116,9 +37421,9 @@ var Range = forwardRef(function Range2({
|
|
|
37116
37421
|
onAccessibilityAction: (event) => handleAccessibilityAction(event, effectiveFrom, updateFromInput),
|
|
37117
37422
|
pointerEvents: disabled ? "none" : "auto",
|
|
37118
37423
|
style: [
|
|
37119
|
-
|
|
37120
|
-
Platform.OS === "web" &&
|
|
37121
|
-
focusedThumb === "from" && Platform.OS === "web" &&
|
|
37424
|
+
styles39.thumb,
|
|
37425
|
+
Platform.OS === "web" && styles39.thumbWeb,
|
|
37426
|
+
focusedThumb === "from" && Platform.OS === "web" && styles39.thumbFocusedWeb,
|
|
37122
37427
|
{ left: TRACK_HORIZONTAL_INSET + fromOffset }
|
|
37123
37428
|
],
|
|
37124
37429
|
tabIndex: disabled ? -1 : 0
|
|
@@ -37158,9 +37463,9 @@ var Range = forwardRef(function Range2({
|
|
|
37158
37463
|
onAccessibilityAction: (event) => handleAccessibilityAction(event, effectiveTo, updateToInput),
|
|
37159
37464
|
pointerEvents: disabled ? "none" : "auto",
|
|
37160
37465
|
style: [
|
|
37161
|
-
|
|
37162
|
-
Platform.OS === "web" &&
|
|
37163
|
-
focusedThumb === "to" && Platform.OS === "web" &&
|
|
37466
|
+
styles39.thumb,
|
|
37467
|
+
Platform.OS === "web" && styles39.thumbWeb,
|
|
37468
|
+
focusedThumb === "to" && Platform.OS === "web" && styles39.thumbFocusedWeb,
|
|
37164
37469
|
{ left: TRACK_HORIZONTAL_INSET + toOffset }
|
|
37165
37470
|
],
|
|
37166
37471
|
tabIndex: disabled ? -1 : 0
|
|
@@ -37169,7 +37474,7 @@ var Range = forwardRef(function Range2({
|
|
|
37169
37474
|
]
|
|
37170
37475
|
}
|
|
37171
37476
|
),
|
|
37172
|
-
/* @__PURE__ */ jsxs(View, { style:
|
|
37477
|
+
/* @__PURE__ */ jsxs(View, { style: styles39.inputs, children: [
|
|
37173
37478
|
/* @__PURE__ */ jsx(
|
|
37174
37479
|
RangeInput,
|
|
37175
37480
|
{
|
|
@@ -37220,7 +37525,7 @@ function RangeInput({
|
|
|
37220
37525
|
placeholder,
|
|
37221
37526
|
value
|
|
37222
37527
|
}) {
|
|
37223
|
-
return /* @__PURE__ */ jsxs(View, { style: [
|
|
37528
|
+
return /* @__PURE__ */ jsxs(View, { style: [styles39.inputField, focused && styles39.inputFieldFocused], children: [
|
|
37224
37529
|
/* @__PURE__ */ jsx(
|
|
37225
37530
|
TextInput,
|
|
37226
37531
|
{
|
|
@@ -37236,17 +37541,17 @@ function RangeInput({
|
|
|
37236
37541
|
placeholder,
|
|
37237
37542
|
placeholderTextColor: colors.grey150,
|
|
37238
37543
|
returnKeyType: "done",
|
|
37239
|
-
style: [
|
|
37544
|
+
style: [styles39.input, Platform.OS === "web" && styles39.inputWeb],
|
|
37240
37545
|
tabIndex: disabled ? -1 : void 0,
|
|
37241
37546
|
value
|
|
37242
37547
|
}
|
|
37243
37548
|
),
|
|
37244
|
-
/* @__PURE__ */ jsx(View, { style:
|
|
37549
|
+
/* @__PURE__ */ jsx(View, { style: styles39.currencySlot, children: /* @__PURE__ */ jsx(Text, { style: styles39.currency, children: currency }) })
|
|
37245
37550
|
] });
|
|
37246
37551
|
}
|
|
37247
|
-
var
|
|
37552
|
+
var styles39 = StyleSheet.create({
|
|
37248
37553
|
root: {
|
|
37249
|
-
width:
|
|
37554
|
+
width: DEFAULT_WIDTH6,
|
|
37250
37555
|
gap: 15,
|
|
37251
37556
|
alignSelf: "flex-start"
|
|
37252
37557
|
},
|
|
@@ -37453,6 +37758,6 @@ react-dom/cjs/react-dom.development.js:
|
|
|
37453
37758
|
*)
|
|
37454
37759
|
*/
|
|
37455
37760
|
|
|
37456
|
-
export {
|
|
37761
|
+
export { AccordionItem, AccountHeader, AlertTriangleIcon, Amenity, AmenityIcon, AppleIcon, AreaExpandIcon, ArrowRightIcon, Avatar, AvatarSimple, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, BagIcon, BanIcon, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, BuildingIcon, Button, CalendarIcon, CalendarMinusIcon, CalendarOutlineIcon, CameraFilledIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CommentCard, ContactInfoCard, CopyIcon, Counter, DatePicker, DownloadIcon, EditIcon, FacebookIcon, FavoritesButton, FiltersIcon, FloatingActionButton, FullscreenIcon, GlobeIcon, GooglePlayIcon, GuestsIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HideIcon, HomeIcon, Icon, IconStatusBadge, InfoCardV2, InfoTile, Input, InstagramIcon, KeyIcon, LanguageSwitcher, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LocationUserIcon, LockIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, MenuItem, MenuLinesIcon, MinusIcon, Modal, MoreHorizontalIcon, NavigateIcon, NoSmokingIcon, PaginationDots, PawIcon, PhoneIcon, PlusIcon, QrCodeIcon, QuietHoursIcon, Range, RatingInput, RatingStarIcon, RefreshIcon, RefundStatusIcon, SaveHeartIcon, SearchIcon, SegmentedToggle, Select, SettingsIcon, ShareIcon, ShowIcon, Sidebar, SidebarIcon, SortIcon, StarFilledIcon, StarIcon, StatCard, StatusBadge, StepList, StepPager, TableViewIcon, Textarea, Toggle, ToggleRow, TooltipArrowIcon, TrashIcon, UserIcon, UsersAltIcon, VerificationCodeInput, VideoIcon, VideoOffIcon, WhatsAppIcon, ZoomOutIcon, abbreviateMonthName, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, formatDate, formatDateDayShortMonth, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, resolvePopoverAlign, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|
|
37457
37762
|
//# sourceMappingURL=index.js.map
|
|
37458
37763
|
//# sourceMappingURL=index.js.map
|