@trackunit/react-components 0.1.124 → 0.1.127
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/051071830dacb5a2.svg +36 -0
- package/143a6e982b3d1ec9.svg +59 -0
- package/8df3d27593b5fba4.svg +70 -0
- package/building_error.cjs +181 -0
- package/building_error.js +159 -0
- package/index.cjs +103 -129
- package/index.js +104 -131
- package/package.json +5 -5
- package/road_block.cjs +244 -0
- package/road_block.js +222 -0
- package/src/components/EmptyState/EmptyState.d.ts +29 -0
- package/src/components/EmptyState/EmptyState.variants.d.ts +2 -0
- package/src/components/EmptyState/images/index.d.ts +4 -0
- package/src/components/index.d.ts +1 -0
- package/wall_construction.cjs +308 -0
- package/wall_construction.js +286 -0
package/index.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import React__default, { useRef, useCallback, useEffect, useState, useLayoutEffect, useMemo, createContext, forwardRef, useContext, isValidElement, cloneElement, Children, useReducer,
|
|
3
|
+
import React__default, { useRef, useCallback, useEffect, useState, useLayoutEffect, useMemo, createContext, forwardRef, useContext, isValidElement, cloneElement, memo, Children, useReducer, Component } from 'react';
|
|
4
4
|
import { tw, tws } from '@trackunit/tailwind-styled-components';
|
|
5
5
|
import { cvaMerge } from '@trackunit/css-class-variance-utilities';
|
|
6
6
|
import { HeroIconsArray, heroIconLookup, TrackunitSolidIconsArray, TrackunitOutlineIconsArray, trackunitIconLookup } from '@trackunit/ui-icons';
|
|
7
7
|
import * as ReactDOM from 'react-dom';
|
|
8
8
|
import ReactDOM__default, { createPortal } from 'react-dom';
|
|
9
|
+
import { UNSAFE_NavigationContext } from 'react-router-dom';
|
|
9
10
|
import { color } from '@trackunit/ui-design-tokens';
|
|
10
11
|
|
|
11
12
|
const docs = {
|
|
@@ -59,6 +60,16 @@ function __rest$1(s, e) {
|
|
|
59
60
|
t[p[i]] = s[p[i]];
|
|
60
61
|
}
|
|
61
62
|
return t;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function __awaiter(thisArg, _arguments, P, generator) {
|
|
66
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
67
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
68
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
69
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
70
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
71
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
72
|
+
});
|
|
62
73
|
}
|
|
63
74
|
|
|
64
75
|
const cvaSpinner = cvaMerge([
|
|
@@ -13131,7 +13142,7 @@ function getPreviousMonth(startingMonth, options) {
|
|
|
13131
13142
|
* The Navigation context shares details and methods to navigate the months in DayPicker.
|
|
13132
13143
|
* Access this context from the {@link useNavigation} hook.
|
|
13133
13144
|
*/
|
|
13134
|
-
var NavigationContext
|
|
13145
|
+
var NavigationContext = createContext(undefined);
|
|
13135
13146
|
/** Provides the values for the {@link NavigationContext}. */
|
|
13136
13147
|
function NavigationProvider(props) {
|
|
13137
13148
|
var dayPicker = useDayPicker();
|
|
@@ -13164,7 +13175,7 @@ function NavigationProvider(props) {
|
|
|
13164
13175
|
nextMonth: nextMonth,
|
|
13165
13176
|
isDateDisplayed: isDateDisplayed
|
|
13166
13177
|
};
|
|
13167
|
-
return (React__default.createElement(NavigationContext
|
|
13178
|
+
return (React__default.createElement(NavigationContext.Provider, { value: value }, props.children));
|
|
13168
13179
|
}
|
|
13169
13180
|
/**
|
|
13170
13181
|
* Hook to access the {@link NavigationContextValue}. Use this hook to navigate
|
|
@@ -13173,7 +13184,7 @@ function NavigationProvider(props) {
|
|
|
13173
13184
|
* This hook is meant to be used inside internal or custom components.
|
|
13174
13185
|
*/
|
|
13175
13186
|
function useNavigation() {
|
|
13176
|
-
var context = useContext(NavigationContext
|
|
13187
|
+
var context = useContext(NavigationContext);
|
|
13177
13188
|
if (!context) {
|
|
13178
13189
|
throw new Error('useNavigation must be used within a NavigationProvider');
|
|
13179
13190
|
}
|
|
@@ -18793,6 +18804,93 @@ const Drawer = ({ open, onClose = () => { }, children, disableOverlay = false, p
|
|
|
18793
18804
|
jsx(Fragment, {})) }));
|
|
18794
18805
|
};
|
|
18795
18806
|
|
|
18807
|
+
const cvaSkeletonLine = cvaMerge([
|
|
18808
|
+
"rounded-md",
|
|
18809
|
+
"h-3",
|
|
18810
|
+
"opacity-20",
|
|
18811
|
+
"animate-pulse",
|
|
18812
|
+
"bg-black/50",
|
|
18813
|
+
"bg-auto",
|
|
18814
|
+
"bg-gradient-to-r",
|
|
18815
|
+
"from-black/0",
|
|
18816
|
+
"via-black/50",
|
|
18817
|
+
"to-black/20",
|
|
18818
|
+
]);
|
|
18819
|
+
|
|
18820
|
+
/**
|
|
18821
|
+
* Display placeholder lines before the data gets loaded to reduce load-time frustration.
|
|
18822
|
+
*/
|
|
18823
|
+
const SkeletonLines = memo(({ margin = "10px 0", lines = 1, height, width = "100%", className, dataTestId }) => {
|
|
18824
|
+
const skeletonLines = [];
|
|
18825
|
+
const getWidth = (index) => {
|
|
18826
|
+
if (width instanceof Array) {
|
|
18827
|
+
return width[index] || "100%";
|
|
18828
|
+
}
|
|
18829
|
+
return width;
|
|
18830
|
+
};
|
|
18831
|
+
const getHeight = (index) => {
|
|
18832
|
+
if (height instanceof Array) {
|
|
18833
|
+
return height[index] || "auto";
|
|
18834
|
+
}
|
|
18835
|
+
return height;
|
|
18836
|
+
};
|
|
18837
|
+
for (let i = 0; i < lines; i++) {
|
|
18838
|
+
skeletonLines.push(jsx("div", { "data-testid": dataTestId !== null && dataTestId !== void 0 ? dataTestId : "skeleton-lines", "data-type": "loading-skeleton-line", className: cvaSkeletonLine({ className }), style: { height: getHeight(i), width: getWidth(i), margin: lines > 1 ? margin : "" }, children: lines > 1 && jsx(Fragment, { children: "\u00A0" }) }, i));
|
|
18839
|
+
}
|
|
18840
|
+
// eslint-disable-next-line react/jsx-no-useless-fragment
|
|
18841
|
+
return jsx(Fragment, { children: skeletonLines });
|
|
18842
|
+
});
|
|
18843
|
+
|
|
18844
|
+
const containerStyles = cvaMerge(["flex flex-col items-center gap-5 p-12 text-center justify-center h-full"]);
|
|
18845
|
+
const textStyles = cvaMerge(["flex flex-col items-center gap-2"]);
|
|
18846
|
+
|
|
18847
|
+
var WorkerWithSign = "8df3d27593b5fba4.svg";
|
|
18848
|
+
|
|
18849
|
+
/**
|
|
18850
|
+
* Component representing an empty state.
|
|
18851
|
+
* Use this component when there is no data to display or when an error occurs.
|
|
18852
|
+
*
|
|
18853
|
+
*
|
|
18854
|
+
* @param {EmptyStateProps} props props
|
|
18855
|
+
* @returns {JSX.Element} component
|
|
18856
|
+
* @example
|
|
18857
|
+
* <EmptyState
|
|
18858
|
+
* title="No results found"
|
|
18859
|
+
* description="Try changing your search criteria"
|
|
18860
|
+
* altText="No results found"
|
|
18861
|
+
* image="BUILDING_ERROR"
|
|
18862
|
+
* />
|
|
18863
|
+
*/
|
|
18864
|
+
const EmptyState = ({ title, description, altText, image, customImageSrc, action, loading, dataTestId, className, }) => {
|
|
18865
|
+
const [imageSource, setImageSource] = useState(WorkerWithSign);
|
|
18866
|
+
useEffect(() => {
|
|
18867
|
+
const lazyLoadImage = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
18868
|
+
let importedImage = null;
|
|
18869
|
+
switch (image) {
|
|
18870
|
+
case "WORKER_WITH_SIGN":
|
|
18871
|
+
importedImage = WorkerWithSign;
|
|
18872
|
+
break;
|
|
18873
|
+
case "ROAD_BLOCK":
|
|
18874
|
+
importedImage = (yield import('./road_block.js')).default;
|
|
18875
|
+
break;
|
|
18876
|
+
case "BUILDING_ERROR":
|
|
18877
|
+
importedImage = (yield import('./building_error.js')).default;
|
|
18878
|
+
break;
|
|
18879
|
+
case "WALL_CONSTRUCTION":
|
|
18880
|
+
importedImage = (yield import('./wall_construction.js')).default;
|
|
18881
|
+
break;
|
|
18882
|
+
default:
|
|
18883
|
+
importedImage = WorkerWithSign;
|
|
18884
|
+
}
|
|
18885
|
+
setImageSource(importedImage);
|
|
18886
|
+
});
|
|
18887
|
+
if (!customImageSrc && image) {
|
|
18888
|
+
lazyLoadImage();
|
|
18889
|
+
}
|
|
18890
|
+
}, [customImageSrc, image]);
|
|
18891
|
+
return (jsx("div", { className: `${containerStyles()} ${className}`, "data-testid": dataTestId !== null && dataTestId !== void 0 ? dataTestId : "empty-state", children: loading ? (jsxs(Fragment, { children: [jsx(Spinner, { dataTestId: "spinner", size: "large", centering: "centered" }), jsx(SkeletonLines, { dataTestId: "skeleton-lines", width: 50 })] })) : (jsxs(Fragment, { children: [jsx("img", { src: customImageSrc ? customImageSrc : imageSource, alt: altText }), jsxs("div", { className: textStyles(), children: [jsx(Heading, { variant: "secondary", children: title }), jsx(Text, { align: "center", children: description })] }), action] })) }));
|
|
18892
|
+
};
|
|
18893
|
+
|
|
18796
18894
|
/**
|
|
18797
18895
|
* The external link component is used to link to an external page outside the Trackunit Manager.
|
|
18798
18896
|
*
|
|
@@ -37062,43 +37160,6 @@ const PageHeader = ({ className, dataTestId, action, showLoading, description, l
|
|
|
37062
37160
|
return (jsxs("div", { className: cvaPageHeader({ className: `${className} tu-page-header` }), "data-testid": dataTestId, children: [jsxs("div", { className: cvaPageHeaderHeadingAccessoriesContainer(), "data-testid": dataTestId && `${dataTestId}-heading-container`, children: [jsxs("div", { className: cvaPageHeaderHeadingContainer(), children: [backTo && (jsx(IconButton, { to: backTo, color: "tertiary", variant: "transparent", size: "small", icon: jsx(Icon, { name: "ArrowLeftIcon" }) })), jsx("h1", { className: cvaPageHeaderHeading(), "data-testid": dataTestId && `${dataTestId}-heading`, children: title }), description && !showLoading && (jsx(Tip, { dataTestId: dataTestId && `${dataTestId}-tip`, iconProps: { name: "QuestionMarkCircleIcon" }, link: link, children: description }))] }), tag && !showLoading && jsx(Tag, { dataTestId: dataTestId, children: tag }), showLoading && jsx(Spinner, { dataTestId: dataTestId && `${dataTestId}-spinner`, centering: "vertically" }), action] }), jsx("div", { className: cvaPageHeaderChildContainer(), children: children })] }));
|
|
37063
37161
|
};
|
|
37064
37162
|
|
|
37065
|
-
const cvaSkeletonLine = cvaMerge([
|
|
37066
|
-
"rounded-md",
|
|
37067
|
-
"h-3",
|
|
37068
|
-
"opacity-20",
|
|
37069
|
-
"animate-pulse",
|
|
37070
|
-
"bg-black/50",
|
|
37071
|
-
"bg-auto",
|
|
37072
|
-
"bg-gradient-to-r",
|
|
37073
|
-
"from-black/0",
|
|
37074
|
-
"via-black/50",
|
|
37075
|
-
"to-black/20",
|
|
37076
|
-
]);
|
|
37077
|
-
|
|
37078
|
-
/**
|
|
37079
|
-
* Display placeholder lines before the data gets loaded to reduce load-time frustration.
|
|
37080
|
-
*/
|
|
37081
|
-
const SkeletonLines = memo(({ margin = "10px 0", lines = 1, height, width = "100%", className, dataTestId }) => {
|
|
37082
|
-
const skeletonLines = [];
|
|
37083
|
-
const getWidth = (index) => {
|
|
37084
|
-
if (width instanceof Array) {
|
|
37085
|
-
return width[index] || "100%";
|
|
37086
|
-
}
|
|
37087
|
-
return width;
|
|
37088
|
-
};
|
|
37089
|
-
const getHeight = (index) => {
|
|
37090
|
-
if (height instanceof Array) {
|
|
37091
|
-
return height[index] || "auto";
|
|
37092
|
-
}
|
|
37093
|
-
return height;
|
|
37094
|
-
};
|
|
37095
|
-
for (let i = 0; i < lines; i++) {
|
|
37096
|
-
skeletonLines.push(jsx("div", { "data-testid": dataTestId !== null && dataTestId !== void 0 ? dataTestId : "skeleton-lines", "data-type": "loading-skeleton-line", className: cvaSkeletonLine({ className }), style: { height: getHeight(i), width: getWidth(i), margin: lines > 1 ? margin : "" }, children: lines > 1 && jsx(Fragment, { children: "\u00A0" }) }, i));
|
|
37097
|
-
}
|
|
37098
|
-
// eslint-disable-next-line react/jsx-no-useless-fragment
|
|
37099
|
-
return jsx(Fragment, { children: skeletonLines });
|
|
37100
|
-
});
|
|
37101
|
-
|
|
37102
37163
|
const cvaPagination = cvaMerge(["flex", "items-center", "gap-1"]);
|
|
37103
37164
|
const cvaPaginationText = cvaMerge("whitespace-nowrap");
|
|
37104
37165
|
|
|
@@ -37150,96 +37211,8 @@ const Pagination = ({ previousPage, nextPage, canPreviousPage, canNextPage, page
|
|
|
37150
37211
|
: page !== undefined && pageCount !== undefined && pageCount !== null && page >= pageCount - 1, "data-testid": "next-page", icon: jsx(Icon, { name: "ChevronRightIcon", size: "small" }), size: "small", color: "secondary", variant: "transparent" })] }));
|
|
37151
37212
|
};
|
|
37152
37213
|
|
|
37153
|
-
/**
|
|
37154
|
-
* React Router v6.11.2
|
|
37155
|
-
*
|
|
37156
|
-
* Copyright (c) Remix Software Inc.
|
|
37157
|
-
*
|
|
37158
|
-
* This source code is licensed under the MIT license found in the
|
|
37159
|
-
* LICENSE.md file in the root directory of this source tree.
|
|
37160
|
-
*
|
|
37161
|
-
* @license MIT
|
|
37162
|
-
*/
|
|
37163
|
-
|
|
37164
|
-
const DataRouterContext = /*#__PURE__*/React.createContext(null);
|
|
37165
|
-
|
|
37166
|
-
if (process.env.NODE_ENV !== "production") {
|
|
37167
|
-
DataRouterContext.displayName = "DataRouter";
|
|
37168
|
-
}
|
|
37169
|
-
|
|
37170
|
-
const DataRouterStateContext = /*#__PURE__*/React.createContext(null);
|
|
37171
|
-
|
|
37172
|
-
if (process.env.NODE_ENV !== "production") {
|
|
37173
|
-
DataRouterStateContext.displayName = "DataRouterState";
|
|
37174
|
-
}
|
|
37175
|
-
|
|
37176
|
-
const AwaitContext = /*#__PURE__*/React.createContext(null);
|
|
37177
|
-
|
|
37178
|
-
if (process.env.NODE_ENV !== "production") {
|
|
37179
|
-
AwaitContext.displayName = "Await";
|
|
37180
|
-
}
|
|
37181
|
-
|
|
37182
|
-
const NavigationContext = /*#__PURE__*/React.createContext(null);
|
|
37183
|
-
|
|
37184
|
-
if (process.env.NODE_ENV !== "production") {
|
|
37185
|
-
NavigationContext.displayName = "Navigation";
|
|
37186
|
-
}
|
|
37187
|
-
|
|
37188
|
-
const LocationContext = /*#__PURE__*/React.createContext(null);
|
|
37189
|
-
|
|
37190
|
-
if (process.env.NODE_ENV !== "production") {
|
|
37191
|
-
LocationContext.displayName = "Location";
|
|
37192
|
-
}
|
|
37193
|
-
|
|
37194
|
-
const RouteContext = /*#__PURE__*/React.createContext({
|
|
37195
|
-
outlet: null,
|
|
37196
|
-
matches: [],
|
|
37197
|
-
isDataRoute: false
|
|
37198
|
-
});
|
|
37199
|
-
|
|
37200
|
-
if (process.env.NODE_ENV !== "production") {
|
|
37201
|
-
RouteContext.displayName = "Route";
|
|
37202
|
-
}
|
|
37203
|
-
|
|
37204
|
-
const RouteErrorContext = /*#__PURE__*/React.createContext(null);
|
|
37205
|
-
|
|
37206
|
-
if (process.env.NODE_ENV !== "production") {
|
|
37207
|
-
RouteErrorContext.displayName = "RouteError";
|
|
37208
|
-
}
|
|
37209
|
-
var DataRouterHook;
|
|
37210
|
-
|
|
37211
|
-
(function (DataRouterHook) {
|
|
37212
|
-
DataRouterHook["UseBlocker"] = "useBlocker";
|
|
37213
|
-
DataRouterHook["UseRevalidator"] = "useRevalidator";
|
|
37214
|
-
DataRouterHook["UseNavigateStable"] = "useNavigate";
|
|
37215
|
-
})(DataRouterHook || (DataRouterHook = {}));
|
|
37216
|
-
|
|
37217
|
-
var DataRouterStateHook;
|
|
37218
|
-
|
|
37219
|
-
(function (DataRouterStateHook) {
|
|
37220
|
-
DataRouterStateHook["UseBlocker"] = "useBlocker";
|
|
37221
|
-
DataRouterStateHook["UseLoaderData"] = "useLoaderData";
|
|
37222
|
-
DataRouterStateHook["UseActionData"] = "useActionData";
|
|
37223
|
-
DataRouterStateHook["UseRouteError"] = "useRouteError";
|
|
37224
|
-
DataRouterStateHook["UseNavigation"] = "useNavigation";
|
|
37225
|
-
DataRouterStateHook["UseRouteLoaderData"] = "useRouteLoaderData";
|
|
37226
|
-
DataRouterStateHook["UseMatches"] = "useMatches";
|
|
37227
|
-
DataRouterStateHook["UseRevalidator"] = "useRevalidator";
|
|
37228
|
-
DataRouterStateHook["UseNavigateStable"] = "useNavigate";
|
|
37229
|
-
DataRouterStateHook["UseRouteId"] = "useRouteId";
|
|
37230
|
-
})(DataRouterStateHook || (DataRouterStateHook = {}));
|
|
37231
|
-
var AwaitRenderStatus;
|
|
37232
|
-
|
|
37233
|
-
(function (AwaitRenderStatus) {
|
|
37234
|
-
AwaitRenderStatus[AwaitRenderStatus["pending"] = 0] = "pending";
|
|
37235
|
-
AwaitRenderStatus[AwaitRenderStatus["success"] = 1] = "success";
|
|
37236
|
-
AwaitRenderStatus[AwaitRenderStatus["error"] = 2] = "error";
|
|
37237
|
-
})(AwaitRenderStatus || (AwaitRenderStatus = {}));
|
|
37238
|
-
|
|
37239
|
-
new Promise(() => {});
|
|
37240
|
-
|
|
37241
37214
|
function useConfirmExit(confirmExit, when = true) {
|
|
37242
|
-
const { navigator } = useContext(
|
|
37215
|
+
const { navigator } = useContext(UNSAFE_NavigationContext);
|
|
37243
37216
|
useEffect(() => {
|
|
37244
37217
|
if (!when) {
|
|
37245
37218
|
return;
|
|
@@ -39164,4 +39137,4 @@ const ContentGridArea = tw.article `
|
|
|
39164
39137
|
tu-layout-area-content
|
|
39165
39138
|
`;
|
|
39166
39139
|
|
|
39167
|
-
export { Alert, Badge, Button$1 as Button, Card, CardBody, CardFooter, CardHeader, Collapse, ContentGridArea, CopyableText, DayPicker, DayPickerPopover, DayRangePicker, DensityContainer, Drawer, ExternalLink, FilterListMapLayout, FullWidthRepeatingLayout, GridArea, Heading, Icon, IconButton, Indicator, IntrinsicallyResponsiveGrid, MenuItem, MenuList, MinTopFullContentLayout, Modal, ModalBackdrop, MoreMenu, NavGridArea, PageHeader, Pagination, Popover, PopoverContent, PopoverTitle, PopoverTrigger, Prompt, ROLE_CARD, SectionHeader, Sidebar, SkeletonLines, Spacer, Spinner, StarButton, Tag, Text, Timeline, TimelineElement, Tip, TitleGridArea, TitleNavContentLayout, Tooltip, ValueBar, cvaButton, cvaButtonSpinner, cvaClickable, cvaIconButtonContainer, cvaIndicator, cvaIndicatorIcon, cvaIndicatorIconBackground, cvaIndicatorLabel, cvaIndicatorPing, cvaMenuItem, cvaMenuItemLabel, cvaMenuItemPrefix, cvaMenuItemSuffix, docs, getDevicePixelRatio, getValueBarColorByValue, useClickOutside, useContainerProps, useDebounce, useDevicePixelRatio, useHover, useIsFirstRender, useLocalStorage, useLocalStorageReducer, useModal, usePopoverContext, usePrompt, useResize, useTimeout };
|
|
39140
|
+
export { Alert, Badge, Button$1 as Button, Card, CardBody, CardFooter, CardHeader, Collapse, ContentGridArea, CopyableText, DayPicker, DayPickerPopover, DayRangePicker, DensityContainer, Drawer, EmptyState, ExternalLink, FilterListMapLayout, FullWidthRepeatingLayout, GridArea, Heading, Icon, IconButton, Indicator, IntrinsicallyResponsiveGrid, MenuItem, MenuList, MinTopFullContentLayout, Modal, ModalBackdrop, MoreMenu, NavGridArea, PageHeader, Pagination, Popover, PopoverContent, PopoverTitle, PopoverTrigger, Prompt, ROLE_CARD, SectionHeader, Sidebar, SkeletonLines, Spacer, Spinner, StarButton, Tag, Text, Timeline, TimelineElement, Tip, TitleGridArea, TitleNavContentLayout, Tooltip, ValueBar, cvaButton, cvaButtonSpinner, cvaClickable, cvaIconButtonContainer, cvaIndicator, cvaIndicatorIcon, cvaIndicatorIconBackground, cvaIndicatorLabel, cvaIndicatorPing, cvaMenuItem, cvaMenuItemLabel, cvaMenuItemPrefix, cvaMenuItemSuffix, docs, getDevicePixelRatio, getValueBarColorByValue, useClickOutside, useContainerProps, useDebounce, useDevicePixelRatio, useHover, useIsFirstRender, useLocalStorage, useLocalStorageReducer, useModal, usePopoverContext, usePrompt, useResize, useTimeout };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.127",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@floating-ui/react": "0.22.2",
|
|
11
|
-
"@trackunit/css-class-variance-utilities": "0.0.
|
|
12
|
-
"@trackunit/css-core": "0.0.
|
|
11
|
+
"@trackunit/css-class-variance-utilities": "0.0.7",
|
|
12
|
+
"@trackunit/css-core": "0.0.89",
|
|
13
13
|
"@trackunit/tailwind-styled-components": "0.0.58",
|
|
14
|
-
"@trackunit/ui-design-tokens": "0.0.
|
|
15
|
-
"@trackunit/ui-icons": "0.0.
|
|
14
|
+
"@trackunit/ui-design-tokens": "0.0.73",
|
|
15
|
+
"@trackunit/ui-icons": "0.0.70",
|
|
16
16
|
"date-fns": "2.29.3",
|
|
17
17
|
"lodash": "4.17.21",
|
|
18
18
|
"react": "18.2.0",
|
package/road_block.cjs
ADDED
|
@@ -0,0 +1,244 @@
|
|
|
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 _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34;
|
|
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 SvgRoadBlock = (_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, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
|
+
d: "M100 191.432C144.183 191.432 180 155.615 180 111.432C180 67.2492 144.183 31.432 100 31.432C55.8172 31.432 20 67.2492 20 111.432C20 155.615 55.8172 191.432 100 191.432Z",
|
|
48
|
+
fill: "#F1F5F9"
|
|
49
|
+
})), _path2 || (_path2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
50
|
+
d: "M13 144.432H18",
|
|
51
|
+
stroke: "#334155",
|
|
52
|
+
strokeWidth: 2,
|
|
53
|
+
strokeLinecap: "round",
|
|
54
|
+
strokeLinejoin: "round"
|
|
55
|
+
})), _path3 || (_path3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
56
|
+
d: "M182 144.432H187",
|
|
57
|
+
stroke: "#334155",
|
|
58
|
+
strokeWidth: 2,
|
|
59
|
+
strokeLinecap: "round",
|
|
60
|
+
strokeLinejoin: "round"
|
|
61
|
+
})), _path4 || (_path4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
62
|
+
d: "M27.128 144.432C33.4734 158.44 43.7216 170.322 56.6457 178.656C69.5698 186.99 84.622 191.422 100 191.422C115.378 191.422 130.43 186.99 143.354 178.656C156.278 170.322 166.527 158.44 172.872 144.432H27.128Z",
|
|
63
|
+
fill: "white"
|
|
64
|
+
})), _path5 || (_path5 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
65
|
+
d: "M156.8 167.76L133.648 144.432H62.892L41.506 165.98C48.8464 173.858 57.7025 180.173 67.5431 184.545C77.3838 188.917 88.0061 191.256 98.7729 191.423C109.54 191.589 120.229 189.579 130.2 185.512C140.171 181.446 149.22 175.408 156.8 167.76Z",
|
|
66
|
+
fill: "#E2E8F0"
|
|
67
|
+
})), _path6 || (_path6 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
68
|
+
d: "M156.798 167.76L133.648 144.432H62.892L41.506 165.98",
|
|
69
|
+
stroke: "#334155",
|
|
70
|
+
strokeWidth: 2,
|
|
71
|
+
strokeLinecap: "round",
|
|
72
|
+
strokeLinejoin: "round"
|
|
73
|
+
})), _path7 || (_path7 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
74
|
+
d: "M102.73 153.8L101.8 144.432H94.738L93.81 153.8C93.772 154.183 93.8146 154.57 93.9351 154.935C94.0556 155.301 94.2513 155.637 94.5096 155.922C94.7679 156.207 95.0831 156.435 95.4349 156.591C95.7866 156.747 96.1672 156.828 96.552 156.828H99.988C100.373 156.828 100.753 156.747 101.105 156.591C101.457 156.435 101.772 156.207 102.03 155.922C102.289 155.637 102.484 155.301 102.605 154.935C102.725 154.57 102.768 154.183 102.73 153.8Z",
|
|
75
|
+
fill: "white",
|
|
76
|
+
stroke: "#334155",
|
|
77
|
+
strokeWidth: 2,
|
|
78
|
+
strokeLinecap: "round",
|
|
79
|
+
strokeLinejoin: "round"
|
|
80
|
+
})), _path8 || (_path8 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
81
|
+
d: "M105.186 178.6L103.958 166.2C103.89 165.52 103.572 164.889 103.065 164.431C102.558 163.972 101.899 163.718 101.216 163.718H95.324C94.6405 163.718 93.9815 163.972 93.4748 164.431C92.9681 164.889 92.6499 165.52 92.582 166.2L91.354 178.6C91.316 178.983 91.3586 179.37 91.4791 179.735C91.5996 180.101 91.7953 180.437 92.0536 180.722C92.3119 181.007 92.6271 181.235 92.9789 181.391C93.3306 181.547 93.7112 181.628 94.096 181.628H102.444C102.829 181.628 103.209 181.547 103.561 181.391C103.913 181.235 104.228 181.007 104.486 180.722C104.745 180.437 104.94 180.101 105.061 179.735C105.181 179.37 105.224 178.983 105.186 178.6Z",
|
|
82
|
+
fill: "white",
|
|
83
|
+
stroke: "#334155",
|
|
84
|
+
strokeWidth: 2,
|
|
85
|
+
strokeLinecap: "round",
|
|
86
|
+
strokeLinejoin: "round"
|
|
87
|
+
})), _path9 || (_path9 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
88
|
+
d: "M162 59.33H154V144.432H162V59.33Z",
|
|
89
|
+
fill: "white"
|
|
90
|
+
})), _path10 || (_path10 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
91
|
+
d: "M162 59.33H154V144.432H162V59.33Z",
|
|
92
|
+
stroke: "#334155",
|
|
93
|
+
strokeWidth: 2,
|
|
94
|
+
strokeLinecap: "round",
|
|
95
|
+
strokeLinejoin: "round"
|
|
96
|
+
})), _path11 || (_path11 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
97
|
+
d: "M133.916 61.33C133.258 61.3313 132.611 61.1617 132.038 60.8378C131.466 60.514 130.987 60.047 130.649 59.4825C130.311 58.9181 130.125 58.2755 130.11 57.6177C130.094 56.9599 130.25 56.3095 130.562 55.73L154.644 10.582C154.968 9.97276 155.451 9.46311 156.042 9.10769C156.633 8.75226 157.31 8.56448 158 8.56448C158.69 8.56448 159.367 8.75226 159.958 9.10769C160.549 9.46311 161.032 9.97276 161.356 10.582L185.438 55.738C185.75 56.3175 185.906 56.9679 185.89 57.6257C185.875 58.2835 185.689 58.9261 185.351 59.4905C185.013 60.055 184.534 60.522 183.962 60.8458C183.389 61.1697 182.742 61.3393 182.084 61.338L133.916 61.33Z",
|
|
98
|
+
fill: "#E2E8F0"
|
|
99
|
+
})), _path12 || (_path12 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
100
|
+
d: "M158.9 43.4C158.848 43.5992 158.732 43.7756 158.569 43.9015C158.406 44.0274 158.206 44.0957 158 44.0957C157.794 44.0957 157.594 44.0274 157.431 43.9015C157.268 43.7756 157.152 43.5992 157.1 43.4C153.464 29.062 153.616 29.708 153.602 29.564C153.544 28.9509 153.614 28.3324 153.808 27.7481C154.003 27.1637 154.317 26.6265 154.731 26.1708C155.146 25.7151 155.651 25.351 156.214 25.1018C156.777 24.8527 157.386 24.724 158.002 24.724C158.618 24.724 159.227 24.8527 159.79 25.1018C160.353 25.351 160.858 25.7151 161.273 26.1708C161.687 26.6265 162.001 27.1637 162.196 27.7481C162.39 28.3324 162.461 28.9509 162.402 29.564C162.386 29.702 162.54 29.052 158.9 43.4Z",
|
|
101
|
+
fill: "white",
|
|
102
|
+
stroke: "#334155",
|
|
103
|
+
strokeWidth: 2,
|
|
104
|
+
strokeLinecap: "round",
|
|
105
|
+
strokeLinejoin: "round"
|
|
106
|
+
})), _path13 || (_path13 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
107
|
+
d: "M158 55.328C157.323 55.3284 156.661 55.128 156.098 54.7523C155.535 54.3765 155.096 53.8422 154.837 53.2169C154.578 52.5917 154.51 51.9036 154.642 51.2396C154.773 50.5757 155.099 49.9658 155.578 49.487C156.056 49.0082 156.666 48.6821 157.33 48.5499C157.994 48.4177 158.682 48.4854 159.307 48.7443C159.932 49.0032 160.467 49.4419 160.843 50.0046C161.219 50.5674 161.42 51.2291 161.42 51.906C161.419 52.8131 161.059 53.6829 160.418 54.3244C159.777 54.966 158.907 55.3269 158 55.328Z",
|
|
108
|
+
fill: "white",
|
|
109
|
+
stroke: "#334155",
|
|
110
|
+
strokeWidth: 2,
|
|
111
|
+
strokeLinecap: "round",
|
|
112
|
+
strokeLinejoin: "round"
|
|
113
|
+
})), _path14 || (_path14 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
114
|
+
d: "M133.916 61.33C133.258 61.3313 132.611 61.1617 132.038 60.8378C131.466 60.514 130.987 60.047 130.649 59.4825C130.311 58.9181 130.125 58.2755 130.11 57.6177C130.094 56.9599 130.25 56.3095 130.562 55.73L154.644 10.582C154.968 9.97276 155.451 9.46311 156.042 9.10769C156.633 8.75226 157.31 8.56448 158 8.56448C158.69 8.56448 159.367 8.75226 159.958 9.10769C160.549 9.46311 161.032 9.97276 161.356 10.582L185.438 55.738C185.75 56.3175 185.906 56.9679 185.89 57.6257C185.875 58.2835 185.689 58.9261 185.351 59.4905C185.013 60.055 184.534 60.522 183.962 60.8458C183.389 61.1697 182.742 61.3393 182.084 61.338L133.916 61.33Z",
|
|
115
|
+
stroke: "#334155",
|
|
116
|
+
strokeWidth: 2,
|
|
117
|
+
strokeLinecap: "round",
|
|
118
|
+
strokeLinejoin: "round"
|
|
119
|
+
})), _path15 || (_path15 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
120
|
+
d: "M134.268 110.774H125.27V144.432H134.268V110.774Z",
|
|
121
|
+
fill: "#E2E8F0"
|
|
122
|
+
})), _path16 || (_path16 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
123
|
+
d: "M140.278 110.774H56.262C55.8692 110.776 55.4797 110.701 55.1161 110.552C54.7525 110.403 54.4218 110.184 54.1431 109.907C53.8643 109.63 53.643 109.301 53.4918 108.938C53.3406 108.576 53.2625 108.187 53.262 107.794V99.412C53.2625 99.0191 53.3406 98.6302 53.4918 98.2676C53.643 97.905 53.8643 97.5758 54.1431 97.2989C54.4218 97.022 54.7525 96.8029 55.1161 96.6541C55.4797 96.5054 55.8692 96.4299 56.262 96.432H140.278C140.671 96.4299 141.06 96.5054 141.424 96.6541C141.788 96.8029 142.118 97.022 142.397 97.2989C142.676 97.5758 142.897 97.905 143.048 98.2676C143.199 98.6302 143.278 99.0191 143.278 99.412V107.8C143.277 108.192 143.198 108.581 143.046 108.943C142.895 109.304 142.673 109.633 142.395 109.909C142.116 110.185 141.786 110.404 141.423 110.552C141.059 110.701 140.67 110.776 140.278 110.774Z",
|
|
124
|
+
fill: "white",
|
|
125
|
+
stroke: "#334155",
|
|
126
|
+
strokeWidth: 2,
|
|
127
|
+
strokeLinecap: "round",
|
|
128
|
+
strokeLinejoin: "round"
|
|
129
|
+
})), _path17 || (_path17 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
130
|
+
d: "M71.268 110.774H62.27V144.432H71.268V110.774Z",
|
|
131
|
+
fill: "#E2E8F0"
|
|
132
|
+
})), _path18 || (_path18 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
133
|
+
d: "M71.268 110.774H62.27V144.432H71.268V110.774Z",
|
|
134
|
+
stroke: "#334155",
|
|
135
|
+
strokeWidth: 2,
|
|
136
|
+
strokeLinecap: "round",
|
|
137
|
+
strokeLinejoin: "round"
|
|
138
|
+
})), _path19 || (_path19 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
139
|
+
d: "M134.268 110.774H125.27V144.432H134.268V110.774Z",
|
|
140
|
+
stroke: "#334155",
|
|
141
|
+
strokeWidth: 2,
|
|
142
|
+
strokeLinecap: "round",
|
|
143
|
+
strokeLinejoin: "round"
|
|
144
|
+
})), _path20 || (_path20 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
145
|
+
d: "M125.27 125.116H71.268V134.078H125.27V125.116Z",
|
|
146
|
+
fill: "white",
|
|
147
|
+
stroke: "#334155",
|
|
148
|
+
strokeWidth: 2,
|
|
149
|
+
strokeLinecap: "round",
|
|
150
|
+
strokeLinejoin: "round"
|
|
151
|
+
})), _path21 || (_path21 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
152
|
+
d: "M73.068 88.122H62.27V96.432H73.068V88.122Z",
|
|
153
|
+
fill: "#E2E8F0",
|
|
154
|
+
stroke: "#334155",
|
|
155
|
+
strokeWidth: 2,
|
|
156
|
+
strokeLinecap: "round",
|
|
157
|
+
strokeLinejoin: "round"
|
|
158
|
+
})), _path22 || (_path22 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
159
|
+
d: "M67.67 110.774H58.668L65.87 96.432H74.872L67.67 110.774Z",
|
|
160
|
+
fill: "#E2E8F0",
|
|
161
|
+
stroke: "#334155",
|
|
162
|
+
strokeWidth: 2,
|
|
163
|
+
strokeLinecap: "round",
|
|
164
|
+
strokeLinejoin: "round"
|
|
165
|
+
})), _path23 || (_path23 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
166
|
+
d: "M89.268 110.774H80.27L87.468 96.432H96.47L89.268 110.774Z",
|
|
167
|
+
fill: "#E2E8F0",
|
|
168
|
+
stroke: "#334155",
|
|
169
|
+
strokeWidth: 2,
|
|
170
|
+
strokeLinecap: "round",
|
|
171
|
+
strokeLinejoin: "round"
|
|
172
|
+
})), _path24 || (_path24 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
173
|
+
d: "M110.87 110.774H101.868L109.07 96.432H118.068L110.87 110.774Z",
|
|
174
|
+
fill: "#E2E8F0",
|
|
175
|
+
stroke: "#334155",
|
|
176
|
+
strokeWidth: 2,
|
|
177
|
+
strokeLinecap: "round",
|
|
178
|
+
strokeLinejoin: "round"
|
|
179
|
+
})), _path25 || (_path25 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
180
|
+
d: "M132.468 110.774H123.47L130.67 96.432H139.67L132.468 110.774Z",
|
|
181
|
+
fill: "#E2E8F0",
|
|
182
|
+
stroke: "#334155",
|
|
183
|
+
strokeWidth: 2,
|
|
184
|
+
strokeLinecap: "round",
|
|
185
|
+
strokeLinejoin: "round"
|
|
186
|
+
})), _path26 || (_path26 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
187
|
+
d: "M82.07 134.078H74.872L80.27 125.116H87.468L82.07 134.078Z",
|
|
188
|
+
fill: "#E2E8F0",
|
|
189
|
+
stroke: "#334155",
|
|
190
|
+
strokeWidth: 2,
|
|
191
|
+
strokeLinecap: "round",
|
|
192
|
+
strokeLinejoin: "round"
|
|
193
|
+
})), _path27 || (_path27 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
194
|
+
d: "M98.27 134.078H91.068L96.47 125.116H103.668L98.27 134.078Z",
|
|
195
|
+
fill: "#E2E8F0",
|
|
196
|
+
stroke: "#334155",
|
|
197
|
+
strokeWidth: 2,
|
|
198
|
+
strokeLinecap: "round",
|
|
199
|
+
strokeLinejoin: "round"
|
|
200
|
+
})), _path28 || (_path28 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
201
|
+
d: "M114.47 134.078H107.27L112.67 125.116H119.868L114.47 134.078Z",
|
|
202
|
+
fill: "#E2E8F0",
|
|
203
|
+
stroke: "#334155",
|
|
204
|
+
strokeWidth: 2,
|
|
205
|
+
strokeLinecap: "round",
|
|
206
|
+
strokeLinejoin: "round"
|
|
207
|
+
})), _path29 || (_path29 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
208
|
+
d: "M134.268 88.122H123.47V96.432H134.268V88.122Z",
|
|
209
|
+
fill: "#E2E8F0",
|
|
210
|
+
stroke: "#334155",
|
|
211
|
+
strokeWidth: 2,
|
|
212
|
+
strokeLinecap: "round",
|
|
213
|
+
strokeLinejoin: "round"
|
|
214
|
+
})), _path30 || (_path30 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
215
|
+
d: "M137.87 81.508C137.878 83.2896 137.356 85.0334 136.372 86.5184C135.387 88.0035 133.984 89.1629 132.341 89.85C130.697 90.537 128.886 90.7206 127.138 90.3777C125.389 90.0347 123.782 89.1806 122.52 87.9234C121.257 86.6663 120.396 85.0627 120.046 83.3158C119.695 81.569 119.871 79.7574 120.552 78.1107C121.232 76.4639 122.385 75.0561 123.866 74.0655C125.347 73.0748 127.088 72.546 128.87 72.546C131.252 72.5423 133.537 73.4841 135.225 75.1645C136.912 76.8449 137.864 79.1265 137.87 81.508Z",
|
|
216
|
+
fill: "white"
|
|
217
|
+
})), _path31 || (_path31 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
218
|
+
d: "M137.87 81.508C137.878 83.2896 137.356 85.0334 136.372 86.5184C135.387 88.0035 133.984 89.1629 132.341 89.85C130.697 90.537 128.886 90.7206 127.138 90.3777C125.389 90.0347 123.782 89.1806 122.52 87.9234C121.257 86.6663 120.396 85.0627 120.046 83.3158C119.695 81.569 119.871 79.7574 120.552 78.1107C121.232 76.4639 122.385 75.0561 123.866 74.0655C125.347 73.0748 127.088 72.546 128.87 72.546C131.252 72.5423 133.537 73.4841 135.225 75.1645C136.912 76.8449 137.864 79.1265 137.87 81.508Z",
|
|
219
|
+
stroke: "#334155",
|
|
220
|
+
strokeWidth: 2,
|
|
221
|
+
strokeLinecap: "round",
|
|
222
|
+
strokeLinejoin: "round"
|
|
223
|
+
})), _path32 || (_path32 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
224
|
+
d: "M76.67 81.508C76.6775 83.2896 76.1561 85.0334 75.1718 86.5184C74.1874 88.0035 72.7845 89.1629 71.1406 89.85C69.4967 90.537 67.686 90.7206 65.9376 90.3777C64.1893 90.0347 62.5821 89.1805 61.3196 87.9234C60.0571 86.6663 59.1962 85.0627 58.8458 83.3158C58.4955 81.569 58.6715 79.7574 59.3515 78.1107C60.0316 76.4639 61.1851 75.0561 62.666 74.0654C64.1468 73.0748 65.8884 72.546 67.67 72.546C70.0517 72.5417 72.3376 73.4834 74.0253 75.1639C75.7129 76.8444 76.6642 79.1263 76.67 81.508Z",
|
|
225
|
+
fill: "white"
|
|
226
|
+
})), _path33 || (_path33 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
227
|
+
d: "M76.67 81.508C76.6775 83.2896 76.1561 85.0334 75.1718 86.5184C74.1874 88.0035 72.7845 89.1629 71.1406 89.85C69.4967 90.537 67.686 90.7206 65.9376 90.3777C64.1893 90.0347 62.5821 89.1805 61.3196 87.9234C60.0571 86.6663 59.1962 85.0627 58.8458 83.3158C58.4955 81.569 58.6715 79.7574 59.3515 78.1107C60.0316 76.4639 61.1851 75.0561 62.666 74.0654C64.1468 73.0748 65.8884 72.546 67.67 72.546C70.0517 72.5417 72.3376 73.4834 74.0253 75.1639C75.7129 76.8444 76.6642 79.1263 76.67 81.508Z",
|
|
228
|
+
stroke: "#334155",
|
|
229
|
+
strokeWidth: 2,
|
|
230
|
+
strokeLinecap: "round",
|
|
231
|
+
strokeLinejoin: "round"
|
|
232
|
+
})), _path34 || (_path34 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
233
|
+
d: "M22 144.432H178",
|
|
234
|
+
stroke: "#334155",
|
|
235
|
+
strokeWidth: 2,
|
|
236
|
+
strokeLinecap: "round",
|
|
237
|
+
strokeLinejoin: "round"
|
|
238
|
+
})));
|
|
239
|
+
};
|
|
240
|
+
var ForwardRef = /*#__PURE__*/React.forwardRef(SvgRoadBlock);
|
|
241
|
+
var road_block = "051071830dacb5a2.svg";
|
|
242
|
+
|
|
243
|
+
exports.ReactComponent = ForwardRef;
|
|
244
|
+
exports["default"] = road_block;
|