@trackunit/react-components 0.1.196 → 0.1.198
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/index.cjs.js +52 -1
- package/index.esm.js +52 -2
- package/package.json +1 -1
- package/search_document.cjs.js +168 -0
- package/search_document.esm.js +146 -0
- package/src/components/EmptyState/EmptyState.d.ts +1 -1
- package/src/components/EmptyState/images/index.d.ts +1 -0
- package/src/components/Timeline/Timeline.d.ts +1 -2
- package/src/hooks/index.d.ts +1 -0
- package/src/hooks/useGeometry.d.ts +14 -0
package/index.cjs.js
CHANGED
|
@@ -1446,6 +1446,9 @@ const EmptyState = ({ title, description, altText, image, customImageSrc, action
|
|
|
1446
1446
|
case "PHONE_LOCK_SECURITY":
|
|
1447
1447
|
importedImage = (yield Promise.resolve().then(function () { return require('./phone_lock_security.cjs.js'); })).default;
|
|
1448
1448
|
break;
|
|
1449
|
+
case "SEARCH_DOCUMENT":
|
|
1450
|
+
importedImage = (yield Promise.resolve().then(function () { return require('./search_document.cjs.js'); })).default;
|
|
1451
|
+
break;
|
|
1449
1452
|
default:
|
|
1450
1453
|
importedImage = WorkerWithSign;
|
|
1451
1454
|
}
|
|
@@ -2188,7 +2191,7 @@ const Timeline = ({ className, dataTestId, children }) => {
|
|
|
2188
2191
|
* @param {TimeLineElementProps} props the props
|
|
2189
2192
|
* @returns {JSX.Element} component
|
|
2190
2193
|
*/
|
|
2191
|
-
const TimelineElement = ({ date, showTime, children, className, dataTestId = "timeline-date",
|
|
2194
|
+
const TimelineElement = ({ date, showTime, children, className, dataTestId = "timeline-date", dot = jsxRuntime.jsx(Indicator, { className: "mt-[-1px]", color: "neutral", icon: jsxRuntime.jsx(Icon, { name: "Calendar", size: "large" }) }), header = defaultHeader(date, showTime), onClick, }) => {
|
|
2192
2195
|
return (jsxRuntime.jsxs("li", { className: cvaTimelineElement({ className }), "data-date": `${date}`, "data-testid": dataTestId && `${dataTestId}`, onClick: () => onClick && onClick(), children: [jsxRuntime.jsx("div", { className: cvaTimelineDot(), children: dot }), jsxRuntime.jsx("div", { children: header }), jsxRuntime.jsx("div", {}), jsxRuntime.jsx("div", { children: jsxRuntime.jsx("div", { children: children }) })] }));
|
|
2193
2196
|
};
|
|
2194
2197
|
function defaultHeader(date, showTime) {
|
|
@@ -2699,6 +2702,53 @@ function getDevicePixelRatio(options) {
|
|
|
2699
2702
|
return rounded;
|
|
2700
2703
|
}
|
|
2701
2704
|
|
|
2705
|
+
/**
|
|
2706
|
+
* Custom hook to get the geometry of an element.
|
|
2707
|
+
* Size and position of the element relative to the viewport.
|
|
2708
|
+
*/
|
|
2709
|
+
const useGeometry = (ref) => {
|
|
2710
|
+
const [geometry, setGeometry] = React.useState({
|
|
2711
|
+
width: 0,
|
|
2712
|
+
height: 0,
|
|
2713
|
+
top: 0,
|
|
2714
|
+
bottom: 0,
|
|
2715
|
+
left: 0,
|
|
2716
|
+
right: 0,
|
|
2717
|
+
x: 0,
|
|
2718
|
+
y: 0,
|
|
2719
|
+
});
|
|
2720
|
+
const resizeObserver = React.useRef(null);
|
|
2721
|
+
React.useEffect(() => {
|
|
2722
|
+
if (!ref.current) {
|
|
2723
|
+
return;
|
|
2724
|
+
}
|
|
2725
|
+
if (!resizeObserver.current) {
|
|
2726
|
+
resizeObserver.current = new ResizeObserver(entries => {
|
|
2727
|
+
for (const entry of entries) {
|
|
2728
|
+
const rect = entry.target.getBoundingClientRect();
|
|
2729
|
+
setGeometry({
|
|
2730
|
+
width: rect.width,
|
|
2731
|
+
height: rect.height,
|
|
2732
|
+
top: rect.top,
|
|
2733
|
+
bottom: rect.bottom,
|
|
2734
|
+
left: rect.left,
|
|
2735
|
+
right: rect.right,
|
|
2736
|
+
x: rect.x,
|
|
2737
|
+
y: rect.y,
|
|
2738
|
+
});
|
|
2739
|
+
}
|
|
2740
|
+
});
|
|
2741
|
+
}
|
|
2742
|
+
resizeObserver.current.observe(ref.current);
|
|
2743
|
+
return () => {
|
|
2744
|
+
if (resizeObserver.current) {
|
|
2745
|
+
resizeObserver.current.disconnect();
|
|
2746
|
+
}
|
|
2747
|
+
};
|
|
2748
|
+
}, [ref]);
|
|
2749
|
+
return geometry;
|
|
2750
|
+
};
|
|
2751
|
+
|
|
2702
2752
|
/**
|
|
2703
2753
|
* The useHover hook returns a onMouseEnter, onMouseLeave and a boolean indicating whether the element is being hovered.
|
|
2704
2754
|
* The boolean will be true if the element is being hovered, and false if it is not.
|
|
@@ -2903,6 +2953,7 @@ exports.useContainerProps = useContainerProps;
|
|
|
2903
2953
|
exports.useContinuousTimeout = useContinuousTimeout;
|
|
2904
2954
|
exports.useDebounce = useDebounce;
|
|
2905
2955
|
exports.useDevicePixelRatio = useDevicePixelRatio;
|
|
2956
|
+
exports.useGeometry = useGeometry;
|
|
2906
2957
|
exports.useHover = useHover;
|
|
2907
2958
|
exports.useIsFirstRender = useIsFirstRender;
|
|
2908
2959
|
exports.useIsFullscreen = useIsFullscreen;
|
package/index.esm.js
CHANGED
|
@@ -1417,6 +1417,9 @@ const EmptyState = ({ title, description, altText, image, customImageSrc, action
|
|
|
1417
1417
|
case "PHONE_LOCK_SECURITY":
|
|
1418
1418
|
importedImage = (yield import('./phone_lock_security.esm.js')).default;
|
|
1419
1419
|
break;
|
|
1420
|
+
case "SEARCH_DOCUMENT":
|
|
1421
|
+
importedImage = (yield import('./search_document.esm.js')).default;
|
|
1422
|
+
break;
|
|
1420
1423
|
default:
|
|
1421
1424
|
importedImage = WorkerWithSign;
|
|
1422
1425
|
}
|
|
@@ -2159,7 +2162,7 @@ const Timeline = ({ className, dataTestId, children }) => {
|
|
|
2159
2162
|
* @param {TimeLineElementProps} props the props
|
|
2160
2163
|
* @returns {JSX.Element} component
|
|
2161
2164
|
*/
|
|
2162
|
-
const TimelineElement = ({ date, showTime, children, className, dataTestId = "timeline-date",
|
|
2165
|
+
const TimelineElement = ({ date, showTime, children, className, dataTestId = "timeline-date", dot = jsx(Indicator, { className: "mt-[-1px]", color: "neutral", icon: jsx(Icon, { name: "Calendar", size: "large" }) }), header = defaultHeader(date, showTime), onClick, }) => {
|
|
2163
2166
|
return (jsxs("li", { className: cvaTimelineElement({ className }), "data-date": `${date}`, "data-testid": dataTestId && `${dataTestId}`, onClick: () => onClick && onClick(), children: [jsx("div", { className: cvaTimelineDot(), children: dot }), jsx("div", { children: header }), jsx("div", {}), jsx("div", { children: jsx("div", { children: children }) })] }));
|
|
2164
2167
|
};
|
|
2165
2168
|
function defaultHeader(date, showTime) {
|
|
@@ -2670,6 +2673,53 @@ function getDevicePixelRatio(options) {
|
|
|
2670
2673
|
return rounded;
|
|
2671
2674
|
}
|
|
2672
2675
|
|
|
2676
|
+
/**
|
|
2677
|
+
* Custom hook to get the geometry of an element.
|
|
2678
|
+
* Size and position of the element relative to the viewport.
|
|
2679
|
+
*/
|
|
2680
|
+
const useGeometry = (ref) => {
|
|
2681
|
+
const [geometry, setGeometry] = useState({
|
|
2682
|
+
width: 0,
|
|
2683
|
+
height: 0,
|
|
2684
|
+
top: 0,
|
|
2685
|
+
bottom: 0,
|
|
2686
|
+
left: 0,
|
|
2687
|
+
right: 0,
|
|
2688
|
+
x: 0,
|
|
2689
|
+
y: 0,
|
|
2690
|
+
});
|
|
2691
|
+
const resizeObserver = useRef(null);
|
|
2692
|
+
useEffect(() => {
|
|
2693
|
+
if (!ref.current) {
|
|
2694
|
+
return;
|
|
2695
|
+
}
|
|
2696
|
+
if (!resizeObserver.current) {
|
|
2697
|
+
resizeObserver.current = new ResizeObserver(entries => {
|
|
2698
|
+
for (const entry of entries) {
|
|
2699
|
+
const rect = entry.target.getBoundingClientRect();
|
|
2700
|
+
setGeometry({
|
|
2701
|
+
width: rect.width,
|
|
2702
|
+
height: rect.height,
|
|
2703
|
+
top: rect.top,
|
|
2704
|
+
bottom: rect.bottom,
|
|
2705
|
+
left: rect.left,
|
|
2706
|
+
right: rect.right,
|
|
2707
|
+
x: rect.x,
|
|
2708
|
+
y: rect.y,
|
|
2709
|
+
});
|
|
2710
|
+
}
|
|
2711
|
+
});
|
|
2712
|
+
}
|
|
2713
|
+
resizeObserver.current.observe(ref.current);
|
|
2714
|
+
return () => {
|
|
2715
|
+
if (resizeObserver.current) {
|
|
2716
|
+
resizeObserver.current.disconnect();
|
|
2717
|
+
}
|
|
2718
|
+
};
|
|
2719
|
+
}, [ref]);
|
|
2720
|
+
return geometry;
|
|
2721
|
+
};
|
|
2722
|
+
|
|
2673
2723
|
/**
|
|
2674
2724
|
* The useHover hook returns a onMouseEnter, onMouseLeave and a boolean indicating whether the element is being hovered.
|
|
2675
2725
|
* The boolean will be true if the element is being hovered, and false if it is not.
|
|
@@ -2803,4 +2853,4 @@ const useVisibilityChange = ({ onChange, targetState = "hidden" }) => {
|
|
|
2803
2853
|
}, [onChange, targetState]);
|
|
2804
2854
|
};
|
|
2805
2855
|
|
|
2806
|
-
export { Alert, Badge, Button, Card, CardBody, CardFooter, CardHeader, Collapse, CopyableText, DayPicker, DayPickerPopover, DayRangePicker, Drawer, EmptyState, ExternalLink, Heading, Icon, IconButton, Indicator, MenuItem, MenuList, Modal, ModalBackdrop, MoreMenu, PackageNameStoryComponent, PageHeader, Pagination, Popover, PopoverContent, PopoverTitle, PopoverTrigger, Prompt, ROLE_CARD, SectionHeader, Sidebar, SkeletonLines, Spacer, Spinner, StarButton, Tag, Text, Timeline, TimelineElement, Tip, Tooltip, ValueBar, WidgetBody, cvaButton, cvaButtonSpinner, cvaClickable, cvaIconButtonContainer, cvaIndicator, cvaIndicatorIcon, cvaIndicatorIconBackground, cvaIndicatorLabel, cvaIndicatorPing, cvaMenuItem, cvaMenuItemLabel, cvaMenuItemPrefix, cvaMenuItemSuffix, docs, getDevicePixelRatio, getValueBarColorByValue, iconColorNames, iconPalette, setLocalStorage, useClickOutside, useContainerProps, useContinuousTimeout, useDebounce, useDevicePixelRatio, useHover, useIsFirstRender, useIsFullscreen, useIsTextCutOff, useLocalStorage, useLocalStorageReducer, useModal, useOptionallyElevatedState, useOverflowItems, usePopoverContext, usePrompt, useResize, useTimeout, useVisibilityChange };
|
|
2856
|
+
export { Alert, Badge, Button, Card, CardBody, CardFooter, CardHeader, Collapse, CopyableText, DayPicker, DayPickerPopover, DayRangePicker, Drawer, EmptyState, ExternalLink, Heading, Icon, IconButton, Indicator, MenuItem, MenuList, Modal, ModalBackdrop, MoreMenu, PackageNameStoryComponent, PageHeader, Pagination, Popover, PopoverContent, PopoverTitle, PopoverTrigger, Prompt, ROLE_CARD, SectionHeader, Sidebar, SkeletonLines, Spacer, Spinner, StarButton, Tag, Text, Timeline, TimelineElement, Tip, Tooltip, ValueBar, WidgetBody, cvaButton, cvaButtonSpinner, cvaClickable, cvaIconButtonContainer, cvaIndicator, cvaIndicatorIcon, cvaIndicatorIconBackground, cvaIndicatorLabel, cvaIndicatorPing, cvaMenuItem, cvaMenuItemLabel, cvaMenuItemPrefix, cvaMenuItemSuffix, docs, getDevicePixelRatio, getValueBarColorByValue, iconColorNames, iconPalette, setLocalStorage, useClickOutside, useContainerProps, useContinuousTimeout, useDebounce, useDevicePixelRatio, useGeometry, useHover, useIsFirstRender, useIsFullscreen, useIsTextCutOff, useLocalStorage, useLocalStorageReducer, useModal, useOptionallyElevatedState, useOverflowItems, usePopoverContext, usePrompt, useResize, useTimeout, useVisibilityChange };
|
package/package.json
CHANGED
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopNamespace(e) {
|
|
6
|
+
if (e && e.__esModule) return e;
|
|
7
|
+
var n = Object.create(null);
|
|
8
|
+
if (e) {
|
|
9
|
+
Object.keys(e).forEach(function (k) {
|
|
10
|
+
if (k !== 'default') {
|
|
11
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () { return e[k]; }
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
n["default"] = e;
|
|
20
|
+
return Object.freeze(n);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
24
|
+
|
|
25
|
+
var _g, _defs;
|
|
26
|
+
var _excluded = ["title", "titleId"];
|
|
27
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
28
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
29
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
30
|
+
var SvgSearchDocument = (_ref, ref) => {
|
|
31
|
+
var {
|
|
32
|
+
title,
|
|
33
|
+
titleId
|
|
34
|
+
} = _ref,
|
|
35
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
36
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
37
|
+
width: 200,
|
|
38
|
+
height: 200,
|
|
39
|
+
viewBox: "0 0 200 200",
|
|
40
|
+
fill: "none",
|
|
41
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
42
|
+
ref: ref,
|
|
43
|
+
"aria-labelledby": titleId
|
|
44
|
+
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
45
|
+
id: titleId
|
|
46
|
+
}, title) : null, _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
47
|
+
clipPath: "url(#clip0_6094_4003)"
|
|
48
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
49
|
+
d: "M173.477 131.639C190.951 91.0584 172.219 43.9962 131.638 26.5228C91.0573 9.04929 43.995 27.7814 26.5216 68.3622C9.0481 108.943 27.7802 156.005 68.361 173.479C108.942 190.952 156.004 172.22 173.477 131.639Z",
|
|
50
|
+
fill: "#F1F5F9"
|
|
51
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
52
|
+
d: "M89.8199 164.758C103.793 164.758 115.12 163.213 115.12 161.308C115.12 159.403 103.793 157.858 89.8199 157.858C75.8471 157.858 64.5199 159.403 64.5199 161.308C64.5199 163.213 75.8471 164.758 89.8199 164.758Z",
|
|
53
|
+
fill: "#E2E8F0"
|
|
54
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
55
|
+
d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z",
|
|
56
|
+
fill: "white"
|
|
57
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
58
|
+
d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z",
|
|
59
|
+
stroke: "#334155",
|
|
60
|
+
strokeWidth: 2.00125,
|
|
61
|
+
strokeLinecap: "round",
|
|
62
|
+
strokeLinejoin: "round"
|
|
63
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
64
|
+
d: "M130.748 68.93L108.53 46.712V66.152C108.53 66.8887 108.823 67.5953 109.344 68.1163C109.865 68.6373 110.571 68.93 111.308 68.93H130.748Z",
|
|
65
|
+
fill: "#E2E8F0",
|
|
66
|
+
stroke: "#334155",
|
|
67
|
+
strokeWidth: 2.00125,
|
|
68
|
+
strokeLinecap: "round",
|
|
69
|
+
strokeLinejoin: "round"
|
|
70
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
71
|
+
d: "M65.1139 67.412H95.6639",
|
|
72
|
+
stroke: "#334155",
|
|
73
|
+
strokeWidth: 2.00125,
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeLinejoin: "round"
|
|
76
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
77
|
+
d: "M65.1139 80.374H95.6639",
|
|
78
|
+
stroke: "#334155",
|
|
79
|
+
strokeWidth: 2.00125,
|
|
80
|
+
strokeLinecap: "round",
|
|
81
|
+
strokeLinejoin: "round"
|
|
82
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
83
|
+
d: "M65.1139 93.598H116.908",
|
|
84
|
+
stroke: "#334155",
|
|
85
|
+
strokeWidth: 2.00125,
|
|
86
|
+
strokeLinecap: "round",
|
|
87
|
+
strokeLinejoin: "round"
|
|
88
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
89
|
+
d: "M65.1139 106.248H116.908",
|
|
90
|
+
stroke: "#334155",
|
|
91
|
+
strokeWidth: 2.00125,
|
|
92
|
+
strokeLinecap: "round",
|
|
93
|
+
strokeLinejoin: "round"
|
|
94
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
95
|
+
d: "M65.1139 119.474H116.908",
|
|
96
|
+
stroke: "#334155",
|
|
97
|
+
strokeWidth: 2.00125,
|
|
98
|
+
strokeLinecap: "round",
|
|
99
|
+
strokeLinejoin: "round"
|
|
100
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
101
|
+
d: "M65.1139 132.124H116.908",
|
|
102
|
+
stroke: "#334155",
|
|
103
|
+
strokeWidth: 2.00125,
|
|
104
|
+
strokeLinecap: "round",
|
|
105
|
+
strokeLinejoin: "round"
|
|
106
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
107
|
+
d: "M141.73 83.7514L136.792 88.6898L149.139 101.037L154.078 96.0989L141.73 83.7514Z",
|
|
108
|
+
fill: "white",
|
|
109
|
+
stroke: "#334155",
|
|
110
|
+
strokeWidth: 2.00125,
|
|
111
|
+
strokeLinecap: "round",
|
|
112
|
+
strokeLinejoin: "round"
|
|
113
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
114
|
+
d: "M142.966 45.472C147.362 49.8679 150.355 55.4685 151.568 61.5657C152.781 67.6629 152.158 73.9828 149.779 79.7262C147.4 85.4697 143.371 90.3786 138.202 93.8324C133.034 97.2862 126.957 99.1296 120.74 99.1296C114.523 99.1296 108.446 97.2862 103.277 93.8324C98.1083 90.3786 94.0796 85.4697 91.7006 79.7262C89.3215 73.9828 88.699 67.6629 89.9118 61.5657C91.1245 55.4685 94.1181 49.8679 98.5139 45.472C104.409 39.5777 112.404 36.2664 120.74 36.2664C129.076 36.2664 137.071 39.5777 142.966 45.472Z",
|
|
115
|
+
fill: "white",
|
|
116
|
+
stroke: "#334155",
|
|
117
|
+
strokeWidth: 2.00125,
|
|
118
|
+
strokeLinecap: "round",
|
|
119
|
+
strokeLinejoin: "round"
|
|
120
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
121
|
+
d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z",
|
|
122
|
+
fill: "#E2E8F0"
|
|
123
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
124
|
+
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
125
|
+
stroke: "#334155",
|
|
126
|
+
strokeWidth: 2.00125,
|
|
127
|
+
strokeLinecap: "round",
|
|
128
|
+
strokeLinejoin: "round"
|
|
129
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
130
|
+
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
131
|
+
fill: "#E2E8F0"
|
|
132
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
133
|
+
d: "M104.688 83.75C100.431 79.4917 98.0394 73.7166 98.0402 67.6952C98.0409 61.6737 100.434 55.8992 104.692 51.642C108.95 47.3847 114.725 44.9935 120.747 44.9942C126.768 44.995 132.543 47.3877 136.8 51.646L104.688 83.75Z",
|
|
134
|
+
fill: "white"
|
|
135
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
136
|
+
d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z",
|
|
137
|
+
stroke: "#334155",
|
|
138
|
+
strokeWidth: 2.00125,
|
|
139
|
+
strokeLinecap: "round",
|
|
140
|
+
strokeLinejoin: "round"
|
|
141
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
142
|
+
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
143
|
+
stroke: "#334155",
|
|
144
|
+
strokeWidth: 2.00125,
|
|
145
|
+
strokeLinecap: "round",
|
|
146
|
+
strokeLinejoin: "round"
|
|
147
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
148
|
+
d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.955 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z",
|
|
149
|
+
fill: "#E2E8F0"
|
|
150
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
151
|
+
d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.954 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z",
|
|
152
|
+
stroke: "#334155",
|
|
153
|
+
strokeWidth: 2.00125,
|
|
154
|
+
strokeLinecap: "round",
|
|
155
|
+
strokeLinejoin: "round"
|
|
156
|
+
}))), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
157
|
+
id: "clip0_6094_4003"
|
|
158
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
159
|
+
width: 200,
|
|
160
|
+
height: 200,
|
|
161
|
+
fill: "white"
|
|
162
|
+
})))));
|
|
163
|
+
};
|
|
164
|
+
var ForwardRef = /*#__PURE__*/React.forwardRef(SvgSearchDocument);
|
|
165
|
+
var search_document = "data:image/svg+xml,%3Csvg%20width%3D%22200%22%20height%3D%22200%22%20viewBox%3D%220%200%20200%20200%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_6094_4003%29%22%3E%3Cpath%20d%3D%22M173.477%20131.639C190.951%2091.0584%20172.219%2043.9962%20131.638%2026.5228C91.0573%209.04929%2043.995%2027.7814%2026.5216%2068.3622C9.0481%20108.943%2027.7802%20156.005%2068.361%20173.479C108.942%20190.952%20156.004%20172.22%20173.477%20131.639Z%22%20fill%3D%22%23F1F5F9%22%2F%3E%3Cpath%20d%3D%22M89.8199%20164.758C103.793%20164.758%20115.12%20163.213%20115.12%20161.308C115.12%20159.403%20103.793%20157.858%2089.8199%20157.858C75.8471%20157.858%2064.5199%20159.403%2064.5199%20161.308C64.5199%20163.213%2075.8471%20164.758%2089.8199%20164.758Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M52.986%2046.712H108.53L130.748%2068.93V144.296C130.748%20144.661%20130.677%20145.022%20130.537%20145.359C130.398%20145.696%20130.193%20146.002%20129.936%20146.26C129.678%20146.518%20129.372%20146.723%20129.035%20146.862C128.698%20147.002%20128.337%20147.074%20127.972%20147.074H52.986C52.6205%20147.075%2052.2584%20147.004%2051.9204%20146.865C51.5824%20146.726%2051.2752%20146.521%2051.0164%20146.263C50.7576%20146.005%2050.5523%20145.698%2050.4122%20145.361C50.2721%20145.023%2050.2%20144.661%2050.2%20144.296V49.496C50.1992%2049.13%2050.2707%2048.7675%2050.4105%2048.4292C50.5502%2048.0909%2050.7554%2047.7836%2051.0143%2047.5249C51.2732%2047.2662%2051.5807%2047.0612%2051.919%2046.9217C52.2574%2046.7822%2052.62%2046.7109%2052.986%2046.712Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M52.986%2046.712H108.53L130.748%2068.93V144.296C130.748%20144.661%20130.677%20145.022%20130.537%20145.359C130.398%20145.696%20130.193%20146.002%20129.936%20146.26C129.678%20146.518%20129.372%20146.723%20129.035%20146.862C128.698%20147.002%20128.337%20147.074%20127.972%20147.074H52.986C52.6205%20147.075%2052.2584%20147.004%2051.9204%20146.865C51.5824%20146.726%2051.2752%20146.521%2051.0164%20146.263C50.7576%20146.005%2050.5523%20145.698%2050.4122%20145.361C50.2721%20145.023%2050.2%20144.661%2050.2%20144.296V49.496C50.1992%2049.13%2050.2707%2048.7675%2050.4105%2048.4292C50.5502%2048.0909%2050.7554%2047.7836%2051.0143%2047.5249C51.2732%2047.2662%2051.5807%2047.0612%2051.919%2046.9217C52.2574%2046.7822%2052.62%2046.7109%2052.986%2046.712Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M130.748%2068.93L108.53%2046.712V66.152C108.53%2066.8887%20108.823%2067.5953%20109.344%2068.1163C109.865%2068.6373%20110.571%2068.93%20111.308%2068.93H130.748Z%22%20fill%3D%22%23E2E8F0%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%2067.412H95.6639%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%2080.374H95.6639%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%2093.598H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%20106.248H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%20119.474H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%20132.124H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M141.73%2083.7514L136.792%2088.6898L149.139%20101.037L154.078%2096.0989L141.73%2083.7514Z%22%20fill%3D%22white%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M142.966%2045.472C147.362%2049.8679%20150.355%2055.4685%20151.568%2061.5657C152.781%2067.6629%20152.158%2073.9828%20149.779%2079.7262C147.4%2085.4697%20143.371%2090.3786%20138.202%2093.8324C133.034%2097.2862%20126.957%2099.1296%20120.74%2099.1296C114.523%2099.1296%20108.446%2097.2862%20103.277%2093.8324C98.1083%2090.3786%2094.0796%2085.4697%2091.7006%2079.7262C89.3215%2073.9828%2088.699%2067.6629%2089.9118%2061.5657C91.1245%2055.4685%2094.1181%2049.8679%2098.5139%2045.472C104.409%2039.5777%20112.404%2036.2664%20120.74%2036.2664C129.076%2036.2664%20137.071%2039.5777%20142.966%2045.472Z%22%20fill%3D%22white%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M136.8%2051.646C139.974%2054.8207%20142.136%2058.8655%20143.012%2063.2688C143.888%2067.6721%20143.438%2072.2362%20141.72%2076.384C140.002%2080.5318%20137.092%2084.0769%20133.359%2086.5711C129.626%2089.0654%20125.238%2090.3966%20120.748%2090.3966C116.258%2090.3966%20111.87%2089.0654%20108.137%2086.5711C104.404%2084.0769%20101.494%2080.5318%2099.7761%2076.384C98.0579%2072.2362%2097.6083%2067.6721%2098.484%2063.2688C99.3597%2058.8655%20101.522%2054.8207%20104.696%2051.646C106.804%2049.5379%20109.306%2047.8657%20112.061%2046.7248C114.815%2045.5839%20117.767%2044.9966%20120.748%2044.9966C123.729%2044.9966%20126.681%2045.5839%20129.435%2046.7248C132.19%2047.8657%20134.692%2049.5379%20136.8%2051.646Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M133.95%2086.164C130.556%2088.5917%20126.559%2090.0371%20122.398%2090.3415C118.236%2090.6459%20114.071%2089.7975%20110.361%2087.8896C106.65%2085.9816%20103.537%2083.0878%20101.363%2079.5261C99.1895%2075.9644%2098.0396%2071.8726%2098.0396%2067.7C98.0396%2063.5274%2099.1895%2059.4356%20101.363%2055.8739C103.537%2052.3122%20106.65%2049.4184%20110.361%2047.5104C114.071%2045.6024%20118.236%2044.7541%20122.398%2045.0585C126.559%2045.3629%20130.556%2046.8083%20133.95%2049.236V86.164Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M133.95%2086.164C130.556%2088.5917%20126.559%2090.0371%20122.398%2090.3415C118.236%2090.6459%20114.071%2089.7975%20110.361%2087.8896C106.65%2085.9816%20103.537%2083.0878%20101.363%2079.5261C99.1895%2075.9644%2098.0396%2071.8726%2098.0396%2067.7C98.0396%2063.5274%2099.1895%2059.4356%20101.363%2055.8739C103.537%2052.3122%20106.65%2049.4184%20110.361%2047.5104C114.071%2045.6024%20118.236%2044.7541%20122.398%2045.0585C126.559%2045.3629%20130.556%2046.8083%20133.95%2049.236V86.164Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M104.688%2083.75C100.431%2079.4917%2098.0394%2073.7166%2098.0402%2067.6952C98.0409%2061.6737%20100.434%2055.8992%20104.692%2051.642C108.95%2047.3847%20114.725%2044.9935%20120.747%2044.9942C126.768%2044.995%20132.543%2047.3877%20136.8%2051.646L104.688%2083.75Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M136.8%2051.646C139.974%2054.8207%20142.136%2058.8655%20143.012%2063.2688C143.888%2067.6721%20143.438%2072.2362%20141.72%2076.384C140.002%2080.5318%20137.092%2084.0769%20133.359%2086.5711C129.626%2089.0654%20125.238%2090.3966%20120.748%2090.3966C116.258%2090.3966%20111.87%2089.0654%20108.137%2086.5711C104.404%2084.0769%20101.494%2080.5318%2099.7761%2076.384C98.0579%2072.2362%2097.6083%2067.6721%2098.484%2063.2688C99.3597%2058.8655%20101.522%2054.8207%20104.696%2051.646C106.804%2049.5379%20109.306%2047.8657%20112.061%2046.7248C114.815%2045.5839%20117.767%2044.9966%20120.748%2044.9966C123.729%2044.9966%20126.681%2045.5839%20129.435%2046.7248C132.19%2047.8657%20134.692%2049.5379%20136.8%2051.646Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M133.95%2086.164C130.556%2088.5917%20126.559%2090.0371%20122.398%2090.3415C118.236%2090.6459%20114.071%2089.7975%20110.361%2087.8896C106.65%2085.9816%20103.537%2083.0878%20101.363%2079.5261C99.1895%2075.9644%2098.0396%2071.8726%2098.0396%2067.7C98.0396%2063.5274%2099.1895%2059.4356%20101.363%2055.8739C103.537%2052.3122%20106.65%2049.4184%20110.361%2047.5104C114.071%2045.6024%20118.236%2044.7541%20122.398%2045.0585C126.559%2045.3629%20130.556%2046.8083%20133.95%2049.236V86.164Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M175.068%20112.15C176.318%20113.471%20177.004%20115.227%20176.979%20117.045C176.955%20118.863%20176.222%20120.6%20174.937%20121.887C173.651%20123.173%20171.915%20123.908%20170.097%20123.934C168.279%20123.961%20166.522%20123.277%20165.2%20122.028L149.284%20106.112C148.941%20105.77%20148.67%20105.364%20148.485%20104.916C148.299%20104.469%20148.204%20103.99%20148.204%20103.506C148.204%20103.022%20148.299%20102.543%20148.485%20102.095C148.67%20101.648%20148.941%20101.242%20149.284%20100.9L153.95%2096.234C154.292%2095.8916%20154.698%2095.62%20155.145%2095.4346C155.593%2095.2493%20156.072%2095.1539%20156.556%2095.1539C157.04%2095.1539%20157.519%2095.2493%20157.966%2095.4346C158.414%2095.62%20158.82%2095.8916%20159.162%2096.234L175.068%20112.15Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M175.068%20112.15C176.318%20113.471%20177.004%20115.227%20176.979%20117.045C176.954%20118.863%20176.222%20120.6%20174.937%20121.887C173.651%20123.173%20171.915%20123.908%20170.097%20123.934C168.279%20123.961%20166.522%20123.277%20165.2%20122.028L149.284%20106.112C148.941%20105.77%20148.67%20105.364%20148.485%20104.916C148.299%20104.469%20148.204%20103.99%20148.204%20103.506C148.204%20103.022%20148.299%20102.543%20148.485%20102.095C148.67%20101.648%20148.941%20101.242%20149.284%20100.9L153.95%2096.234C154.292%2095.8916%20154.698%2095.62%20155.145%2095.4346C155.593%2095.2493%20156.072%2095.1539%20156.556%2095.1539C157.04%2095.1539%20157.519%2095.2493%20157.966%2095.4346C158.414%2095.62%20158.82%2095.8916%20159.162%2096.234L175.068%20112.15Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_6094_4003%22%3E%3Crect%20width%3D%22200%22%20height%3D%22200%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E";
|
|
166
|
+
|
|
167
|
+
exports.ReactComponent = ForwardRef;
|
|
168
|
+
exports["default"] = search_document;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
|
|
4
|
+
var _g, _defs;
|
|
5
|
+
var _excluded = ["title", "titleId"];
|
|
6
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
7
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9
|
+
var SvgSearchDocument = (_ref, ref) => {
|
|
10
|
+
var {
|
|
11
|
+
title,
|
|
12
|
+
titleId
|
|
13
|
+
} = _ref,
|
|
14
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
16
|
+
width: 200,
|
|
17
|
+
height: 200,
|
|
18
|
+
viewBox: "0 0 200 200",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
21
|
+
ref: ref,
|
|
22
|
+
"aria-labelledby": titleId
|
|
23
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
24
|
+
id: titleId
|
|
25
|
+
}, title) : null, _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#clip0_6094_4003)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M173.477 131.639C190.951 91.0584 172.219 43.9962 131.638 26.5228C91.0573 9.04929 43.995 27.7814 26.5216 68.3622C9.0481 108.943 27.7802 156.005 68.361 173.479C108.942 190.952 156.004 172.22 173.477 131.639Z",
|
|
29
|
+
fill: "#F1F5F9"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M89.8199 164.758C103.793 164.758 115.12 163.213 115.12 161.308C115.12 159.403 103.793 157.858 89.8199 157.858C75.8471 157.858 64.5199 159.403 64.5199 161.308C64.5199 163.213 75.8471 164.758 89.8199 164.758Z",
|
|
32
|
+
fill: "#E2E8F0"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z",
|
|
35
|
+
fill: "white"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z",
|
|
38
|
+
stroke: "#334155",
|
|
39
|
+
strokeWidth: 2.00125,
|
|
40
|
+
strokeLinecap: "round",
|
|
41
|
+
strokeLinejoin: "round"
|
|
42
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
43
|
+
d: "M130.748 68.93L108.53 46.712V66.152C108.53 66.8887 108.823 67.5953 109.344 68.1163C109.865 68.6373 110.571 68.93 111.308 68.93H130.748Z",
|
|
44
|
+
fill: "#E2E8F0",
|
|
45
|
+
stroke: "#334155",
|
|
46
|
+
strokeWidth: 2.00125,
|
|
47
|
+
strokeLinecap: "round",
|
|
48
|
+
strokeLinejoin: "round"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M65.1139 67.412H95.6639",
|
|
51
|
+
stroke: "#334155",
|
|
52
|
+
strokeWidth: 2.00125,
|
|
53
|
+
strokeLinecap: "round",
|
|
54
|
+
strokeLinejoin: "round"
|
|
55
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
56
|
+
d: "M65.1139 80.374H95.6639",
|
|
57
|
+
stroke: "#334155",
|
|
58
|
+
strokeWidth: 2.00125,
|
|
59
|
+
strokeLinecap: "round",
|
|
60
|
+
strokeLinejoin: "round"
|
|
61
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
62
|
+
d: "M65.1139 93.598H116.908",
|
|
63
|
+
stroke: "#334155",
|
|
64
|
+
strokeWidth: 2.00125,
|
|
65
|
+
strokeLinecap: "round",
|
|
66
|
+
strokeLinejoin: "round"
|
|
67
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
68
|
+
d: "M65.1139 106.248H116.908",
|
|
69
|
+
stroke: "#334155",
|
|
70
|
+
strokeWidth: 2.00125,
|
|
71
|
+
strokeLinecap: "round",
|
|
72
|
+
strokeLinejoin: "round"
|
|
73
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
74
|
+
d: "M65.1139 119.474H116.908",
|
|
75
|
+
stroke: "#334155",
|
|
76
|
+
strokeWidth: 2.00125,
|
|
77
|
+
strokeLinecap: "round",
|
|
78
|
+
strokeLinejoin: "round"
|
|
79
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
80
|
+
d: "M65.1139 132.124H116.908",
|
|
81
|
+
stroke: "#334155",
|
|
82
|
+
strokeWidth: 2.00125,
|
|
83
|
+
strokeLinecap: "round",
|
|
84
|
+
strokeLinejoin: "round"
|
|
85
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
86
|
+
d: "M141.73 83.7514L136.792 88.6898L149.139 101.037L154.078 96.0989L141.73 83.7514Z",
|
|
87
|
+
fill: "white",
|
|
88
|
+
stroke: "#334155",
|
|
89
|
+
strokeWidth: 2.00125,
|
|
90
|
+
strokeLinecap: "round",
|
|
91
|
+
strokeLinejoin: "round"
|
|
92
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
93
|
+
d: "M142.966 45.472C147.362 49.8679 150.355 55.4685 151.568 61.5657C152.781 67.6629 152.158 73.9828 149.779 79.7262C147.4 85.4697 143.371 90.3786 138.202 93.8324C133.034 97.2862 126.957 99.1296 120.74 99.1296C114.523 99.1296 108.446 97.2862 103.277 93.8324C98.1083 90.3786 94.0796 85.4697 91.7006 79.7262C89.3215 73.9828 88.699 67.6629 89.9118 61.5657C91.1245 55.4685 94.1181 49.8679 98.5139 45.472C104.409 39.5777 112.404 36.2664 120.74 36.2664C129.076 36.2664 137.071 39.5777 142.966 45.472Z",
|
|
94
|
+
fill: "white",
|
|
95
|
+
stroke: "#334155",
|
|
96
|
+
strokeWidth: 2.00125,
|
|
97
|
+
strokeLinecap: "round",
|
|
98
|
+
strokeLinejoin: "round"
|
|
99
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
100
|
+
d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z",
|
|
101
|
+
fill: "#E2E8F0"
|
|
102
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
103
|
+
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
104
|
+
stroke: "#334155",
|
|
105
|
+
strokeWidth: 2.00125,
|
|
106
|
+
strokeLinecap: "round",
|
|
107
|
+
strokeLinejoin: "round"
|
|
108
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
109
|
+
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
110
|
+
fill: "#E2E8F0"
|
|
111
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
112
|
+
d: "M104.688 83.75C100.431 79.4917 98.0394 73.7166 98.0402 67.6952C98.0409 61.6737 100.434 55.8992 104.692 51.642C108.95 47.3847 114.725 44.9935 120.747 44.9942C126.768 44.995 132.543 47.3877 136.8 51.646L104.688 83.75Z",
|
|
113
|
+
fill: "white"
|
|
114
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
115
|
+
d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z",
|
|
116
|
+
stroke: "#334155",
|
|
117
|
+
strokeWidth: 2.00125,
|
|
118
|
+
strokeLinecap: "round",
|
|
119
|
+
strokeLinejoin: "round"
|
|
120
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
121
|
+
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
122
|
+
stroke: "#334155",
|
|
123
|
+
strokeWidth: 2.00125,
|
|
124
|
+
strokeLinecap: "round",
|
|
125
|
+
strokeLinejoin: "round"
|
|
126
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
127
|
+
d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.955 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z",
|
|
128
|
+
fill: "#E2E8F0"
|
|
129
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
130
|
+
d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.954 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z",
|
|
131
|
+
stroke: "#334155",
|
|
132
|
+
strokeWidth: 2.00125,
|
|
133
|
+
strokeLinecap: "round",
|
|
134
|
+
strokeLinejoin: "round"
|
|
135
|
+
}))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
136
|
+
id: "clip0_6094_4003"
|
|
137
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
138
|
+
width: 200,
|
|
139
|
+
height: 200,
|
|
140
|
+
fill: "white"
|
|
141
|
+
})))));
|
|
142
|
+
};
|
|
143
|
+
var ForwardRef = /*#__PURE__*/forwardRef(SvgSearchDocument);
|
|
144
|
+
var search_document = "data:image/svg+xml,%3Csvg%20width%3D%22200%22%20height%3D%22200%22%20viewBox%3D%220%200%20200%20200%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_6094_4003%29%22%3E%3Cpath%20d%3D%22M173.477%20131.639C190.951%2091.0584%20172.219%2043.9962%20131.638%2026.5228C91.0573%209.04929%2043.995%2027.7814%2026.5216%2068.3622C9.0481%20108.943%2027.7802%20156.005%2068.361%20173.479C108.942%20190.952%20156.004%20172.22%20173.477%20131.639Z%22%20fill%3D%22%23F1F5F9%22%2F%3E%3Cpath%20d%3D%22M89.8199%20164.758C103.793%20164.758%20115.12%20163.213%20115.12%20161.308C115.12%20159.403%20103.793%20157.858%2089.8199%20157.858C75.8471%20157.858%2064.5199%20159.403%2064.5199%20161.308C64.5199%20163.213%2075.8471%20164.758%2089.8199%20164.758Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M52.986%2046.712H108.53L130.748%2068.93V144.296C130.748%20144.661%20130.677%20145.022%20130.537%20145.359C130.398%20145.696%20130.193%20146.002%20129.936%20146.26C129.678%20146.518%20129.372%20146.723%20129.035%20146.862C128.698%20147.002%20128.337%20147.074%20127.972%20147.074H52.986C52.6205%20147.075%2052.2584%20147.004%2051.9204%20146.865C51.5824%20146.726%2051.2752%20146.521%2051.0164%20146.263C50.7576%20146.005%2050.5523%20145.698%2050.4122%20145.361C50.2721%20145.023%2050.2%20144.661%2050.2%20144.296V49.496C50.1992%2049.13%2050.2707%2048.7675%2050.4105%2048.4292C50.5502%2048.0909%2050.7554%2047.7836%2051.0143%2047.5249C51.2732%2047.2662%2051.5807%2047.0612%2051.919%2046.9217C52.2574%2046.7822%2052.62%2046.7109%2052.986%2046.712Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M52.986%2046.712H108.53L130.748%2068.93V144.296C130.748%20144.661%20130.677%20145.022%20130.537%20145.359C130.398%20145.696%20130.193%20146.002%20129.936%20146.26C129.678%20146.518%20129.372%20146.723%20129.035%20146.862C128.698%20147.002%20128.337%20147.074%20127.972%20147.074H52.986C52.6205%20147.075%2052.2584%20147.004%2051.9204%20146.865C51.5824%20146.726%2051.2752%20146.521%2051.0164%20146.263C50.7576%20146.005%2050.5523%20145.698%2050.4122%20145.361C50.2721%20145.023%2050.2%20144.661%2050.2%20144.296V49.496C50.1992%2049.13%2050.2707%2048.7675%2050.4105%2048.4292C50.5502%2048.0909%2050.7554%2047.7836%2051.0143%2047.5249C51.2732%2047.2662%2051.5807%2047.0612%2051.919%2046.9217C52.2574%2046.7822%2052.62%2046.7109%2052.986%2046.712Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M130.748%2068.93L108.53%2046.712V66.152C108.53%2066.8887%20108.823%2067.5953%20109.344%2068.1163C109.865%2068.6373%20110.571%2068.93%20111.308%2068.93H130.748Z%22%20fill%3D%22%23E2E8F0%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%2067.412H95.6639%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%2080.374H95.6639%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%2093.598H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%20106.248H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%20119.474H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M65.1139%20132.124H116.908%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M141.73%2083.7514L136.792%2088.6898L149.139%20101.037L154.078%2096.0989L141.73%2083.7514Z%22%20fill%3D%22white%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M142.966%2045.472C147.362%2049.8679%20150.355%2055.4685%20151.568%2061.5657C152.781%2067.6629%20152.158%2073.9828%20149.779%2079.7262C147.4%2085.4697%20143.371%2090.3786%20138.202%2093.8324C133.034%2097.2862%20126.957%2099.1296%20120.74%2099.1296C114.523%2099.1296%20108.446%2097.2862%20103.277%2093.8324C98.1083%2090.3786%2094.0796%2085.4697%2091.7006%2079.7262C89.3215%2073.9828%2088.699%2067.6629%2089.9118%2061.5657C91.1245%2055.4685%2094.1181%2049.8679%2098.5139%2045.472C104.409%2039.5777%20112.404%2036.2664%20120.74%2036.2664C129.076%2036.2664%20137.071%2039.5777%20142.966%2045.472Z%22%20fill%3D%22white%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M136.8%2051.646C139.974%2054.8207%20142.136%2058.8655%20143.012%2063.2688C143.888%2067.6721%20143.438%2072.2362%20141.72%2076.384C140.002%2080.5318%20137.092%2084.0769%20133.359%2086.5711C129.626%2089.0654%20125.238%2090.3966%20120.748%2090.3966C116.258%2090.3966%20111.87%2089.0654%20108.137%2086.5711C104.404%2084.0769%20101.494%2080.5318%2099.7761%2076.384C98.0579%2072.2362%2097.6083%2067.6721%2098.484%2063.2688C99.3597%2058.8655%20101.522%2054.8207%20104.696%2051.646C106.804%2049.5379%20109.306%2047.8657%20112.061%2046.7248C114.815%2045.5839%20117.767%2044.9966%20120.748%2044.9966C123.729%2044.9966%20126.681%2045.5839%20129.435%2046.7248C132.19%2047.8657%20134.692%2049.5379%20136.8%2051.646Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M133.95%2086.164C130.556%2088.5917%20126.559%2090.0371%20122.398%2090.3415C118.236%2090.6459%20114.071%2089.7975%20110.361%2087.8896C106.65%2085.9816%20103.537%2083.0878%20101.363%2079.5261C99.1895%2075.9644%2098.0396%2071.8726%2098.0396%2067.7C98.0396%2063.5274%2099.1895%2059.4356%20101.363%2055.8739C103.537%2052.3122%20106.65%2049.4184%20110.361%2047.5104C114.071%2045.6024%20118.236%2044.7541%20122.398%2045.0585C126.559%2045.3629%20130.556%2046.8083%20133.95%2049.236V86.164Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M133.95%2086.164C130.556%2088.5917%20126.559%2090.0371%20122.398%2090.3415C118.236%2090.6459%20114.071%2089.7975%20110.361%2087.8896C106.65%2085.9816%20103.537%2083.0878%20101.363%2079.5261C99.1895%2075.9644%2098.0396%2071.8726%2098.0396%2067.7C98.0396%2063.5274%2099.1895%2059.4356%20101.363%2055.8739C103.537%2052.3122%20106.65%2049.4184%20110.361%2047.5104C114.071%2045.6024%20118.236%2044.7541%20122.398%2045.0585C126.559%2045.3629%20130.556%2046.8083%20133.95%2049.236V86.164Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M104.688%2083.75C100.431%2079.4917%2098.0394%2073.7166%2098.0402%2067.6952C98.0409%2061.6737%20100.434%2055.8992%20104.692%2051.642C108.95%2047.3847%20114.725%2044.9935%20120.747%2044.9942C126.768%2044.995%20132.543%2047.3877%20136.8%2051.646L104.688%2083.75Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M136.8%2051.646C139.974%2054.8207%20142.136%2058.8655%20143.012%2063.2688C143.888%2067.6721%20143.438%2072.2362%20141.72%2076.384C140.002%2080.5318%20137.092%2084.0769%20133.359%2086.5711C129.626%2089.0654%20125.238%2090.3966%20120.748%2090.3966C116.258%2090.3966%20111.87%2089.0654%20108.137%2086.5711C104.404%2084.0769%20101.494%2080.5318%2099.7761%2076.384C98.0579%2072.2362%2097.6083%2067.6721%2098.484%2063.2688C99.3597%2058.8655%20101.522%2054.8207%20104.696%2051.646C106.804%2049.5379%20109.306%2047.8657%20112.061%2046.7248C114.815%2045.5839%20117.767%2044.9966%20120.748%2044.9966C123.729%2044.9966%20126.681%2045.5839%20129.435%2046.7248C132.19%2047.8657%20134.692%2049.5379%20136.8%2051.646Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M133.95%2086.164C130.556%2088.5917%20126.559%2090.0371%20122.398%2090.3415C118.236%2090.6459%20114.071%2089.7975%20110.361%2087.8896C106.65%2085.9816%20103.537%2083.0878%20101.363%2079.5261C99.1895%2075.9644%2098.0396%2071.8726%2098.0396%2067.7C98.0396%2063.5274%2099.1895%2059.4356%20101.363%2055.8739C103.537%2052.3122%20106.65%2049.4184%20110.361%2047.5104C114.071%2045.6024%20118.236%2044.7541%20122.398%2045.0585C126.559%2045.3629%20130.556%2046.8083%20133.95%2049.236V86.164Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M175.068%20112.15C176.318%20113.471%20177.004%20115.227%20176.979%20117.045C176.955%20118.863%20176.222%20120.6%20174.937%20121.887C173.651%20123.173%20171.915%20123.908%20170.097%20123.934C168.279%20123.961%20166.522%20123.277%20165.2%20122.028L149.284%20106.112C148.941%20105.77%20148.67%20105.364%20148.485%20104.916C148.299%20104.469%20148.204%20103.99%20148.204%20103.506C148.204%20103.022%20148.299%20102.543%20148.485%20102.095C148.67%20101.648%20148.941%20101.242%20149.284%20100.9L153.95%2096.234C154.292%2095.8916%20154.698%2095.62%20155.145%2095.4346C155.593%2095.2493%20156.072%2095.1539%20156.556%2095.1539C157.04%2095.1539%20157.519%2095.2493%20157.966%2095.4346C158.414%2095.62%20158.82%2095.8916%20159.162%2096.234L175.068%20112.15Z%22%20fill%3D%22%23E2E8F0%22%2F%3E%3Cpath%20d%3D%22M175.068%20112.15C176.318%20113.471%20177.004%20115.227%20176.979%20117.045C176.954%20118.863%20176.222%20120.6%20174.937%20121.887C173.651%20123.173%20171.915%20123.908%20170.097%20123.934C168.279%20123.961%20166.522%20123.277%20165.2%20122.028L149.284%20106.112C148.941%20105.77%20148.67%20105.364%20148.485%20104.916C148.299%20104.469%20148.204%20103.99%20148.204%20103.506C148.204%20103.022%20148.299%20102.543%20148.485%20102.095C148.67%20101.648%20148.941%20101.242%20149.284%20100.9L153.95%2096.234C154.292%2095.8916%20154.698%2095.62%20155.145%2095.4346C155.593%2095.2493%20156.072%2095.1539%20156.556%2095.1539C157.04%2095.1539%20157.519%2095.2493%20157.966%2095.4346C158.414%2095.62%20158.82%2095.8916%20159.162%2096.234L175.068%20112.15Z%22%20stroke%3D%22%23334155%22%20stroke-width%3D%222.00125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_6094_4003%22%3E%3Crect%20width%3D%22200%22%20height%3D%22200%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E";
|
|
145
|
+
|
|
146
|
+
export { ForwardRef as ReactComponent, search_document as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { CommonProps } from "../../common";
|
|
3
|
-
type Image = "WORKER_WITH_SIGN" | "ROAD_BLOCK" | "BUILDING_ERROR" | "WALL_CONSTRUCTION" | "PHONE_LOCK_SECURITY";
|
|
3
|
+
type Image = "WORKER_WITH_SIGN" | "ROAD_BLOCK" | "BUILDING_ERROR" | "WALL_CONSTRUCTION" | "PHONE_LOCK_SECURITY" | "SEARCH_DOCUMENT";
|
|
4
4
|
export interface EmptyStateProps extends CommonProps {
|
|
5
5
|
title?: string;
|
|
6
6
|
description?: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as BuildingError } from "./building_error.svg";
|
|
2
2
|
export { default as RoadBlock } from "./road_block.svg";
|
|
3
|
+
export { default as SearchDocument } from "./search_document.svg";
|
|
3
4
|
export { default as WallConstruction } from "./wall_construction.svg";
|
|
4
5
|
export { default as WorkerWithSign } from "./worker_with_sign.svg";
|
|
@@ -20,7 +20,6 @@ interface TimeLineElementProps extends CommonProps {
|
|
|
20
20
|
children: React.ReactNode;
|
|
21
21
|
dot?: React.ReactNode;
|
|
22
22
|
onClick?: () => void;
|
|
23
|
-
headerClassName?: string;
|
|
24
23
|
}
|
|
25
24
|
/**
|
|
26
25
|
* TimelineElement - entry on a timeline - rendered with an icon on the timeline
|
|
@@ -29,5 +28,5 @@ interface TimeLineElementProps extends CommonProps {
|
|
|
29
28
|
* @param {TimeLineElementProps} props the props
|
|
30
29
|
* @returns {JSX.Element} component
|
|
31
30
|
*/
|
|
32
|
-
export declare const TimelineElement: ({ date, showTime, children, className, dataTestId,
|
|
31
|
+
export declare const TimelineElement: ({ date, showTime, children, className, dataTestId, dot, header, onClick, }: TimeLineElementProps) => JSX.Element;
|
|
33
32
|
export {};
|
package/src/hooks/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from "./useClickOutside";
|
|
|
5
5
|
export * from "./useContinuousTimeout";
|
|
6
6
|
export * from "./useDebounce";
|
|
7
7
|
export * from "./useDevicePixelRatio";
|
|
8
|
+
export * from "./useGeometry";
|
|
8
9
|
export * from "./useHover";
|
|
9
10
|
export * from "./useIsFirstRender";
|
|
10
11
|
export * from "./useIsFullScreen";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Custom hook to get the geometry of an element.
|
|
3
|
+
* Size and position of the element relative to the viewport.
|
|
4
|
+
*/
|
|
5
|
+
export declare const useGeometry: (ref: React.RefObject<HTMLElement>) => {
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
top: number;
|
|
9
|
+
bottom: number;
|
|
10
|
+
left: number;
|
|
11
|
+
right: number;
|
|
12
|
+
x: number;
|
|
13
|
+
y: number;
|
|
14
|
+
};
|