@ecohouse/ui 0.1.35 → 0.1.38
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/README.md +3 -0
- package/dist/index.cjs +1221 -531
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +231 -128
- package/dist/index.d.ts +231 -128
- package/dist/index.js +1144 -463
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Accordion/Accordion.stories.tsx +47 -0
- package/src/components/Accordion/Accordion.tsx +165 -0
- package/src/components/Accordion/index.ts +2 -0
- package/src/components/AutocompleteInput/AutocompleteInput.stories.tsx +80 -0
- package/src/components/AutocompleteInput/AutocompleteInput.tsx +313 -0
- package/src/components/AutocompleteInput/index.ts +2 -0
- package/src/components/Counter/Counter.tsx +61 -26
- package/src/components/QuantityInput/QuantityInput.stories.tsx +45 -0
- package/src/components/QuantityInput/QuantityInput.tsx +153 -0
- package/src/components/QuantityInput/index.ts +2 -0
- package/src/components/SegmentedToggle/SegmentedToggle.stories.tsx +9 -0
- package/src/components/SegmentedToggle/SegmentedToggle.tsx +19 -13
- package/src/components/index.ts +9 -0
- package/src/icons/ArrowLeft/ArrowLeftIcon.test.ts +10 -0
- package/src/icons/ArrowLeft/ArrowLeftIcon.tsx +21 -0
- package/src/icons/ArrowLeft/ArrowLeftIcon.web.tsx +26 -0
- package/src/icons/ArrowLeft/arrowLeftPath.ts +3 -0
- package/src/icons/ArrowLeft/index.ts +1 -0
- package/src/icons/CurrentLocation/CurrentLocationIcon.test.ts +10 -0
- package/src/icons/CurrentLocation/CurrentLocationIcon.tsx +25 -0
- package/src/icons/CurrentLocation/CurrentLocationIcon.web.tsx +30 -0
- package/src/icons/CurrentLocation/currentLocationPath.ts +3 -0
- package/src/icons/CurrentLocation/index.ts +1 -0
- package/src/icons/MoreHorizontal/MoreHorizontalIcon.tsx +26 -0
- package/src/icons/MoreHorizontal/MoreHorizontalIcon.web.tsx +25 -0
- package/src/icons/MoreHorizontal/index.ts +1 -0
- package/src/icons/MoreHorizontal/moreHorizontalPath.ts +2 -0
- package/src/icons/TableView/TableViewIcon.tsx +20 -0
- package/src/icons/TableView/TableViewIcon.web.tsx +26 -0
- package/src/icons/TableView/index.ts +1 -0
- package/src/icons/TableView/tableViewPath.ts +2 -0
- package/src/icons/index.ts +4 -0
- package/src/icons/registry.ts +12 -0
- package/src/index.ts +15 -0
- package/src/primitives/IconStatusBadge/IconStatusBadge.stories.tsx +21 -0
- package/src/primitives/IconStatusBadge/IconStatusBadge.tsx +76 -0
- package/src/primitives/IconStatusBadge/index.ts +2 -0
- package/src/primitives/InfoCardV2/InfoCardV2.stories.tsx +64 -0
- package/src/primitives/InfoCardV2/InfoCardV2.tsx +116 -0
- package/src/primitives/InfoCardV2/index.ts +2 -0
- package/src/primitives/index.ts +7 -0
- package/src/theme/colors.test.ts +1 -0
- package/src/theme/colors.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
var react = require('react');
|
|
4
4
|
var reactNative = require('react-native');
|
|
5
|
-
var
|
|
5
|
+
var Svg22 = require('react-native-svg');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
|
|
8
8
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var Svg22__default = /*#__PURE__*/_interopDefault(Svg22);
|
|
11
11
|
|
|
12
12
|
var __create = Object.create;
|
|
13
13
|
var __defProp = Object.defineProperty;
|
|
@@ -7403,7 +7403,7 @@ var require_react_dom_development = __commonJS({
|
|
|
7403
7403
|
var HostPortal = 4;
|
|
7404
7404
|
var HostComponent = 5;
|
|
7405
7405
|
var HostText = 6;
|
|
7406
|
-
var
|
|
7406
|
+
var Fragment6 = 7;
|
|
7407
7407
|
var Mode = 8;
|
|
7408
7408
|
var ContextConsumer = 9;
|
|
7409
7409
|
var ContextProvider = 10;
|
|
@@ -8558,7 +8558,7 @@ var require_react_dom_development = __commonJS({
|
|
|
8558
8558
|
return "DehydratedFragment";
|
|
8559
8559
|
case ForwardRef:
|
|
8560
8560
|
return getWrappedName$1(type, type.render, "ForwardRef");
|
|
8561
|
-
case
|
|
8561
|
+
case Fragment6:
|
|
8562
8562
|
return "Fragment";
|
|
8563
8563
|
case HostComponent:
|
|
8564
8564
|
return type;
|
|
@@ -9455,15 +9455,15 @@ var require_react_dom_development = __commonJS({
|
|
|
9455
9455
|
};
|
|
9456
9456
|
}
|
|
9457
9457
|
var warnValidStyle$1 = warnValidStyle;
|
|
9458
|
-
function createDangerousStringForStyles(
|
|
9458
|
+
function createDangerousStringForStyles(styles39) {
|
|
9459
9459
|
{
|
|
9460
9460
|
var serialized = "";
|
|
9461
9461
|
var delimiter = "";
|
|
9462
|
-
for (var styleName in
|
|
9463
|
-
if (!
|
|
9462
|
+
for (var styleName in styles39) {
|
|
9463
|
+
if (!styles39.hasOwnProperty(styleName)) {
|
|
9464
9464
|
continue;
|
|
9465
9465
|
}
|
|
9466
|
-
var styleValue =
|
|
9466
|
+
var styleValue = styles39[styleName];
|
|
9467
9467
|
if (styleValue != null) {
|
|
9468
9468
|
var isCustomProperty = styleName.indexOf("--") === 0;
|
|
9469
9469
|
serialized += delimiter + (isCustomProperty ? styleName : hyphenateStyleName(styleName)) + ":";
|
|
@@ -9474,19 +9474,19 @@ var require_react_dom_development = __commonJS({
|
|
|
9474
9474
|
return serialized || null;
|
|
9475
9475
|
}
|
|
9476
9476
|
}
|
|
9477
|
-
function setValueForStyles(node,
|
|
9477
|
+
function setValueForStyles(node, styles39) {
|
|
9478
9478
|
var style2 = node.style;
|
|
9479
|
-
for (var styleName in
|
|
9480
|
-
if (!
|
|
9479
|
+
for (var styleName in styles39) {
|
|
9480
|
+
if (!styles39.hasOwnProperty(styleName)) {
|
|
9481
9481
|
continue;
|
|
9482
9482
|
}
|
|
9483
9483
|
var isCustomProperty = styleName.indexOf("--") === 0;
|
|
9484
9484
|
{
|
|
9485
9485
|
if (!isCustomProperty) {
|
|
9486
|
-
warnValidStyle$1(styleName,
|
|
9486
|
+
warnValidStyle$1(styleName, styles39[styleName]);
|
|
9487
9487
|
}
|
|
9488
9488
|
}
|
|
9489
|
-
var styleValue = dangerousStyleValue(styleName,
|
|
9489
|
+
var styleValue = dangerousStyleValue(styleName, styles39[styleName], isCustomProperty);
|
|
9490
9490
|
if (styleName === "float") {
|
|
9491
9491
|
styleName = "cssFloat";
|
|
9492
9492
|
}
|
|
@@ -9500,9 +9500,9 @@ var require_react_dom_development = __commonJS({
|
|
|
9500
9500
|
function isValueEmpty(value) {
|
|
9501
9501
|
return value == null || typeof value === "boolean" || value === "";
|
|
9502
9502
|
}
|
|
9503
|
-
function expandShorthandMap(
|
|
9503
|
+
function expandShorthandMap(styles39) {
|
|
9504
9504
|
var expanded = {};
|
|
9505
|
-
for (var key in
|
|
9505
|
+
for (var key in styles39) {
|
|
9506
9506
|
var longhands = shorthandToLonghand[key] || [key];
|
|
9507
9507
|
for (var i = 0; i < longhands.length; i++) {
|
|
9508
9508
|
expanded[longhands[i]] = key;
|
|
@@ -16983,7 +16983,7 @@ var require_react_dom_development = __commonJS({
|
|
|
16983
16983
|
}
|
|
16984
16984
|
}
|
|
16985
16985
|
function updateFragment2(returnFiber, current2, fragment, lanes, key) {
|
|
16986
|
-
if (current2 === null || current2.tag !==
|
|
16986
|
+
if (current2 === null || current2.tag !== Fragment6) {
|
|
16987
16987
|
var created = createFiberFromFragment(fragment, returnFiber.mode, lanes, key);
|
|
16988
16988
|
created.return = returnFiber;
|
|
16989
16989
|
return created;
|
|
@@ -17386,7 +17386,7 @@ var require_react_dom_development = __commonJS({
|
|
|
17386
17386
|
if (child.key === key) {
|
|
17387
17387
|
var elementType = element.type;
|
|
17388
17388
|
if (elementType === REACT_FRAGMENT_TYPE) {
|
|
17389
|
-
if (child.tag ===
|
|
17389
|
+
if (child.tag === Fragment6) {
|
|
17390
17390
|
deleteRemainingChildren(returnFiber, child.sibling);
|
|
17391
17391
|
var existing = useFiber(child, element.props.children);
|
|
17392
17392
|
existing.return = returnFiber;
|
|
@@ -22860,7 +22860,7 @@ var require_react_dom_development = __commonJS({
|
|
|
22860
22860
|
var _resolvedProps2 = workInProgress2.elementType === type ? _unresolvedProps2 : resolveDefaultProps(type, _unresolvedProps2);
|
|
22861
22861
|
return updateForwardRef(current2, workInProgress2, type, _resolvedProps2, renderLanes2);
|
|
22862
22862
|
}
|
|
22863
|
-
case
|
|
22863
|
+
case Fragment6:
|
|
22864
22864
|
return updateFragment(current2, workInProgress2, renderLanes2);
|
|
22865
22865
|
case Mode:
|
|
22866
22866
|
return updateMode(current2, workInProgress2, renderLanes2);
|
|
@@ -23132,7 +23132,7 @@ var require_react_dom_development = __commonJS({
|
|
|
23132
23132
|
case SimpleMemoComponent:
|
|
23133
23133
|
case FunctionComponent:
|
|
23134
23134
|
case ForwardRef:
|
|
23135
|
-
case
|
|
23135
|
+
case Fragment6:
|
|
23136
23136
|
case Mode:
|
|
23137
23137
|
case Profiler:
|
|
23138
23138
|
case ContextConsumer:
|
|
@@ -27384,7 +27384,7 @@ var require_react_dom_development = __commonJS({
|
|
|
27384
27384
|
return fiber;
|
|
27385
27385
|
}
|
|
27386
27386
|
function createFiberFromFragment(elements, mode, lanes, key) {
|
|
27387
|
-
var fiber = createFiber(
|
|
27387
|
+
var fiber = createFiber(Fragment6, elements, key, mode);
|
|
27388
27388
|
fiber.lanes = lanes;
|
|
27389
27389
|
return fiber;
|
|
27390
27390
|
}
|
|
@@ -28542,6 +28542,7 @@ var colors = {
|
|
|
28542
28542
|
whiteAlpha60: "#FFFFFF99",
|
|
28543
28543
|
whiteAlpha40: "#FFFFFF66",
|
|
28544
28544
|
whiteAlpha20: "#FFFFFF33",
|
|
28545
|
+
whiteAlpha1: "#FFFFFF03",
|
|
28545
28546
|
whiteAlpha6: "#FFFFFF0F",
|
|
28546
28547
|
whiteAlpha10: "#FFFFFF1A",
|
|
28547
28548
|
whiteAlpha5: "#FFFFFF0D",
|
|
@@ -28816,8 +28817,8 @@ function ArrowRightIcon({
|
|
|
28816
28817
|
color = colors.primary,
|
|
28817
28818
|
strokeWidth = 2
|
|
28818
28819
|
}) {
|
|
28819
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28820
|
-
|
|
28820
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28821
|
+
Svg22.Path,
|
|
28821
28822
|
{
|
|
28822
28823
|
d: ARROW_RIGHT_PATH,
|
|
28823
28824
|
stroke: color,
|
|
@@ -28828,11 +28829,26 @@ function ArrowRightIcon({
|
|
|
28828
28829
|
) });
|
|
28829
28830
|
}
|
|
28830
28831
|
|
|
28832
|
+
// src/icons/ArrowLeft/arrowLeftPath.ts
|
|
28833
|
+
var ARROW_LEFT_PATH = "M10.1972 6.59961L4.80078 11.9994L10.1972 17.3996M4.80078 11.9965H19.202";
|
|
28834
|
+
function ArrowLeftIcon({ size = 24, color = colors.white, strokeWidth = 1.35 }) {
|
|
28835
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28836
|
+
Svg22.Path,
|
|
28837
|
+
{
|
|
28838
|
+
d: ARROW_LEFT_PATH,
|
|
28839
|
+
stroke: color,
|
|
28840
|
+
strokeWidth,
|
|
28841
|
+
strokeLinecap: "round",
|
|
28842
|
+
strokeLinejoin: "round"
|
|
28843
|
+
}
|
|
28844
|
+
) });
|
|
28845
|
+
}
|
|
28846
|
+
|
|
28831
28847
|
// src/icons/AlertTriangle/alertTrianglePath.ts
|
|
28832
28848
|
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";
|
|
28833
28849
|
function AlertTriangleIcon({ size = 16, color = "#E38E5E", strokeWidth = 1.5 }) {
|
|
28834
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28835
|
-
|
|
28850
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28851
|
+
Svg22.Path,
|
|
28836
28852
|
{
|
|
28837
28853
|
d: ALERT_TRIANGLE_PATH,
|
|
28838
28854
|
stroke: color,
|
|
@@ -28867,17 +28883,17 @@ var GOOGLE_PLAY_PATHS = [
|
|
|
28867
28883
|
}
|
|
28868
28884
|
];
|
|
28869
28885
|
function AppleIcon({ size = 30, color = colors.white }) {
|
|
28870
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28886
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size * 25 / 30, height: size, viewBox: "0 0 25 30", fill: "none", children: APPLE_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: path, fill: color }, path)) });
|
|
28871
28887
|
}
|
|
28872
28888
|
function GooglePlayIcon({ size = 30 }) {
|
|
28873
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28889
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size * 27 / 30, height: size, viewBox: "0 0 27 30", fill: "none", children: GOOGLE_PLAY_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: path.d, fill: path.color }, path.d)) });
|
|
28874
28890
|
}
|
|
28875
28891
|
|
|
28876
28892
|
// src/icons/Bag/bagPath.ts
|
|
28877
28893
|
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";
|
|
28878
28894
|
function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
28879
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28880
|
-
|
|
28895
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28896
|
+
Svg22.Path,
|
|
28881
28897
|
{
|
|
28882
28898
|
d: BAG_PATH,
|
|
28883
28899
|
stroke: color,
|
|
@@ -28891,14 +28907,14 @@ function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28891
28907
|
// src/icons/Ban/banPath.ts
|
|
28892
28908
|
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";
|
|
28893
28909
|
function BanIcon({ size = 28, color = colors.primary }) {
|
|
28894
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28910
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: BAN_PATH, fill: color }) });
|
|
28895
28911
|
}
|
|
28896
28912
|
|
|
28897
28913
|
// src/icons/Bell/bellPath.ts
|
|
28898
28914
|
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";
|
|
28899
28915
|
function BellIcon({ size = 16, color = colors.white, strokeWidth = 1.5 }) {
|
|
28900
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28901
|
-
|
|
28916
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28917
|
+
Svg22.Path,
|
|
28902
28918
|
{
|
|
28903
28919
|
d: BELL_PATH,
|
|
28904
28920
|
stroke: color,
|
|
@@ -28912,8 +28928,8 @@ function BellIcon({ size = 16, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
28912
28928
|
// src/icons/Building/buildingPath.ts
|
|
28913
28929
|
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";
|
|
28914
28930
|
function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
28915
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28916
|
-
|
|
28931
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28932
|
+
Svg22.Path,
|
|
28917
28933
|
{
|
|
28918
28934
|
d: BUILDING_PATH,
|
|
28919
28935
|
stroke: color,
|
|
@@ -28927,8 +28943,8 @@ function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28927
28943
|
// src/icons/Calendar/calendarPath.ts
|
|
28928
28944
|
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";
|
|
28929
28945
|
function CalendarIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
28930
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28931
|
-
|
|
28946
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28947
|
+
Svg22.Path,
|
|
28932
28948
|
{
|
|
28933
28949
|
d: CALENDAR_PATH,
|
|
28934
28950
|
stroke: color,
|
|
@@ -28946,8 +28962,8 @@ function CalendarOutlineIcon({
|
|
|
28946
28962
|
color = colors.primary,
|
|
28947
28963
|
strokeWidth = 1.5
|
|
28948
28964
|
}) {
|
|
28949
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28950
|
-
|
|
28965
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28966
|
+
Svg22.Path,
|
|
28951
28967
|
{
|
|
28952
28968
|
d: CALENDAR_OUTLINE_PATH,
|
|
28953
28969
|
stroke: color,
|
|
@@ -28961,8 +28977,8 @@ function CalendarOutlineIcon({
|
|
|
28961
28977
|
// src/icons/Camera/cameraPath.ts
|
|
28962
28978
|
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";
|
|
28963
28979
|
function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
28964
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28965
|
-
|
|
28980
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28981
|
+
Svg22.Path,
|
|
28966
28982
|
{
|
|
28967
28983
|
d: CAMERA_PATH,
|
|
28968
28984
|
stroke: color,
|
|
@@ -28976,14 +28992,14 @@ function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28976
28992
|
// src/icons/CameraFilled/cameraFilledPath.ts
|
|
28977
28993
|
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";
|
|
28978
28994
|
function CameraFilledIcon({ size = 32, color = colors.primary }) {
|
|
28979
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28995
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 32 32", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: CAMERA_FILLED_PATH, fill: color }) });
|
|
28980
28996
|
}
|
|
28981
28997
|
|
|
28982
28998
|
// src/icons/Check/checkPath.ts
|
|
28983
28999
|
var CHECK_PATH = "M4.16669 10.8333L7.50002 14.1667L15.8334 5.83334";
|
|
28984
29000
|
function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
28985
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28986
|
-
|
|
29001
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29002
|
+
Svg22.Path,
|
|
28987
29003
|
{
|
|
28988
29004
|
d: CHECK_PATH,
|
|
28989
29005
|
stroke: color,
|
|
@@ -28997,8 +29013,8 @@ function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28997
29013
|
// src/icons/CheckBadge/checkBadgePath.ts
|
|
28998
29014
|
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";
|
|
28999
29015
|
function CheckBadgeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29000
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29001
|
-
|
|
29016
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29017
|
+
Svg22.Path,
|
|
29002
29018
|
{
|
|
29003
29019
|
d: CHECK_BADGE_PATH,
|
|
29004
29020
|
stroke: color,
|
|
@@ -29016,8 +29032,8 @@ function ChevronDownIcon({
|
|
|
29016
29032
|
color = colors.primary,
|
|
29017
29033
|
strokeWidth = 2
|
|
29018
29034
|
}) {
|
|
29019
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29020
|
-
|
|
29035
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29036
|
+
Svg22.Path,
|
|
29021
29037
|
{
|
|
29022
29038
|
d: CHEVRON_DOWN_PATH,
|
|
29023
29039
|
stroke: color,
|
|
@@ -29031,8 +29047,8 @@ function ChevronDownIcon({
|
|
|
29031
29047
|
// src/icons/ChevronLeft/chevronLeftPath.ts
|
|
29032
29048
|
var CHEVRON_LEFT_PATH = "M12.5 15L7.5 10L12.5 5";
|
|
29033
29049
|
function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29034
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29035
|
-
|
|
29050
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29051
|
+
Svg22.Path,
|
|
29036
29052
|
{
|
|
29037
29053
|
d: CHEVRON_LEFT_PATH,
|
|
29038
29054
|
stroke: color,
|
|
@@ -29046,8 +29062,8 @@ function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 })
|
|
|
29046
29062
|
// src/icons/Clock/clockPath.ts
|
|
29047
29063
|
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";
|
|
29048
29064
|
function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29049
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29050
|
-
|
|
29065
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29066
|
+
Svg22.Path,
|
|
29051
29067
|
{
|
|
29052
29068
|
d: CLOCK_PATH,
|
|
29053
29069
|
stroke: color,
|
|
@@ -29061,8 +29077,8 @@ function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29061
29077
|
// src/icons/Close/closePath.ts
|
|
29062
29078
|
var CLOSE_PATH = "M15 5L5 15M5 5L15 15";
|
|
29063
29079
|
function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29064
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29065
|
-
|
|
29080
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29081
|
+
Svg22.Path,
|
|
29066
29082
|
{
|
|
29067
29083
|
d: CLOSE_PATH,
|
|
29068
29084
|
stroke: color,
|
|
@@ -29073,11 +29089,30 @@ function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29073
29089
|
) });
|
|
29074
29090
|
}
|
|
29075
29091
|
|
|
29092
|
+
// src/icons/CurrentLocation/currentLocationPath.ts
|
|
29093
|
+
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";
|
|
29094
|
+
function CurrentLocationIcon({
|
|
29095
|
+
size = 19,
|
|
29096
|
+
color = colors.primary,
|
|
29097
|
+
strokeWidth = 1.5
|
|
29098
|
+
}) {
|
|
29099
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29100
|
+
Svg22.Path,
|
|
29101
|
+
{
|
|
29102
|
+
d: CURRENT_LOCATION_PATH,
|
|
29103
|
+
stroke: color,
|
|
29104
|
+
strokeWidth,
|
|
29105
|
+
strokeLinecap: "round",
|
|
29106
|
+
strokeLinejoin: "round"
|
|
29107
|
+
}
|
|
29108
|
+
) });
|
|
29109
|
+
}
|
|
29110
|
+
|
|
29076
29111
|
// src/icons/Edit/editPath.ts
|
|
29077
29112
|
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";
|
|
29078
29113
|
function EditIcon({ size = 12, color = colors.grey0, strokeWidth = 2 }) {
|
|
29079
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29080
|
-
|
|
29114
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29115
|
+
Svg22.Path,
|
|
29081
29116
|
{
|
|
29082
29117
|
d: EDIT_PATH,
|
|
29083
29118
|
stroke: color,
|
|
@@ -29103,8 +29138,8 @@ function SaveHeartIcon({
|
|
|
29103
29138
|
strokeWidth = 2,
|
|
29104
29139
|
fillOpacity = 0
|
|
29105
29140
|
}) {
|
|
29106
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29107
|
-
|
|
29141
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29142
|
+
Svg22.Path,
|
|
29108
29143
|
{
|
|
29109
29144
|
d: SAVE_HEART_PATH,
|
|
29110
29145
|
fill: color,
|
|
@@ -29117,8 +29152,8 @@ function SaveHeartIcon({
|
|
|
29117
29152
|
) });
|
|
29118
29153
|
}
|
|
29119
29154
|
function RatingStarIcon({ size = 12, color = "#E38E5E", strokeWidth = 2 }) {
|
|
29120
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29121
|
-
|
|
29155
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29156
|
+
Svg22.Path,
|
|
29122
29157
|
{
|
|
29123
29158
|
d: RATING_STAR_PATH,
|
|
29124
29159
|
fill: color,
|
|
@@ -29135,9 +29170,9 @@ function CardLocationIcon({
|
|
|
29135
29170
|
strokeWidth = 1.5,
|
|
29136
29171
|
secondaryColor = colors.grey700
|
|
29137
29172
|
}) {
|
|
29138
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29173
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg22__default.default, { width: size, height: size, viewBox: "0 0 13 13", fill: "none", children: [
|
|
29139
29174
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29140
|
-
|
|
29175
|
+
Svg22.Path,
|
|
29141
29176
|
{
|
|
29142
29177
|
d: CARD_LOCATION_BASE_PATH,
|
|
29143
29178
|
stroke: color,
|
|
@@ -29147,7 +29182,7 @@ function CardLocationIcon({
|
|
|
29147
29182
|
}
|
|
29148
29183
|
),
|
|
29149
29184
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29150
|
-
|
|
29185
|
+
Svg22.Path,
|
|
29151
29186
|
{
|
|
29152
29187
|
d: CARD_LOCATION_PIN_PATH,
|
|
29153
29188
|
fill: color,
|
|
@@ -29157,7 +29192,7 @@ function CardLocationIcon({
|
|
|
29157
29192
|
}
|
|
29158
29193
|
),
|
|
29159
29194
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29160
|
-
|
|
29195
|
+
Svg22.Path,
|
|
29161
29196
|
{
|
|
29162
29197
|
d: CARD_LOCATION_DOT_PATH,
|
|
29163
29198
|
fill: secondaryColor,
|
|
@@ -29174,7 +29209,7 @@ function FilledCardIcon({
|
|
|
29174
29209
|
color,
|
|
29175
29210
|
fillOpacity
|
|
29176
29211
|
}) {
|
|
29177
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29212
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: path, fill: color, fillOpacity }) });
|
|
29178
29213
|
}
|
|
29179
29214
|
function GuestsIcon({ size = 16, color = colors.white, fillOpacity = 0.4 }) {
|
|
29180
29215
|
return /* @__PURE__ */ jsxRuntime.jsx(FilledCardIcon, { path: GUESTS_PATH, size, color, fillOpacity });
|
|
@@ -29202,8 +29237,8 @@ var COPY_PATH = "M6.66699 13.3337V15.667C6.66699 16.6004 6.66699 17.0671 6.84865
|
|
|
29202
29237
|
var CHECK_SUCCESS_PATH = "M16.6663 5L7.49967 14.1667L3.33301 10";
|
|
29203
29238
|
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";
|
|
29204
29239
|
function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29205
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29206
|
-
|
|
29240
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29241
|
+
Svg22.Path,
|
|
29207
29242
|
{
|
|
29208
29243
|
d: SHARE_PATH,
|
|
29209
29244
|
stroke: color,
|
|
@@ -29214,8 +29249,8 @@ function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29214
29249
|
) });
|
|
29215
29250
|
}
|
|
29216
29251
|
function DownloadIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29217
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29218
|
-
|
|
29252
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29253
|
+
Svg22.Path,
|
|
29219
29254
|
{
|
|
29220
29255
|
d: DOWNLOAD_PATH,
|
|
29221
29256
|
stroke: color,
|
|
@@ -29226,8 +29261,8 @@ function DownloadIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29226
29261
|
) });
|
|
29227
29262
|
}
|
|
29228
29263
|
function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29229
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29230
|
-
|
|
29264
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: AREA_EXPAND_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
29265
|
+
Svg22.Path,
|
|
29231
29266
|
{
|
|
29232
29267
|
d: path,
|
|
29233
29268
|
stroke: color,
|
|
@@ -29239,17 +29274,17 @@ function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29239
29274
|
)) });
|
|
29240
29275
|
}
|
|
29241
29276
|
function ClockFilledIcon({ size = 16, color = colors.white }) {
|
|
29242
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29277
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: CLOCK_FILLED_PATH, fill: color }) });
|
|
29243
29278
|
}
|
|
29244
29279
|
function QrCodeIcon({ size = 24, color = colors.primary }) {
|
|
29245
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29280
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: QR_CODE_PATH, fill: color }) });
|
|
29246
29281
|
}
|
|
29247
29282
|
function WhatsAppIcon({ size = 24, color = colors.white }) {
|
|
29248
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29283
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: WHATSAPP_PATH, fill: color }) });
|
|
29249
29284
|
}
|
|
29250
29285
|
function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29251
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29252
|
-
|
|
29286
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29287
|
+
Svg22.Path,
|
|
29253
29288
|
{
|
|
29254
29289
|
d: COPY_PATH,
|
|
29255
29290
|
stroke: color,
|
|
@@ -29260,8 +29295,8 @@ function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
|
29260
29295
|
) });
|
|
29261
29296
|
}
|
|
29262
29297
|
function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 }) {
|
|
29263
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29264
|
-
|
|
29298
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29299
|
+
Svg22.Path,
|
|
29265
29300
|
{
|
|
29266
29301
|
d: CHECK_SUCCESS_PATH,
|
|
29267
29302
|
stroke: color,
|
|
@@ -29272,7 +29307,7 @@ function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 })
|
|
|
29272
29307
|
) });
|
|
29273
29308
|
}
|
|
29274
29309
|
function TooltipArrowIcon({ size = 10, color = colors.grey600 }) {
|
|
29275
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29310
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size * 8 / 10, viewBox: "0 0 10 8", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: TOOLTIP_ARROW_PATH, fill: color }) });
|
|
29276
29311
|
}
|
|
29277
29312
|
|
|
29278
29313
|
// src/icons/HouseRules/houseRulesPaths.ts
|
|
@@ -29292,11 +29327,11 @@ var PAW_PATHS = [
|
|
|
29292
29327
|
];
|
|
29293
29328
|
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";
|
|
29294
29329
|
function QuietHoursIcon({ size = 20, color = colors.white }) {
|
|
29295
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29330
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: QUIET_HOURS_PATH, fill: color }) });
|
|
29296
29331
|
}
|
|
29297
29332
|
function NoSmokingIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
29298
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29299
|
-
|
|
29333
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: NO_SMOKING_PATHS.map((d) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
29334
|
+
Svg22.Path,
|
|
29300
29335
|
{
|
|
29301
29336
|
d,
|
|
29302
29337
|
stroke: color,
|
|
@@ -29308,8 +29343,8 @@ function NoSmokingIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
29308
29343
|
)) });
|
|
29309
29344
|
}
|
|
29310
29345
|
function PawIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
29311
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29312
|
-
|
|
29346
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: PAW_PATHS.map((d) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
29347
|
+
Svg22.Path,
|
|
29313
29348
|
{
|
|
29314
29349
|
d,
|
|
29315
29350
|
stroke: color,
|
|
@@ -29321,8 +29356,8 @@ function PawIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
29321
29356
|
)) });
|
|
29322
29357
|
}
|
|
29323
29358
|
function TrashIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29324
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29325
|
-
|
|
29359
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29360
|
+
Svg22.Path,
|
|
29326
29361
|
{
|
|
29327
29362
|
d: TRASH_PATH,
|
|
29328
29363
|
stroke: color,
|
|
@@ -29336,14 +29371,14 @@ function TrashIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29336
29371
|
// src/icons/Facebook/facebookPath.ts
|
|
29337
29372
|
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";
|
|
29338
29373
|
function FacebookIcon({ size = 20, color = colors.white }) {
|
|
29339
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29374
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: FACEBOOK_PATH, fill: color }) });
|
|
29340
29375
|
}
|
|
29341
29376
|
|
|
29342
29377
|
// src/icons/Filters/filtersPath.ts
|
|
29343
29378
|
var FILTERS_PATH = "M5 10H15M2.5 5H17.5M7.5 15H12.5";
|
|
29344
29379
|
function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29345
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29346
|
-
|
|
29380
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29381
|
+
Svg22.Path,
|
|
29347
29382
|
{
|
|
29348
29383
|
d: FILTERS_PATH,
|
|
29349
29384
|
stroke: color,
|
|
@@ -29357,8 +29392,8 @@ function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
|
29357
29392
|
// src/icons/Fullscreen/fullscreenPath.ts
|
|
29358
29393
|
var FULLSCREEN_PATH = "M16 8L21 3M21 8V3H16M8 8L3 3M8 3L3 3L3 8M8 16L3 21M3 16L3 21H8M16 16L21 21M16 21H21V16";
|
|
29359
29394
|
function FullscreenIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29360
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29361
|
-
|
|
29395
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29396
|
+
Svg22.Path,
|
|
29362
29397
|
{
|
|
29363
29398
|
d: FULLSCREEN_PATH,
|
|
29364
29399
|
stroke: color,
|
|
@@ -29372,8 +29407,8 @@ function FullscreenIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29372
29407
|
// src/icons/Heart/heartPath.ts
|
|
29373
29408
|
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";
|
|
29374
29409
|
function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29375
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29376
|
-
|
|
29410
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29411
|
+
Svg22.Path,
|
|
29377
29412
|
{
|
|
29378
29413
|
d: HEART_PATH,
|
|
29379
29414
|
stroke: color,
|
|
@@ -29390,9 +29425,9 @@ function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
|
29390
29425
|
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";
|
|
29391
29426
|
var HEADSET_MIC_PATH = "M21 16V18C21 19.0609 20.5786 20.0783 19.8284 20.8284C19.0783 21.5786 18.0609 22 17 22H12";
|
|
29392
29427
|
function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
29393
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29428
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: [
|
|
29394
29429
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29395
|
-
|
|
29430
|
+
Svg22.Path,
|
|
29396
29431
|
{
|
|
29397
29432
|
d: HEADSET_PATH,
|
|
29398
29433
|
stroke: color,
|
|
@@ -29402,7 +29437,7 @@ function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
|
29402
29437
|
}
|
|
29403
29438
|
),
|
|
29404
29439
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29405
|
-
|
|
29440
|
+
Svg22.Path,
|
|
29406
29441
|
{
|
|
29407
29442
|
d: HEADSET_MIC_PATH,
|
|
29408
29443
|
stroke: color,
|
|
@@ -29417,8 +29452,8 @@ function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
|
29417
29452
|
// src/icons/Globe/globePath.ts
|
|
29418
29453
|
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";
|
|
29419
29454
|
function GlobeIcon({ size = 16, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29420
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29421
|
-
|
|
29455
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29456
|
+
Svg22.Path,
|
|
29422
29457
|
{
|
|
29423
29458
|
d: GLOBE_PATH,
|
|
29424
29459
|
stroke: color,
|
|
@@ -29436,8 +29471,8 @@ function HelpCircleIcon({
|
|
|
29436
29471
|
color = colors.primary,
|
|
29437
29472
|
strokeWidth = 1.5
|
|
29438
29473
|
}) {
|
|
29439
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29440
|
-
|
|
29474
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29475
|
+
Svg22.Path,
|
|
29441
29476
|
{
|
|
29442
29477
|
d: HELP_CIRCLE_PATH,
|
|
29443
29478
|
stroke: color,
|
|
@@ -29451,8 +29486,8 @@ function HelpCircleIcon({
|
|
|
29451
29486
|
// src/icons/Hide/hidePath.ts
|
|
29452
29487
|
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";
|
|
29453
29488
|
function HideIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29454
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29455
|
-
|
|
29489
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29490
|
+
Svg22.Path,
|
|
29456
29491
|
{
|
|
29457
29492
|
d: HIDE_PATH,
|
|
29458
29493
|
stroke: color,
|
|
@@ -29466,8 +29501,8 @@ function HideIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29466
29501
|
// src/icons/Home/homePath.ts
|
|
29467
29502
|
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";
|
|
29468
29503
|
function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29469
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29470
|
-
|
|
29504
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29505
|
+
Svg22.Path,
|
|
29471
29506
|
{
|
|
29472
29507
|
d: HOME_PATH,
|
|
29473
29508
|
stroke: color,
|
|
@@ -29481,14 +29516,14 @@ function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29481
29516
|
// src/icons/Instagram/instagramPath.ts
|
|
29482
29517
|
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";
|
|
29483
29518
|
function InstagramIcon({ size = 20, color = colors.white }) {
|
|
29484
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29519
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: INSTAGRAM_PATH, fill: color }) });
|
|
29485
29520
|
}
|
|
29486
29521
|
|
|
29487
29522
|
// src/icons/Key/keyPath.ts
|
|
29488
29523
|
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";
|
|
29489
29524
|
function KeyIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29490
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29491
|
-
|
|
29525
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29526
|
+
Svg22.Path,
|
|
29492
29527
|
{
|
|
29493
29528
|
d: KEY_PATH,
|
|
29494
29529
|
stroke: color,
|
|
@@ -29506,8 +29541,8 @@ function LayoutGridIcon({
|
|
|
29506
29541
|
color = colors.primary,
|
|
29507
29542
|
strokeWidth = 1.5
|
|
29508
29543
|
}) {
|
|
29509
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29510
|
-
|
|
29544
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29545
|
+
Svg22.Path,
|
|
29511
29546
|
{
|
|
29512
29547
|
d: LAYOUT_GRID_PATH,
|
|
29513
29548
|
stroke: color,
|
|
@@ -29521,14 +29556,14 @@ function LayoutGridIcon({
|
|
|
29521
29556
|
// src/icons/LinkedIn/linkedinPath.ts
|
|
29522
29557
|
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";
|
|
29523
29558
|
function LinkedInIcon({ size = 20, color = colors.white }) {
|
|
29524
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29559
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: LINKEDIN_PATH, fill: color }) });
|
|
29525
29560
|
}
|
|
29526
29561
|
|
|
29527
29562
|
// src/icons/ListView/listViewPath.ts
|
|
29528
29563
|
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";
|
|
29529
29564
|
function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29530
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29531
|
-
|
|
29565
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29566
|
+
Svg22.Path,
|
|
29532
29567
|
{
|
|
29533
29568
|
d: LIST_VIEW_PATH,
|
|
29534
29569
|
stroke: color,
|
|
@@ -29542,8 +29577,8 @@ function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29542
29577
|
// src/icons/LocationPin/locationPinPath.ts
|
|
29543
29578
|
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";
|
|
29544
29579
|
function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29545
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29546
|
-
|
|
29580
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29581
|
+
Svg22.Path,
|
|
29547
29582
|
{
|
|
29548
29583
|
d: LOCATION_PIN_PATH,
|
|
29549
29584
|
stroke: color,
|
|
@@ -29557,14 +29592,14 @@ function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 })
|
|
|
29557
29592
|
// src/icons/LocationUser/locationUserPath.ts
|
|
29558
29593
|
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";
|
|
29559
29594
|
function LocationUserIcon({ size = 16, color = colors.grey0 }) {
|
|
29560
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29595
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: LOCATION_USER_PATH, fill: color }) });
|
|
29561
29596
|
}
|
|
29562
29597
|
|
|
29563
29598
|
// src/icons/Lock/lockPath.ts
|
|
29564
29599
|
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";
|
|
29565
29600
|
function LockIcon({ size = 32, color = colors.primary, strokeWidth = 2 }) {
|
|
29566
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29567
|
-
|
|
29601
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 32 32", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29602
|
+
Svg22.Path,
|
|
29568
29603
|
{
|
|
29569
29604
|
d: LOCK_PATH,
|
|
29570
29605
|
stroke: color,
|
|
@@ -29578,8 +29613,8 @@ function LockIcon({ size = 32, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29578
29613
|
// src/icons/LogOut/logOutPath.ts
|
|
29579
29614
|
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";
|
|
29580
29615
|
function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
|
|
29581
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29582
|
-
|
|
29616
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29617
|
+
Svg22.Path,
|
|
29583
29618
|
{
|
|
29584
29619
|
d: LOG_OUT_PATH,
|
|
29585
29620
|
stroke: color,
|
|
@@ -29593,8 +29628,8 @@ function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
|
|
|
29593
29628
|
// src/icons/Mail/mailPath.ts
|
|
29594
29629
|
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";
|
|
29595
29630
|
function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29596
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29597
|
-
|
|
29631
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29632
|
+
Svg22.Path,
|
|
29598
29633
|
{
|
|
29599
29634
|
d: MAIL_PATH,
|
|
29600
29635
|
stroke: color,
|
|
@@ -29608,8 +29643,8 @@ function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29608
29643
|
// src/icons/MapView/mapViewPath.ts
|
|
29609
29644
|
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";
|
|
29610
29645
|
function MapViewIcon({ size = 20, color = colors.grey400, strokeWidth = 2 }) {
|
|
29611
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29612
|
-
|
|
29646
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29647
|
+
Svg22.Path,
|
|
29613
29648
|
{
|
|
29614
29649
|
d: MAP_VIEW_PATH,
|
|
29615
29650
|
stroke: color,
|
|
@@ -29629,8 +29664,8 @@ function MapControlIcon({
|
|
|
29629
29664
|
color = colors.white,
|
|
29630
29665
|
strokeWidth = 2
|
|
29631
29666
|
}) {
|
|
29632
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29633
|
-
|
|
29667
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29668
|
+
Svg22.Path,
|
|
29634
29669
|
{
|
|
29635
29670
|
d: path,
|
|
29636
29671
|
stroke: color,
|
|
@@ -29656,8 +29691,8 @@ function MenuIcon({
|
|
|
29656
29691
|
strokeWidth = 2,
|
|
29657
29692
|
open = false
|
|
29658
29693
|
}) {
|
|
29659
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29660
|
-
|
|
29694
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29695
|
+
Svg22.Path,
|
|
29661
29696
|
{
|
|
29662
29697
|
d: open ? MENU_CLOSE_PATH : MENU_PATH,
|
|
29663
29698
|
stroke: color,
|
|
@@ -29672,8 +29707,8 @@ function MenuIcon({
|
|
|
29672
29707
|
// src/icons/MenuLines/menuLinesPath.ts
|
|
29673
29708
|
var MENU_LINES_PATH = "M5.83398 19.8337H15.1673M5.83398 14.0003H22.1673M5.83398 8.16699H15.1673";
|
|
29674
29709
|
function MenuLinesIcon({ size = 28, color = colors.white, strokeWidth = 2 }) {
|
|
29675
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29676
|
-
|
|
29710
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29711
|
+
Svg22.Path,
|
|
29677
29712
|
{
|
|
29678
29713
|
d: MENU_LINES_PATH,
|
|
29679
29714
|
stroke: color,
|
|
@@ -29687,8 +29722,8 @@ function MenuLinesIcon({ size = 28, color = colors.white, strokeWidth = 2 }) {
|
|
|
29687
29722
|
// src/icons/Minus/minusPath.ts
|
|
29688
29723
|
var MINUS_PATH = "M3.33337 8H12.6667";
|
|
29689
29724
|
function MinusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
29690
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29691
|
-
|
|
29725
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29726
|
+
Svg22.Path,
|
|
29692
29727
|
{
|
|
29693
29728
|
d: MINUS_PATH,
|
|
29694
29729
|
stroke: color,
|
|
@@ -29699,11 +29734,31 @@ function MinusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
|
29699
29734
|
) });
|
|
29700
29735
|
}
|
|
29701
29736
|
|
|
29737
|
+
// src/icons/MoreHorizontal/moreHorizontalPath.ts
|
|
29738
|
+
var MORE_HORIZONTAL_PATH = "M6.33333 2.33333C6.70152 2.33333 7 2.03486 7 1.66667C7 1.29848 6.70152 1 6.33333 1C5.96514 1 5.66667 1.29848 5.66667 1.66667C5.66667 2.03486 5.96514 2.33333 6.33333 2.33333ZM11 2.33333C11.3682 2.33333 11.6667 2.03486 11.6667 1.66667C11.6667 1.29848 11.3682 1 11 1C10.6318 1 10.3333 1.29848 10.3333 1.66667C10.3333 2.03486 10.6318 2.33333 11 2.33333ZM1.66667 2.33333C2.03486 2.33333 2.33333 2.03486 2.33333 1.66667C2.33333 1.29848 2.03486 1 1.66667 1C1.29848 1 1 1.29848 1 1.66667C1 2.03486 1.29848 2.33333 1.66667 2.33333Z";
|
|
29739
|
+
var ASPECT_RATIO = 4 / 13;
|
|
29740
|
+
function MoreHorizontalIcon({
|
|
29741
|
+
size = 13,
|
|
29742
|
+
color = colors.white,
|
|
29743
|
+
strokeWidth = 2
|
|
29744
|
+
}) {
|
|
29745
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size * ASPECT_RATIO, viewBox: "0 0 13 4", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29746
|
+
Svg22.Path,
|
|
29747
|
+
{
|
|
29748
|
+
d: MORE_HORIZONTAL_PATH,
|
|
29749
|
+
stroke: color,
|
|
29750
|
+
strokeWidth,
|
|
29751
|
+
strokeLinecap: "round",
|
|
29752
|
+
strokeLinejoin: "round"
|
|
29753
|
+
}
|
|
29754
|
+
) });
|
|
29755
|
+
}
|
|
29756
|
+
|
|
29702
29757
|
// src/icons/Navigate/navigatePath.ts
|
|
29703
29758
|
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";
|
|
29704
29759
|
function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29705
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29706
|
-
|
|
29760
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29761
|
+
Svg22.Path,
|
|
29707
29762
|
{
|
|
29708
29763
|
d: NAVIGATE_PATH,
|
|
29709
29764
|
stroke: color,
|
|
@@ -29717,8 +29772,8 @@ function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29717
29772
|
// src/icons/Phone/phonePath.ts
|
|
29718
29773
|
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";
|
|
29719
29774
|
function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29720
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29721
|
-
|
|
29775
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29776
|
+
Svg22.Path,
|
|
29722
29777
|
{
|
|
29723
29778
|
d: PHONE_PATH,
|
|
29724
29779
|
stroke: color,
|
|
@@ -29732,8 +29787,8 @@ function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29732
29787
|
// src/icons/Plus/plusPath.ts
|
|
29733
29788
|
var PLUS_PATH = "M8.00004 3.33325V12.6666M3.33337 7.99992H12.6667";
|
|
29734
29789
|
function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
29735
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29736
|
-
|
|
29790
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29791
|
+
Svg22.Path,
|
|
29737
29792
|
{
|
|
29738
29793
|
d: PLUS_PATH,
|
|
29739
29794
|
stroke: color,
|
|
@@ -29747,8 +29802,8 @@ function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
|
29747
29802
|
// src/icons/Refresh/refreshPath.ts
|
|
29748
29803
|
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";
|
|
29749
29804
|
function RefreshIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29750
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29751
|
-
|
|
29805
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29806
|
+
Svg22.Path,
|
|
29752
29807
|
{
|
|
29753
29808
|
d: REFRESH_PATH,
|
|
29754
29809
|
stroke: color,
|
|
@@ -29766,8 +29821,8 @@ function RefundStatusIcon({
|
|
|
29766
29821
|
color = colors.primary,
|
|
29767
29822
|
strokeWidth = 2
|
|
29768
29823
|
}) {
|
|
29769
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29770
|
-
|
|
29824
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29825
|
+
Svg22.Path,
|
|
29771
29826
|
{
|
|
29772
29827
|
d: REFUND_STATUS_PATH,
|
|
29773
29828
|
stroke: color,
|
|
@@ -29786,9 +29841,9 @@ function SearchIcon({
|
|
|
29786
29841
|
color = colors.primary,
|
|
29787
29842
|
strokeWidth = 2
|
|
29788
29843
|
}) {
|
|
29789
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29844
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
|
|
29790
29845
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29791
|
-
|
|
29846
|
+
Svg22.Path,
|
|
29792
29847
|
{
|
|
29793
29848
|
d: SEARCH_CIRCLE_PATH,
|
|
29794
29849
|
stroke: color,
|
|
@@ -29798,7 +29853,7 @@ function SearchIcon({
|
|
|
29798
29853
|
}
|
|
29799
29854
|
),
|
|
29800
29855
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29801
|
-
|
|
29856
|
+
Svg22.Path,
|
|
29802
29857
|
{
|
|
29803
29858
|
d: SEARCH_HANDLE_PATH,
|
|
29804
29859
|
stroke: color,
|
|
@@ -29813,8 +29868,8 @@ function SearchIcon({
|
|
|
29813
29868
|
// src/icons/Settings/settingsPath.ts
|
|
29814
29869
|
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";
|
|
29815
29870
|
function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29816
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29817
|
-
|
|
29871
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29872
|
+
Svg22.Path,
|
|
29818
29873
|
{
|
|
29819
29874
|
d: SETTINGS_PATH,
|
|
29820
29875
|
stroke: color,
|
|
@@ -29829,9 +29884,9 @@ function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 })
|
|
|
29829
29884
|
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";
|
|
29830
29885
|
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";
|
|
29831
29886
|
function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29832
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29887
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
|
|
29833
29888
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29834
|
-
|
|
29889
|
+
Svg22.Path,
|
|
29835
29890
|
{
|
|
29836
29891
|
d: SHOW_PATH,
|
|
29837
29892
|
stroke: color,
|
|
@@ -29841,7 +29896,7 @@ function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29841
29896
|
}
|
|
29842
29897
|
),
|
|
29843
29898
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29844
|
-
|
|
29899
|
+
Svg22.Path,
|
|
29845
29900
|
{
|
|
29846
29901
|
d: SHOW_PUPIL_PATH,
|
|
29847
29902
|
stroke: color,
|
|
@@ -29856,8 +29911,8 @@ function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29856
29911
|
// src/icons/Sidebar/sidebarPath.ts
|
|
29857
29912
|
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";
|
|
29858
29913
|
function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29859
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29860
|
-
|
|
29914
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29915
|
+
Svg22.Path,
|
|
29861
29916
|
{
|
|
29862
29917
|
d: SIDEBAR_PATH,
|
|
29863
29918
|
stroke: color,
|
|
@@ -29871,8 +29926,8 @@ function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29871
29926
|
// src/icons/Sort/sortPath.ts
|
|
29872
29927
|
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";
|
|
29873
29928
|
function SortIcon({ size = 20, color = colors.grey300, strokeWidth = 2 }) {
|
|
29874
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29875
|
-
|
|
29929
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29930
|
+
Svg22.Path,
|
|
29876
29931
|
{
|
|
29877
29932
|
d: SORT_PATH,
|
|
29878
29933
|
stroke: color,
|
|
@@ -29893,8 +29948,8 @@ function StarIcon({
|
|
|
29893
29948
|
strokeWidth = 2
|
|
29894
29949
|
}) {
|
|
29895
29950
|
const resolvedColor = color ?? (active ? "#E38E5E" : colors.grey150);
|
|
29896
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29897
|
-
|
|
29951
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29952
|
+
Svg22.Path,
|
|
29898
29953
|
{
|
|
29899
29954
|
d: STAR_PATH,
|
|
29900
29955
|
fill: active ? resolvedColor : "none",
|
|
@@ -29911,8 +29966,8 @@ function StarFilledIcon({
|
|
|
29911
29966
|
color = "#E38E5E",
|
|
29912
29967
|
strokeWidth = 2
|
|
29913
29968
|
}) {
|
|
29914
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29915
|
-
|
|
29969
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: color, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29970
|
+
Svg22.Path,
|
|
29916
29971
|
{
|
|
29917
29972
|
d: STAR_PATH,
|
|
29918
29973
|
fill: color,
|
|
@@ -29924,11 +29979,26 @@ function StarFilledIcon({
|
|
|
29924
29979
|
) });
|
|
29925
29980
|
}
|
|
29926
29981
|
|
|
29982
|
+
// src/icons/TableView/tableViewPath.ts
|
|
29983
|
+
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";
|
|
29984
|
+
function TableViewIcon({ size = 17, color = colors.grey400, strokeWidth = 2 }) {
|
|
29985
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 17 17", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29986
|
+
Svg22.Path,
|
|
29987
|
+
{
|
|
29988
|
+
d: TABLE_VIEW_PATH,
|
|
29989
|
+
stroke: color,
|
|
29990
|
+
strokeWidth,
|
|
29991
|
+
strokeLinecap: "round",
|
|
29992
|
+
strokeLinejoin: "round"
|
|
29993
|
+
}
|
|
29994
|
+
) });
|
|
29995
|
+
}
|
|
29996
|
+
|
|
29927
29997
|
// src/icons/User/userPath.ts
|
|
29928
29998
|
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";
|
|
29929
29999
|
function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29930
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29931
|
-
|
|
30000
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30001
|
+
Svg22.Path,
|
|
29932
30002
|
{
|
|
29933
30003
|
d: USER_PATH,
|
|
29934
30004
|
stroke: color,
|
|
@@ -29942,7 +30012,7 @@ function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29942
30012
|
// src/icons/UsersAlt/usersAltPath.ts
|
|
29943
30013
|
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";
|
|
29944
30014
|
function UsersAltIcon({ size = 28, color = colors.white }) {
|
|
29945
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30015
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: USERS_ALT_PATH, fill: color }) });
|
|
29946
30016
|
}
|
|
29947
30017
|
|
|
29948
30018
|
// src/icons/Video/videoPath.ts
|
|
@@ -29951,8 +30021,8 @@ var VIDEO_PATHS = [
|
|
|
29951
30021
|
"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"
|
|
29952
30022
|
];
|
|
29953
30023
|
function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29954
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29955
|
-
|
|
30024
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: VIDEO_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
30025
|
+
Svg22.Path,
|
|
29956
30026
|
{
|
|
29957
30027
|
d: path,
|
|
29958
30028
|
stroke: color,
|
|
@@ -29967,8 +30037,8 @@ function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
|
29967
30037
|
// src/icons/VideoOff/videoOffPath.ts
|
|
29968
30038
|
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";
|
|
29969
30039
|
function VideoOffIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29970
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29971
|
-
|
|
30040
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30041
|
+
Svg22.Path,
|
|
29972
30042
|
{
|
|
29973
30043
|
d: VIDEO_OFF_PATH,
|
|
29974
30044
|
stroke: color,
|
|
@@ -29982,8 +30052,8 @@ function VideoOffIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29982
30052
|
// src/icons/ZoomOut/zoomOutPath.ts
|
|
29983
30053
|
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";
|
|
29984
30054
|
function ZoomOutIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29985
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29986
|
-
|
|
30055
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30056
|
+
Svg22.Path,
|
|
29987
30057
|
{
|
|
29988
30058
|
d: ZOOM_OUT_PATH,
|
|
29989
30059
|
stroke: color,
|
|
@@ -29999,6 +30069,7 @@ var icons = {
|
|
|
29999
30069
|
alertTriangle: AlertTriangleIcon,
|
|
30000
30070
|
areaExpand: AreaExpandIcon,
|
|
30001
30071
|
apple: AppleIcon,
|
|
30072
|
+
arrowLeft: ArrowLeftIcon,
|
|
30002
30073
|
arrowRight: ArrowRightIcon,
|
|
30003
30074
|
bag: BagIcon,
|
|
30004
30075
|
ban: BanIcon,
|
|
@@ -30015,6 +30086,7 @@ var icons = {
|
|
|
30015
30086
|
chevronLeft: ChevronLeftIcon,
|
|
30016
30087
|
clock: ClockIcon,
|
|
30017
30088
|
close: CloseIcon,
|
|
30089
|
+
currentLocation: CurrentLocationIcon,
|
|
30018
30090
|
edit: EditIcon,
|
|
30019
30091
|
clockFilled: ClockFilledIcon,
|
|
30020
30092
|
copy: CopyIcon,
|
|
@@ -30049,6 +30121,7 @@ var icons = {
|
|
|
30049
30121
|
menu: MenuIcon,
|
|
30050
30122
|
menuLines: MenuLinesIcon,
|
|
30051
30123
|
minus: MinusIcon,
|
|
30124
|
+
moreHorizontal: MoreHorizontalIcon,
|
|
30052
30125
|
navigate: NavigateIcon,
|
|
30053
30126
|
noSmoking: NoSmokingIcon,
|
|
30054
30127
|
paw: PawIcon,
|
|
@@ -30068,6 +30141,7 @@ var icons = {
|
|
|
30068
30141
|
sort: SortIcon,
|
|
30069
30142
|
star: StarIcon,
|
|
30070
30143
|
starFilled: StarFilledIcon,
|
|
30144
|
+
tableView: TableViewIcon,
|
|
30071
30145
|
tooltipArrow: TooltipArrowIcon,
|
|
30072
30146
|
trash: TrashIcon,
|
|
30073
30147
|
user: UserIcon,
|
|
@@ -30080,9 +30154,11 @@ var icons = {
|
|
|
30080
30154
|
var iconNames = Object.keys(icons);
|
|
30081
30155
|
var iconGroups = {
|
|
30082
30156
|
navigation: [
|
|
30157
|
+
"arrowLeft",
|
|
30083
30158
|
"arrowRight",
|
|
30084
30159
|
"chevronDown",
|
|
30085
30160
|
"chevronLeft",
|
|
30161
|
+
"currentLocation",
|
|
30086
30162
|
"home",
|
|
30087
30163
|
"listView",
|
|
30088
30164
|
"locationPin",
|
|
@@ -30092,7 +30168,8 @@ var iconGroups = {
|
|
|
30092
30168
|
"mapView",
|
|
30093
30169
|
"menu",
|
|
30094
30170
|
"menuLines",
|
|
30095
|
-
"navigate"
|
|
30171
|
+
"navigate",
|
|
30172
|
+
"tableView"
|
|
30096
30173
|
],
|
|
30097
30174
|
actions: [
|
|
30098
30175
|
"show",
|
|
@@ -30123,6 +30200,7 @@ var iconGroups = {
|
|
|
30123
30200
|
"star",
|
|
30124
30201
|
"starFilled",
|
|
30125
30202
|
"minus",
|
|
30203
|
+
"moreHorizontal",
|
|
30126
30204
|
"plus",
|
|
30127
30205
|
"refresh",
|
|
30128
30206
|
"refundStatus",
|
|
@@ -30230,8 +30308,8 @@ var AMENITY_PATHS = {
|
|
|
30230
30308
|
]
|
|
30231
30309
|
};
|
|
30232
30310
|
function AmenityIcon({ name, size = 20, color = colors.primary }) {
|
|
30233
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30234
|
-
|
|
30311
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg22__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: AMENITY_PATHS[name].map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
30312
|
+
Svg22.Path,
|
|
30235
30313
|
{
|
|
30236
30314
|
d: path.d,
|
|
30237
30315
|
fill: path.fill ? color : "none",
|
|
@@ -30520,7 +30598,87 @@ var styles2 = reactNative.StyleSheet.create({
|
|
|
30520
30598
|
flex: 1
|
|
30521
30599
|
}
|
|
30522
30600
|
});
|
|
30523
|
-
var
|
|
30601
|
+
var ICON_SLOT_SIZE = 41;
|
|
30602
|
+
var ICON_SIZE2 = 20;
|
|
30603
|
+
var InfoCardV2 = react.forwardRef(
|
|
30604
|
+
function InfoCardV22({
|
|
30605
|
+
label,
|
|
30606
|
+
value,
|
|
30607
|
+
icon: Icon2,
|
|
30608
|
+
iconProps,
|
|
30609
|
+
iconSize = ICON_SIZE2,
|
|
30610
|
+
style,
|
|
30611
|
+
className,
|
|
30612
|
+
accessibilityLabel,
|
|
30613
|
+
...rest
|
|
30614
|
+
}, forwardedRef) {
|
|
30615
|
+
const containerRef = react.useRef(null);
|
|
30616
|
+
const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
|
|
30617
|
+
useApplyWebClassName(containerRef, className?.trim() || void 0);
|
|
30618
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
30619
|
+
reactNative.View,
|
|
30620
|
+
{
|
|
30621
|
+
...rest,
|
|
30622
|
+
ref: setContainerRef,
|
|
30623
|
+
accessibilityRole: "text",
|
|
30624
|
+
accessibilityLabel: accessibilityLabel ?? `${label}. ${value}`,
|
|
30625
|
+
style: [styles3.root, style],
|
|
30626
|
+
children: [
|
|
30627
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles3.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(Icon2, { ...iconProps, size: iconSize, color: iconProps?.color ?? colors.primary }) }),
|
|
30628
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles3.content, children: [
|
|
30629
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles3.label, children: label }),
|
|
30630
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles3.value, children: value })
|
|
30631
|
+
] })
|
|
30632
|
+
]
|
|
30633
|
+
}
|
|
30634
|
+
);
|
|
30635
|
+
}
|
|
30636
|
+
);
|
|
30637
|
+
var styles3 = reactNative.StyleSheet.create({
|
|
30638
|
+
root: {
|
|
30639
|
+
minHeight: 65,
|
|
30640
|
+
padding: 12,
|
|
30641
|
+
flexDirection: "row",
|
|
30642
|
+
alignItems: "center",
|
|
30643
|
+
flexGrow: 1,
|
|
30644
|
+
flexShrink: 0,
|
|
30645
|
+
flexBasis: 0,
|
|
30646
|
+
gap: 16,
|
|
30647
|
+
borderRadius: 16,
|
|
30648
|
+
backgroundColor: colors.grey700
|
|
30649
|
+
},
|
|
30650
|
+
iconSlot: {
|
|
30651
|
+
width: ICON_SLOT_SIZE,
|
|
30652
|
+
height: ICON_SLOT_SIZE,
|
|
30653
|
+
borderRadius: 10,
|
|
30654
|
+
alignItems: "center",
|
|
30655
|
+
justifyContent: "center",
|
|
30656
|
+
flexShrink: 0,
|
|
30657
|
+
backgroundColor: colors.grey600
|
|
30658
|
+
},
|
|
30659
|
+
content: {
|
|
30660
|
+
minWidth: 0,
|
|
30661
|
+
flexShrink: 1,
|
|
30662
|
+
gap: 6
|
|
30663
|
+
},
|
|
30664
|
+
label: {
|
|
30665
|
+
fontFamily: fonts.sans,
|
|
30666
|
+
fontSize: 14,
|
|
30667
|
+
fontWeight: "500",
|
|
30668
|
+
lineHeight: 16,
|
|
30669
|
+
letterSpacing: 0,
|
|
30670
|
+
color: colors.lightGrey
|
|
30671
|
+
},
|
|
30672
|
+
value: {
|
|
30673
|
+
fontFamily: fonts.sans,
|
|
30674
|
+
fontSize: 16,
|
|
30675
|
+
fontWeight: "700",
|
|
30676
|
+
lineHeight: 19,
|
|
30677
|
+
letterSpacing: 0,
|
|
30678
|
+
color: colors.white
|
|
30679
|
+
}
|
|
30680
|
+
});
|
|
30681
|
+
var ICON_SIZE3 = 16;
|
|
30524
30682
|
var BACKGROUND_COLOR = "#09090966";
|
|
30525
30683
|
var webBlurStyle = reactNative.Platform.OS === "web" ? {
|
|
30526
30684
|
backdropFilter: "blur(10px)",
|
|
@@ -30561,10 +30719,10 @@ var FavoritesButton = react.forwardRef(
|
|
|
30561
30719
|
hitSlop,
|
|
30562
30720
|
onPress: handlePress,
|
|
30563
30721
|
style: ({ pressed }) => [
|
|
30564
|
-
|
|
30722
|
+
styles4.button,
|
|
30565
30723
|
webBlurStyle,
|
|
30566
|
-
pressed &&
|
|
30567
|
-
disabled &&
|
|
30724
|
+
pressed && styles4.pressed,
|
|
30725
|
+
disabled && styles4.disabled,
|
|
30568
30726
|
style
|
|
30569
30727
|
],
|
|
30570
30728
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -30572,7 +30730,7 @@ var FavoritesButton = react.forwardRef(
|
|
|
30572
30730
|
{
|
|
30573
30731
|
color: isActive ? colors.red : colors.white,
|
|
30574
30732
|
fillOpacity: isActive ? 1 : 0,
|
|
30575
|
-
size:
|
|
30733
|
+
size: ICON_SIZE3,
|
|
30576
30734
|
strokeWidth: 2
|
|
30577
30735
|
}
|
|
30578
30736
|
)
|
|
@@ -30580,7 +30738,7 @@ var FavoritesButton = react.forwardRef(
|
|
|
30580
30738
|
);
|
|
30581
30739
|
}
|
|
30582
30740
|
);
|
|
30583
|
-
var
|
|
30741
|
+
var styles4 = reactNative.StyleSheet.create({
|
|
30584
30742
|
button: {
|
|
30585
30743
|
padding: 12,
|
|
30586
30744
|
gap: 10,
|
|
@@ -30599,6 +30757,44 @@ var styles3 = reactNative.StyleSheet.create({
|
|
|
30599
30757
|
opacity: 0.5
|
|
30600
30758
|
}
|
|
30601
30759
|
});
|
|
30760
|
+
var webBlurStyle2 = reactNative.Platform.OS === "web" ? {
|
|
30761
|
+
backdropFilter: "blur(10px)",
|
|
30762
|
+
WebkitBackdropFilter: "blur(10px)"
|
|
30763
|
+
} : {};
|
|
30764
|
+
var IconStatusBadge = react.forwardRef(
|
|
30765
|
+
function IconStatusBadge2({ label, icon: Icon2, iconProps, iconSize = 16, style, className, ...rest }, forwardedRef) {
|
|
30766
|
+
const badgeRef = react.useRef(null);
|
|
30767
|
+
const setBadgeRef = react.useMemo(() => mergeRefs(badgeRef, forwardedRef), [forwardedRef]);
|
|
30768
|
+
useApplyWebClassName(badgeRef, className);
|
|
30769
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...rest, ref: setBadgeRef, style: [styles5.root, webBlurStyle2, style], children: [
|
|
30770
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon2, { ...iconProps, size: iconSize }),
|
|
30771
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles5.label, children: label })
|
|
30772
|
+
] });
|
|
30773
|
+
}
|
|
30774
|
+
);
|
|
30775
|
+
var styles5 = reactNative.StyleSheet.create({
|
|
30776
|
+
root: {
|
|
30777
|
+
minHeight: 34,
|
|
30778
|
+
paddingHorizontal: 12,
|
|
30779
|
+
paddingVertical: 8,
|
|
30780
|
+
flexDirection: "row",
|
|
30781
|
+
alignItems: "center",
|
|
30782
|
+
justifyContent: "center",
|
|
30783
|
+
gap: 10,
|
|
30784
|
+
alignSelf: "flex-start",
|
|
30785
|
+
borderRadius: 39,
|
|
30786
|
+
borderWidth: 1,
|
|
30787
|
+
borderColor: colors.whiteAlpha10,
|
|
30788
|
+
backgroundColor: "#09090966"
|
|
30789
|
+
},
|
|
30790
|
+
label: {
|
|
30791
|
+
color: colors.white,
|
|
30792
|
+
fontFamily: fonts.sans,
|
|
30793
|
+
fontSize: 12,
|
|
30794
|
+
fontWeight: "700",
|
|
30795
|
+
lineHeight: 15
|
|
30796
|
+
}
|
|
30797
|
+
});
|
|
30602
30798
|
|
|
30603
30799
|
// src/primitives/BrandLogo/brandLogoPaths.ts
|
|
30604
30800
|
var BRAND_LOGO_PATHS = [
|
|
@@ -30654,7 +30850,7 @@ function BrandLogo({
|
|
|
30654
30850
|
const size = resolveBrandLogoSize(width, height);
|
|
30655
30851
|
const fill = BRAND_LOGO_COLORS[variant];
|
|
30656
30852
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30657
|
-
|
|
30853
|
+
Svg22__default.default,
|
|
30658
30854
|
{
|
|
30659
30855
|
width: size.width,
|
|
30660
30856
|
height: size.height,
|
|
@@ -30664,7 +30860,7 @@ function BrandLogo({
|
|
|
30664
30860
|
accessible: true,
|
|
30665
30861
|
accessibilityRole: "image",
|
|
30666
30862
|
accessibilityLabel,
|
|
30667
|
-
children: BRAND_LOGO_PATHS.map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
30863
|
+
children: BRAND_LOGO_PATHS.map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(Svg22.Path, { d: path, fill }, index))
|
|
30668
30864
|
}
|
|
30669
30865
|
);
|
|
30670
30866
|
}
|
|
@@ -30758,7 +30954,7 @@ var Avatar = react.forwardRef(function Avatar2({
|
|
|
30758
30954
|
}, [isOpen, closeAndFocusTrigger]);
|
|
30759
30955
|
const hasImage = Boolean(imageUrl) && !imageFailed;
|
|
30760
30956
|
const resolvedAccessibilityLabel = accessibilityLabel ?? [name, email].filter(Boolean).join(", ");
|
|
30761
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: wrapperRef, style: [
|
|
30957
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: wrapperRef, style: [styles6.wrapper, isOpen && styles6.wrapperOpen], children: [
|
|
30762
30958
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
30763
30959
|
reactNative.Pressable,
|
|
30764
30960
|
{
|
|
@@ -30770,25 +30966,25 @@ var Avatar = react.forwardRef(function Avatar2({
|
|
|
30770
30966
|
accessibilityRole: isInteractive ? "button" : void 0,
|
|
30771
30967
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
30772
30968
|
accessibilityState: isInteractive ? { disabled, expanded: hasMenu ? isOpen : void 0 } : void 0,
|
|
30773
|
-
style: [
|
|
30969
|
+
style: [styles6.root, disabled && styles6.disabled, style],
|
|
30774
30970
|
children: [
|
|
30775
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
30971
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles6.imageWrap, children: hasImage ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
30776
30972
|
reactNative.Image,
|
|
30777
30973
|
{
|
|
30778
30974
|
source: { uri: imageUrl ?? void 0 },
|
|
30779
|
-
style:
|
|
30975
|
+
style: styles6.image,
|
|
30780
30976
|
onError: () => setImageFailed(true)
|
|
30781
30977
|
}
|
|
30782
|
-
) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
30783
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
30784
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
30785
|
-
email ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
30978
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles6.imageFallback, children: /* @__PURE__ */ jsxRuntime.jsx(UserIcon, { size: FALLBACK_ICON_SIZE, color: colors.primary }) }) }),
|
|
30979
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles6.textColumn, children: [
|
|
30980
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles6.name, numberOfLines: 1, children: name }),
|
|
30981
|
+
email ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles6.email, numberOfLines: 1, children: email }) : null
|
|
30786
30982
|
] }),
|
|
30787
|
-
showChevron ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
30983
|
+
showChevron ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles6.chevronSlot, isOpen && styles6.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { size: CHEVRON_SIZE, color: isOpen ? colors.primary : colors.grey100 }) }) : null
|
|
30788
30984
|
]
|
|
30789
30985
|
}
|
|
30790
30986
|
),
|
|
30791
|
-
hasMenu && isOpen ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
30987
|
+
hasMenu && isOpen ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles6.menu, menuWidth != null && { right: void 0, width: menuWidth }], children: resolvedMenuItems.map((item) => {
|
|
30792
30988
|
const itemKey = item.key ?? item.label;
|
|
30793
30989
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30794
30990
|
MenuItem,
|
|
@@ -30805,7 +31001,7 @@ var Avatar = react.forwardRef(function Avatar2({
|
|
|
30805
31001
|
}) }) : null
|
|
30806
31002
|
] });
|
|
30807
31003
|
});
|
|
30808
|
-
var
|
|
31004
|
+
var styles6 = reactNative.StyleSheet.create({
|
|
30809
31005
|
wrapper: {
|
|
30810
31006
|
position: "relative",
|
|
30811
31007
|
alignSelf: "flex-start"
|
|
@@ -30916,23 +31112,23 @@ var AvatarSimple = react.forwardRef(
|
|
|
30916
31112
|
{
|
|
30917
31113
|
...rest,
|
|
30918
31114
|
ref: setContainerRef,
|
|
30919
|
-
style: [
|
|
31115
|
+
style: [styles7.root, compact ? styles7.rootCompact : styles7.rootCard, style],
|
|
30920
31116
|
accessibilityRole: "summary",
|
|
30921
31117
|
accessibilityLabel: `${name}, ${email}`,
|
|
30922
31118
|
children: [
|
|
30923
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
31119
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles7.avatar, children: showImage ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
30924
31120
|
reactNative.Image,
|
|
30925
31121
|
{
|
|
30926
31122
|
source: { uri: imageUrl ?? void 0 },
|
|
30927
|
-
style:
|
|
31123
|
+
style: styles7.avatarImage,
|
|
30928
31124
|
onError: () => setImageFailed(true),
|
|
30929
31125
|
accessibilityIgnoresInvertColors: true
|
|
30930
31126
|
}
|
|
30931
31127
|
) : null }),
|
|
30932
|
-
!compact ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
30933
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
30934
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
30935
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
31128
|
+
!compact ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles7.details, children: [
|
|
31129
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles7.textBlock, children: [
|
|
31130
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles7.name, numberOfLines: 1, ellipsizeMode: "tail", children: name }),
|
|
31131
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles7.email, numberOfLines: 1, ellipsizeMode: "tail", children: email })
|
|
30936
31132
|
] }),
|
|
30937
31133
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
30938
31134
|
reactNative.Pressable,
|
|
@@ -30941,7 +31137,7 @@ var AvatarSimple = react.forwardRef(
|
|
|
30941
31137
|
accessibilityRole: "button",
|
|
30942
31138
|
accessibilityLabel: logOutAccessibilityLabel,
|
|
30943
31139
|
hitSlop: 8,
|
|
30944
|
-
style:
|
|
31140
|
+
style: styles7.logOutButton,
|
|
30945
31141
|
children: /* @__PURE__ */ jsxRuntime.jsx(LogOutIcon, { color: colors.primary, size: LOG_OUT_SIZE, strokeWidth: 2 })
|
|
30946
31142
|
}
|
|
30947
31143
|
)
|
|
@@ -30951,7 +31147,7 @@ var AvatarSimple = react.forwardRef(
|
|
|
30951
31147
|
);
|
|
30952
31148
|
}
|
|
30953
31149
|
);
|
|
30954
|
-
var
|
|
31150
|
+
var styles7 = reactNative.StyleSheet.create({
|
|
30955
31151
|
root: {
|
|
30956
31152
|
flexDirection: "row",
|
|
30957
31153
|
alignItems: "center",
|
|
@@ -31060,15 +31256,15 @@ var AccountHeader = react.forwardRef(
|
|
|
31060
31256
|
...webClassName(className),
|
|
31061
31257
|
ref: setContainerRef,
|
|
31062
31258
|
accessibilityRole: "header",
|
|
31063
|
-
style: [
|
|
31259
|
+
style: [styles8.base, style],
|
|
31064
31260
|
children: [
|
|
31065
31261
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
31066
31262
|
reactNative.View,
|
|
31067
31263
|
{
|
|
31068
31264
|
style: [
|
|
31069
|
-
|
|
31070
|
-
showBack ?
|
|
31071
|
-
showMenu ?
|
|
31265
|
+
styles8.start,
|
|
31266
|
+
showBack ? styles8.startWithBack : null,
|
|
31267
|
+
showMenu ? styles8.startWithMenu : null
|
|
31072
31268
|
],
|
|
31073
31269
|
children: [
|
|
31074
31270
|
showBack ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -31078,7 +31274,7 @@ var AccountHeader = react.forwardRef(
|
|
|
31078
31274
|
accessibilityLabel: backAccessibilityLabel,
|
|
31079
31275
|
hitSlop: 8,
|
|
31080
31276
|
onPress: onBackPress,
|
|
31081
|
-
style:
|
|
31277
|
+
style: styles8.iconButton,
|
|
31082
31278
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31083
31279
|
ChevronLeftIcon,
|
|
31084
31280
|
{
|
|
@@ -31099,34 +31295,34 @@ var AccountHeader = react.forwardRef(
|
|
|
31099
31295
|
accessibilityLabel: menuAccessibilityLabel,
|
|
31100
31296
|
hitSlop: 8,
|
|
31101
31297
|
onPress: onMenuPress,
|
|
31102
|
-
style:
|
|
31298
|
+
style: styles8.menuButton,
|
|
31103
31299
|
children: /* @__PURE__ */ jsxRuntime.jsx(MenuLinesIcon, { color: colors.white, size: MENU_ICON_SIZE, strokeWidth: 2 })
|
|
31104
31300
|
}
|
|
31105
31301
|
) : null,
|
|
31106
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
31302
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles8.titleRow, children: [
|
|
31107
31303
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31108
31304
|
reactNative.Text,
|
|
31109
31305
|
{
|
|
31110
31306
|
...webClassName("account-header-title"),
|
|
31111
31307
|
numberOfLines: 1,
|
|
31112
|
-
style: [
|
|
31308
|
+
style: [styles8.title, titleStyle],
|
|
31113
31309
|
children: title
|
|
31114
31310
|
}
|
|
31115
31311
|
),
|
|
31116
|
-
badge != null ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
31312
|
+
badge != null ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles8.badgeSlot, children: badge }) : null
|
|
31117
31313
|
] })
|
|
31118
31314
|
]
|
|
31119
31315
|
}
|
|
31120
31316
|
),
|
|
31121
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
31122
|
-
languageSlot != null ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
31317
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles8.end, children: [
|
|
31318
|
+
languageSlot != null ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles8.languageSlot, children: languageSlot }) : null,
|
|
31123
31319
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31124
31320
|
reactNative.Pressable,
|
|
31125
31321
|
{
|
|
31126
31322
|
accessibilityRole: "button",
|
|
31127
31323
|
accessibilityLabel: notificationsAccessibilityLabel,
|
|
31128
31324
|
onPress: onNotificationsPress,
|
|
31129
|
-
style:
|
|
31325
|
+
style: styles8.iconButton,
|
|
31130
31326
|
children: /* @__PURE__ */ jsxRuntime.jsx(BellIcon, { color: colors.white, size: ICON_BUTTON_ICON_SIZE, strokeWidth: 1.5 })
|
|
31131
31327
|
}
|
|
31132
31328
|
)
|
|
@@ -31136,7 +31332,7 @@ var AccountHeader = react.forwardRef(
|
|
|
31136
31332
|
);
|
|
31137
31333
|
}
|
|
31138
31334
|
);
|
|
31139
|
-
var
|
|
31335
|
+
var styles8 = reactNative.StyleSheet.create({
|
|
31140
31336
|
base: {
|
|
31141
31337
|
height: HEADER_HEIGHT,
|
|
31142
31338
|
width: "100%",
|
|
@@ -31219,8 +31415,8 @@ var styles6 = reactNative.StyleSheet.create({
|
|
|
31219
31415
|
flexShrink: 0
|
|
31220
31416
|
}
|
|
31221
31417
|
});
|
|
31222
|
-
var
|
|
31223
|
-
var
|
|
31418
|
+
var ICON_SIZE4 = 20;
|
|
31419
|
+
var webBlurStyle3 = reactNative.Platform.OS === "web" ? {
|
|
31224
31420
|
backdropFilter: "blur(10.3px)",
|
|
31225
31421
|
WebkitBackdropFilter: "blur(10.3px)"
|
|
31226
31422
|
} : {};
|
|
@@ -31250,22 +31446,22 @@ var Badge = react.forwardRef(function Badge2({ label, variant = "default", icon:
|
|
|
31250
31446
|
...rest,
|
|
31251
31447
|
ref: setContainerRef,
|
|
31252
31448
|
style: [
|
|
31253
|
-
|
|
31449
|
+
styles9.base,
|
|
31254
31450
|
{ backgroundColor: preset.backgroundColor },
|
|
31255
|
-
preset.border ?
|
|
31256
|
-
preset.blur ?
|
|
31451
|
+
preset.border ? styles9.transparentBorder : null,
|
|
31452
|
+
preset.blur ? webBlurStyle3 : null,
|
|
31257
31453
|
style
|
|
31258
31454
|
],
|
|
31259
31455
|
accessibilityRole: "text",
|
|
31260
31456
|
accessibilityLabel: accessibilityLabel ?? label,
|
|
31261
31457
|
children: [
|
|
31262
|
-
Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
31263
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
31458
|
+
Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles9.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE4, color: preset.iconColor }) }) : null,
|
|
31459
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles9.label, reactNative.Platform.OS === "android" ? styles9.labelAndroid : null], children: label })
|
|
31264
31460
|
]
|
|
31265
31461
|
}
|
|
31266
31462
|
);
|
|
31267
31463
|
});
|
|
31268
|
-
var
|
|
31464
|
+
var styles9 = reactNative.StyleSheet.create({
|
|
31269
31465
|
base: {
|
|
31270
31466
|
flexDirection: "row",
|
|
31271
31467
|
alignItems: "center",
|
|
@@ -31286,8 +31482,8 @@ var styles7 = reactNative.StyleSheet.create({
|
|
|
31286
31482
|
borderStyle: "solid"
|
|
31287
31483
|
},
|
|
31288
31484
|
iconSlot: {
|
|
31289
|
-
width:
|
|
31290
|
-
height:
|
|
31485
|
+
width: ICON_SIZE4,
|
|
31486
|
+
height: ICON_SIZE4,
|
|
31291
31487
|
alignItems: "center",
|
|
31292
31488
|
justifyContent: "center",
|
|
31293
31489
|
flexShrink: 0
|
|
@@ -31314,7 +31510,7 @@ var toneConfig = {
|
|
|
31314
31510
|
color: colors.red
|
|
31315
31511
|
}
|
|
31316
31512
|
};
|
|
31317
|
-
var
|
|
31513
|
+
var webBlurStyle4 = reactNative.Platform.OS === "web" ? {
|
|
31318
31514
|
backdropFilter: "blur(39.5px)",
|
|
31319
31515
|
WebkitBackdropFilter: "blur(39.5px)"
|
|
31320
31516
|
} : {};
|
|
@@ -31331,14 +31527,14 @@ var StatusBadge = react.forwardRef(
|
|
|
31331
31527
|
ref: setContainerRef,
|
|
31332
31528
|
accessibilityRole: "text",
|
|
31333
31529
|
accessibilityLabel: accessibilityLabel ?? label,
|
|
31334
|
-
style: [
|
|
31530
|
+
style: [styles10.base, { backgroundColor: preset.backgroundColor }, webBlurStyle4, style],
|
|
31335
31531
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31336
31532
|
reactNative.Text,
|
|
31337
31533
|
{
|
|
31338
31534
|
style: [
|
|
31339
|
-
|
|
31535
|
+
styles10.label,
|
|
31340
31536
|
{ color: preset.color },
|
|
31341
|
-
reactNative.Platform.OS === "android" ?
|
|
31537
|
+
reactNative.Platform.OS === "android" ? styles10.labelAndroid : null
|
|
31342
31538
|
],
|
|
31343
31539
|
children: label
|
|
31344
31540
|
}
|
|
@@ -31347,7 +31543,7 @@ var StatusBadge = react.forwardRef(
|
|
|
31347
31543
|
);
|
|
31348
31544
|
}
|
|
31349
31545
|
);
|
|
31350
|
-
var
|
|
31546
|
+
var styles10 = reactNative.StyleSheet.create({
|
|
31351
31547
|
base: {
|
|
31352
31548
|
height: 28,
|
|
31353
31549
|
minHeight: 28,
|
|
@@ -31399,7 +31595,7 @@ var PaginationDots = react.forwardRef(
|
|
|
31399
31595
|
ref: setContainerRef,
|
|
31400
31596
|
accessibilityRole: "adjustable",
|
|
31401
31597
|
accessibilityLabel: accessibilityLabel ?? `Slide ${safeActive + 1} of ${safeCount}`,
|
|
31402
|
-
style: [
|
|
31598
|
+
style: [styles11.root, style],
|
|
31403
31599
|
children: Array.from({ length: safeCount }, (_, index) => {
|
|
31404
31600
|
const active = index === safeActive;
|
|
31405
31601
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -31412,8 +31608,8 @@ var PaginationDots = react.forwardRef(
|
|
|
31412
31608
|
hitSlop: 8,
|
|
31413
31609
|
onPress: () => onDotPress?.(index),
|
|
31414
31610
|
style: [
|
|
31415
|
-
|
|
31416
|
-
active ? [
|
|
31611
|
+
styles11.dot,
|
|
31612
|
+
active ? [styles11.dotActive, { width: pillWidth }] : styles11.dotInactive
|
|
31417
31613
|
]
|
|
31418
31614
|
},
|
|
31419
31615
|
index
|
|
@@ -31423,7 +31619,7 @@ var PaginationDots = react.forwardRef(
|
|
|
31423
31619
|
);
|
|
31424
31620
|
}
|
|
31425
31621
|
);
|
|
31426
|
-
var
|
|
31622
|
+
var styles11 = reactNative.StyleSheet.create({
|
|
31427
31623
|
root: {
|
|
31428
31624
|
width: TRACK_WIDTH,
|
|
31429
31625
|
flexDirection: "row",
|
|
@@ -31445,7 +31641,7 @@ var styles9 = reactNative.StyleSheet.create({
|
|
|
31445
31641
|
});
|
|
31446
31642
|
var WIDTH = 121;
|
|
31447
31643
|
var HEIGHT = 48;
|
|
31448
|
-
var
|
|
31644
|
+
var ICON_SIZE5 = 24;
|
|
31449
31645
|
var StepPager = react.forwardRef(function StepPager2({
|
|
31450
31646
|
index,
|
|
31451
31647
|
count,
|
|
@@ -31479,7 +31675,7 @@ var StepPager = react.forwardRef(function StepPager2({
|
|
|
31479
31675
|
now: safeCount === 0 ? 0 : safeIndex + 1,
|
|
31480
31676
|
text: label
|
|
31481
31677
|
},
|
|
31482
|
-
style: [
|
|
31678
|
+
style: [styles12.root, webBlurStyle5, style],
|
|
31483
31679
|
children: [
|
|
31484
31680
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31485
31681
|
reactNative.Pressable,
|
|
@@ -31490,11 +31686,11 @@ var StepPager = react.forwardRef(function StepPager2({
|
|
|
31490
31686
|
accessibilityRole: "button",
|
|
31491
31687
|
accessibilityLabel: previousAccessibilityLabel,
|
|
31492
31688
|
accessibilityState: { disabled: atStart || !onPrevious },
|
|
31493
|
-
style: [
|
|
31494
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size:
|
|
31689
|
+
style: [styles12.navButton, (atStart || !onPrevious) && styles12.navDisabled],
|
|
31690
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: ICON_SIZE5, color: colors.white, strokeWidth: 2 })
|
|
31495
31691
|
}
|
|
31496
31692
|
),
|
|
31497
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
31693
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles12.label, children: label }),
|
|
31498
31694
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31499
31695
|
reactNative.Pressable,
|
|
31500
31696
|
{
|
|
@@ -31504,19 +31700,19 @@ var StepPager = react.forwardRef(function StepPager2({
|
|
|
31504
31700
|
accessibilityRole: "button",
|
|
31505
31701
|
accessibilityLabel: nextAccessibilityLabel,
|
|
31506
31702
|
accessibilityState: { disabled: atEnd || !onNext },
|
|
31507
|
-
style: [
|
|
31508
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
31703
|
+
style: [styles12.navButton, (atEnd || !onNext) && styles12.navDisabled],
|
|
31704
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles12.chevronRight, children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: ICON_SIZE5, color: colors.white, strokeWidth: 2 }) })
|
|
31509
31705
|
}
|
|
31510
31706
|
)
|
|
31511
31707
|
]
|
|
31512
31708
|
}
|
|
31513
31709
|
);
|
|
31514
31710
|
});
|
|
31515
|
-
var
|
|
31711
|
+
var webBlurStyle5 = reactNative.Platform.OS === "web" ? {
|
|
31516
31712
|
backdropFilter: "blur(50px)",
|
|
31517
31713
|
WebkitBackdropFilter: "blur(50px)"
|
|
31518
31714
|
} : {};
|
|
31519
|
-
var
|
|
31715
|
+
var styles12 = reactNative.StyleSheet.create({
|
|
31520
31716
|
root: {
|
|
31521
31717
|
width: WIDTH,
|
|
31522
31718
|
height: HEIGHT,
|
|
@@ -31530,8 +31726,8 @@ var styles10 = reactNative.StyleSheet.create({
|
|
|
31530
31726
|
overflow: "hidden"
|
|
31531
31727
|
},
|
|
31532
31728
|
navButton: {
|
|
31533
|
-
width:
|
|
31534
|
-
height:
|
|
31729
|
+
width: ICON_SIZE5,
|
|
31730
|
+
height: ICON_SIZE5,
|
|
31535
31731
|
alignItems: "center",
|
|
31536
31732
|
justifyContent: "center"
|
|
31537
31733
|
},
|
|
@@ -31552,13 +31748,13 @@ var styles10 = reactNative.StyleSheet.create({
|
|
|
31552
31748
|
}
|
|
31553
31749
|
});
|
|
31554
31750
|
var ICON_SLOT = 36;
|
|
31555
|
-
var
|
|
31751
|
+
var ICON_SIZE6 = 20;
|
|
31556
31752
|
var InfoTile = react.forwardRef(function InfoTile2({
|
|
31557
31753
|
title,
|
|
31558
31754
|
description,
|
|
31559
31755
|
icon: Icon2,
|
|
31560
31756
|
iconProps,
|
|
31561
|
-
iconSize =
|
|
31757
|
+
iconSize = ICON_SIZE6,
|
|
31562
31758
|
iconSlotBackgroundColor = colors.grey600,
|
|
31563
31759
|
style,
|
|
31564
31760
|
className,
|
|
@@ -31576,18 +31772,18 @@ var InfoTile = react.forwardRef(function InfoTile2({
|
|
|
31576
31772
|
ref: setContainerRef,
|
|
31577
31773
|
accessibilityRole: "text",
|
|
31578
31774
|
accessibilityLabel: accessibilityLabel ?? (hasDescription ? `${title}. ${description}` : title),
|
|
31579
|
-
style: [
|
|
31775
|
+
style: [styles13.root, style],
|
|
31580
31776
|
children: [
|
|
31581
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
31582
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
31583
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
31584
|
-
hasDescription ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
31777
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles13.iconSlot, { backgroundColor: iconSlotBackgroundColor }], children: /* @__PURE__ */ jsxRuntime.jsx(Icon2, { ...iconProps, size: iconSize, color: iconProps?.color ?? colors.white }) }),
|
|
31778
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles13.textBlock, children: [
|
|
31779
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles13.title, children: title }),
|
|
31780
|
+
hasDescription ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles13.description, children: description }) : null
|
|
31585
31781
|
] })
|
|
31586
31782
|
]
|
|
31587
31783
|
}
|
|
31588
31784
|
);
|
|
31589
31785
|
});
|
|
31590
|
-
var
|
|
31786
|
+
var styles13 = reactNative.StyleSheet.create({
|
|
31591
31787
|
root: {
|
|
31592
31788
|
flexDirection: "row",
|
|
31593
31789
|
alignItems: "center",
|
|
@@ -31637,7 +31833,7 @@ var CARD_PADDING_DESKTOP = 24;
|
|
|
31637
31833
|
var CARD_GAP_MOBILE = 16;
|
|
31638
31834
|
var CARD_GAP_DESKTOP = 24;
|
|
31639
31835
|
var ICON_SLOT2 = 48;
|
|
31640
|
-
var
|
|
31836
|
+
var ICON_SIZE7 = 24;
|
|
31641
31837
|
var ICON_SLOT_BG = "#E38E5E0F";
|
|
31642
31838
|
var ICON_COLOR = "#B76533";
|
|
31643
31839
|
var ContactInfoCard = react.forwardRef(
|
|
@@ -31646,7 +31842,7 @@ var ContactInfoCard = react.forwardRef(
|
|
|
31646
31842
|
value,
|
|
31647
31843
|
icon: Icon2,
|
|
31648
31844
|
iconProps,
|
|
31649
|
-
iconSize =
|
|
31845
|
+
iconSize = ICON_SIZE7,
|
|
31650
31846
|
iconSlotBackgroundColor = ICON_SLOT_BG,
|
|
31651
31847
|
style,
|
|
31652
31848
|
className,
|
|
@@ -31666,7 +31862,7 @@ var ContactInfoCard = react.forwardRef(
|
|
|
31666
31862
|
accessibilityRole: "text",
|
|
31667
31863
|
accessibilityLabel: accessibilityLabel ?? `${title}. ${value}`,
|
|
31668
31864
|
style: [
|
|
31669
|
-
|
|
31865
|
+
styles14.root,
|
|
31670
31866
|
{
|
|
31671
31867
|
height: isDesktop ? CARD_HEIGHT_DESKTOP : CARD_HEIGHT_MOBILE,
|
|
31672
31868
|
gap: isDesktop ? CARD_GAP_DESKTOP : CARD_GAP_MOBILE,
|
|
@@ -31675,7 +31871,7 @@ var ContactInfoCard = react.forwardRef(
|
|
|
31675
31871
|
style
|
|
31676
31872
|
],
|
|
31677
31873
|
children: [
|
|
31678
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
31874
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles14.iconSlot, { backgroundColor: iconSlotBackgroundColor }], children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31679
31875
|
Icon2,
|
|
31680
31876
|
{
|
|
31681
31877
|
...iconProps,
|
|
@@ -31684,16 +31880,16 @@ var ContactInfoCard = react.forwardRef(
|
|
|
31684
31880
|
strokeWidth: iconProps?.strokeWidth ?? 2
|
|
31685
31881
|
}
|
|
31686
31882
|
) }),
|
|
31687
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
31688
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
31689
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
31883
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles14.textBlock, children: [
|
|
31884
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles14.title, children: title }),
|
|
31885
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles14.value, children: value })
|
|
31690
31886
|
] })
|
|
31691
31887
|
]
|
|
31692
31888
|
}
|
|
31693
31889
|
);
|
|
31694
31890
|
}
|
|
31695
31891
|
);
|
|
31696
|
-
var
|
|
31892
|
+
var styles14 = reactNative.StyleSheet.create({
|
|
31697
31893
|
root: {
|
|
31698
31894
|
width: "100%",
|
|
31699
31895
|
flexDirection: "row",
|
|
@@ -31798,7 +31994,7 @@ var AccordionItem = react.forwardRef(
|
|
|
31798
31994
|
inputRange: [0, 1],
|
|
31799
31995
|
outputRange: ["0deg", "180deg"]
|
|
31800
31996
|
});
|
|
31801
|
-
const bodyTextStyle = [
|
|
31997
|
+
const bodyTextStyle = [styles15.body, { fontSize: bodyFontSize, lineHeight: bodyLineHeight }];
|
|
31802
31998
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
31803
31999
|
reactNative.Pressable,
|
|
31804
32000
|
{
|
|
@@ -31809,19 +32005,19 @@ var AccordionItem = react.forwardRef(
|
|
|
31809
32005
|
accessibilityLabel: accessibilityLabel ?? title,
|
|
31810
32006
|
onPress: toggle,
|
|
31811
32007
|
style: [
|
|
31812
|
-
|
|
32008
|
+
styles15.root,
|
|
31813
32009
|
{
|
|
31814
32010
|
borderRadius: isDesktop ? RADIUS_DESKTOP : RADIUS_MOBILE,
|
|
31815
32011
|
paddingRight: paddingX,
|
|
31816
32012
|
paddingLeft: paddingX
|
|
31817
32013
|
},
|
|
31818
|
-
reactNative.Platform.OS === "web" ?
|
|
32014
|
+
reactNative.Platform.OS === "web" ? styles15.rootWeb : null,
|
|
31819
32015
|
style
|
|
31820
32016
|
],
|
|
31821
32017
|
children: [
|
|
31822
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
31823
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
31824
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Animated.View, { style: [
|
|
32018
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles15.header, children: [
|
|
32019
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles15.title, children: title }),
|
|
32020
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Animated.View, { style: [styles15.chevron, { transform: [{ rotate: chevronRotate }] }], children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31825
32021
|
ChevronDownIcon,
|
|
31826
32022
|
{
|
|
31827
32023
|
size: CHEVRON_SIZE2,
|
|
@@ -31833,19 +32029,19 @@ var AccordionItem = react.forwardRef(
|
|
|
31833
32029
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31834
32030
|
reactNative.View,
|
|
31835
32031
|
{
|
|
31836
|
-
style: [
|
|
32032
|
+
style: [styles15.measureHidden, { left: paddingX, right: paddingX }],
|
|
31837
32033
|
pointerEvents: "none",
|
|
31838
32034
|
onLayout: onBodyLayout,
|
|
31839
32035
|
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: bodyTextStyle, children })
|
|
31840
32036
|
}
|
|
31841
32037
|
),
|
|
31842
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Animated.View, { style: [
|
|
32038
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Animated.View, { style: [styles15.bodyClip, { height: bodyHeight }], pointerEvents: "none", children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles15.bodyInner, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: bodyTextStyle, children }) }) })
|
|
31843
32039
|
]
|
|
31844
32040
|
}
|
|
31845
32041
|
);
|
|
31846
32042
|
}
|
|
31847
32043
|
);
|
|
31848
|
-
var
|
|
32044
|
+
var styles15 = reactNative.StyleSheet.create({
|
|
31849
32045
|
root: {
|
|
31850
32046
|
width: "100%",
|
|
31851
32047
|
paddingTop: 16,
|
|
@@ -31899,12 +32095,129 @@ var styles13 = reactNative.StyleSheet.create({
|
|
|
31899
32095
|
color: colors.lightGrey
|
|
31900
32096
|
}
|
|
31901
32097
|
});
|
|
32098
|
+
var DESKTOP_MIN_WIDTH3 = 1024;
|
|
32099
|
+
var CHEVRON_SIZE3 = 24;
|
|
32100
|
+
var Accordion = react.forwardRef(function Accordion2({
|
|
32101
|
+
title,
|
|
32102
|
+
children,
|
|
32103
|
+
open: openProp,
|
|
32104
|
+
defaultOpen = false,
|
|
32105
|
+
onOpenChange,
|
|
32106
|
+
disabled = false,
|
|
32107
|
+
error = false,
|
|
32108
|
+
style,
|
|
32109
|
+
contentStyle,
|
|
32110
|
+
className,
|
|
32111
|
+
accessibilityLabel,
|
|
32112
|
+
...rest
|
|
32113
|
+
}, forwardedRef) {
|
|
32114
|
+
const rootRef = react.useRef(null);
|
|
32115
|
+
const setRootRef = react.useMemo(() => mergeRefs(rootRef, forwardedRef), [forwardedRef]);
|
|
32116
|
+
const controlled = openProp !== void 0;
|
|
32117
|
+
const [uncontrolledOpen, setUncontrolledOpen] = react.useState(defaultOpen);
|
|
32118
|
+
const open = controlled ? Boolean(openProp) : uncontrolledOpen;
|
|
32119
|
+
const { width } = reactNative.useWindowDimensions();
|
|
32120
|
+
const desktop = width >= DESKTOP_MIN_WIDTH3;
|
|
32121
|
+
const horizontalPadding = desktop ? 24 : 16;
|
|
32122
|
+
useApplyWebClassName(rootRef, className?.trim() || void 0);
|
|
32123
|
+
const toggle = react.useCallback(() => {
|
|
32124
|
+
if (disabled) return;
|
|
32125
|
+
const next = !open;
|
|
32126
|
+
if (!controlled) setUncontrolledOpen(next);
|
|
32127
|
+
onOpenChange?.(next);
|
|
32128
|
+
}, [controlled, disabled, onOpenChange, open]);
|
|
32129
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
32130
|
+
reactNative.View,
|
|
32131
|
+
{
|
|
32132
|
+
...rest,
|
|
32133
|
+
ref: setRootRef,
|
|
32134
|
+
style: [
|
|
32135
|
+
styles16.root,
|
|
32136
|
+
{ borderRadius: desktop ? 24 : 20 },
|
|
32137
|
+
error && styles16.error,
|
|
32138
|
+
disabled && styles16.disabled,
|
|
32139
|
+
style
|
|
32140
|
+
],
|
|
32141
|
+
children: [
|
|
32142
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
32143
|
+
reactNative.Pressable,
|
|
32144
|
+
{
|
|
32145
|
+
accessibilityLabel: accessibilityLabel ?? title,
|
|
32146
|
+
accessibilityRole: "button",
|
|
32147
|
+
accessibilityState: { disabled, expanded: open },
|
|
32148
|
+
disabled,
|
|
32149
|
+
onPress: toggle,
|
|
32150
|
+
style: [styles16.header, { paddingHorizontal: horizontalPadding }],
|
|
32151
|
+
children: [
|
|
32152
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles16.title, desktop ? styles16.titleDesktop : styles16.titleMobile], children: title }),
|
|
32153
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles16.chevron, open && styles16.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { color: open ? colors.primary : colors.grey400, size: CHEVRON_SIZE3 }) })
|
|
32154
|
+
]
|
|
32155
|
+
}
|
|
32156
|
+
),
|
|
32157
|
+
open ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles16.content, { paddingHorizontal: horizontalPadding }, contentStyle], children }) : null
|
|
32158
|
+
]
|
|
32159
|
+
}
|
|
32160
|
+
);
|
|
32161
|
+
});
|
|
32162
|
+
var styles16 = reactNative.StyleSheet.create({
|
|
32163
|
+
root: {
|
|
32164
|
+
alignSelf: "stretch",
|
|
32165
|
+
backgroundColor: colors.whiteAlpha1,
|
|
32166
|
+
borderColor: "transparent",
|
|
32167
|
+
borderWidth: 1,
|
|
32168
|
+
overflow: "hidden",
|
|
32169
|
+
width: "100%"
|
|
32170
|
+
},
|
|
32171
|
+
header: {
|
|
32172
|
+
alignItems: "center",
|
|
32173
|
+
flexDirection: "row",
|
|
32174
|
+
gap: 16,
|
|
32175
|
+
minHeight: 64,
|
|
32176
|
+
paddingVertical: 16,
|
|
32177
|
+
width: "100%"
|
|
32178
|
+
},
|
|
32179
|
+
title: {
|
|
32180
|
+
color: colors.white,
|
|
32181
|
+
flex: 1,
|
|
32182
|
+
fontFamily: fonts.sans,
|
|
32183
|
+
fontSize: 14,
|
|
32184
|
+
letterSpacing: 0,
|
|
32185
|
+
lineHeight: 18,
|
|
32186
|
+
minWidth: 0
|
|
32187
|
+
},
|
|
32188
|
+
titleMobile: {
|
|
32189
|
+
fontWeight: "500"
|
|
32190
|
+
},
|
|
32191
|
+
titleDesktop: {
|
|
32192
|
+
fontWeight: "600"
|
|
32193
|
+
},
|
|
32194
|
+
chevron: {
|
|
32195
|
+
alignItems: "center",
|
|
32196
|
+
flexShrink: 0,
|
|
32197
|
+
height: CHEVRON_SIZE3,
|
|
32198
|
+
justifyContent: "center",
|
|
32199
|
+
transform: [{ rotate: "0deg" }],
|
|
32200
|
+
width: CHEVRON_SIZE3
|
|
32201
|
+
},
|
|
32202
|
+
chevronOpen: {
|
|
32203
|
+
transform: [{ rotate: "180deg" }]
|
|
32204
|
+
},
|
|
32205
|
+
content: {
|
|
32206
|
+
paddingBottom: 16
|
|
32207
|
+
},
|
|
32208
|
+
error: {
|
|
32209
|
+
borderColor: colors.redMuted
|
|
32210
|
+
},
|
|
32211
|
+
disabled: {
|
|
32212
|
+
opacity: 0.6
|
|
32213
|
+
}
|
|
32214
|
+
});
|
|
31902
32215
|
var BADGE_SIZE = 42;
|
|
31903
32216
|
var ROW_GAP = 12;
|
|
31904
32217
|
var CONNECTOR_WIDTH = 2;
|
|
31905
32218
|
var CONNECTOR_HEIGHT = 19;
|
|
31906
32219
|
var CONNECTOR_GAP = 8;
|
|
31907
|
-
var
|
|
32220
|
+
var webBlurStyle6 = reactNative.Platform.OS === "web" ? {
|
|
31908
32221
|
backdropFilter: "blur(20px)",
|
|
31909
32222
|
WebkitBackdropFilter: "blur(20px)"
|
|
31910
32223
|
} : {};
|
|
@@ -31922,18 +32235,18 @@ var StepList = react.forwardRef(function StepList2({ steps, style, className, ac
|
|
|
31922
32235
|
ref: setContainerRef,
|
|
31923
32236
|
accessibilityRole: "summary",
|
|
31924
32237
|
accessibilityLabel,
|
|
31925
|
-
style: [
|
|
32238
|
+
style: [styles17.root, style],
|
|
31926
32239
|
children: steps.map((description, index) => {
|
|
31927
32240
|
const isLast = index === steps.length - 1;
|
|
31928
32241
|
const number = index + 1;
|
|
31929
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
31930
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
31931
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
32242
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles17.stepBlock, children: [
|
|
32243
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles17.row, children: [
|
|
32244
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles17.badge, webBlurStyle6], children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31932
32245
|
reactNative.Text,
|
|
31933
32246
|
{
|
|
31934
32247
|
style: [
|
|
31935
|
-
|
|
31936
|
-
reactNative.Platform.OS === "android" ?
|
|
32248
|
+
styles17.badgeLabel,
|
|
32249
|
+
reactNative.Platform.OS === "android" ? styles17.labelAndroid : null
|
|
31937
32250
|
],
|
|
31938
32251
|
children: String(number)
|
|
31939
32252
|
}
|
|
@@ -31941,18 +32254,18 @@ var StepList = react.forwardRef(function StepList2({ steps, style, className, ac
|
|
|
31941
32254
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31942
32255
|
reactNative.Text,
|
|
31943
32256
|
{
|
|
31944
|
-
style: [
|
|
32257
|
+
style: [styles17.description, reactNative.Platform.OS === "android" ? styles17.labelAndroid : null],
|
|
31945
32258
|
children: description
|
|
31946
32259
|
}
|
|
31947
32260
|
)
|
|
31948
32261
|
] }),
|
|
31949
|
-
!isLast ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
32262
|
+
!isLast ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.connectorSlot, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles17.connector }) }) : null
|
|
31950
32263
|
] }, `${number}-${description}`);
|
|
31951
32264
|
})
|
|
31952
32265
|
}
|
|
31953
32266
|
);
|
|
31954
32267
|
});
|
|
31955
|
-
var
|
|
32268
|
+
var styles17 = reactNative.StyleSheet.create({
|
|
31956
32269
|
root: {
|
|
31957
32270
|
width: "100%"
|
|
31958
32271
|
},
|
|
@@ -32010,7 +32323,7 @@ var styles14 = reactNative.StyleSheet.create({
|
|
|
32010
32323
|
}
|
|
32011
32324
|
});
|
|
32012
32325
|
var BUTTON_SIZE = 32;
|
|
32013
|
-
var
|
|
32326
|
+
var webBlurStyle7 = reactNative.Platform.OS === "web" ? {
|
|
32014
32327
|
backdropFilter: "blur(20px)",
|
|
32015
32328
|
WebkitBackdropFilter: "blur(20px)"
|
|
32016
32329
|
} : {};
|
|
@@ -32025,6 +32338,7 @@ var Counter = react.forwardRef(function Counter2({
|
|
|
32025
32338
|
max,
|
|
32026
32339
|
step = 1,
|
|
32027
32340
|
disabled = false,
|
|
32341
|
+
layout = "controls-around",
|
|
32028
32342
|
style,
|
|
32029
32343
|
className,
|
|
32030
32344
|
hitSlop,
|
|
@@ -32047,43 +32361,63 @@ var Counter = react.forwardRef(function Counter2({
|
|
|
32047
32361
|
if (!isControlled) setUncontrolledValue(next);
|
|
32048
32362
|
onValueChange?.(next);
|
|
32049
32363
|
};
|
|
32050
|
-
|
|
32051
|
-
|
|
32052
|
-
|
|
32053
|
-
|
|
32054
|
-
|
|
32055
|
-
|
|
32056
|
-
|
|
32057
|
-
|
|
32058
|
-
|
|
32059
|
-
|
|
32060
|
-
|
|
32061
|
-
|
|
32062
|
-
|
|
32063
|
-
|
|
32064
|
-
|
|
32065
|
-
|
|
32066
|
-
|
|
32067
|
-
|
|
32068
|
-
|
|
32069
|
-
|
|
32070
|
-
|
|
32071
|
-
|
|
32072
|
-
|
|
32073
|
-
|
|
32074
|
-
|
|
32075
|
-
|
|
32076
|
-
|
|
32077
|
-
|
|
32078
|
-
|
|
32364
|
+
const decrement = /* @__PURE__ */ jsxRuntime.jsx(
|
|
32365
|
+
reactNative.Pressable,
|
|
32366
|
+
{
|
|
32367
|
+
disabled: decrementDisabled,
|
|
32368
|
+
hitSlop,
|
|
32369
|
+
onPress: () => updateValue(resolvedValue - step),
|
|
32370
|
+
accessibilityRole: "button",
|
|
32371
|
+
accessibilityLabel: "Decrease value",
|
|
32372
|
+
accessibilityState: { disabled: decrementDisabled },
|
|
32373
|
+
style: [styles18.button, webBlurStyle7, decrementDisabled && styles18.buttonDisabled],
|
|
32374
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(MinusIcon, {})
|
|
32375
|
+
}
|
|
32376
|
+
);
|
|
32377
|
+
const increment = /* @__PURE__ */ jsxRuntime.jsx(
|
|
32378
|
+
reactNative.Pressable,
|
|
32379
|
+
{
|
|
32380
|
+
disabled: incrementDisabled,
|
|
32381
|
+
hitSlop,
|
|
32382
|
+
onPress: () => updateValue(resolvedValue + step),
|
|
32383
|
+
accessibilityRole: "button",
|
|
32384
|
+
accessibilityLabel: "Increase value",
|
|
32385
|
+
accessibilityState: { disabled: incrementDisabled },
|
|
32386
|
+
style: [styles18.button, webBlurStyle7, incrementDisabled && styles18.buttonDisabled],
|
|
32387
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(PlusIcon, {})
|
|
32388
|
+
}
|
|
32389
|
+
);
|
|
32390
|
+
const valueNode = /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles18.value, layout === "value-first" && styles18.leadingValue], children: resolvedValue });
|
|
32391
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
32392
|
+
reactNative.View,
|
|
32393
|
+
{
|
|
32394
|
+
...rest,
|
|
32395
|
+
ref: setContainerRef,
|
|
32396
|
+
style: [styles18.base, layout === "value-first" && styles18.valueFirst, style],
|
|
32397
|
+
children: layout === "value-first" ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
32398
|
+
valueNode,
|
|
32399
|
+
decrement,
|
|
32400
|
+
increment
|
|
32401
|
+
] }) : /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
32402
|
+
decrement,
|
|
32403
|
+
valueNode,
|
|
32404
|
+
increment
|
|
32405
|
+
] })
|
|
32406
|
+
}
|
|
32407
|
+
);
|
|
32079
32408
|
});
|
|
32080
|
-
var
|
|
32409
|
+
var styles18 = reactNative.StyleSheet.create({
|
|
32081
32410
|
base: {
|
|
32082
32411
|
flexDirection: "row",
|
|
32083
32412
|
alignItems: "center",
|
|
32084
32413
|
alignSelf: "flex-start",
|
|
32085
32414
|
gap: 17
|
|
32086
32415
|
},
|
|
32416
|
+
valueFirst: {
|
|
32417
|
+
alignSelf: "stretch",
|
|
32418
|
+
flex: 1,
|
|
32419
|
+
gap: 6
|
|
32420
|
+
},
|
|
32087
32421
|
button: {
|
|
32088
32422
|
width: BUTTON_SIZE,
|
|
32089
32423
|
height: BUTTON_SIZE,
|
|
@@ -32099,9 +32433,128 @@ var styles15 = reactNative.StyleSheet.create({
|
|
|
32099
32433
|
value: {
|
|
32100
32434
|
...counterTypography,
|
|
32101
32435
|
color: colors.white
|
|
32436
|
+
},
|
|
32437
|
+
leadingValue: {
|
|
32438
|
+
flex: 1
|
|
32102
32439
|
}
|
|
32103
32440
|
});
|
|
32104
|
-
var
|
|
32441
|
+
var QuantityInput = react.forwardRef(
|
|
32442
|
+
function QuantityInput2({
|
|
32443
|
+
label,
|
|
32444
|
+
icon: Icon2,
|
|
32445
|
+
iconProps,
|
|
32446
|
+
iconSize = 20,
|
|
32447
|
+
value,
|
|
32448
|
+
defaultValue,
|
|
32449
|
+
onValueChange,
|
|
32450
|
+
min = 1,
|
|
32451
|
+
max,
|
|
32452
|
+
step = 1,
|
|
32453
|
+
disabled = false,
|
|
32454
|
+
error = false,
|
|
32455
|
+
hint,
|
|
32456
|
+
showHint = true,
|
|
32457
|
+
style,
|
|
32458
|
+
className,
|
|
32459
|
+
accessibilityLabel,
|
|
32460
|
+
...rest
|
|
32461
|
+
}, forwardedRef) {
|
|
32462
|
+
const rootRef = react.useRef(null);
|
|
32463
|
+
const setRootRef = react.useMemo(() => mergeRefs(rootRef, forwardedRef), [forwardedRef]);
|
|
32464
|
+
useApplyWebClassName(rootRef, className?.trim() || void 0);
|
|
32465
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
32466
|
+
reactNative.View,
|
|
32467
|
+
{
|
|
32468
|
+
...rest,
|
|
32469
|
+
ref: setRootRef,
|
|
32470
|
+
accessibilityLabel: accessibilityLabel ?? label,
|
|
32471
|
+
accessibilityState: { disabled },
|
|
32472
|
+
style: [styles19.root, disabled && styles19.disabled, style],
|
|
32473
|
+
children: [
|
|
32474
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles19.label, error && styles19.errorText], children: label }),
|
|
32475
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles19.field, error && styles19.errorField], children: [
|
|
32476
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles19.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
32477
|
+
Icon2,
|
|
32478
|
+
{
|
|
32479
|
+
...iconProps,
|
|
32480
|
+
color: iconProps?.color ?? (error ? colors.red : colors.grey150),
|
|
32481
|
+
size: iconSize
|
|
32482
|
+
}
|
|
32483
|
+
) }),
|
|
32484
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
32485
|
+
Counter,
|
|
32486
|
+
{
|
|
32487
|
+
defaultValue,
|
|
32488
|
+
disabled,
|
|
32489
|
+
layout: "value-first",
|
|
32490
|
+
max,
|
|
32491
|
+
min,
|
|
32492
|
+
onValueChange,
|
|
32493
|
+
step,
|
|
32494
|
+
value
|
|
32495
|
+
}
|
|
32496
|
+
)
|
|
32497
|
+
] }),
|
|
32498
|
+
showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles19.hint, error && styles19.errorText], children: hint }) : null
|
|
32499
|
+
]
|
|
32500
|
+
}
|
|
32501
|
+
);
|
|
32502
|
+
}
|
|
32503
|
+
);
|
|
32504
|
+
var styles19 = reactNative.StyleSheet.create({
|
|
32505
|
+
root: {
|
|
32506
|
+
alignSelf: "stretch",
|
|
32507
|
+
flexDirection: "column",
|
|
32508
|
+
gap: 8,
|
|
32509
|
+
minWidth: 0
|
|
32510
|
+
},
|
|
32511
|
+
label: {
|
|
32512
|
+
color: colors.white,
|
|
32513
|
+
fontFamily: fonts.sans,
|
|
32514
|
+
fontSize: 12,
|
|
32515
|
+
fontWeight: "500",
|
|
32516
|
+
letterSpacing: -0.24,
|
|
32517
|
+
lineHeight: 12
|
|
32518
|
+
},
|
|
32519
|
+
field: {
|
|
32520
|
+
alignItems: "center",
|
|
32521
|
+
alignSelf: "stretch",
|
|
32522
|
+
backgroundColor: colors.grey700,
|
|
32523
|
+
borderColor: colors.grey700,
|
|
32524
|
+
borderRadius: 60,
|
|
32525
|
+
borderWidth: 1,
|
|
32526
|
+
flexDirection: "row",
|
|
32527
|
+
gap: 10,
|
|
32528
|
+
height: 44,
|
|
32529
|
+
paddingLeft: 16,
|
|
32530
|
+
paddingRight: 6,
|
|
32531
|
+
paddingVertical: 5
|
|
32532
|
+
},
|
|
32533
|
+
iconSlot: {
|
|
32534
|
+
alignItems: "center",
|
|
32535
|
+
flexShrink: 0,
|
|
32536
|
+
height: 20,
|
|
32537
|
+
justifyContent: "center",
|
|
32538
|
+
width: 20
|
|
32539
|
+
},
|
|
32540
|
+
hint: {
|
|
32541
|
+
color: colors.grey100,
|
|
32542
|
+
fontFamily: fonts.sans,
|
|
32543
|
+
fontSize: 12,
|
|
32544
|
+
fontWeight: "400",
|
|
32545
|
+
lineHeight: 12
|
|
32546
|
+
},
|
|
32547
|
+
errorField: {
|
|
32548
|
+
borderColor: colors.redMuted
|
|
32549
|
+
},
|
|
32550
|
+
errorText: {
|
|
32551
|
+
color: colors.red
|
|
32552
|
+
},
|
|
32553
|
+
disabled: {
|
|
32554
|
+
opacity: 0.6
|
|
32555
|
+
}
|
|
32556
|
+
});
|
|
32557
|
+
var ICON_SIZE8 = 20;
|
|
32105
32558
|
var ANIMATION_DURATION2 = 200;
|
|
32106
32559
|
var OPTION_HORIZONTAL_PADDING = 16;
|
|
32107
32560
|
var OPTION_CONTENT_GAP = 12;
|
|
@@ -32197,14 +32650,14 @@ var SegmentedToggle = react.forwardRef(
|
|
|
32197
32650
|
onLayout?.(event);
|
|
32198
32651
|
},
|
|
32199
32652
|
style: [
|
|
32200
|
-
|
|
32201
|
-
fullWidth ?
|
|
32202
|
-
disabled &&
|
|
32653
|
+
styles20.base,
|
|
32654
|
+
fullWidth ? styles20.fullWidth : styles20.contentWidth,
|
|
32655
|
+
disabled && styles20.disabled,
|
|
32203
32656
|
style
|
|
32204
32657
|
],
|
|
32205
32658
|
accessibilityRole: "radiogroup",
|
|
32206
32659
|
children: [
|
|
32207
|
-
!fullWidth ? options.map(({ value: optionValue, label, icon: Icon2 }, index) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
32660
|
+
!fullWidth ? options.map(({ value: optionValue, label, icon: Icon2, showLabel = true }, index) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
32208
32661
|
reactNative.View,
|
|
32209
32662
|
{
|
|
32210
32663
|
pointerEvents: "none",
|
|
@@ -32220,10 +32673,10 @@ var SegmentedToggle = react.forwardRef(
|
|
|
32220
32673
|
return nextWidths;
|
|
32221
32674
|
});
|
|
32222
32675
|
},
|
|
32223
|
-
style:
|
|
32676
|
+
style: styles20.optionMeasurement,
|
|
32224
32677
|
children: [
|
|
32225
|
-
Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size:
|
|
32226
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
32678
|
+
Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE8 }) : null,
|
|
32679
|
+
showLabel ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles20.label, styles20.contentWidthLabel], children: label }) : null
|
|
32227
32680
|
]
|
|
32228
32681
|
},
|
|
32229
32682
|
`${optionValue}-measurement`
|
|
@@ -32233,12 +32686,12 @@ var SegmentedToggle = react.forwardRef(
|
|
|
32233
32686
|
{
|
|
32234
32687
|
pointerEvents: "none",
|
|
32235
32688
|
style: [
|
|
32236
|
-
|
|
32689
|
+
styles20.activeIndicator,
|
|
32237
32690
|
{ width: selectedOptionWidth, transform: [{ translateX: indicatorTranslateX }] }
|
|
32238
32691
|
]
|
|
32239
32692
|
}
|
|
32240
32693
|
) : null,
|
|
32241
|
-
options.map(({ value: optionValue, label, icon: Icon2 }, index) => {
|
|
32694
|
+
options.map(({ value: optionValue, label, icon: Icon2, showLabel = true }, index) => {
|
|
32242
32695
|
const selected = optionValue === selectedValue;
|
|
32243
32696
|
const iconColor = selected ? colors.primary : colors.whiteAlpha20;
|
|
32244
32697
|
const labelColor = selected ? colors.whiteAlpha86 : colors.whiteAlpha40;
|
|
@@ -32253,23 +32706,23 @@ var SegmentedToggle = react.forwardRef(
|
|
|
32253
32706
|
accessibilityLabel: label,
|
|
32254
32707
|
accessibilityState: { selected, disabled },
|
|
32255
32708
|
style: [
|
|
32256
|
-
|
|
32257
|
-
fullWidth ?
|
|
32709
|
+
styles20.option,
|
|
32710
|
+
fullWidth ? styles20.optionFullWidth : [styles20.optionContentWidth, optionWidth > 0 && { width: optionWidth }]
|
|
32258
32711
|
],
|
|
32259
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
32260
|
-
Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size:
|
|
32261
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
32712
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles20.optionContent, children: [
|
|
32713
|
+
Icon2 ? /* @__PURE__ */ jsxRuntime.jsx(Icon2, { size: ICON_SIZE8, color: iconColor }) : null,
|
|
32714
|
+
showLabel ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
32262
32715
|
reactNative.Text,
|
|
32263
32716
|
{
|
|
32264
32717
|
numberOfLines: fullWidth ? 1 : void 0,
|
|
32265
32718
|
style: [
|
|
32266
|
-
|
|
32267
|
-
!fullWidth &&
|
|
32719
|
+
styles20.label,
|
|
32720
|
+
!fullWidth && styles20.contentWidthLabel,
|
|
32268
32721
|
{ color: labelColor }
|
|
32269
32722
|
],
|
|
32270
32723
|
children: label
|
|
32271
32724
|
}
|
|
32272
|
-
)
|
|
32725
|
+
) : null
|
|
32273
32726
|
] })
|
|
32274
32727
|
},
|
|
32275
32728
|
optionValue
|
|
@@ -32280,7 +32733,7 @@ var SegmentedToggle = react.forwardRef(
|
|
|
32280
32733
|
);
|
|
32281
32734
|
}
|
|
32282
32735
|
);
|
|
32283
|
-
var
|
|
32736
|
+
var styles20 = reactNative.StyleSheet.create({
|
|
32284
32737
|
base: {
|
|
32285
32738
|
height: 44,
|
|
32286
32739
|
flexDirection: "row",
|
|
@@ -32408,16 +32861,16 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
32408
32861
|
{
|
|
32409
32862
|
...rest,
|
|
32410
32863
|
ref: setContainerRef,
|
|
32411
|
-
style: [
|
|
32864
|
+
style: [styles21.root, { width: widthAnim }, style],
|
|
32412
32865
|
accessibilityRole: "menu",
|
|
32413
32866
|
children: [
|
|
32414
32867
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
32415
32868
|
reactNative.View,
|
|
32416
32869
|
{
|
|
32417
32870
|
style: [
|
|
32418
|
-
|
|
32419
|
-
collapsed ?
|
|
32420
|
-
!showCollapseToggle && !onClose ?
|
|
32871
|
+
styles21.header,
|
|
32872
|
+
collapsed ? styles21.headerCollapsed : styles21.headerExpanded,
|
|
32873
|
+
!showCollapseToggle && !onClose ? styles21.headerNoToggle : null
|
|
32421
32874
|
],
|
|
32422
32875
|
children: [
|
|
32423
32876
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -32425,7 +32878,7 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
32425
32878
|
{
|
|
32426
32879
|
pointerEvents: collapsed ? "none" : "auto",
|
|
32427
32880
|
style: [
|
|
32428
|
-
|
|
32881
|
+
styles21.logoSlot,
|
|
32429
32882
|
{
|
|
32430
32883
|
opacity: labelOpacity,
|
|
32431
32884
|
maxWidth: collapsed ? 0 : LOGO_WIDTH
|
|
@@ -32451,7 +32904,7 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
32451
32904
|
accessibilityLabel: closeAccessibilityLabel,
|
|
32452
32905
|
hitSlop: 8,
|
|
32453
32906
|
onPress: onClose,
|
|
32454
|
-
style:
|
|
32907
|
+
style: styles21.toggleButton,
|
|
32455
32908
|
children: /* @__PURE__ */ jsxRuntime.jsx(CloseIcon, { color: colors.grey100, size: TOGGLE_SIZE, strokeWidth: 2 })
|
|
32456
32909
|
}
|
|
32457
32910
|
) : showCollapseToggle ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -32462,7 +32915,7 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
32462
32915
|
accessibilityState: { expanded: !collapsed },
|
|
32463
32916
|
hitSlop: 8,
|
|
32464
32917
|
onPress: () => setCollapsed(!collapsed),
|
|
32465
|
-
style:
|
|
32918
|
+
style: styles21.toggleButton,
|
|
32466
32919
|
children: /* @__PURE__ */ jsxRuntime.jsx(SidebarIcon, { color: colors.grey100, size: TOGGLE_SIZE, strokeWidth: 2 })
|
|
32467
32920
|
}
|
|
32468
32921
|
) : null
|
|
@@ -32474,7 +32927,7 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
32474
32927
|
{
|
|
32475
32928
|
accessibilityLabel: navigationAccessibilityLabel,
|
|
32476
32929
|
accessibilityRole: "menu",
|
|
32477
|
-
style:
|
|
32930
|
+
style: styles21.nav,
|
|
32478
32931
|
children: items.map((item) => {
|
|
32479
32932
|
const isActive = Boolean(item.active);
|
|
32480
32933
|
const iconColor = isActive ? colors.primary : colors.grey300;
|
|
@@ -32490,18 +32943,18 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
32490
32943
|
hoverColor: colors.grey700,
|
|
32491
32944
|
onPress: item.onPress,
|
|
32492
32945
|
labelStyle: [
|
|
32493
|
-
|
|
32946
|
+
styles21.menuLabel,
|
|
32494
32947
|
{ color: isActive ? colors.white : colors.grey200 },
|
|
32495
|
-
collapsed ?
|
|
32948
|
+
collapsed ? styles21.menuLabelCollapsed : styles21.menuLabelExpanded
|
|
32496
32949
|
],
|
|
32497
|
-
style: [
|
|
32950
|
+
style: [styles21.menuItem, collapsed ? styles21.menuItemCollapsed : null]
|
|
32498
32951
|
},
|
|
32499
32952
|
item.key
|
|
32500
32953
|
);
|
|
32501
32954
|
})
|
|
32502
32955
|
}
|
|
32503
32956
|
),
|
|
32504
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
32957
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles21.footer, collapsed ? styles21.footerCollapsed : styles21.footerExpanded], children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
32505
32958
|
AvatarSimple,
|
|
32506
32959
|
{
|
|
32507
32960
|
name: user.name,
|
|
@@ -32516,7 +32969,7 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
32516
32969
|
}
|
|
32517
32970
|
);
|
|
32518
32971
|
});
|
|
32519
|
-
var
|
|
32972
|
+
var styles21 = reactNative.StyleSheet.create({
|
|
32520
32973
|
root: {
|
|
32521
32974
|
flexDirection: "column",
|
|
32522
32975
|
alignSelf: "stretch",
|
|
@@ -32621,7 +33074,7 @@ var defaultLanguageOptions = [
|
|
|
32621
33074
|
];
|
|
32622
33075
|
var CONTROL_WIDTH = 90;
|
|
32623
33076
|
var CONTROL_HEIGHT = 35;
|
|
32624
|
-
var
|
|
33077
|
+
var ICON_SIZE9 = 16;
|
|
32625
33078
|
var ICON_BUTTON_SIZE2 = 32;
|
|
32626
33079
|
var ICON_MENU_WIDTH = 67;
|
|
32627
33080
|
var ICON_MENU_HEIGHT = 129;
|
|
@@ -32710,11 +33163,11 @@ var LanguageSwitcher = react.forwardRef(
|
|
|
32710
33163
|
...rest,
|
|
32711
33164
|
ref: setWrapperRef,
|
|
32712
33165
|
style: [
|
|
32713
|
-
|
|
32714
|
-
isIconVariant ?
|
|
32715
|
-
isOpen &&
|
|
32716
|
-
isOpen && isIconVariant &&
|
|
32717
|
-
disabled &&
|
|
33166
|
+
styles22.wrapper,
|
|
33167
|
+
isIconVariant ? styles22.wrapperIcon : styles22.wrapperDefault,
|
|
33168
|
+
isOpen && styles22.wrapperOpen,
|
|
33169
|
+
isOpen && isIconVariant && styles22.wrapperOpenIcon,
|
|
33170
|
+
disabled && styles22.disabled,
|
|
32718
33171
|
style
|
|
32719
33172
|
],
|
|
32720
33173
|
children: [
|
|
@@ -32731,14 +33184,14 @@ var LanguageSwitcher = react.forwardRef(
|
|
|
32731
33184
|
onHoverIn: () => setTriggerHovered(true),
|
|
32732
33185
|
onHoverOut: () => setTriggerHovered(false),
|
|
32733
33186
|
style: ({ pressed }) => [
|
|
32734
|
-
isIconVariant ?
|
|
32735
|
-
!isIconVariant && (triggerHovered || pressed || isOpen) &&
|
|
33187
|
+
isIconVariant ? styles22.triggerIcon : styles22.trigger,
|
|
33188
|
+
!isIconVariant && (triggerHovered || pressed || isOpen) && styles22.triggerActive
|
|
32736
33189
|
],
|
|
32737
33190
|
children: [
|
|
32738
|
-
/* @__PURE__ */ jsxRuntime.jsx(GlobeIcon, { size:
|
|
33191
|
+
/* @__PURE__ */ jsxRuntime.jsx(GlobeIcon, { size: ICON_SIZE9, color: colors.white, strokeWidth: isIconVariant ? 1.5 : 2 }),
|
|
32739
33192
|
!isIconVariant ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
32740
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
32741
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
33193
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles22.triggerLabel, numberOfLines: 1, children: selectedOption?.label ?? "" }),
|
|
33194
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles22.chevron, isOpen && styles22.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { size: ICON_SIZE9, color: colors.white, strokeWidth: 2 }) })
|
|
32742
33195
|
] }) : null
|
|
32743
33196
|
]
|
|
32744
33197
|
}
|
|
@@ -32746,7 +33199,7 @@ var LanguageSwitcher = react.forwardRef(
|
|
|
32746
33199
|
isOpen && options.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
32747
33200
|
reactNative.View,
|
|
32748
33201
|
{
|
|
32749
|
-
style: [
|
|
33202
|
+
style: [styles22.menu, isIconVariant ? styles22.menuIcon : styles22.menuDefault],
|
|
32750
33203
|
accessibilityRole: "menu",
|
|
32751
33204
|
children: options.map((option) => {
|
|
32752
33205
|
const selected = option.value === selectedValue;
|
|
@@ -32760,16 +33213,16 @@ var LanguageSwitcher = react.forwardRef(
|
|
|
32760
33213
|
onHoverIn: () => setHoveredValue(option.value),
|
|
32761
33214
|
onHoverOut: () => setHoveredValue(null),
|
|
32762
33215
|
style: ({ pressed }) => [
|
|
32763
|
-
|
|
32764
|
-
isIconVariant ?
|
|
32765
|
-
selected ? isIconVariant ?
|
|
33216
|
+
styles22.item,
|
|
33217
|
+
isIconVariant ? styles22.itemIcon : null,
|
|
33218
|
+
selected ? isIconVariant ? styles22.itemSelectedIcon : styles22.itemSelected : (hoveredValue === option.value || pressed) && styles22.itemHovered
|
|
32766
33219
|
],
|
|
32767
33220
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
32768
33221
|
reactNative.Text,
|
|
32769
33222
|
{
|
|
32770
33223
|
style: [
|
|
32771
|
-
|
|
32772
|
-
selected && (isIconVariant ?
|
|
33224
|
+
styles22.itemLabel,
|
|
33225
|
+
selected && (isIconVariant ? styles22.itemLabelSelectedIcon : styles22.itemLabelSelected)
|
|
32773
33226
|
],
|
|
32774
33227
|
children: option.label
|
|
32775
33228
|
}
|
|
@@ -32785,7 +33238,7 @@ var LanguageSwitcher = react.forwardRef(
|
|
|
32785
33238
|
);
|
|
32786
33239
|
}
|
|
32787
33240
|
);
|
|
32788
|
-
var
|
|
33241
|
+
var styles22 = reactNative.StyleSheet.create({
|
|
32789
33242
|
wrapper: {
|
|
32790
33243
|
position: "relative",
|
|
32791
33244
|
alignSelf: "flex-start"
|
|
@@ -32837,8 +33290,8 @@ var styles18 = reactNative.StyleSheet.create({
|
|
|
32837
33290
|
color: colors.white
|
|
32838
33291
|
},
|
|
32839
33292
|
chevron: {
|
|
32840
|
-
width:
|
|
32841
|
-
height:
|
|
33293
|
+
width: ICON_SIZE9,
|
|
33294
|
+
height: ICON_SIZE9,
|
|
32842
33295
|
flexShrink: 0,
|
|
32843
33296
|
alignItems: "center",
|
|
32844
33297
|
justifyContent: "center"
|
|
@@ -32906,12 +33359,12 @@ var styles18 = reactNative.StyleSheet.create({
|
|
|
32906
33359
|
color: colors.primary
|
|
32907
33360
|
}
|
|
32908
33361
|
});
|
|
32909
|
-
var
|
|
33362
|
+
var ICON_SIZE10 = 25.63181;
|
|
32910
33363
|
var StatCard = react.forwardRef(function StatCard2({
|
|
32911
33364
|
label,
|
|
32912
33365
|
icon: Icon2,
|
|
32913
33366
|
iconProps,
|
|
32914
|
-
iconSize =
|
|
33367
|
+
iconSize = ICON_SIZE10,
|
|
32915
33368
|
style,
|
|
32916
33369
|
className,
|
|
32917
33370
|
accessibilityLabel,
|
|
@@ -32926,17 +33379,17 @@ var StatCard = react.forwardRef(function StatCard2({
|
|
|
32926
33379
|
{
|
|
32927
33380
|
...rest,
|
|
32928
33381
|
ref: setContainerRef,
|
|
32929
|
-
style: [
|
|
33382
|
+
style: [styles23.base, style],
|
|
32930
33383
|
accessibilityRole: "text",
|
|
32931
33384
|
accessibilityLabel: accessibilityLabel ?? label,
|
|
32932
33385
|
children: [
|
|
32933
33386
|
/* @__PURE__ */ jsxRuntime.jsx(Icon2, { ...iconProps, size: iconSize, color: iconProps?.color ?? colors.white }),
|
|
32934
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
33387
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles23.label, children: label })
|
|
32935
33388
|
]
|
|
32936
33389
|
}
|
|
32937
33390
|
);
|
|
32938
33391
|
});
|
|
32939
|
-
var
|
|
33392
|
+
var styles23 = reactNative.StyleSheet.create({
|
|
32940
33393
|
base: {
|
|
32941
33394
|
width: 204.5,
|
|
32942
33395
|
minHeight: 114,
|
|
@@ -33048,7 +33501,7 @@ var Button = react.forwardRef(
|
|
|
33048
33501
|
useApplyWebClassName(textRef, textClassName);
|
|
33049
33502
|
const iconNode = customIcon ?? /* @__PURE__ */ jsxRuntime.jsx(ArrowRightIcon, { size: metrics.iconSize, color: preset.iconColor });
|
|
33050
33503
|
const containerStyle = [
|
|
33051
|
-
|
|
33504
|
+
styles24.base,
|
|
33052
33505
|
{
|
|
33053
33506
|
minHeight: metrics.minHeight,
|
|
33054
33507
|
height: variant === "danger" ? 33 : void 0,
|
|
@@ -33060,16 +33513,16 @@ var Button = react.forwardRef(
|
|
|
33060
33513
|
paddingRight: hasIcon ? metrics.paddingRightWithIcon : metrics.paddingRight,
|
|
33061
33514
|
gap: hasIcon ? metrics.gap : 0
|
|
33062
33515
|
},
|
|
33063
|
-
hasIcon ?
|
|
33064
|
-
disabled &&
|
|
33516
|
+
hasIcon ? styles24.contentWithIcon : styles24.contentWithoutIcon,
|
|
33517
|
+
disabled && styles24.disabled,
|
|
33065
33518
|
style
|
|
33066
33519
|
];
|
|
33067
33520
|
const labelStyle = [
|
|
33068
|
-
|
|
33521
|
+
styles24.label,
|
|
33069
33522
|
metrics.text,
|
|
33070
33523
|
{ color: preset.textColor },
|
|
33071
|
-
reactNative.Platform.OS === "android" ?
|
|
33072
|
-
!hasIcon &&
|
|
33524
|
+
reactNative.Platform.OS === "android" ? styles24.labelAndroid : null,
|
|
33525
|
+
!hasIcon && styles24.labelCentered,
|
|
33073
33526
|
textStyle
|
|
33074
33527
|
];
|
|
33075
33528
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -33090,7 +33543,7 @@ var Button = react.forwardRef(
|
|
|
33090
33543
|
reactNative.View,
|
|
33091
33544
|
{
|
|
33092
33545
|
style: [
|
|
33093
|
-
|
|
33546
|
+
styles24.iconContainer,
|
|
33094
33547
|
{
|
|
33095
33548
|
width: metrics.iconContainerSize,
|
|
33096
33549
|
height: metrics.iconContainerSize,
|
|
@@ -33106,7 +33559,7 @@ var Button = react.forwardRef(
|
|
|
33106
33559
|
);
|
|
33107
33560
|
}
|
|
33108
33561
|
);
|
|
33109
|
-
var
|
|
33562
|
+
var styles24 = reactNative.StyleSheet.create({
|
|
33110
33563
|
base: {
|
|
33111
33564
|
flexDirection: "row",
|
|
33112
33565
|
alignItems: "center",
|
|
@@ -33190,13 +33643,13 @@ var Checkbox = react.forwardRef(function Checkbox2({
|
|
|
33190
33643
|
accessibilityRole: "checkbox",
|
|
33191
33644
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
33192
33645
|
accessibilityState: { checked: isActive, disabled },
|
|
33193
|
-
style: [
|
|
33646
|
+
style: [styles25.root, disabled && styles25.disabled, style],
|
|
33194
33647
|
children: [
|
|
33195
33648
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
33196
33649
|
reactNative.View,
|
|
33197
33650
|
{
|
|
33198
33651
|
style: [
|
|
33199
|
-
|
|
33652
|
+
styles25.box,
|
|
33200
33653
|
{
|
|
33201
33654
|
backgroundColor: chrome.backgroundColor,
|
|
33202
33655
|
borderColor: chrome.borderColor
|
|
@@ -33205,12 +33658,12 @@ var Checkbox = react.forwardRef(function Checkbox2({
|
|
|
33205
33658
|
children: isActive ? /* @__PURE__ */ jsxRuntime.jsx(CheckIcon, { size: CHECK_SIZE, color: colors.primary, strokeWidth: CHECK_STROKE }) : null
|
|
33206
33659
|
}
|
|
33207
33660
|
),
|
|
33208
|
-
labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
33661
|
+
labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles25.label, labelStyle], children: labelContent }) : labelContent : null
|
|
33209
33662
|
]
|
|
33210
33663
|
}
|
|
33211
33664
|
);
|
|
33212
33665
|
});
|
|
33213
|
-
var
|
|
33666
|
+
var styles25 = reactNative.StyleSheet.create({
|
|
33214
33667
|
root: {
|
|
33215
33668
|
flexDirection: "row",
|
|
33216
33669
|
alignItems: "center",
|
|
@@ -33330,7 +33783,7 @@ var TRIGGER_HEIGHT = 44;
|
|
|
33330
33783
|
var TRIGGER_RADIUS = 60;
|
|
33331
33784
|
var MENU_RADIUS2 = 20;
|
|
33332
33785
|
var MENU_PADDING = 12;
|
|
33333
|
-
var
|
|
33786
|
+
var ICON_SIZE11 = 20;
|
|
33334
33787
|
var NAV_ICON_SIZE = 20;
|
|
33335
33788
|
var HEADER_HEIGHT3 = 36;
|
|
33336
33789
|
var WEEKDAY_ROW_HEIGHT = 44;
|
|
@@ -33345,13 +33798,13 @@ function RangeTriggerField({
|
|
|
33345
33798
|
value,
|
|
33346
33799
|
time
|
|
33347
33800
|
}) {
|
|
33348
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
33349
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style:
|
|
33350
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
33351
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
33352
|
-
time ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
33801
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles26.rangeField, children: [
|
|
33802
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles26.rangeLabel, children: label }),
|
|
33803
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles26.rangeValueRow, children: [
|
|
33804
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles26.rangeDate, children: value }),
|
|
33805
|
+
time ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles26.rangeTimeWrap, children: [
|
|
33353
33806
|
/* @__PURE__ */ jsxRuntime.jsx(ClockFilledIcon, { color: colors.lightGrey, size: 16 }),
|
|
33354
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
33807
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles26.rangeTime, children: time })
|
|
33355
33808
|
] }) : null
|
|
33356
33809
|
] })
|
|
33357
33810
|
] });
|
|
@@ -33541,15 +33994,15 @@ var DatePicker = react.forwardRef(
|
|
|
33541
33994
|
...rest,
|
|
33542
33995
|
ref: setRootRef,
|
|
33543
33996
|
style: [
|
|
33544
|
-
|
|
33545
|
-
usesRangeTrigger &&
|
|
33546
|
-
hideTrigger &&
|
|
33547
|
-
isOpen &&
|
|
33548
|
-
disabled &&
|
|
33997
|
+
styles26.root,
|
|
33998
|
+
usesRangeTrigger && styles26.rangeRoot,
|
|
33999
|
+
hideTrigger && styles26.rootHideTrigger,
|
|
34000
|
+
isOpen && styles26.rootOpen,
|
|
34001
|
+
disabled && styles26.disabled,
|
|
33549
34002
|
style
|
|
33550
34003
|
],
|
|
33551
34004
|
accessibilityState: { disabled, expanded: isOpen },
|
|
33552
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [
|
|
34005
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles26.triggerWrap, isOpen && styles26.triggerWrapOpen], children: [
|
|
33553
34006
|
hideTrigger ? null : /* @__PURE__ */ jsxRuntime.jsx(
|
|
33554
34007
|
reactNative.Pressable,
|
|
33555
34008
|
{
|
|
@@ -33560,9 +34013,9 @@ var DatePicker = react.forwardRef(
|
|
|
33560
34013
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
33561
34014
|
accessibilityState: { disabled, expanded: isOpen },
|
|
33562
34015
|
style: [
|
|
33563
|
-
|
|
33564
|
-
usesRangeTrigger &&
|
|
33565
|
-
usesRangeTrigger && (usesVerticalRangeTrigger ?
|
|
34016
|
+
styles26.trigger,
|
|
34017
|
+
usesRangeTrigger && styles26.rangeTrigger,
|
|
34018
|
+
usesRangeTrigger && (usesVerticalRangeTrigger ? styles26.rangeTriggerVertical : styles26.rangeTriggerHorizontal),
|
|
33566
34019
|
{
|
|
33567
34020
|
borderColor: triggerBorderColor,
|
|
33568
34021
|
backgroundColor: usesRangeTrigger ? "transparent" : colors.grey700
|
|
@@ -33573,13 +34026,13 @@ var DatePicker = react.forwardRef(
|
|
|
33573
34026
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
33574
34027
|
reactNative.View,
|
|
33575
34028
|
{
|
|
33576
|
-
style: usesVerticalRangeTrigger ?
|
|
34029
|
+
style: usesVerticalRangeTrigger ? styles26.rangeDividerVertical : styles26.rangeDividerHorizontal
|
|
33577
34030
|
}
|
|
33578
34031
|
),
|
|
33579
34032
|
/* @__PURE__ */ jsxRuntime.jsx(RangeTriggerField, { label: endLabel, time: endTime, value: endValue })
|
|
33580
34033
|
] }) : /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
33581
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
33582
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
34034
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles26.triggerText, { color: triggerTextColor }], numberOfLines: 1, children: triggerLabel }),
|
|
34035
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles26.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(CalendarOutlineIcon, { size: ICON_SIZE11, color: colors.grey100 }) })
|
|
33583
34036
|
] })
|
|
33584
34037
|
}
|
|
33585
34038
|
),
|
|
@@ -33587,13 +34040,13 @@ var DatePicker = react.forwardRef(
|
|
|
33587
34040
|
reactNative.View,
|
|
33588
34041
|
{
|
|
33589
34042
|
style: [
|
|
33590
|
-
|
|
33591
|
-
usesRangeTrigger &&
|
|
33592
|
-
hideTrigger ?
|
|
34043
|
+
styles26.menu,
|
|
34044
|
+
usesRangeTrigger && styles26.rangeMenu,
|
|
34045
|
+
hideTrigger ? styles26.menuInline : menuAlignEnd ? styles26.menuAlignEnd : styles26.menuAlignStart,
|
|
33593
34046
|
calendarStyle
|
|
33594
34047
|
],
|
|
33595
34048
|
children: [
|
|
33596
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
34049
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles26.calendarHeader, children: [
|
|
33597
34050
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
33598
34051
|
reactNative.Pressable,
|
|
33599
34052
|
{
|
|
@@ -33601,11 +34054,11 @@ var DatePicker = react.forwardRef(
|
|
|
33601
34054
|
hitSlop: 8,
|
|
33602
34055
|
accessibilityRole: "button",
|
|
33603
34056
|
accessibilityLabel: "Previous month",
|
|
33604
|
-
style:
|
|
34057
|
+
style: styles26.navButton,
|
|
33605
34058
|
children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: NAV_ICON_SIZE, color: colors.white })
|
|
33606
34059
|
}
|
|
33607
34060
|
),
|
|
33608
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.Text, { style:
|
|
34061
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.Text, { style: styles26.monthHeading, children: [
|
|
33609
34062
|
monthNames[visibleMonth.getMonth()],
|
|
33610
34063
|
" ",
|
|
33611
34064
|
visibleMonth.getFullYear()
|
|
@@ -33617,13 +34070,13 @@ var DatePicker = react.forwardRef(
|
|
|
33617
34070
|
hitSlop: 8,
|
|
33618
34071
|
accessibilityRole: "button",
|
|
33619
34072
|
accessibilityLabel: "Next month",
|
|
33620
|
-
style:
|
|
33621
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
34073
|
+
style: styles26.navButton,
|
|
34074
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles26.navIconMirror, children: /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { size: NAV_ICON_SIZE, color: colors.white }) })
|
|
33622
34075
|
}
|
|
33623
34076
|
)
|
|
33624
34077
|
] }),
|
|
33625
34078
|
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { children: [
|
|
33626
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
34079
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles26.weekdayRow, children: weekdayLabels.map((weekdayLabel, index) => /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles26.weekdayCell, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles26.weekdayText, children: weekdayLabel }) }, `${weekdayLabel}-${index}`)) }),
|
|
33627
34080
|
weeks.map((week, weekIndex) => {
|
|
33628
34081
|
let rangeHighlightStyle = null;
|
|
33629
34082
|
if (isRange && rangeValue.start && rangeValue.end) {
|
|
@@ -33660,13 +34113,13 @@ var DatePicker = react.forwardRef(
|
|
|
33660
34113
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
33661
34114
|
reactNative.View,
|
|
33662
34115
|
{
|
|
33663
|
-
style: [
|
|
34116
|
+
style: [styles26.weekRow, weekIndex > 0 && styles26.weekRowSpaced],
|
|
33664
34117
|
children: [
|
|
33665
34118
|
rangeHighlightStyle ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
33666
34119
|
reactNative.View,
|
|
33667
34120
|
{
|
|
33668
34121
|
pointerEvents: "none",
|
|
33669
|
-
style: [
|
|
34122
|
+
style: [styles26.rangeHighlight, rangeHighlightStyle]
|
|
33670
34123
|
}
|
|
33671
34124
|
) : null,
|
|
33672
34125
|
week.map((day, dayIndex) => {
|
|
@@ -33689,7 +34142,7 @@ var DatePicker = react.forwardRef(
|
|
|
33689
34142
|
onHoverOut: () => setHoveredDayKey((current) => current === dayKey ? null : current),
|
|
33690
34143
|
onPressIn: () => setHoveredDayKey(dayKey),
|
|
33691
34144
|
onPressOut: () => setHoveredDayKey((current) => current === dayKey ? null : current),
|
|
33692
|
-
style:
|
|
34145
|
+
style: styles26.dayCellWrap,
|
|
33693
34146
|
accessibilityRole: "button",
|
|
33694
34147
|
accessibilityLabel: formatValue(day),
|
|
33695
34148
|
accessibilityState: {
|
|
@@ -33701,14 +34154,14 @@ var DatePicker = react.forwardRef(
|
|
|
33701
34154
|
reactNative.View,
|
|
33702
34155
|
{
|
|
33703
34156
|
style: [
|
|
33704
|
-
|
|
33705
|
-
isSelectedEndpoint &&
|
|
33706
|
-
isHovered &&
|
|
34157
|
+
styles26.dayCircle,
|
|
34158
|
+
isSelectedEndpoint && styles26.dayCircleSelected,
|
|
34159
|
+
isHovered && styles26.dayCircleHovered
|
|
33707
34160
|
],
|
|
33708
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
34161
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles26.dayText, { color: dayTextColor }], children: day.getDate() })
|
|
33709
34162
|
}
|
|
33710
34163
|
),
|
|
33711
|
-
isToday && !isSelectedEndpoint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
34164
|
+
isToday && !isSelectedEndpoint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles26.todayDot }) : null
|
|
33712
34165
|
]
|
|
33713
34166
|
},
|
|
33714
34167
|
dayIndex
|
|
@@ -33728,7 +34181,7 @@ var DatePicker = react.forwardRef(
|
|
|
33728
34181
|
);
|
|
33729
34182
|
}
|
|
33730
34183
|
);
|
|
33731
|
-
var
|
|
34184
|
+
var styles26 = reactNative.StyleSheet.create({
|
|
33732
34185
|
root: {
|
|
33733
34186
|
width: DEFAULT_WIDTH,
|
|
33734
34187
|
gap: 8,
|
|
@@ -33833,8 +34286,8 @@ var styles22 = reactNative.StyleSheet.create({
|
|
|
33833
34286
|
backgroundColor: colors.grey500
|
|
33834
34287
|
},
|
|
33835
34288
|
iconSlot: {
|
|
33836
|
-
width:
|
|
33837
|
-
height:
|
|
34289
|
+
width: ICON_SIZE11,
|
|
34290
|
+
height: ICON_SIZE11,
|
|
33838
34291
|
alignItems: "center",
|
|
33839
34292
|
justifyContent: "center",
|
|
33840
34293
|
flexShrink: 0
|
|
@@ -33979,7 +34432,7 @@ var styles22 = reactNative.StyleSheet.create({
|
|
|
33979
34432
|
});
|
|
33980
34433
|
var SIZE = 48;
|
|
33981
34434
|
var PADDING = 12;
|
|
33982
|
-
var
|
|
34435
|
+
var ICON_SIZE12 = 24;
|
|
33983
34436
|
var RADIUS = 64;
|
|
33984
34437
|
var FloatingActionButton = react.forwardRef(function FloatingActionButton2({ onPress, disabled = false, icon, accessibilityLabel = "Add", style, className, ...rest }, forwardedRef) {
|
|
33985
34438
|
const containerRef = react.useRef(null);
|
|
@@ -33997,12 +34450,12 @@ var FloatingActionButton = react.forwardRef(function FloatingActionButton2({ onP
|
|
|
33997
34450
|
accessibilityRole: "button",
|
|
33998
34451
|
accessibilityLabel,
|
|
33999
34452
|
accessibilityState: { disabled },
|
|
34000
|
-
style: [
|
|
34001
|
-
children: icon ?? /* @__PURE__ */ jsxRuntime.jsx(PlusIcon, { color: colors.white, size:
|
|
34453
|
+
style: [styles27.base, disabled && styles27.disabled, style],
|
|
34454
|
+
children: icon ?? /* @__PURE__ */ jsxRuntime.jsx(PlusIcon, { color: colors.white, size: ICON_SIZE12, strokeWidth: 2 })
|
|
34002
34455
|
}
|
|
34003
34456
|
);
|
|
34004
34457
|
});
|
|
34005
|
-
var
|
|
34458
|
+
var styles27 = reactNative.StyleSheet.create({
|
|
34006
34459
|
base: {
|
|
34007
34460
|
width: SIZE,
|
|
34008
34461
|
height: SIZE,
|
|
@@ -34077,7 +34530,7 @@ var Modal = react.forwardRef(function Modal2({
|
|
|
34077
34530
|
reactNative.View,
|
|
34078
34531
|
{
|
|
34079
34532
|
ref: setContentRef,
|
|
34080
|
-
style: [
|
|
34533
|
+
style: [styles28.content, contentStyle],
|
|
34081
34534
|
onStartShouldSetResponder: () => true,
|
|
34082
34535
|
children
|
|
34083
34536
|
}
|
|
@@ -34109,7 +34562,7 @@ var Modal = react.forwardRef(function Modal2({
|
|
|
34109
34562
|
animationType: "fade",
|
|
34110
34563
|
onRequestClose: onClose,
|
|
34111
34564
|
statusBarTranslucent: true,
|
|
34112
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
34565
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles28.root, accessibilityViewIsModal: true, children: [
|
|
34113
34566
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
34114
34567
|
reactNative.Pressable,
|
|
34115
34568
|
{
|
|
@@ -34117,7 +34570,7 @@ var Modal = react.forwardRef(function Modal2({
|
|
|
34117
34570
|
accessibilityLabel: backdropAccessibilityLabel,
|
|
34118
34571
|
disabled: !closeOnBackdropPress,
|
|
34119
34572
|
onPress: closeOnBackdropPress ? onClose : void 0,
|
|
34120
|
-
style:
|
|
34573
|
+
style: styles28.backdrop
|
|
34121
34574
|
}
|
|
34122
34575
|
),
|
|
34123
34576
|
content
|
|
@@ -34125,7 +34578,7 @@ var Modal = react.forwardRef(function Modal2({
|
|
|
34125
34578
|
}
|
|
34126
34579
|
);
|
|
34127
34580
|
});
|
|
34128
|
-
var
|
|
34581
|
+
var styles28 = reactNative.StyleSheet.create({
|
|
34129
34582
|
root: {
|
|
34130
34583
|
flex: 1,
|
|
34131
34584
|
alignItems: "center",
|
|
@@ -34291,7 +34744,7 @@ var Input = react.forwardRef(function Input2({
|
|
|
34291
34744
|
useApplyWebClassName(rootRef, className);
|
|
34292
34745
|
useApplyWebClassName(inputRef, inputClassName);
|
|
34293
34746
|
const fieldChromeStyle = [
|
|
34294
|
-
|
|
34747
|
+
styles29.field,
|
|
34295
34748
|
{
|
|
34296
34749
|
height: metrics.height,
|
|
34297
34750
|
borderRadius: metrics.borderRadius,
|
|
@@ -34303,11 +34756,11 @@ var Input = react.forwardRef(function Input2({
|
|
|
34303
34756
|
borderColor: chrome.borderColor,
|
|
34304
34757
|
backgroundColor: chrome.backgroundColor
|
|
34305
34758
|
},
|
|
34306
|
-
reactNative.Platform.OS === "web" ?
|
|
34759
|
+
reactNative.Platform.OS === "web" ? styles29.fieldWeb : null,
|
|
34307
34760
|
fieldStyle
|
|
34308
34761
|
];
|
|
34309
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [
|
|
34310
|
-
showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Pressable, { disabled, onPress: focusInput, style:
|
|
34762
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [styles29.root, disabled && styles29.disabled, style], children: [
|
|
34763
|
+
showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Pressable, { disabled, onPress: focusInput, style: styles29.labelPressable, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles29.label, { color: chrome.labelColor }], children: label }) }) : null,
|
|
34311
34764
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
34312
34765
|
reactNative.Pressable,
|
|
34313
34766
|
{
|
|
@@ -34316,7 +34769,7 @@ var Input = react.forwardRef(function Input2({
|
|
|
34316
34769
|
onPress: focusInput,
|
|
34317
34770
|
style: fieldChromeStyle,
|
|
34318
34771
|
children: [
|
|
34319
|
-
hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
34772
|
+
hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles29.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }], children: leftIconNode }) : null,
|
|
34320
34773
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
34321
34774
|
reactNative.TextInput,
|
|
34322
34775
|
{
|
|
@@ -34341,11 +34794,11 @@ var Input = react.forwardRef(function Input2({
|
|
|
34341
34794
|
onBlur?.(event);
|
|
34342
34795
|
},
|
|
34343
34796
|
style: [
|
|
34344
|
-
|
|
34797
|
+
styles29.input,
|
|
34345
34798
|
metrics.text,
|
|
34346
34799
|
{ color: chrome.textColor },
|
|
34347
|
-
reactNative.Platform.OS === "web" ?
|
|
34348
|
-
reactNative.Platform.OS === "android" ?
|
|
34800
|
+
reactNative.Platform.OS === "web" ? styles29.inputWeb : null,
|
|
34801
|
+
reactNative.Platform.OS === "android" ? styles29.inputAndroid : null,
|
|
34349
34802
|
inputStyle
|
|
34350
34803
|
],
|
|
34351
34804
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
@@ -34357,7 +34810,7 @@ var Input = react.forwardRef(function Input2({
|
|
|
34357
34810
|
{
|
|
34358
34811
|
onPress: onRightIconPress,
|
|
34359
34812
|
disabled,
|
|
34360
|
-
style: [
|
|
34813
|
+
style: [styles29.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }],
|
|
34361
34814
|
accessibilityRole: "button",
|
|
34362
34815
|
accessibilityLabel: rightIconAccessibilityLabel,
|
|
34363
34816
|
hitSlop: 8,
|
|
@@ -34369,17 +34822,17 @@ var Input = react.forwardRef(function Input2({
|
|
|
34369
34822
|
accessibilityRole: "none",
|
|
34370
34823
|
disabled,
|
|
34371
34824
|
onPress: focusInput,
|
|
34372
|
-
style: [
|
|
34825
|
+
style: [styles29.iconSlot, { width: metrics.iconSize, height: metrics.iconSize }],
|
|
34373
34826
|
children: rightIconNode
|
|
34374
34827
|
}
|
|
34375
34828
|
) : null
|
|
34376
34829
|
]
|
|
34377
34830
|
}
|
|
34378
34831
|
),
|
|
34379
|
-
showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
34832
|
+
showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles29.hint, { color: chrome.hintColor }], children: hint }) : null
|
|
34380
34833
|
] });
|
|
34381
34834
|
});
|
|
34382
|
-
var
|
|
34835
|
+
var styles29 = reactNative.StyleSheet.create({
|
|
34383
34836
|
root: {
|
|
34384
34837
|
width: DEFAULT_WIDTH2,
|
|
34385
34838
|
gap: 8,
|
|
@@ -34427,6 +34880,234 @@ var styles25 = reactNative.StyleSheet.create({
|
|
|
34427
34880
|
...inputTypography.hint
|
|
34428
34881
|
}
|
|
34429
34882
|
});
|
|
34883
|
+
var MENU_MAX_HEIGHT = 248;
|
|
34884
|
+
var BLUR_CLOSE_DELAY_MS = 120;
|
|
34885
|
+
var AUTOCOMPLETE_ROOT_Z_INDEX = 1100;
|
|
34886
|
+
var AUTOCOMPLETE_MENU_Z_INDEX = 1101;
|
|
34887
|
+
var AutocompleteInput = react.forwardRef(
|
|
34888
|
+
function AutocompleteInput2({
|
|
34889
|
+
value,
|
|
34890
|
+
options,
|
|
34891
|
+
onChangeText,
|
|
34892
|
+
onOptionSelect,
|
|
34893
|
+
onSubmit,
|
|
34894
|
+
open: openProp,
|
|
34895
|
+
defaultOpen = false,
|
|
34896
|
+
onOpenChange,
|
|
34897
|
+
loading = false,
|
|
34898
|
+
loadingText = "Loading...",
|
|
34899
|
+
emptyText = "No results",
|
|
34900
|
+
showEmpty = true,
|
|
34901
|
+
renderOption,
|
|
34902
|
+
containerStyle,
|
|
34903
|
+
menuStyle,
|
|
34904
|
+
containerClassName,
|
|
34905
|
+
menuClassName,
|
|
34906
|
+
disabled = false,
|
|
34907
|
+
onFocus,
|
|
34908
|
+
onBlur,
|
|
34909
|
+
...inputProps
|
|
34910
|
+
}, forwardedRef) {
|
|
34911
|
+
const rootRef = react.useRef(null);
|
|
34912
|
+
const menuRef = react.useRef(null);
|
|
34913
|
+
const blurTimerRef = react.useRef(null);
|
|
34914
|
+
const setRootRef = react.useMemo(() => mergeRefs(rootRef, forwardedRef), [forwardedRef]);
|
|
34915
|
+
const controlled = typeof openProp === "boolean";
|
|
34916
|
+
const [uncontrolledOpen, setUncontrolledOpen] = react.useState(defaultOpen);
|
|
34917
|
+
const [highlightedIndex, setHighlightedIndex] = react.useState(0);
|
|
34918
|
+
const open = controlled ? openProp : uncontrolledOpen;
|
|
34919
|
+
useApplyWebClassName(rootRef, containerClassName);
|
|
34920
|
+
useApplyWebClassName(menuRef, menuClassName, open);
|
|
34921
|
+
const setOpen = react.useCallback(
|
|
34922
|
+
(nextOpen) => {
|
|
34923
|
+
if (!controlled) setUncontrolledOpen(nextOpen);
|
|
34924
|
+
onOpenChange?.(nextOpen);
|
|
34925
|
+
if (!nextOpen) setHighlightedIndex(0);
|
|
34926
|
+
},
|
|
34927
|
+
[controlled, onOpenChange]
|
|
34928
|
+
);
|
|
34929
|
+
react.useEffect(() => {
|
|
34930
|
+
if (highlightedIndex < options.length) return;
|
|
34931
|
+
setHighlightedIndex(Math.max(0, options.length - 1));
|
|
34932
|
+
}, [highlightedIndex, options.length]);
|
|
34933
|
+
react.useEffect(() => {
|
|
34934
|
+
if (reactNative.Platform.OS !== "web" || !open) return;
|
|
34935
|
+
const closeOnOutsidePress = (event) => {
|
|
34936
|
+
const root = rootRef.current;
|
|
34937
|
+
if (event.target instanceof Node && root?.contains && !root.contains(event.target)) {
|
|
34938
|
+
setOpen(false);
|
|
34939
|
+
}
|
|
34940
|
+
};
|
|
34941
|
+
document.addEventListener("mousedown", closeOnOutsidePress);
|
|
34942
|
+
document.addEventListener("touchstart", closeOnOutsidePress);
|
|
34943
|
+
return () => {
|
|
34944
|
+
document.removeEventListener("mousedown", closeOnOutsidePress);
|
|
34945
|
+
document.removeEventListener("touchstart", closeOnOutsidePress);
|
|
34946
|
+
};
|
|
34947
|
+
}, [open, setOpen]);
|
|
34948
|
+
react.useEffect(
|
|
34949
|
+
() => () => {
|
|
34950
|
+
if (blurTimerRef.current) clearTimeout(blurTimerRef.current);
|
|
34951
|
+
},
|
|
34952
|
+
[]
|
|
34953
|
+
);
|
|
34954
|
+
const selectOption = (option) => {
|
|
34955
|
+
if (disabled) return;
|
|
34956
|
+
if (blurTimerRef.current) clearTimeout(blurTimerRef.current);
|
|
34957
|
+
onOptionSelect(option);
|
|
34958
|
+
setOpen(false);
|
|
34959
|
+
};
|
|
34960
|
+
const submit = () => {
|
|
34961
|
+
const highlighted = options[highlightedIndex] ?? options[0];
|
|
34962
|
+
if (open && highlighted) {
|
|
34963
|
+
selectOption(highlighted);
|
|
34964
|
+
return;
|
|
34965
|
+
}
|
|
34966
|
+
onSubmit?.(options[0]);
|
|
34967
|
+
};
|
|
34968
|
+
const showMenu = open && !disabled && (loading || options.length > 0 || showEmpty);
|
|
34969
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
34970
|
+
reactNative.View,
|
|
34971
|
+
{
|
|
34972
|
+
ref: setRootRef,
|
|
34973
|
+
style: [styles30.root, open && styles30.rootOpen, containerStyle],
|
|
34974
|
+
accessibilityState: { disabled, expanded: open },
|
|
34975
|
+
children: [
|
|
34976
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
34977
|
+
Input,
|
|
34978
|
+
{
|
|
34979
|
+
...inputProps,
|
|
34980
|
+
disabled,
|
|
34981
|
+
value,
|
|
34982
|
+
onChangeText: (nextValue) => {
|
|
34983
|
+
onChangeText(nextValue);
|
|
34984
|
+
setHighlightedIndex(0);
|
|
34985
|
+
setOpen(true);
|
|
34986
|
+
},
|
|
34987
|
+
onFocus: (event) => {
|
|
34988
|
+
if (blurTimerRef.current) clearTimeout(blurTimerRef.current);
|
|
34989
|
+
setOpen(true);
|
|
34990
|
+
onFocus?.(event);
|
|
34991
|
+
},
|
|
34992
|
+
onBlur: (event) => {
|
|
34993
|
+
blurTimerRef.current = setTimeout(() => setOpen(false), BLUR_CLOSE_DELAY_MS);
|
|
34994
|
+
onBlur?.(event);
|
|
34995
|
+
},
|
|
34996
|
+
onKeyPress: (event) => {
|
|
34997
|
+
const key = event.nativeEvent.key;
|
|
34998
|
+
if (key === "ArrowDown" && options.length > 0) {
|
|
34999
|
+
setHighlightedIndex((current) => Math.min(current + 1, options.length - 1));
|
|
35000
|
+
} else if (key === "ArrowUp" && options.length > 0) {
|
|
35001
|
+
setHighlightedIndex((current) => Math.max(current - 1, 0));
|
|
35002
|
+
} else if (key === "Escape") {
|
|
35003
|
+
setOpen(false);
|
|
35004
|
+
}
|
|
35005
|
+
inputProps.onKeyPress?.(event);
|
|
35006
|
+
},
|
|
35007
|
+
onSubmitEditing: submit
|
|
35008
|
+
}
|
|
35009
|
+
),
|
|
35010
|
+
showMenu ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { ref: menuRef, style: [styles30.menu, menuStyle], children: loading ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles30.statusRow, children: [
|
|
35011
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.ActivityIndicator, { color: colors.primary, size: "small" }),
|
|
35012
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles30.statusText, children: loadingText })
|
|
35013
|
+
] }) : options.length === 0 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles30.statusRow, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles30.statusText, children: emptyText }) }) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
35014
|
+
reactNative.ScrollView,
|
|
35015
|
+
{
|
|
35016
|
+
keyboardShouldPersistTaps: "handled",
|
|
35017
|
+
nestedScrollEnabled: true,
|
|
35018
|
+
showsVerticalScrollIndicator: true,
|
|
35019
|
+
style: styles30.list,
|
|
35020
|
+
children: options.map((option, index) => {
|
|
35021
|
+
const highlighted = index === highlightedIndex;
|
|
35022
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
35023
|
+
reactNative.Pressable,
|
|
35024
|
+
{
|
|
35025
|
+
accessibilityRole: "button",
|
|
35026
|
+
onHoverIn: () => setHighlightedIndex(index),
|
|
35027
|
+
onPress: () => selectOption(option),
|
|
35028
|
+
style: [styles30.option, highlighted && styles30.optionHighlighted],
|
|
35029
|
+
children: renderOption ? renderOption(option, highlighted) : /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
35030
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles30.optionLabel, children: option.label }),
|
|
35031
|
+
option.description ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles30.optionDescription, children: option.description }) : null
|
|
35032
|
+
] })
|
|
35033
|
+
},
|
|
35034
|
+
option.value
|
|
35035
|
+
);
|
|
35036
|
+
})
|
|
35037
|
+
}
|
|
35038
|
+
) }) : null
|
|
35039
|
+
]
|
|
35040
|
+
}
|
|
35041
|
+
);
|
|
35042
|
+
}
|
|
35043
|
+
);
|
|
35044
|
+
var styles30 = reactNative.StyleSheet.create({
|
|
35045
|
+
root: {
|
|
35046
|
+
position: "relative",
|
|
35047
|
+
width: 308
|
|
35048
|
+
},
|
|
35049
|
+
rootOpen: {
|
|
35050
|
+
zIndex: AUTOCOMPLETE_ROOT_Z_INDEX
|
|
35051
|
+
},
|
|
35052
|
+
menu: {
|
|
35053
|
+
position: "absolute",
|
|
35054
|
+
top: "100%",
|
|
35055
|
+
left: 0,
|
|
35056
|
+
right: 0,
|
|
35057
|
+
zIndex: AUTOCOMPLETE_MENU_Z_INDEX,
|
|
35058
|
+
marginTop: 4,
|
|
35059
|
+
padding: 4,
|
|
35060
|
+
overflow: "hidden",
|
|
35061
|
+
borderWidth: 1,
|
|
35062
|
+
borderColor: colors.grey700,
|
|
35063
|
+
borderRadius: 16,
|
|
35064
|
+
backgroundColor: colors.grey700,
|
|
35065
|
+
shadowColor: colors.black,
|
|
35066
|
+
shadowOffset: { width: 0, height: 8 },
|
|
35067
|
+
shadowOpacity: 0.4,
|
|
35068
|
+
shadowRadius: 18,
|
|
35069
|
+
elevation: 12
|
|
35070
|
+
},
|
|
35071
|
+
list: {
|
|
35072
|
+
maxHeight: MENU_MAX_HEIGHT
|
|
35073
|
+
},
|
|
35074
|
+
option: {
|
|
35075
|
+
minHeight: 48,
|
|
35076
|
+
justifyContent: "center",
|
|
35077
|
+
gap: 2,
|
|
35078
|
+
paddingHorizontal: 12,
|
|
35079
|
+
paddingVertical: 8,
|
|
35080
|
+
borderRadius: 12
|
|
35081
|
+
},
|
|
35082
|
+
optionHighlighted: {
|
|
35083
|
+
backgroundColor: colors.grey600
|
|
35084
|
+
},
|
|
35085
|
+
optionLabel: {
|
|
35086
|
+
color: colors.white,
|
|
35087
|
+
fontSize: 12,
|
|
35088
|
+
lineHeight: 18,
|
|
35089
|
+
fontWeight: "600"
|
|
35090
|
+
},
|
|
35091
|
+
optionDescription: {
|
|
35092
|
+
color: colors.grey100,
|
|
35093
|
+
fontSize: 11,
|
|
35094
|
+
lineHeight: 16
|
|
35095
|
+
},
|
|
35096
|
+
statusRow: {
|
|
35097
|
+
minHeight: 48,
|
|
35098
|
+
flexDirection: "row",
|
|
35099
|
+
alignItems: "center",
|
|
35100
|
+
justifyContent: "center",
|
|
35101
|
+
gap: 8,
|
|
35102
|
+
paddingHorizontal: 12,
|
|
35103
|
+
paddingVertical: 8
|
|
35104
|
+
},
|
|
35105
|
+
statusText: {
|
|
35106
|
+
color: colors.grey100,
|
|
35107
|
+
fontSize: 12,
|
|
35108
|
+
lineHeight: 18
|
|
35109
|
+
}
|
|
35110
|
+
});
|
|
34430
35111
|
|
|
34431
35112
|
// src/components/VerificationCodeInput/VerificationCodeInput.utils.ts
|
|
34432
35113
|
function normalizeVerificationCode(value, length) {
|
|
@@ -34546,8 +35227,8 @@ var VerificationCodeInput = react.forwardRef(function VerificationCodeInput2({
|
|
|
34546
35227
|
const cellGap = mobile ? MOBILE_GAP : DESKTOP_GAP;
|
|
34547
35228
|
const rowWidth = cellWidth * safeLength + cellGap * Math.max(0, safeLength - 1);
|
|
34548
35229
|
const showErrorMessage = Boolean(error && errorMessage);
|
|
34549
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...viewProps, ref: rootRef, style: [
|
|
34550
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
35230
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...viewProps, ref: rootRef, style: [styles31.wrapper, disabled && styles31.disabled, style], children: [
|
|
35231
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles31.row, { width: rowWidth, maxWidth: "100%", gap: cellGap }], children: Array.from({ length: safeLength }, (_, index) => {
|
|
34551
35232
|
const active = focusedIndex === index;
|
|
34552
35233
|
const borderColor = error ? colors.red : active ? colors.primary : colors.grey600;
|
|
34553
35234
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -34572,15 +35253,15 @@ var VerificationCodeInput = react.forwardRef(function VerificationCodeInput2({
|
|
|
34572
35253
|
onSubmitEditing: () => onSubmit?.(currentCode),
|
|
34573
35254
|
selectTextOnFocus: true,
|
|
34574
35255
|
style: [
|
|
34575
|
-
|
|
35256
|
+
styles31.cell,
|
|
34576
35257
|
{
|
|
34577
35258
|
width: cellWidth,
|
|
34578
35259
|
height: cellHeight,
|
|
34579
35260
|
borderColor,
|
|
34580
35261
|
color: error ? colors.red : colors.white
|
|
34581
35262
|
},
|
|
34582
|
-
reactNative.Platform.OS === "web" ?
|
|
34583
|
-
reactNative.Platform.OS === "android" ?
|
|
35263
|
+
reactNative.Platform.OS === "web" ? styles31.cellWeb : null,
|
|
35264
|
+
reactNative.Platform.OS === "android" ? styles31.cellAndroid : null,
|
|
34584
35265
|
inputStyle
|
|
34585
35266
|
],
|
|
34586
35267
|
value: currentCode[index] ?? ""
|
|
@@ -34588,10 +35269,10 @@ var VerificationCodeInput = react.forwardRef(function VerificationCodeInput2({
|
|
|
34588
35269
|
index
|
|
34589
35270
|
);
|
|
34590
35271
|
}) }),
|
|
34591
|
-
showErrorMessage ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { accessibilityLiveRegion: "assertive", style:
|
|
35272
|
+
showErrorMessage ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { accessibilityLiveRegion: "assertive", style: styles31.errorMessage, children: errorMessage }) : null
|
|
34592
35273
|
] });
|
|
34593
35274
|
});
|
|
34594
|
-
var
|
|
35275
|
+
var styles31 = reactNative.StyleSheet.create({
|
|
34595
35276
|
wrapper: {
|
|
34596
35277
|
minWidth: 0,
|
|
34597
35278
|
alignSelf: "center",
|
|
@@ -34642,7 +35323,7 @@ var TRIGGER_RADIUS2 = 60;
|
|
|
34642
35323
|
var MENU_RADIUS3 = 24;
|
|
34643
35324
|
var MENU_MAX_LIST_HEIGHT = 248;
|
|
34644
35325
|
var ITEM_RADIUS2 = 12;
|
|
34645
|
-
var
|
|
35326
|
+
var ICON_SIZE13 = 20;
|
|
34646
35327
|
var CHIP_GAP = 6;
|
|
34647
35328
|
var FALLBACK_ELLIPSIS_WIDTH = 20;
|
|
34648
35329
|
function itemBackground(state) {
|
|
@@ -34715,25 +35396,25 @@ function MultiValueChips({ options, disabled, onRemove }) {
|
|
|
34715
35396
|
const next = Math.ceil(event.nativeEvent.layout.width);
|
|
34716
35397
|
setEllipsisWidth((current) => current === next ? current : next);
|
|
34717
35398
|
};
|
|
34718
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
34719
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { pointerEvents: "none", style:
|
|
35399
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles32.multiValueRoot, children: [
|
|
35400
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { pointerEvents: "none", style: styles32.measureRow, children: [
|
|
34720
35401
|
options.map((option) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
34721
35402
|
reactNative.View,
|
|
34722
35403
|
{
|
|
34723
|
-
style:
|
|
35404
|
+
style: styles32.chip,
|
|
34724
35405
|
onLayout: (event) => handleChipLayout(option.value, event),
|
|
34725
35406
|
children: [
|
|
34726
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
34727
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
35407
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.chipLabel, numberOfLines: 1, children: option.label }),
|
|
35408
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.chipRemove, children: "\xD7" })
|
|
34728
35409
|
]
|
|
34729
35410
|
},
|
|
34730
35411
|
`measure-${option.value}`
|
|
34731
35412
|
)),
|
|
34732
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
35413
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles32.ellipsis, onLayout: handleEllipsisLayout, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.ellipsisText, children: "..." }) })
|
|
34733
35414
|
] }),
|
|
34734
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
34735
|
-
visible.map((option) => /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
34736
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
35415
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles32.chipsRow, onLayout: handleContainerLayout, children: [
|
|
35416
|
+
visible.map((option) => /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles32.chip, children: [
|
|
35417
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.chipLabel, numberOfLines: 1, children: option.label }),
|
|
34737
35418
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
34738
35419
|
reactNative.Pressable,
|
|
34739
35420
|
{
|
|
@@ -34745,11 +35426,11 @@ function MultiValueChips({ options, disabled, onRemove }) {
|
|
|
34745
35426
|
hitSlop: 6,
|
|
34746
35427
|
accessibilityRole: "button",
|
|
34747
35428
|
accessibilityLabel: `Remove ${option.label}`,
|
|
34748
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
35429
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.chipRemove, children: "\xD7" })
|
|
34749
35430
|
}
|
|
34750
35431
|
)
|
|
34751
35432
|
] }, option.value)),
|
|
34752
|
-
hasOverflow ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
35433
|
+
hasOverflow ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles32.ellipsis, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.ellipsisText, children: "..." }) }) : null
|
|
34753
35434
|
] })
|
|
34754
35435
|
] });
|
|
34755
35436
|
}
|
|
@@ -35005,7 +35686,7 @@ var Select = react.forwardRef(
|
|
|
35005
35686
|
setOpen
|
|
35006
35687
|
]);
|
|
35007
35688
|
const leftIconNode = renderStatefulIcon(leftIcon, UserIcon, {
|
|
35008
|
-
size:
|
|
35689
|
+
size: ICON_SIZE13,
|
|
35009
35690
|
color: error ? colors.red : colors.primary
|
|
35010
35691
|
});
|
|
35011
35692
|
const hasLeftIcon = showLeftIcon || leftIcon != null;
|
|
@@ -35020,11 +35701,11 @@ var Select = react.forwardRef(
|
|
|
35020
35701
|
{
|
|
35021
35702
|
...rest,
|
|
35022
35703
|
ref: setRootRef,
|
|
35023
|
-
style: [
|
|
35704
|
+
style: [styles32.root, isOpen && styles32.rootOpen, disabled && styles32.disabled, style],
|
|
35024
35705
|
accessibilityState: { disabled, expanded: isOpen },
|
|
35025
35706
|
children: [
|
|
35026
|
-
showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
35027
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [
|
|
35707
|
+
showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles32.label, { color: labelColor }], children: label }) : null,
|
|
35708
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles32.triggerWrap, isOpen && styles32.triggerWrapOpen], children: [
|
|
35028
35709
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
35029
35710
|
reactNative.Pressable,
|
|
35030
35711
|
{
|
|
@@ -35035,23 +35716,23 @@ var Select = react.forwardRef(
|
|
|
35035
35716
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
35036
35717
|
accessibilityState: { disabled, expanded: isOpen },
|
|
35037
35718
|
style: [
|
|
35038
|
-
|
|
35719
|
+
styles32.trigger,
|
|
35039
35720
|
{
|
|
35040
35721
|
borderColor: triggerBorderColor,
|
|
35041
35722
|
backgroundColor: colors.grey700
|
|
35042
35723
|
}
|
|
35043
35724
|
],
|
|
35044
35725
|
children: [
|
|
35045
|
-
hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
35046
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
35726
|
+
hasLeftIcon ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles32.iconSlot, children: leftIconNode }) : null,
|
|
35727
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles32.triggerContent, children: multiple && hasValue ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
35047
35728
|
MultiValueChips,
|
|
35048
35729
|
{
|
|
35049
35730
|
options: selectedOptions,
|
|
35050
35731
|
disabled,
|
|
35051
35732
|
onRemove: handleRemoveChip
|
|
35052
35733
|
}
|
|
35053
|
-
) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
35054
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [
|
|
35734
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles32.triggerText, { color: triggerTextColor }], numberOfLines: 1, children: multiple ? placeholder : singleLabel }) }),
|
|
35735
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles32.iconSlot, isOpen && styles32.chevronOpen], children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { size: ICON_SIZE13, color: isOpen ? colors.primary : colors.grey100 }) })
|
|
35055
35736
|
]
|
|
35056
35737
|
}
|
|
35057
35738
|
),
|
|
@@ -35059,14 +35740,14 @@ var Select = react.forwardRef(
|
|
|
35059
35740
|
reactNative.View,
|
|
35060
35741
|
{
|
|
35061
35742
|
style: [
|
|
35062
|
-
|
|
35063
|
-
menuAlignEnd ?
|
|
35064
|
-
menuPlaceAbove ?
|
|
35743
|
+
styles32.menu,
|
|
35744
|
+
menuAlignEnd ? styles32.menuAlignEnd : styles32.menuAlignStart,
|
|
35745
|
+
menuPlaceAbove ? styles32.menuAbove : styles32.menuBelow,
|
|
35065
35746
|
menuStyle
|
|
35066
35747
|
],
|
|
35067
35748
|
children: [
|
|
35068
|
-
showSearch ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
35069
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
35749
|
+
showSearch ? /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles32.searchField, children: [
|
|
35750
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles32.iconSlot, children: /* @__PURE__ */ jsxRuntime.jsx(SearchIcon, { size: ICON_SIZE13, color: colors.grey100 }) }),
|
|
35070
35751
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
35071
35752
|
reactNative.TextInput,
|
|
35072
35753
|
{
|
|
@@ -35077,9 +35758,9 @@ var Select = react.forwardRef(
|
|
|
35077
35758
|
placeholder: searchPlaceholder,
|
|
35078
35759
|
placeholderTextColor: colors.grey100,
|
|
35079
35760
|
style: [
|
|
35080
|
-
|
|
35081
|
-
reactNative.Platform.OS === "web" ?
|
|
35082
|
-
reactNative.Platform.OS === "android" ?
|
|
35761
|
+
styles32.searchInput,
|
|
35762
|
+
reactNative.Platform.OS === "web" ? styles32.searchInputWeb : null,
|
|
35763
|
+
reactNative.Platform.OS === "android" ? styles32.searchInputAndroid : null
|
|
35083
35764
|
],
|
|
35084
35765
|
accessibilityLabel: searchPlaceholder
|
|
35085
35766
|
}
|
|
@@ -35088,12 +35769,12 @@ var Select = react.forwardRef(
|
|
|
35088
35769
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
35089
35770
|
reactNative.ScrollView,
|
|
35090
35771
|
{
|
|
35091
|
-
style:
|
|
35092
|
-
contentContainerStyle:
|
|
35772
|
+
style: styles32.optionList,
|
|
35773
|
+
contentContainerStyle: styles32.optionListContent,
|
|
35093
35774
|
keyboardShouldPersistTaps: "handled",
|
|
35094
35775
|
showsVerticalScrollIndicator: false,
|
|
35095
35776
|
children: [
|
|
35096
|
-
loading ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
35777
|
+
loading ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles32.statusRow, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.statusText, children: "Loading..." }) }) : filteredOptions.length === 0 ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles32.statusRow, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.statusText, children: emptyText }) }) : null,
|
|
35097
35778
|
!loading && filteredOptions.map((option) => {
|
|
35098
35779
|
const isSelected = selectedValues.includes(option.value);
|
|
35099
35780
|
const isHovered = hoveredValue === option.value;
|
|
@@ -35110,14 +35791,14 @@ var Select = react.forwardRef(
|
|
|
35110
35791
|
accessibilityRole: multiple ? "checkbox" : "button",
|
|
35111
35792
|
accessibilityState: { selected: isSelected, checked: isSelected, disabled },
|
|
35112
35793
|
style: [
|
|
35113
|
-
|
|
35794
|
+
styles32.item,
|
|
35114
35795
|
{
|
|
35115
35796
|
backgroundColor: itemBackground(visualState)
|
|
35116
35797
|
}
|
|
35117
35798
|
],
|
|
35118
35799
|
children: [
|
|
35119
|
-
multiple ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style:
|
|
35120
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style:
|
|
35800
|
+
multiple ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style: styles32.itemCheckbox, children: /* @__PURE__ */ jsxRuntime.jsx(Checkbox, { value: isSelected, variant: "light" }) }) : null,
|
|
35801
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles32.itemLabel, numberOfLines: 1, children: option.label })
|
|
35121
35802
|
]
|
|
35122
35803
|
},
|
|
35123
35804
|
option.value
|
|
@@ -35130,13 +35811,13 @@ var Select = react.forwardRef(
|
|
|
35130
35811
|
}
|
|
35131
35812
|
) : null
|
|
35132
35813
|
] }),
|
|
35133
|
-
showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
35814
|
+
showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles32.hint, { color: hintColor }], children: hint }) : null
|
|
35134
35815
|
]
|
|
35135
35816
|
}
|
|
35136
35817
|
);
|
|
35137
35818
|
}
|
|
35138
35819
|
);
|
|
35139
|
-
var
|
|
35820
|
+
var styles32 = reactNative.StyleSheet.create({
|
|
35140
35821
|
root: {
|
|
35141
35822
|
width: DEFAULT_WIDTH3,
|
|
35142
35823
|
gap: 8,
|
|
@@ -35226,8 +35907,8 @@ var styles27 = reactNative.StyleSheet.create({
|
|
|
35226
35907
|
lineHeight: 16
|
|
35227
35908
|
},
|
|
35228
35909
|
iconSlot: {
|
|
35229
|
-
width:
|
|
35230
|
-
height:
|
|
35910
|
+
width: ICON_SIZE13,
|
|
35911
|
+
height: ICON_SIZE13,
|
|
35231
35912
|
alignItems: "center",
|
|
35232
35913
|
justifyContent: "center",
|
|
35233
35914
|
flexShrink: 0
|
|
@@ -35421,8 +36102,8 @@ var Textarea = react.forwardRef(function Textarea2({
|
|
|
35421
36102
|
};
|
|
35422
36103
|
useApplyWebClassName(rootRef, className);
|
|
35423
36104
|
useApplyWebClassName(inputRef, inputClassName);
|
|
35424
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [
|
|
35425
|
-
showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Pressable, { disabled, onPress: focusInput, style:
|
|
36105
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ref: rootRef, style: [styles33.root, disabled && styles33.disabled, style], children: [
|
|
36106
|
+
showLabel && label ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Pressable, { disabled, onPress: focusInput, style: styles33.labelPressable, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles33.label, { color: chrome.labelColor }], children: label }) }) : null,
|
|
35426
36107
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
35427
36108
|
reactNative.Pressable,
|
|
35428
36109
|
{
|
|
@@ -35430,12 +36111,12 @@ var Textarea = react.forwardRef(function Textarea2({
|
|
|
35430
36111
|
disabled,
|
|
35431
36112
|
onPress: focusInput,
|
|
35432
36113
|
style: [
|
|
35433
|
-
|
|
36114
|
+
styles33.field,
|
|
35434
36115
|
{
|
|
35435
36116
|
borderColor: chrome.borderColor,
|
|
35436
36117
|
backgroundColor: chrome.backgroundColor
|
|
35437
36118
|
},
|
|
35438
|
-
reactNative.Platform.OS === "web" ?
|
|
36119
|
+
reactNative.Platform.OS === "web" ? styles33.fieldWeb : null,
|
|
35439
36120
|
fieldStyle
|
|
35440
36121
|
],
|
|
35441
36122
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -35464,11 +36145,11 @@ var Textarea = react.forwardRef(function Textarea2({
|
|
|
35464
36145
|
onBlur?.(event);
|
|
35465
36146
|
},
|
|
35466
36147
|
style: [
|
|
35467
|
-
|
|
36148
|
+
styles33.input,
|
|
35468
36149
|
textareaTypography.field,
|
|
35469
36150
|
{ color: chrome.textColor },
|
|
35470
|
-
reactNative.Platform.OS === "web" ?
|
|
35471
|
-
reactNative.Platform.OS === "android" ?
|
|
36151
|
+
reactNative.Platform.OS === "web" ? styles33.inputWeb : null,
|
|
36152
|
+
reactNative.Platform.OS === "android" ? styles33.inputAndroid : null,
|
|
35472
36153
|
inputStyle
|
|
35473
36154
|
],
|
|
35474
36155
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
@@ -35477,10 +36158,10 @@ var Textarea = react.forwardRef(function Textarea2({
|
|
|
35477
36158
|
)
|
|
35478
36159
|
}
|
|
35479
36160
|
),
|
|
35480
|
-
showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
36161
|
+
showHint && hint ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles33.hint, { color: chrome.hintColor }], children: hint }) : null
|
|
35481
36162
|
] });
|
|
35482
36163
|
});
|
|
35483
|
-
var
|
|
36164
|
+
var styles33 = reactNative.StyleSheet.create({
|
|
35484
36165
|
root: {
|
|
35485
36166
|
width: DEFAULT_WIDTH4,
|
|
35486
36167
|
gap: 8,
|
|
@@ -35590,13 +36271,13 @@ var Toggle = react.forwardRef(function Toggle2({
|
|
|
35590
36271
|
accessibilityRole: "switch",
|
|
35591
36272
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
35592
36273
|
accessibilityState: { checked: isActive, disabled },
|
|
35593
|
-
style: [
|
|
36274
|
+
style: [styles34.pressable, disabled && styles34.disabled, style],
|
|
35594
36275
|
children: [
|
|
35595
36276
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
35596
36277
|
reactNative.Animated.View,
|
|
35597
36278
|
{
|
|
35598
36279
|
style: [
|
|
35599
|
-
|
|
36280
|
+
styles34.track,
|
|
35600
36281
|
{
|
|
35601
36282
|
backgroundColor: trackBackgroundColor
|
|
35602
36283
|
}
|
|
@@ -35605,7 +36286,7 @@ var Toggle = react.forwardRef(function Toggle2({
|
|
|
35605
36286
|
reactNative.Animated.View,
|
|
35606
36287
|
{
|
|
35607
36288
|
style: [
|
|
35608
|
-
|
|
36289
|
+
styles34.thumb,
|
|
35609
36290
|
{
|
|
35610
36291
|
transform: [{ translateX: thumbTranslateX }]
|
|
35611
36292
|
}
|
|
@@ -35614,12 +36295,12 @@ var Toggle = react.forwardRef(function Toggle2({
|
|
|
35614
36295
|
)
|
|
35615
36296
|
}
|
|
35616
36297
|
),
|
|
35617
|
-
labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [
|
|
36298
|
+
labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles34.label, labelStyle], children: labelContent }) : labelContent : null
|
|
35618
36299
|
]
|
|
35619
36300
|
}
|
|
35620
36301
|
);
|
|
35621
36302
|
});
|
|
35622
|
-
var
|
|
36303
|
+
var styles34 = reactNative.StyleSheet.create({
|
|
35623
36304
|
pressable: {
|
|
35624
36305
|
flexDirection: "row",
|
|
35625
36306
|
alignItems: "center",
|
|
@@ -35647,7 +36328,7 @@ var styles29 = reactNative.StyleSheet.create({
|
|
|
35647
36328
|
color: colors.white
|
|
35648
36329
|
}
|
|
35649
36330
|
});
|
|
35650
|
-
var
|
|
36331
|
+
var DESKTOP_MIN_WIDTH4 = 1024;
|
|
35651
36332
|
var ToggleRow = react.forwardRef(function ToggleRow2({
|
|
35652
36333
|
label,
|
|
35653
36334
|
value,
|
|
@@ -35663,7 +36344,7 @@ var ToggleRow = react.forwardRef(function ToggleRow2({
|
|
|
35663
36344
|
const containerRef = react.useRef(null);
|
|
35664
36345
|
const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
|
|
35665
36346
|
const { width: viewportWidth } = reactNative.useWindowDimensions();
|
|
35666
|
-
const isDesktop = viewportWidth >=
|
|
36347
|
+
const isDesktop = viewportWidth >= DESKTOP_MIN_WIDTH4;
|
|
35667
36348
|
const labelSize = isDesktop ? 14 : 12;
|
|
35668
36349
|
useApplyWebClassName(containerRef, className);
|
|
35669
36350
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -35672,13 +36353,13 @@ var ToggleRow = react.forwardRef(function ToggleRow2({
|
|
|
35672
36353
|
...rest,
|
|
35673
36354
|
ref: setContainerRef,
|
|
35674
36355
|
style: [
|
|
35675
|
-
|
|
36356
|
+
styles35.root,
|
|
35676
36357
|
{
|
|
35677
36358
|
minHeight: isDesktop ? 65 : 57,
|
|
35678
36359
|
paddingTop: isDesktop ? 20 : 16,
|
|
35679
36360
|
paddingBottom: isDesktop ? 20 : 16
|
|
35680
36361
|
},
|
|
35681
|
-
!showBorder &&
|
|
36362
|
+
!showBorder && styles35.noBorder,
|
|
35682
36363
|
style
|
|
35683
36364
|
],
|
|
35684
36365
|
children: [
|
|
@@ -35686,7 +36367,7 @@ var ToggleRow = react.forwardRef(function ToggleRow2({
|
|
|
35686
36367
|
reactNative.Text,
|
|
35687
36368
|
{
|
|
35688
36369
|
style: [
|
|
35689
|
-
|
|
36370
|
+
styles35.label,
|
|
35690
36371
|
{
|
|
35691
36372
|
fontSize: labelSize,
|
|
35692
36373
|
lineHeight: isDesktop ? 20 : 18,
|
|
@@ -35711,7 +36392,7 @@ var ToggleRow = react.forwardRef(function ToggleRow2({
|
|
|
35711
36392
|
}
|
|
35712
36393
|
);
|
|
35713
36394
|
});
|
|
35714
|
-
var
|
|
36395
|
+
var styles35 = reactNative.StyleSheet.create({
|
|
35715
36396
|
root: {
|
|
35716
36397
|
width: "100%",
|
|
35717
36398
|
flexDirection: "row",
|
|
@@ -35783,21 +36464,21 @@ var RatingInput = react.forwardRef(
|
|
|
35783
36464
|
{
|
|
35784
36465
|
...rest,
|
|
35785
36466
|
ref: setContainerRef,
|
|
35786
|
-
style: [
|
|
36467
|
+
style: [styles36.root, disabled && styles36.disabled, style],
|
|
35787
36468
|
children: [
|
|
35788
|
-
showValue ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: [
|
|
36469
|
+
showValue ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: [styles36.value, valueStyle], children: selectedValue.toFixed(precision) }) : null,
|
|
35789
36470
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
35790
36471
|
reactNative.View,
|
|
35791
36472
|
{
|
|
35792
36473
|
accessibilityRole: readOnly ? "image" : "radiogroup",
|
|
35793
36474
|
accessibilityLabel: resolvedAccessibilityLabel,
|
|
35794
36475
|
accessibilityState: { disabled },
|
|
35795
|
-
style: [
|
|
36476
|
+
style: [styles36.stars, { gap: resolvedStarGap }],
|
|
35796
36477
|
children: Array.from({ length: STAR_COUNT }, (_, index) => {
|
|
35797
36478
|
const starValue = index + 1;
|
|
35798
36479
|
const isSelected = starValue <= selectedStarCount;
|
|
35799
36480
|
const icon = isSelected ? /* @__PURE__ */ jsxRuntime.jsx(StarFilledIcon, { size: iconWidth, height: iconHeight }) : /* @__PURE__ */ jsxRuntime.jsx(StarIcon, { size: iconWidth, height: iconHeight });
|
|
35800
|
-
const itemStyle = [
|
|
36481
|
+
const itemStyle = [styles36.starItem, { width: size, height: size }];
|
|
35801
36482
|
if (readOnly) {
|
|
35802
36483
|
return /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: itemStyle, children: icon }, starValue);
|
|
35803
36484
|
}
|
|
@@ -35823,7 +36504,7 @@ var RatingInput = react.forwardRef(
|
|
|
35823
36504
|
);
|
|
35824
36505
|
}
|
|
35825
36506
|
);
|
|
35826
|
-
var
|
|
36507
|
+
var styles36 = reactNative.StyleSheet.create({
|
|
35827
36508
|
root: {
|
|
35828
36509
|
flexDirection: "row",
|
|
35829
36510
|
alignItems: "center",
|
|
@@ -35887,19 +36568,19 @@ var CommentCard = react.forwardRef(
|
|
|
35887
36568
|
setExpanded(next);
|
|
35888
36569
|
onExpandedChange?.(next);
|
|
35889
36570
|
};
|
|
35890
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...rest, ref: setContainerRef, style: [
|
|
35891
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
35892
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
36571
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { ...rest, ref: setContainerRef, style: [styles37.root, style], children: [
|
|
36572
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles37.header, children: [
|
|
36573
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles37.avatar, children: hasImage ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
35893
36574
|
reactNative.Image,
|
|
35894
36575
|
{
|
|
35895
36576
|
source: { uri: imageUrl ?? void 0 },
|
|
35896
|
-
style:
|
|
36577
|
+
style: styles37.avatarImage,
|
|
35897
36578
|
onError: () => setImageFailed(true)
|
|
35898
36579
|
}
|
|
35899
36580
|
) : /* @__PURE__ */ jsxRuntime.jsx(UserIcon, { size: 20, color: colors.primary }) }),
|
|
35900
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
35901
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style:
|
|
35902
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style:
|
|
36581
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles37.identity, children: [
|
|
36582
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles37.name, children: userName }),
|
|
36583
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { numberOfLines: 1, style: styles37.date, children: date })
|
|
35903
36584
|
] }),
|
|
35904
36585
|
/* @__PURE__ */ jsxRuntime.jsx(RatingInput, { value: rating, readOnly: true, showValue: false, size: 16 })
|
|
35905
36586
|
] }),
|
|
@@ -35907,7 +36588,7 @@ var CommentCard = react.forwardRef(
|
|
|
35907
36588
|
reactNative.Text,
|
|
35908
36589
|
{
|
|
35909
36590
|
numberOfLines: expanded ? void 0 : maxCommentLines,
|
|
35910
|
-
style: [
|
|
36591
|
+
style: [styles37.comment, commentStyle],
|
|
35911
36592
|
children: commentText
|
|
35912
36593
|
}
|
|
35913
36594
|
),
|
|
@@ -35920,14 +36601,14 @@ var CommentCard = react.forwardRef(
|
|
|
35920
36601
|
hitSlop: 6,
|
|
35921
36602
|
onHoverIn: () => setActionHovered(true),
|
|
35922
36603
|
onHoverOut: () => setActionHovered(false),
|
|
35923
|
-
style:
|
|
36604
|
+
style: styles37.action,
|
|
35924
36605
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
35925
36606
|
reactNative.Text,
|
|
35926
36607
|
{
|
|
35927
36608
|
style: [
|
|
35928
|
-
|
|
35929
|
-
expanded &&
|
|
35930
|
-
actionHovered && (expanded ?
|
|
36609
|
+
styles37.actionText,
|
|
36610
|
+
expanded && styles37.closeActionText,
|
|
36611
|
+
actionHovered && (expanded ? styles37.closeActionTextHovered : styles37.openActionTextHovered)
|
|
35931
36612
|
],
|
|
35932
36613
|
children: expanded ? readLessLabel : readMoreLabel
|
|
35933
36614
|
}
|
|
@@ -35937,7 +36618,7 @@ var CommentCard = react.forwardRef(
|
|
|
35937
36618
|
] });
|
|
35938
36619
|
}
|
|
35939
36620
|
);
|
|
35940
|
-
var
|
|
36621
|
+
var styles37 = reactNative.StyleSheet.create({
|
|
35941
36622
|
root: {
|
|
35942
36623
|
width: CARD_WIDTH2,
|
|
35943
36624
|
minHeight: CARD_MIN_HEIGHT,
|
|
@@ -36376,7 +37057,7 @@ var Range = react.forwardRef(function Range2({
|
|
|
36376
37057
|
...rest,
|
|
36377
37058
|
ref: setRootRef,
|
|
36378
37059
|
onLayout,
|
|
36379
|
-
style: [
|
|
37060
|
+
style: [styles38.root, disabled && styles38.disabled, style],
|
|
36380
37061
|
children: [
|
|
36381
37062
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
36382
37063
|
reactNative.Pressable,
|
|
@@ -36390,16 +37071,16 @@ var Range = react.forwardRef(function Range2({
|
|
|
36390
37071
|
updateNearestFromTrack(event.nativeEvent.offsetX);
|
|
36391
37072
|
} : void 0,
|
|
36392
37073
|
onPress: reactNative.Platform.OS === "web" ? void 0 : handleTrackPress,
|
|
36393
|
-
style:
|
|
37074
|
+
style: styles38.sliderPlane,
|
|
36394
37075
|
tabIndex: -1,
|
|
36395
37076
|
children: [
|
|
36396
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style:
|
|
37077
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none", style: styles38.track }),
|
|
36397
37078
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36398
37079
|
reactNative.View,
|
|
36399
37080
|
{
|
|
36400
37081
|
pointerEvents: "none",
|
|
36401
37082
|
style: [
|
|
36402
|
-
|
|
37083
|
+
styles38.activeTrack,
|
|
36403
37084
|
{
|
|
36404
37085
|
left: TRACK_HORIZONTAL_INSET + fromOffset,
|
|
36405
37086
|
width: toOffset - fromOffset + THUMB_SIZE2
|
|
@@ -36441,9 +37122,9 @@ var Range = react.forwardRef(function Range2({
|
|
|
36441
37122
|
onAccessibilityAction: (event) => handleAccessibilityAction(event, effectiveFrom, updateFromInput),
|
|
36442
37123
|
pointerEvents: disabled ? "none" : "auto",
|
|
36443
37124
|
style: [
|
|
36444
|
-
|
|
36445
|
-
reactNative.Platform.OS === "web" &&
|
|
36446
|
-
focusedThumb === "from" && reactNative.Platform.OS === "web" &&
|
|
37125
|
+
styles38.thumb,
|
|
37126
|
+
reactNative.Platform.OS === "web" && styles38.thumbWeb,
|
|
37127
|
+
focusedThumb === "from" && reactNative.Platform.OS === "web" && styles38.thumbFocusedWeb,
|
|
36447
37128
|
{ left: TRACK_HORIZONTAL_INSET + fromOffset }
|
|
36448
37129
|
],
|
|
36449
37130
|
tabIndex: disabled ? -1 : 0
|
|
@@ -36483,9 +37164,9 @@ var Range = react.forwardRef(function Range2({
|
|
|
36483
37164
|
onAccessibilityAction: (event) => handleAccessibilityAction(event, effectiveTo, updateToInput),
|
|
36484
37165
|
pointerEvents: disabled ? "none" : "auto",
|
|
36485
37166
|
style: [
|
|
36486
|
-
|
|
36487
|
-
reactNative.Platform.OS === "web" &&
|
|
36488
|
-
focusedThumb === "to" && reactNative.Platform.OS === "web" &&
|
|
37167
|
+
styles38.thumb,
|
|
37168
|
+
reactNative.Platform.OS === "web" && styles38.thumbWeb,
|
|
37169
|
+
focusedThumb === "to" && reactNative.Platform.OS === "web" && styles38.thumbFocusedWeb,
|
|
36489
37170
|
{ left: TRACK_HORIZONTAL_INSET + toOffset }
|
|
36490
37171
|
],
|
|
36491
37172
|
tabIndex: disabled ? -1 : 0
|
|
@@ -36494,7 +37175,7 @@ var Range = react.forwardRef(function Range2({
|
|
|
36494
37175
|
]
|
|
36495
37176
|
}
|
|
36496
37177
|
),
|
|
36497
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style:
|
|
37178
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles38.inputs, children: [
|
|
36498
37179
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36499
37180
|
RangeInput,
|
|
36500
37181
|
{
|
|
@@ -36545,7 +37226,7 @@ function RangeInput({
|
|
|
36545
37226
|
placeholder,
|
|
36546
37227
|
value
|
|
36547
37228
|
}) {
|
|
36548
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [
|
|
37229
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles38.inputField, focused && styles38.inputFieldFocused], children: [
|
|
36549
37230
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36550
37231
|
reactNative.TextInput,
|
|
36551
37232
|
{
|
|
@@ -36561,15 +37242,15 @@ function RangeInput({
|
|
|
36561
37242
|
placeholder,
|
|
36562
37243
|
placeholderTextColor: colors.grey150,
|
|
36563
37244
|
returnKeyType: "done",
|
|
36564
|
-
style: [
|
|
37245
|
+
style: [styles38.input, reactNative.Platform.OS === "web" && styles38.inputWeb],
|
|
36565
37246
|
tabIndex: disabled ? -1 : void 0,
|
|
36566
37247
|
value
|
|
36567
37248
|
}
|
|
36568
37249
|
),
|
|
36569
|
-
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style:
|
|
37250
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles38.currencySlot, children: /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles38.currency, children: currency }) })
|
|
36570
37251
|
] });
|
|
36571
37252
|
}
|
|
36572
|
-
var
|
|
37253
|
+
var styles38 = reactNative.StyleSheet.create({
|
|
36573
37254
|
root: {
|
|
36574
37255
|
width: DEFAULT_WIDTH5,
|
|
36575
37256
|
gap: 15,
|
|
@@ -36778,6 +37459,7 @@ react-dom/cjs/react-dom.development.js:
|
|
|
36778
37459
|
*)
|
|
36779
37460
|
*/
|
|
36780
37461
|
|
|
37462
|
+
exports.Accordion = Accordion;
|
|
36781
37463
|
exports.AccordionItem = AccordionItem;
|
|
36782
37464
|
exports.AccountHeader = AccountHeader;
|
|
36783
37465
|
exports.AlertTriangleIcon = AlertTriangleIcon;
|
|
@@ -36785,7 +37467,9 @@ exports.Amenity = Amenity;
|
|
|
36785
37467
|
exports.AmenityIcon = AmenityIcon;
|
|
36786
37468
|
exports.AppleIcon = AppleIcon;
|
|
36787
37469
|
exports.AreaExpandIcon = AreaExpandIcon;
|
|
37470
|
+
exports.ArrowLeftIcon = ArrowLeftIcon;
|
|
36788
37471
|
exports.ArrowRightIcon = ArrowRightIcon;
|
|
37472
|
+
exports.AutocompleteInput = AutocompleteInput;
|
|
36789
37473
|
exports.Avatar = Avatar;
|
|
36790
37474
|
exports.AvatarSimple = AvatarSimple;
|
|
36791
37475
|
exports.BRAND_LOGO_COLORS = BRAND_LOGO_COLORS;
|
|
@@ -36818,6 +37502,7 @@ exports.CommentCard = CommentCard;
|
|
|
36818
37502
|
exports.ContactInfoCard = ContactInfoCard;
|
|
36819
37503
|
exports.CopyIcon = CopyIcon;
|
|
36820
37504
|
exports.Counter = Counter;
|
|
37505
|
+
exports.CurrentLocationIcon = CurrentLocationIcon;
|
|
36821
37506
|
exports.DatePicker = DatePicker;
|
|
36822
37507
|
exports.DownloadIcon = DownloadIcon;
|
|
36823
37508
|
exports.EditIcon = EditIcon;
|
|
@@ -36835,6 +37520,8 @@ exports.HelpCircleIcon = HelpCircleIcon;
|
|
|
36835
37520
|
exports.HideIcon = HideIcon;
|
|
36836
37521
|
exports.HomeIcon = HomeIcon;
|
|
36837
37522
|
exports.Icon = Icon;
|
|
37523
|
+
exports.IconStatusBadge = IconStatusBadge;
|
|
37524
|
+
exports.InfoCardV2 = InfoCardV2;
|
|
36838
37525
|
exports.InfoTile = InfoTile;
|
|
36839
37526
|
exports.Input = Input;
|
|
36840
37527
|
exports.InstagramIcon = InstagramIcon;
|
|
@@ -36856,6 +37543,7 @@ exports.MenuItem = MenuItem;
|
|
|
36856
37543
|
exports.MenuLinesIcon = MenuLinesIcon;
|
|
36857
37544
|
exports.MinusIcon = MinusIcon;
|
|
36858
37545
|
exports.Modal = Modal;
|
|
37546
|
+
exports.MoreHorizontalIcon = MoreHorizontalIcon;
|
|
36859
37547
|
exports.NavigateIcon = NavigateIcon;
|
|
36860
37548
|
exports.NoSmokingIcon = NoSmokingIcon;
|
|
36861
37549
|
exports.PaginationDots = PaginationDots;
|
|
@@ -36863,6 +37551,7 @@ exports.PawIcon = PawIcon;
|
|
|
36863
37551
|
exports.PhoneIcon = PhoneIcon;
|
|
36864
37552
|
exports.PlusIcon = PlusIcon;
|
|
36865
37553
|
exports.QrCodeIcon = QrCodeIcon;
|
|
37554
|
+
exports.QuantityInput = QuantityInput;
|
|
36866
37555
|
exports.QuietHoursIcon = QuietHoursIcon;
|
|
36867
37556
|
exports.Range = Range;
|
|
36868
37557
|
exports.RatingInput = RatingInput;
|
|
@@ -36885,6 +37574,7 @@ exports.StatCard = StatCard;
|
|
|
36885
37574
|
exports.StatusBadge = StatusBadge;
|
|
36886
37575
|
exports.StepList = StepList;
|
|
36887
37576
|
exports.StepPager = StepPager;
|
|
37577
|
+
exports.TableViewIcon = TableViewIcon;
|
|
36888
37578
|
exports.Textarea = Textarea;
|
|
36889
37579
|
exports.Toggle = Toggle;
|
|
36890
37580
|
exports.ToggleRow = ToggleRow;
|