@equinor/amplify-component-lib 10.10.1 → 11.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atoms/hooks/useLocalStorage.d.ts +2 -2
- package/dist/atoms/types/SideBar.d.ts +3 -4
- package/dist/deprecated/ExpandingIconButton/ExpandingIconButton.d.ts +2 -2
- package/dist/molecules/ApplicationIcon/ApplicationIcon.d.ts +1 -1
- package/dist/molecules/ApplicationIcon/ApplicationIcon.js +1 -1
- package/dist/molecules/ApplicationIcon/ApplicationIconCollection.js +1 -1
- package/dist/molecules/ApplicationIcon/Icons/FluidSymphony.js +1 -0
- package/dist/molecules/ApplicationIcon/Icons/ForecastDataInventory.js +1 -0
- package/dist/molecules/Chip/Chip.d.ts +2 -2
- package/dist/molecules/Confetti/Confetti.d.ts +2 -5
- package/dist/molecules/Confetti/Confetti.js +1 -1
- package/dist/molecules/DatePicker/DatePicker.d.ts +3 -3
- package/dist/molecules/DateRangePicker/DateRangePicker.d.ts +3 -3
- package/dist/molecules/Dialog/Dialog.d.ts +2 -2
- package/dist/molecules/Dialog/Dialog.styles.js +1 -1
- package/dist/molecules/EquinorLogo/EquinorLogo.d.ts +2 -2
- package/dist/molecules/FileProgress/FileProgress.js +1 -1
- package/dist/molecules/InputExplanation/InputExplanation.js +9 -0
- package/dist/molecules/ListItem/ListItem.d.ts +2 -2
- package/dist/molecules/OptionalTooltip/OptionalTooltip.d.ts +4 -4
- package/dist/molecules/ProfileAvatar/ProfileAvatar.d.ts +2 -2
- package/dist/molecules/Search/Search.d.ts +5 -2
- package/dist/molecules/Search/Search.js +9 -3
- package/dist/molecules/Select/Select.js +1 -1
- package/dist/molecules/Select/Select.styles.js +23 -19
- package/dist/molecules/Select/Select.types.d.ts +3 -0
- package/dist/molecules/SelectionControls/Checkbox/Checkbox.d.ts +2 -2
- package/dist/molecules/SelectionControls/Radio/Radio.d.ts +2 -2
- package/dist/molecules/SelectionControls/Switch/Switch.d.ts +2 -2
- package/dist/molecules/Skeleton/SkeletonBase/SkeletonBase.d.ts +2 -2
- package/dist/molecules/TextField/TextField.d.ts +3 -1
- package/dist/molecules/TextField/TextField.js +13 -9
- package/dist/organisms/PageTitle/PageTitle.js +1 -1
- package/dist/organisms/ReleaseNote/ReleaseNote.d.ts +3 -3
- package/dist/organisms/SideBar/MenuItem/BasicMenuItem.js +1 -1
- package/dist/organisms/SideBar/MenuItem/CollapsableMenuItem.js +1 -1
- package/dist/organisms/SideBar/MenuItem/MenuItem.d.ts +0 -4
- package/dist/organisms/SideBar/MenuItem/MenuItem.styles.js +3 -3
- package/dist/organisms/SideBar/SideBar.d.ts +2 -2
- package/dist/organisms/Status/MissingAccesses.d.ts +2 -2
- package/dist/organisms/Status/Title.d.ts +2 -2
- package/dist/organisms/Status/collections/BadRequest.d.ts +2 -2
- package/dist/organisms/Status/collections/GenericError.d.ts +2 -2
- package/dist/organisms/Status/collections/MissingPermissions.d.ts +2 -2
- package/dist/organisms/Status/collections/PageNotFound.d.ts +2 -2
- package/dist/organisms/Status/collections/ServerError.d.ts +2 -2
- package/dist/organisms/Template/Template.d.ts +5 -5
- package/dist/organisms/ToggleGroup/ToggleGroup.d.ts +2 -2
- package/dist/organisms/ToggleGroup/ToggleGroupOption.d.ts +2 -2
- package/dist/organisms/TopBar/Account/Account.d.ts +1 -0
- package/dist/organisms/TopBar/Account/Account.js +1 -1
- package/dist/organisms/TopBar/Account/ImpersonateButton.js +1 -1
- package/dist/organisms/TopBar/Account/ImpersonateMenu/Actions.js +1 -1
- package/dist/organisms/TopBar/Account/ImpersonateMenu/ImpersonateMenu.js +1 -1
- package/dist/organisms/TopBar/Actions.d.ts +2 -2
- package/dist/organisms/TopBar/FieldMenu/FieldMenu.d.ts +2 -2
- package/dist/organisms/TopBar/FieldMenu/FieldMenu.js +1 -1
- package/dist/organisms/TopBar/Guidelines/Colorbox.d.ts +3 -3
- package/dist/organisms/TopBar/Notifications/NotificationProvider.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react149 from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/atoms/hooks/useLocalStorage.d.ts
|
|
4
|
-
declare const useLocalStorage: <T>(key: string, defaultState: T, keepAliveMs?: number) => readonly [T,
|
|
4
|
+
declare const useLocalStorage: <T>(key: string, defaultState: T, keepAliveMs?: number) => readonly [T, react149.Dispatch<react149.SetStateAction<T>>, () => void];
|
|
5
5
|
//#endregion
|
|
6
6
|
export { useLocalStorage };
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import { HTMLAttributes } from "react";
|
|
2
2
|
import { IconData } from "@equinor/eds-icons";
|
|
3
|
+
import { LinkProps } from "@tanstack/react-router";
|
|
3
4
|
|
|
4
5
|
//#region src/atoms/types/SideBar.d.ts
|
|
5
|
-
interface SideBarMenuItemBase {
|
|
6
|
+
interface SideBarMenuItemBase extends LinkProps {
|
|
6
7
|
icon: IconData;
|
|
7
8
|
name: string;
|
|
8
|
-
link: string;
|
|
9
9
|
featureUuid?: string;
|
|
10
10
|
}
|
|
11
11
|
type BasicSideBarMenuItem = {
|
|
12
12
|
onClick?: () => void;
|
|
13
|
-
|
|
14
|
-
} & SideBarMenuItemBase & Omit<HTMLAttributes<HTMLAnchorElement>, 'children' | 'href' | 'onClick'>;
|
|
13
|
+
} & SideBarMenuItemBase;
|
|
15
14
|
interface SideBarMenuItemWithItems extends Omit<HTMLAttributes<HTMLButtonElement>, 'children'> {
|
|
16
15
|
icon: IconData;
|
|
17
16
|
name: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react3 from "react";
|
|
2
2
|
import { IconData } from "@equinor/eds-icons";
|
|
3
3
|
|
|
4
4
|
//#region src/deprecated/ExpandingIconButton/ExpandingIconButton.d.ts
|
|
@@ -12,6 +12,6 @@ interface ExpandingIconButtonProps {
|
|
|
12
12
|
/**
|
|
13
13
|
* @deprecated Being deprecated from amplify-component-lib move into app if you want the implementation
|
|
14
14
|
*/
|
|
15
|
-
declare const ExpandingIconButton:
|
|
15
|
+
declare const ExpandingIconButton: react3.ForwardRefExoticComponent<ExpandingIconButtonProps & react3.RefAttributes<HTMLDivElement>>;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { ExpandingIconButton };
|
|
@@ -2,7 +2,7 @@ import { AppIconProps } from "./ApplicationIcon.types.js";
|
|
|
2
2
|
import { ForwardRefExoticComponent, RefAttributes } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/ApplicationIcon/ApplicationIcon.d.ts
|
|
5
|
-
type ApplicationName = 'adca' | 'acquire' | '4dinsight' | 'recap' | 'dasha' | 'forecast-formatter' | 'orca' | 'portal' | 'jsembark' | 'atwork' | 'logging-qualification' | 'pwex' | 'inpress' | 'bravos' | 'premo' | 'sam' | 'subsurface portal';
|
|
5
|
+
type ApplicationName = 'adca' | 'acquire' | '4dinsight' | 'recap' | 'dasha' | 'forecast-formatter' | 'fluid-symphony' | 'fdi' | 'orca' | 'portal' | 'jsembark' | 'atwork' | 'logging-qualification' | 'pwex' | 'inpress' | 'bravos' | 'premo' | 'sam' | 'subsurface portal';
|
|
6
6
|
interface ApplicationIconProps extends Partial<AppIconProps> {
|
|
7
7
|
name: ApplicationName | string;
|
|
8
8
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Acquire as e}from"./Icons/Acquire.js";import{Adca as t}from"./Icons/Adca.js";import{AtWork as n}from"./Icons/Atwork.js";import{Bravos as r}from"./Icons/Bravos.js";import{Dasha as i}from"./Icons/Dasha.js";import{FluxMaps as a}from"./Icons/FluxMaps.js";import{
|
|
1
|
+
import{Acquire as e}from"./Icons/Acquire.js";import{Adca as t}from"./Icons/Adca.js";import{AtWork as n}from"./Icons/Atwork.js";import{Bravos as r}from"./Icons/Bravos.js";import{Dasha as i}from"./Icons/Dasha.js";import{FluxMaps as a}from"./Icons/FluxMaps.js";import{ForecastDataInventory as o}from"./Icons/ForecastDataInventory.js";import{ForecastFormatter as s}from"./Icons/ForecastFormatter.js";import{FourDInsight as c}from"./Icons/FourDInsight.js";import{InPress as l}from"./Icons/InPress.js";import{JsEmbark as u}from"./Icons/JsEmbark.js";import{LoggingQualification as d}from"./Icons/LoggingQualification.js";import{Orca as f}from"./Icons/Orca.js";import{Premo as p}from"./Icons/Premo.js";import{Pwex as m}from"./Icons/Pwex.js";import{Recap as h}from"./Icons/Recap.js";import{Sam as g}from"./Icons/Sam.js";import{SubsurfacePortal as _}from"./Icons/SubsurfacePortal.js";import{Fallback as v}from"./Fallback.js";import{FluidSymphony as y}from"./Icons/FluidSymphony.js";import{forwardRef as b}from"react";import{jsx as x}from"react/jsx-runtime";const S=[{appName:[`adca`],component:t},{appName:[`portal`,`embark`,`jsembark`],component:u},{appName:[`acquire`],component:e},{appName:[`4dinsight`],component:c},{appName:[`dasha`],component:i},{appName:[`forecast formatter`,`Forecast formatter`,`Forecast Formatter`,`forecast-formatter`],component:s},{appName:[`fdi`],component:o},{appName:[`fluid-symphony`,`Fluid Symphony`],component:y},{appName:[`orca`],component:f},{appName:[`logging-qualification`,`logging qualification`,`ltg`],component:d},{appName:[`flux-maps`,`fluxmaps`,`flux maps`],component:a},{appName:[`recap`],component:h},{appName:[`pwex`],component:m},{appName:[`inpress`],component:l},{appName:[`bravos`],component:r},{appName:[`premo`],component:p},{appName:[`sam`],component:g},{appName:[`subsurface portal`],component:_},{appName:[`atwork`],component:n}],C=b(({name:e,size:t=48,iconOnly:n=!1,withHover:r=!1,grayScale:i=!1},a)=>{let o=S.find(t=>t.appName.includes(e.toLowerCase()));return o===void 0?x(v,{size:t,ref:a,iconOnly:n,withHover:r,grayScale:i,name:e}):x(o.component,{size:t,ref:a,iconOnly:n,withHover:r,grayScale:i})});C.displayName=`ApplicationIcon`;export{C as ApplicationIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const e={name:`adca`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M15.6243 15.3453C15.6243 14.8009 15.183 14.3596 14.6386 14.3596C14.0942 14.3596 13.6528 14.8009 13.6528 15.3453C13.6528 15.8897 14.0942 16.3311 14.6386 16.3311C15.183 16.3311 15.6243 15.8897 15.6243 15.3453Z M18.324 16.9745C18.324 16.4301 17.8827 15.9888 17.3383 15.9888C16.7939 15.9888 16.3525 16.4301 16.3525 16.9745C16.3525 17.5189 16.7939 17.9602 17.3383 17.9602C17.8827 17.9602 18.324 17.5189 18.324 16.9745Z M21.5032 17.3604C21.5032 16.816 21.0619 16.3747 20.5175 16.3747C19.9731 16.3747 19.5317 16.816 19.5317 17.3604C19.5317 17.9048 19.9731 18.3461 20.5175 18.3461C21.0619 18.3461 21.5032 17.9048 21.5032 17.3604Z M11.7555 13.5913C12.0941 14.0174 12.714 14.0886 13.1403 13.7501C13.5665 13.4115 13.6377 12.7911 13.2991 12.3649C11.3979 9.97173 9.25118 7.01649 4.5353 7.01649C3.99089 7.01649 3.54956 7.45782 3.54956 8.00222C3.54966 8.54655 3.99095 8.98796 4.5353 8.98796C8.18821 8.98796 9.78903 11.1159 11.7555 13.5913Z`},t={name:`acquire`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M5.73913 18.0228C4.77863 18.0228 4 17.2441 4 16.2836L4 7.96169C4 7.0012 4.77864 6.22256 5.73913 6.22256L13.0026 6.22256V5.19527C13.0026 4.21785 13.8312 3.37775 14.8801 3.49009C15.5869 3.56579 16.7363 3.733 17.7351 4.10058C18.2318 4.28337 18.7638 4.54129 19.1879 4.91859C19.6292 5.31128 20 5.88143 20 6.62683V15.0906C20 15.9371 19.6601 16.6187 19.0891 17.0966C18.5636 17.5364 17.9062 17.7516 17.3176 17.868C16.3651 18.0564 15.2512 18.0393 14.4837 18.0275C14.3205 18.025 14.173 18.0228 14.0461 18.0228H5.73913ZM13.0026 8.30952V12.6454C13.0026 13.682 13.8804 14.4379 14.8375 14.4143C15.5025 14.3979 16.4167 14.4269 17.1315 14.6187C17.4904 14.715 17.7113 14.83 17.8253 14.9274C17.9058 14.9961 17.913 15.0306 17.913 15.0906C17.913 15.3235 17.8437 15.4175 17.7498 15.4961C17.6103 15.6128 17.347 15.7348 16.9126 15.8207C16.2009 15.9615 15.3796 15.9508 14.6127 15.9408C14.4195 15.9383 14.2297 15.9358 14.046 15.9358H6.08696L6.08696 8.30952L13.0026 8.30952Z`},n={name:`dasha`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M11.2207 2.72474C11.6966 2.42509 12.3022 2.42509 12.7781 2.72474L19.355 6.86576C19.78 7.13334 20.0379 7.60037 20.0379 8.10256V15.8974C20.0379 16.3996 19.78 16.8667 19.355 17.1342L12.7781 21.2753C12.3022 21.5749 11.6966 21.5749 11.2207 21.2753L4.64375 17.1342C4.21877 16.8667 3.96094 16.3996 3.96094 15.8974V8.10256C3.96094 7.60037 4.21877 7.13334 4.64375 6.86576L11.2207 2.72474ZM6.88401 10.6675V15.0906L10.5379 17.3911V12.8328L6.88401 10.6675ZM13.4609 12.8328V17.3911L17.1148 15.0906V10.6675L13.4609 12.8328ZM15.7732 8.06477L11.9994 10.3011L8.22557 8.06477L11.9994 5.68865L15.7732 8.06477Z`},r=[{name:`forecastFormatter1`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M5.0697 17.9472V6.11785C5.0697 5.62166 5.47194 5.21942 5.96813 5.21942C6.46432 5.21942 6.86656 5.62166 6.86656 6.11785V17.9472C6.86656 18.4433 6.46432 18.8456 5.96813 18.8456C5.47194 18.8456 5.0697 18.4433 5.0697 17.9472Z`},{name:`forecastFormatter2`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M18.8456 6.11788L18.8456 17.9472C18.8456 18.4434 18.4434 18.8456 17.9472 18.8456C17.451 18.8456 17.0488 18.4434 17.0488 17.9472L17.0488 6.11788C17.0488 5.62169 17.451 5.21945 17.9472 5.21945C18.4434 5.21945 18.8456 5.62169 18.8456 6.11788Z`},{name:`forecastFormatter3`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M9.86139 12.7063C9.86139 13.2025 9.45915 13.6047 8.96296 13.6047C8.46677 13.6047 8.06453 13.2025 8.06453 12.7063L8.06453 6.11785C8.06453 5.62166 8.46677 5.21942 8.96296 5.21942C9.45915 5.21942 9.86139 5.62166 9.86139 6.11785L9.86139 12.7063Z`},{name:`forecastFormatter4`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M14.054 11.3587C14.054 10.8625 14.4563 10.4603 14.9525 10.4603C15.4486 10.4603 15.8509 10.8625 15.8509 11.3587L15.8509 17.9472C15.8509 18.4434 15.4486 18.8456 14.9525 18.8456C14.4563 18.8456 14.054 18.4434 14.054 17.9472L14.054 11.3587Z`},{name:`forecastFormatter5`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M12.8561 6.56706C12.8561 7.06325 12.4539 7.46549 11.9577 7.46549C11.4615 7.46549 11.0593 7.06325 11.0593 6.56706V6.11785C11.0593 5.62166 11.4615 5.21942 11.9577 5.21942C12.4539 5.21942 12.8561 5.62166 12.8561 6.11785V6.56706Z`},{name:`forecastFormatter6`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M11.0593 17.498C11.0593 17.0018 11.4615 16.5995 11.9577 16.5995C12.4539 16.5995 12.8561 17.0018 12.8561 17.498V17.9472C12.8561 18.4434 12.4539 18.8456 11.9577 18.8456C11.4615 18.8456 11.0593 18.4434 11.0593 17.9472V17.498Z`}],i={name:`recap`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M18.5749 6.36192C19.1567 6.87912 19.2091 7.77008 18.6919 8.35193L10.1206 17.9946L5.30821 12.5807C4.79101 11.9988 4.84342 11.1079 5.42527 10.5907C6.00712 10.0735 6.89808 10.1259 7.41528 10.7077L10.1206 13.7512L16.5848 6.47898C17.102 5.89713 17.993 5.84472 18.5749 6.36192Z`},a={name:`jsembark`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M22.625 11.9688C22.625 13.302 21.5439 14.3828 20.2103 14.3828C18.8766 14.3828 17.7955 13.302 17.7955 11.9688C17.7955 10.6355 18.8766 9.55469 20.2103 9.55469C21.5439 9.55469 22.625 10.6355 22.625 11.9688Z M14.4144 11.9688C14.4144 13.302 13.3333 14.3828 11.9996 14.3828C10.666 14.3828 9.58489 13.302 9.58489 11.9688C9.58489 10.6355 10.666 9.55469 11.9996 9.55469C13.3333 9.55469 14.4144 10.6355 14.4144 11.9688Z M10.0679 19.2109C10.0679 20.5442 8.98674 21.625 7.65312 21.625C6.31949 21.625 5.23837 20.5442 5.23837 19.2109C5.23837 17.8777 6.31949 16.7969 7.65312 16.7969C8.98674 16.7969 10.0679 17.8777 10.0679 19.2109Z M6.20449 11.9688C6.20449 13.302 5.12337 14.3828 3.78974 14.3828C2.45612 14.3828 1.375 13.302 1.375 11.9688C1.375 10.6355 2.45612 9.55469 3.78974 9.55469C5.12337 9.55469 6.20449 10.6355 6.20449 11.9688Z M18.2785 19.2109C18.2785 20.5442 17.1974 21.625 15.8637 21.625C14.5301 21.625 13.449 20.5442 13.449 19.2109C13.449 17.8777 14.5301 16.7969 15.8637 16.7969C17.1974 16.7969 18.2785 17.8777 18.2785 19.2109Z M18.2785 4.72656C18.2785 6.05981 17.1974 7.14062 15.8637 7.14062C14.5301 7.14062 13.449 6.05981 13.449 4.72656C13.449 3.39331 14.5301 2.3125 15.8637 2.3125C17.1974 2.3125 18.2785 3.39331 18.2785 4.72656Z M10.0679 4.72656C10.0679 6.05981 8.98674 7.14062 7.65312 7.14062C6.31949 7.14062 5.23837 6.05981 5.23837 4.72656C5.23837 3.39331 6.31949 2.3125 7.65312 2.3125C8.98674 2.3125 10.0679 3.39331 10.0679 4.72656Z`},o={name:`premo`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M17.1369 5.11692C18.3299 5.95659 19.2792 7.07138 19.9035 8.35296C20.1647 8.88904 19.8399 9.49855 19.258 9.68173C18.6801 9.86362 18.0668 9.55453 17.7795 9.03587C16.6745 7.04075 14.5008 5.684 12 5.684C9.49918 5.68401 7.32549 7.04075 6.22045 9.03586C5.93317 9.55453 5.31986 9.86363 4.74199 9.68174C4.16002 9.49856 3.83526 8.88903 4.09642 8.35295C4.72075 7.07138 5.67004 5.95659 6.86304 5.11692C8.35616 4.06601 10.1544 3.5 12 3.5C13.8456 3.5 15.6438 4.06601 17.1369 5.11692ZM7.7742 14.3996C8.11355 14.9526 8.56707 15.4366 9.11048 15.8191C9.95036 16.4102 10.9619 16.7286 12 16.7286C13.0382 16.7286 14.0496 16.4102 14.8895 15.8191C15.4329 15.4366 15.8865 14.9526 16.2258 14.3996C16.534 13.8974 16.2104 13.2916 15.6368 13.111C15.0632 12.9305 14.4592 13.2575 14.064 13.6989C13.5633 14.2583 12.8243 14.612 12 14.612C11.1757 14.612 10.4368 14.2583 9.93601 13.6989C9.54082 13.2575 8.93681 12.9305 8.36317 13.111C7.78962 13.2916 7.46605 13.8974 7.7742 14.3996ZM4.08941 15.6326C4.71362 16.9202 5.66557 18.0402 6.86307 18.8831C8.35619 19.934 10.1544 20.5 12 20.5C13.8456 20.5 15.6438 19.934 17.1369 18.8831C18.3344 18.0402 19.2864 16.9202 19.9106 15.6326C20.1668 15.104 19.847 14.5037 19.2737 14.3232C18.7003 14.1427 18.0922 14.4527 17.813 14.9703C16.7188 16.9989 14.5263 18.3834 12 18.3834C9.47368 18.3834 7.28119 16.9989 6.18697 14.9703C5.90777 14.4527 5.29965 14.1427 4.72629 14.3232C4.15301 14.5037 3.83318 15.104 4.08941 15.6326ZM16.2541 10.1086C16.1056 10.674 15.6029 10.8322 14.5974 11.1487L12.6752 11.7538L12.6752 11.7538C12.3404 11.8591 12.173 11.9118 12 11.9118C11.827 11.9118 11.6596 11.8591 11.3248 11.7538L9.40259 11.1487C8.39712 10.8322 7.89437 10.674 7.74596 10.1086C7.59754 9.54319 7.87571 9.25888 8.43204 8.69025C8.6384 8.47932 8.86529 8.28609 9.11049 8.11351C9.95036 7.52238 10.9619 7.204 12 7.204C13.0382 7.204 14.0497 7.52238 14.8895 8.11351C15.1347 8.28609 15.3616 8.47932 15.568 8.69024C16.1243 9.25887 16.4025 9.54319 16.2541 10.1086Z`},s={name:`pwex`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M12.7668 15.1491H18.4664V7.62094H13.8628C13.2614 7.62094 12.7731 8.13262 12.7668 8.76635L12.7668 8.77894V15.1491ZM13.8628 6C13.1347 6 12.4757 6.31245 11.9994 6.81734C11.5231 6.31256 10.8642 6.00019 10.1362 6.00019H4.43649C4.19434 6.00019 3.99805 6.20754 3.99805 6.46331V19.253C3.99805 19.2723 3.99908 19.2911 4.00107 19.3094C4.0023 19.3207 4.0039 19.3319 4.00586 19.3429C4.06807 19.6923 4.48746 19.8493 4.74372 19.5834L7.32722 16.9029C7.40921 16.8178 7.51953 16.7702 7.63445 16.7702H12.7668V16.77H19.5625C19.8047 16.77 20.001 16.5627 20.001 16.3069V6.46313C20.001 6.20735 19.8047 6 19.5625 6H13.8628ZM6.66535 7.9048C6.24448 7.9048 5.9033 8.24598 5.9033 8.66685C5.9033 9.08771 6.24448 9.42889 6.66535 9.42889H9.78975C10.2106 9.42889 10.5518 9.08771 10.5518 8.66685C10.5518 8.24598 10.2106 7.9048 9.78975 7.9048H6.66535ZM5.90328 11.258C5.90328 10.8371 6.24446 10.4959 6.66533 10.4959H9.78973C10.2106 10.4959 10.5518 10.8371 10.5518 11.258C10.5518 11.6789 10.2106 12.02 9.78973 12.02H6.66533C6.24446 12.02 5.90328 11.6789 5.90328 11.258ZM6.66533 13.0868C6.24446 13.0868 5.90328 13.428 5.90328 13.8488C5.90328 14.2697 6.24446 14.6109 6.66533 14.6109H7.79751C8.21838 14.6109 8.55956 14.2697 8.55956 13.8488C8.55956 13.428 8.21838 13.0868 7.79752 13.0868H6.66533Z`},c={name:`fourDInsight`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M5.33398 11.1475C5.33398 7.0982 8.50065 4.47998 12.0007 4.47998C15.5006 4.47998 18.6673 7.0982 18.6673 11.1475C18.6673 13.7332 16.6257 16.7742 12.559 20.2787C12.2423 20.5471 11.7673 20.5471 11.4507 20.2787C7.37565 16.7742 5.33398 13.7332 5.33398 11.1475ZM14.668 11.7014C14.668 13.3886 13.4013 14.4795 12.0013 14.4795C10.6013 14.4795 9.33464 13.3886 9.33464 11.7014C9.33464 10.624 10.1513 9.35691 11.778 7.8967C11.9046 7.78489 12.0946 7.78489 12.2213 7.8967C13.8513 9.35691 14.668 10.624 14.668 11.7014Z`},l={name:`inPress`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M16.1349 14.7431L16.8119 15.4062L18.5928 17.1923C18.9773 17.578 18.9768 18.2023 18.5915 18.5873C18.2067 18.972 17.5831 18.9726 17.1975 18.5887L15.4089 16.8083L14.7503 16.1282L15.1564 15.8081C14.0901 16.7241 12.7058 17.2756 11.1999 17.2756C7.84197 17.2756 5.12012 14.5555 5.12012 11.1998C5.12012 7.84412 7.84197 5.12402 11.1999 5.12402C14.5577 5.12402 17.2796 7.84412 17.2796 11.1998C17.2796 12.7048 16.7277 14.0882 15.8111 15.1538L16.1349 14.7431ZM6.9908 11.1998C6.9908 11.7856 7.10986 12.3429 7.32518 12.849C7.52626 13.3216 7.83051 13.6987 8.14615 14.0981C8.91243 14.9043 9.99618 15.4062 11.1999 15.4062C13.5289 15.4062 15.4089 13.5273 15.4089 11.1998C15.4089 10.7532 15.3397 10.3231 15.2113 9.91958C15.0504 9.41375 14.7729 9.00045 14.4821 8.56276C13.7114 7.60513 12.5287 6.9935 11.1999 6.9935C8.87085 6.9935 6.9908 8.87233 6.9908 11.1998Z M15.2113 9.91958L11.6743 13.3664L10.4571 12.0759L8.14615 14.0981C7.83051 13.6987 7.52626 13.3216 7.32518 12.849L10.5555 10.0224L11.7188 11.2556L14.4821 8.56276C14.7729 9.00045 15.0504 9.41375 15.2113 9.91958Z`},u={name:`loggingQualification`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M11.5014 4.17649C11.7919 3.94117 12.2075 3.94117 12.4981 4.17649L13.9996 5.39254L15.672 6.69748C15.8903 6.86784 16.0172 7.12985 16.0156 7.40678L15.9995 10.1624L16.017 16.595C16.0178 16.8709 15.8909 17.1317 15.6733 17.3015L13.9996 18.6075L12.4981 19.8235C12.2075 20.0588 11.7919 20.0588 11.5014 19.8235L9.99982 18.6075L8.32609 17.3015C8.10853 17.1317 7.98167 16.8709 7.98243 16.595L7.99991 10.1624L7.9838 7.40678C7.98218 7.12985 8.10913 6.86784 8.32746 6.69748L9.99982 5.39254L11.5014 4.17649Z`},d={name:`depthConversion`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M11.5909 14.6585C11.8317 14.8457 12.1689 14.8456 12.4096 14.6582L16.907 11.1568L17.3212 10.8361C17.6653 10.5696 17.6659 10.05 17.3223 9.78279L12.4096 5.96184C12.1689 5.7746 11.8318 5.7746 11.591 5.96184L6.67633 9.7844C6.33335 10.0512 6.33313 10.5695 6.67588 10.8365L7.087 11.1568L11.5909 14.6585ZM13.3246 8.36268L12 7.33119L10.5907 8.42867L12.0028 9.46418L13.3246 8.36268ZM14.4012 9.2011L13.1106 10.2766L14.5323 11.3192L15.8267 10.3112L14.4012 9.2011ZM12.0552 11.1561L13.4388 12.1707L12 13.2912L10.7041 12.282L12.0552 11.1561ZM8.17335 10.3112L9.62748 11.4436L10.9474 10.3437L9.49724 9.28021L8.17335 10.3112Z M11.9936 16.8245L7.48733 13.321C7.24787 13.1348 6.91263 13.1348 6.67321 13.321C6.33188 13.5865 6.33188 14.1024 6.67321 14.3679L11.3863 18.0336C11.7474 18.3145 12.2531 18.3145 12.6142 18.0336L17.3232 14.3711C17.6667 14.1039 17.6669 13.5848 17.3236 13.3173C17.0825 13.1294 16.7446 13.1293 16.5033 13.3169L11.9936 16.8245Z`},f={name:`sam`,prefix:`amplify`,height:`384`,width:`384`,svgPathData:`M308.028 196.427C307.706 202.939 310.208 209.349 315.344 213.366L339.664 232.383C342.599 234.701 343.372 238.872 341.518 242.271L310.618 295.728C309.227 298.201 306.601 299.591 303.974 299.591C303.047 299.591 302.12 299.437 301.193 299.128L272.407 287.567C266.395 285.152 259.614 286.142 254.154 289.63C251.567 291.282 248.918 292.843 246.202 294.294C240.405 297.391 236.039 302.814 235.107 309.319L230.741 339.761C230.278 343.469 227.033 346.25 223.171 346.25H161.371C157.508 346.25 154.264 343.469 153.8 339.761L149.435 309.319C148.502 302.814 144.136 297.395 138.325 294.323C135.647 292.907 133.033 291.383 130.48 289.757C124.947 286.233 118.083 285.178 111.996 287.622L83.3483 299.128C82.5758 299.437 81.6488 299.591 80.7218 299.591C77.9408 299.591 75.3143 298.201 73.9238 295.728L43.0238 242.271C41.1698 238.872 41.9423 234.701 44.8778 232.383L69.1975 213.366C74.3334 209.349 76.8435 202.938 76.5172 196.427C76.4392 194.871 76.3958 193.31 76.3958 191.75C76.3958 190.19 76.4392 188.629 76.5172 187.073C76.8435 180.562 74.3334 174.151 69.1975 170.134L44.8778 151.116C41.9423 148.799 41.0153 144.628 43.0238 141.229L73.9238 87.7715C75.3143 85.2995 77.9408 83.909 80.5673 83.909C81.4943 83.909 82.4213 84.0635 83.3483 84.3725L112.134 95.9332C118.147 98.3479 124.928 97.358 130.388 93.87C132.975 92.2178 135.624 90.6574 138.34 89.2063C144.136 86.1091 148.502 80.6865 149.435 74.1808L153.8 43.739C154.264 40.031 157.508 37.25 161.371 37.25H223.171C227.033 37.25 230.278 40.031 230.741 43.739L235.107 74.1808C236.039 80.6865 240.406 86.1051 246.216 89.177C248.895 90.5933 251.509 92.1166 254.061 93.7427C259.594 97.2671 266.458 98.3223 272.546 95.8775L301.193 84.3725C301.966 84.0635 302.893 83.909 303.82 83.909C306.601 83.909 309.227 85.2995 310.618 87.7715L341.518 141.229C343.372 144.628 342.599 148.799 339.664 151.116L315.344 170.134C310.208 174.151 307.706 180.561 308.028 187.073C308.104 188.609 308.146 190.166 308.146 191.75C308.146 193.334 308.104 194.891 308.028 196.427ZM277.244 191.75C277.244 188.506 277.089 185.261 276.471 180.472C275.136 169.696 279.525 158.91 288.059 152.198L296.153 145.768C301 141.917 302.294 135.097 299.195 129.738C296.085 124.362 289.496 122.089 283.733 124.404L274.154 128.251C264.01 132.365 252.394 130.753 243.717 124.079C237.537 119.444 231.357 115.891 224.714 113.11C214.599 109.006 207.395 99.8149 205.865 89.0075L204.431 78.8219C203.57 72.7016 198.333 68.15 192.152 68.15C186.006 68.15 180.787 72.6527 179.886 78.7329L178.364 89.0075C176.834 99.8149 169.63 109.006 159.515 113.11C153.18 115.736 146.846 119.444 140.202 124.388C131.625 130.868 120.197 132.43 110.229 128.405L100.598 124.537C94.8649 122.235 88.3108 124.496 85.217 129.844C82.1088 135.217 83.4435 142.059 88.3429 145.87L96.479 152.198C105.013 158.91 109.401 169.696 108.066 180.472C107.603 185.107 107.294 188.66 107.294 191.75C107.294 194.84 107.603 198.394 108.066 203.183C109.401 213.958 105.013 224.744 96.479 231.457L88.3429 237.785C83.4435 241.595 82.1088 248.438 85.217 253.81C88.3108 259.158 94.8649 261.42 100.598 259.117L110.229 255.25C120.373 251.135 131.989 252.747 140.666 259.421C146.846 264.056 153.026 267.61 159.669 270.391C169.784 274.494 176.988 283.685 178.518 294.493L179.941 304.601C180.809 310.766 186.083 315.35 192.309 315.35C198.499 315.35 203.756 310.815 204.663 304.691L206.174 294.493C207.704 283.685 214.908 274.494 225.023 270.391C231.357 267.764 237.692 264.056 244.335 259.112C252.912 252.632 264.341 251.07 274.308 255.095L283.94 258.963C289.673 261.265 296.227 259.004 299.321 253.656C302.429 248.283 301.094 241.441 296.195 237.63L288.059 231.302C279.525 224.59 275.136 213.804 276.471 203.029C276.935 198.394 277.244 194.995 277.244 191.75ZM192.273 129.95C158.129 129.95 130.473 157.605 130.473 191.75C130.473 225.895 158.129 253.55 192.273 253.55C226.418 253.55 254.073 225.895 254.073 191.75C254.073 157.605 226.418 129.95 192.273 129.95ZM161.373 191.75C161.373 208.745 175.278 222.65 192.273 222.65C209.268 222.65 223.173 208.745 223.173 191.75C223.173 174.755 209.268 160.85 192.273 160.85C175.278 160.85 161.373 174.755 161.373 191.75Z`},p=[{name:`bravos1`,prefix:`bravos`,height:`24`,width:`24`,color:`#99C6C9`,svgPathData:`M15.6121 11.9889C15.6121 11.472 15.2603 11.0214 14.7588 10.8961L10.2339 9.76484C8.30708 9.28313 6.95533 7.55184 6.95533 5.56568V5.49634H8.39813V5.56568C8.39813 6.88979 9.2993 8.04398 10.5839 8.36512L15.1088 9.49635C16.2525 9.78229 17.0549 10.81 17.0549 11.9889C17.0549 13.1679 16.2525 14.1956 15.1088 14.4815L10.5839 15.6128C9.2993 15.9339 8.39813 17.0881 8.39813 18.4122V18.4815H6.95533V18.4122C6.95533 16.426 8.30708 14.6947 10.2339 14.213L14.7588 13.0818C15.2603 12.9564 15.6121 12.5059 15.6121 11.9889Z`},{name:`bravos2`,prefix:`bravos`,height:`24`,width:`24`,color:`#CCE2E4`,svgPathData:`M12.7266 11.9889C12.7266 11.4218 12.3748 10.9141 11.8438 10.715L9.76403 9.93509C8.07464 9.30157 6.95543 7.68655 6.95543 5.88228V5.49634H8.39823V5.88228C8.39823 7.08513 9.14437 8.16181 10.2706 8.58416L12.3504 9.36407C13.4446 9.77438 14.1694 10.8204 14.1694 11.9889C14.1694 13.1575 13.4446 14.2035 12.3504 14.6138L10.2706 15.3937C9.14437 15.8161 8.39823 16.8927 8.39823 18.0956V18.4815H6.95543V18.0956C6.95543 16.2913 8.07464 14.6763 9.76403 14.0428L11.8438 13.2629C12.3748 13.0637 12.7266 12.5561 12.7266 11.9889Z`},{name:`bravos3`,prefix:`bravos`,height:`24`,width:`24`,color:`white`,svgPathData:`M9.84089 11.9889C9.84089 11.3077 9.52017 10.6663 8.97521 10.2576L8.68665 10.0412C7.59674 9.22372 6.95529 7.94083 6.95529 6.57844V5.49634H8.39809V6.57844C8.39809 7.4867 8.82572 8.34196 9.55233 8.88692L9.84089 9.10334C10.7492 9.78453 11.2837 10.8536 11.2837 11.9889C11.2837 13.1243 10.7492 14.1933 9.84089 14.8745L9.55233 15.091C8.82572 15.6359 8.39809 16.4912 8.39809 17.3994V18.4815H6.95529V17.3994C6.95529 16.037 7.59674 14.7542 8.68665 13.9367L8.97521 13.7203C9.52017 13.3116 9.84089 12.6701 9.84089 11.9889Z`}],m={name:`subsurfacePortal`,prefix:`amplify`,height:`48`,width:`48`,svgPathData:`M23.8046 35.103C23.0546 35.603 22.2483 35.9592 21.3858 36.1717C20.5233 36.3842 19.6546 36.4905 18.7796 36.4905C17.9046 36.4905 17.0421 36.3717 16.1921 36.1342C15.3421 35.8967 14.5296 35.553 13.7546 35.103C13.2046 35.428 12.6358 35.6967 12.0483 35.9092C11.4608 36.1217 10.8546 36.278 10.2296 36.378C9.82959 36.428 9.48584 36.3155 9.19834 36.0405C8.91084 35.7655 8.76709 35.4155 8.76709 34.9905C8.76709 34.5655 8.90459 34.203 9.17959 33.903C9.45459 33.603 9.80459 33.403 10.2296 33.303C10.7046 33.178 11.1483 33.0155 11.5608 32.8155C11.9733 32.6155 12.3796 32.378 12.7796 32.103C13.0546 31.903 13.3733 31.803 13.7358 31.803C14.0983 31.803 14.4171 31.903 14.6921 32.103C15.2921 32.528 15.9421 32.8592 16.6421 33.0967C17.3421 33.3342 18.0546 33.453 18.7796 33.453C19.5046 33.453 20.2233 33.3405 20.9358 33.1155C21.6483 32.8905 22.3046 32.5655 22.9046 32.1405C23.1796 31.9405 23.4921 31.8467 23.8421 31.8592C24.1921 31.8717 24.5046 31.978 24.7796 32.178C25.3796 32.603 26.0233 32.9217 26.7108 33.1342C27.3983 33.3467 28.1046 33.453 28.8296 33.453C29.5796 33.453 30.3046 33.3217 31.0046 33.0592C31.7046 32.7967 32.3671 32.453 32.9921 32.028C33.2671 31.853 33.5546 31.7592 33.8546 31.7467C34.1546 31.7342 34.4421 31.828 34.7171 32.028C35.1171 32.303 35.5171 32.553 35.9171 32.778C36.3171 33.003 36.7546 33.178 37.2296 33.303C37.6546 33.428 38.0171 33.6342 38.3171 33.9217C38.6171 34.2092 38.7671 34.5655 38.7671 34.9905C38.7671 35.4155 38.6171 35.7717 38.3171 36.0592C38.0171 36.3467 37.6546 36.453 37.2296 36.378C36.6296 36.278 36.0483 36.1155 35.4858 35.8905C34.9233 35.6655 34.3796 35.403 33.8546 35.103C33.1046 35.553 32.2983 35.8967 31.4358 36.1342C30.5733 36.3717 29.7046 36.4905 28.8296 36.4905C27.9546 36.4905 27.0858 36.3717 26.2233 36.1342C25.3608 35.8967 24.5546 35.553 23.8046 35.103ZM8.76709 29.7405V26.7405C8.76709 24.3155 9.23584 22.053 10.1733 19.953C11.1108 17.853 12.3921 16.028 14.0171 14.478C15.6421 12.928 17.5483 11.7092 19.7358 10.8217C21.9233 9.93423 24.2671 9.49048 26.7671 9.49048C27.1921 9.49048 27.6358 9.49673 28.0983 9.50923C28.5608 9.52173 29.0046 9.56548 29.4296 9.64048C29.9296 9.71548 30.2983 9.97798 30.5358 10.428C30.7733 10.878 30.7796 11.328 30.5546 11.778C30.3046 12.303 30.1108 12.828 29.9733 13.353C29.8358 13.878 29.7671 14.428 29.7671 15.003C29.7671 16.378 30.2546 17.553 31.2296 18.528C32.2046 19.503 33.3796 19.9905 34.7546 19.9905H37.2671C37.6921 19.9905 38.0483 20.1342 38.3358 20.4217C38.6233 20.7092 38.7671 21.0655 38.7671 21.4905C38.7671 21.9155 38.6233 22.2717 38.3358 22.5592C38.0483 22.8467 37.6921 22.9905 37.2671 22.9905H34.7546C32.5296 22.9905 30.6421 22.2155 29.0921 20.6655C27.5421 19.1155 26.7671 17.228 26.7671 15.003C26.7671 14.653 26.7921 14.2842 26.8421 13.8967C26.8921 13.5092 26.9671 13.128 27.0671 12.753C25.2171 13.203 23.7046 14.1592 22.5296 15.6217C21.3546 17.0842 20.7671 18.7905 20.7671 20.7405C20.7671 21.6405 20.9108 22.4967 21.1983 23.3092C21.4858 24.1217 21.8921 24.8905 22.4171 25.6155L22.9046 25.278C23.1796 25.078 23.4671 24.978 23.7671 24.978C24.0671 24.978 24.3546 25.078 24.6296 25.278C25.2046 25.678 25.8733 26.0155 26.6358 26.2905C27.3983 26.5655 28.1296 26.703 28.8296 26.703C29.5296 26.703 30.2608 26.5655 31.0233 26.2905C31.7858 26.0155 32.4546 25.678 33.0296 25.278C33.3046 25.103 33.5858 25.0092 33.8733 24.9967C34.1608 24.9842 34.4421 25.0655 34.7171 25.2405L35.5421 25.803C35.8171 25.953 36.0983 26.0967 36.3858 26.2342C36.6733 26.3717 36.9671 26.478 37.2671 26.553C37.6921 26.678 38.0483 26.8842 38.3358 27.1717C38.6233 27.4592 38.7671 27.8155 38.7671 28.2405C38.7671 28.6655 38.6171 29.0217 38.3171 29.3092C38.0171 29.5967 37.6546 29.703 37.2296 29.628C36.6546 29.528 36.0858 29.3717 35.5233 29.1592C34.9608 28.9467 34.4046 28.678 33.8546 28.353C33.0546 28.853 32.2421 29.2092 31.4171 29.4217C30.5921 29.6342 29.7296 29.7405 28.8296 29.7405C27.9296 29.7405 27.0296 29.6155 26.1296 29.3655C25.2296 29.1155 24.4546 28.778 23.8046 28.353C23.0296 28.828 22.2171 29.1717 21.3671 29.3842C20.5171 29.5967 19.6546 29.7155 18.7796 29.7405C17.9046 29.7655 17.0421 29.653 16.1921 29.403C15.3421 29.153 14.5296 28.803 13.7546 28.353C12.9796 28.803 12.1733 29.1467 11.3358 29.3842C10.4983 29.6217 9.64209 29.7405 8.76709 29.7405ZM18.7046 26.703H19.0796C19.2046 26.703 19.3296 26.6905 19.4546 26.6655C18.9046 25.7905 18.4858 24.853 18.1983 23.853C17.9108 22.853 17.7671 21.8155 17.7671 20.7405C17.7671 18.7155 18.575 17.1375 19.5 15.5C20.425 13.8625 21 13.5 21 13.5C21 13.5 20.0358 13.8717 18.7233 14.6842C17.4108 15.4967 16.2608 16.478 15.2733 17.628C14.2858 18.778 13.4921 20.0592 12.8921 21.4717C12.2921 22.8842 11.9296 24.3905 11.8046 25.9905C12.0046 25.8655 12.1921 25.753 12.3671 25.653C12.5421 25.553 12.7171 25.4405 12.8921 25.3155C13.1671 25.1155 13.4546 25.0092 13.7546 24.9967C14.0546 24.9842 14.3421 25.078 14.6171 25.278C14.8421 25.428 15.0671 25.5655 15.2921 25.6905C15.5171 25.8155 15.7546 25.9405 16.0046 26.0655C16.4296 26.2655 16.8671 26.4217 17.3171 26.5342C17.7671 26.6467 18.2296 26.703 18.7046 26.703Z`},h=[{name:`fluxMaps1`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M19.0773 4C19.5869 4.00016 19.9998 4.41549 19.9998 4.92773V8.30273C19.9998 8.81498 19.5869 9.23031 19.0773 9.23047C18.5675 9.23047 18.1541 8.81507 18.1541 8.30273V7.15039L15.4965 9.74609C15.136 10.0981 14.5516 10.0981 14.1911 9.74609C13.8308 9.39408 13.8309 8.82342 14.1911 8.47135L16.8696 5.85547H15.6925C15.1827 5.85547 14.7693 5.44005 14.7693 4.92773C14.7693 4.41539 15.1827 4 15.6925 4H19.0773Z`},{name:`fluxMaps2`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M18.1538 17.8876V11.5504C18.1538 11.0504 18.5671 10.6451 19.0769 10.6451C19.5867 10.6451 20 11.0504 20 11.5504V17.8876C20 19.0542 19.0357 20 17.8462 20H12.6154C12.1056 20 11.6923 19.5947 11.6923 19.0947C11.6923 18.5947 12.1056 18.1894 12.6154 18.1894H17.8462C18.0161 18.1894 18.1538 18.0543 18.1538 17.8876ZM4 11.2425V6.11241C4 4.94576 4.96431 4 6.15385 4H12.6154C13.1252 4 13.5385 4.40532 13.5385 4.90532C13.5385 5.40531 13.1252 5.81063 12.6154 5.81063H6.15385C5.98391 5.81063 5.84615 5.94574 5.84615 6.11241V11.2425C5.84615 11.7425 5.43288 12.1479 4.92308 12.1479C4.41328 12.1479 4 11.7425 4 11.2425Z`},{name:`fluxMaps3`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M9.53834 13.5385C10.0481 13.5385 10.4615 13.9539 10.4615 14.4663V17.8413C10.4615 18.3536 10.0481 18.769 9.53834 18.769C9.02858 18.7689 8.61515 18.3536 8.61515 17.8413V16.7722L5.65028 19.67C5.2898 20.0221 4.70541 20.0221 4.34493 19.67C3.98461 19.318 3.98455 18.7473 4.34493 18.3953L7.41657 15.394H6.15354C5.64388 15.3938 5.23103 14.9785 5.23101 14.4663C5.23101 13.954 5.64386 13.5387 6.15354 13.5385H9.53834Z`}],g={name:`atwork`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M8.53809 5.15234H15.3994V3.4375H17.1143V5.15234H17.9727C18.9159 5.15258 19.6875 5.92491 19.6875 6.86816V18.875C19.6875 19.8183 18.9159 20.5896 17.9727 20.5898H5.96484C5.02162 20.5896 4.25 19.8183 4.25 18.875V6.86816C4.25 5.9249 5.02162 5.15257 5.96484 5.15234H6.82324V3.4375H8.53809V5.15234ZM5.96484 18.875H17.9727V10.2988H5.96484V18.875ZM5.96484 6.86816V8.58301H17.9727V6.86816H5.96484Z`};export{t as acquire,e as adca,g as atwork,p as bravos,n as dasha,h as fluxMaps,r as forecastFormatter,c as fourDInsight,l as inPress,a as jsembark,u as loggingQualification,d as orca,o as premo,s as pwex,i as recap,f as sam,m as subsurfacePortal};
|
|
1
|
+
const e={name:`adca`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M15.6243 15.3453C15.6243 14.8009 15.183 14.3596 14.6386 14.3596C14.0942 14.3596 13.6528 14.8009 13.6528 15.3453C13.6528 15.8897 14.0942 16.3311 14.6386 16.3311C15.183 16.3311 15.6243 15.8897 15.6243 15.3453Z M18.324 16.9745C18.324 16.4301 17.8827 15.9888 17.3383 15.9888C16.7939 15.9888 16.3525 16.4301 16.3525 16.9745C16.3525 17.5189 16.7939 17.9602 17.3383 17.9602C17.8827 17.9602 18.324 17.5189 18.324 16.9745Z M21.5032 17.3604C21.5032 16.816 21.0619 16.3747 20.5175 16.3747C19.9731 16.3747 19.5317 16.816 19.5317 17.3604C19.5317 17.9048 19.9731 18.3461 20.5175 18.3461C21.0619 18.3461 21.5032 17.9048 21.5032 17.3604Z M11.7555 13.5913C12.0941 14.0174 12.714 14.0886 13.1403 13.7501C13.5665 13.4115 13.6377 12.7911 13.2991 12.3649C11.3979 9.97173 9.25118 7.01649 4.5353 7.01649C3.99089 7.01649 3.54956 7.45782 3.54956 8.00222C3.54966 8.54655 3.99095 8.98796 4.5353 8.98796C8.18821 8.98796 9.78903 11.1159 11.7555 13.5913Z`},t={name:`acquire`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M5.73913 18.0228C4.77863 18.0228 4 17.2441 4 16.2836L4 7.96169C4 7.0012 4.77864 6.22256 5.73913 6.22256L13.0026 6.22256V5.19527C13.0026 4.21785 13.8312 3.37775 14.8801 3.49009C15.5869 3.56579 16.7363 3.733 17.7351 4.10058C18.2318 4.28337 18.7638 4.54129 19.1879 4.91859C19.6292 5.31128 20 5.88143 20 6.62683V15.0906C20 15.9371 19.6601 16.6187 19.0891 17.0966C18.5636 17.5364 17.9062 17.7516 17.3176 17.868C16.3651 18.0564 15.2512 18.0393 14.4837 18.0275C14.3205 18.025 14.173 18.0228 14.0461 18.0228H5.73913ZM13.0026 8.30952V12.6454C13.0026 13.682 13.8804 14.4379 14.8375 14.4143C15.5025 14.3979 16.4167 14.4269 17.1315 14.6187C17.4904 14.715 17.7113 14.83 17.8253 14.9274C17.9058 14.9961 17.913 15.0306 17.913 15.0906C17.913 15.3235 17.8437 15.4175 17.7498 15.4961C17.6103 15.6128 17.347 15.7348 16.9126 15.8207C16.2009 15.9615 15.3796 15.9508 14.6127 15.9408C14.4195 15.9383 14.2297 15.9358 14.046 15.9358H6.08696L6.08696 8.30952L13.0026 8.30952Z`},n={name:`dasha`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M11.2207 2.72474C11.6966 2.42509 12.3022 2.42509 12.7781 2.72474L19.355 6.86576C19.78 7.13334 20.0379 7.60037 20.0379 8.10256V15.8974C20.0379 16.3996 19.78 16.8667 19.355 17.1342L12.7781 21.2753C12.3022 21.5749 11.6966 21.5749 11.2207 21.2753L4.64375 17.1342C4.21877 16.8667 3.96094 16.3996 3.96094 15.8974V8.10256C3.96094 7.60037 4.21877 7.13334 4.64375 6.86576L11.2207 2.72474ZM6.88401 10.6675V15.0906L10.5379 17.3911V12.8328L6.88401 10.6675ZM13.4609 12.8328V17.3911L17.1148 15.0906V10.6675L13.4609 12.8328ZM15.7732 8.06477L11.9994 10.3011L8.22557 8.06477L11.9994 5.68865L15.7732 8.06477Z`},r=[{name:`forecastFormatter1`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M5.0697 17.9472V6.11785C5.0697 5.62166 5.47194 5.21942 5.96813 5.21942C6.46432 5.21942 6.86656 5.62166 6.86656 6.11785V17.9472C6.86656 18.4433 6.46432 18.8456 5.96813 18.8456C5.47194 18.8456 5.0697 18.4433 5.0697 17.9472Z`},{name:`forecastFormatter2`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M18.8456 6.11788L18.8456 17.9472C18.8456 18.4434 18.4434 18.8456 17.9472 18.8456C17.451 18.8456 17.0488 18.4434 17.0488 17.9472L17.0488 6.11788C17.0488 5.62169 17.451 5.21945 17.9472 5.21945C18.4434 5.21945 18.8456 5.62169 18.8456 6.11788Z`},{name:`forecastFormatter3`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M9.86139 12.7063C9.86139 13.2025 9.45915 13.6047 8.96296 13.6047C8.46677 13.6047 8.06453 13.2025 8.06453 12.7063L8.06453 6.11785C8.06453 5.62166 8.46677 5.21942 8.96296 5.21942C9.45915 5.21942 9.86139 5.62166 9.86139 6.11785L9.86139 12.7063Z`},{name:`forecastFormatter4`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M14.054 11.3587C14.054 10.8625 14.4563 10.4603 14.9525 10.4603C15.4486 10.4603 15.8509 10.8625 15.8509 11.3587L15.8509 17.9472C15.8509 18.4434 15.4486 18.8456 14.9525 18.8456C14.4563 18.8456 14.054 18.4434 14.054 17.9472L14.054 11.3587Z`},{name:`forecastFormatter5`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M12.8561 6.56706C12.8561 7.06325 12.4539 7.46549 11.9577 7.46549C11.4615 7.46549 11.0593 7.06325 11.0593 6.56706V6.11785C11.0593 5.62166 11.4615 5.21942 11.9577 5.21942C12.4539 5.21942 12.8561 5.62166 12.8561 6.11785V6.56706Z`},{name:`forecastFormatter6`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M11.0593 17.498C11.0593 17.0018 11.4615 16.5995 11.9577 16.5995C12.4539 16.5995 12.8561 17.0018 12.8561 17.498V17.9472C12.8561 18.4434 12.4539 18.8456 11.9577 18.8456C11.4615 18.8456 11.0593 18.4434 11.0593 17.9472V17.498Z`}],i=[{name:`fdi1`,prefix:`amplify`,height:`352`,width:`352`,color:`white`,svgPathData:`M168.279 65.7671C172.356 63.4135 177.379 63.4137 181.456 65.7671L226.51 91.7769C232.812 95.4156 234.969 103.472 231.331 109.774C227.692 116.076 219.635 118.238 213.333 114.6L174.868 92.386L96.9411 137.384V232.498L174.868 277.491L252.798 232.498V205.578L182.661 246.665C178.592 249.049 173.558 249.073 169.463 246.733L138.718 229.165C132.4 225.554 130.205 217.507 133.815 211.189C137.426 204.87 145.473 202.676 151.792 206.286L175.914 220.067L259.314 171.217C263.388 168.831 268.428 168.81 272.524 171.157C276.621 173.506 279.151 177.866 279.151 182.588V240.107C279.151 244.814 276.639 249.162 272.563 251.516L181.456 304.119C177.379 306.471 172.355 306.472 168.279 304.119L77.1764 251.516C73.1 249.162 70.5882 244.814 70.5881 240.107V129.775L70.6182 128.896C70.9096 124.531 73.3552 120.572 77.1764 118.366L168.279 65.7671Z`},{name:`fdi2`,prefix:`amplify`,height:`352`,width:`352`,color:`white`,svgPathData:`M255.06 119.351C261.362 115.713 269.419 117.871 273.058 124.172C276.696 130.474 274.537 138.531 268.237 142.17L182.723 191.543C177.852 194.355 171.852 194.355 166.981 191.543L138.492 175.094C132.19 171.455 130.033 163.399 133.671 157.097C137.31 150.795 145.367 148.633 151.669 152.271L174.852 165.653L255.06 119.351Z`}],a={name:`recap`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M18.5749 6.36192C19.1567 6.87912 19.2091 7.77008 18.6919 8.35193L10.1206 17.9946L5.30821 12.5807C4.79101 11.9988 4.84342 11.1079 5.42527 10.5907C6.00712 10.0735 6.89808 10.1259 7.41528 10.7077L10.1206 13.7512L16.5848 6.47898C17.102 5.89713 17.993 5.84472 18.5749 6.36192Z`},o={name:`jsembark`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M22.625 11.9688C22.625 13.302 21.5439 14.3828 20.2103 14.3828C18.8766 14.3828 17.7955 13.302 17.7955 11.9688C17.7955 10.6355 18.8766 9.55469 20.2103 9.55469C21.5439 9.55469 22.625 10.6355 22.625 11.9688Z M14.4144 11.9688C14.4144 13.302 13.3333 14.3828 11.9996 14.3828C10.666 14.3828 9.58489 13.302 9.58489 11.9688C9.58489 10.6355 10.666 9.55469 11.9996 9.55469C13.3333 9.55469 14.4144 10.6355 14.4144 11.9688Z M10.0679 19.2109C10.0679 20.5442 8.98674 21.625 7.65312 21.625C6.31949 21.625 5.23837 20.5442 5.23837 19.2109C5.23837 17.8777 6.31949 16.7969 7.65312 16.7969C8.98674 16.7969 10.0679 17.8777 10.0679 19.2109Z M6.20449 11.9688C6.20449 13.302 5.12337 14.3828 3.78974 14.3828C2.45612 14.3828 1.375 13.302 1.375 11.9688C1.375 10.6355 2.45612 9.55469 3.78974 9.55469C5.12337 9.55469 6.20449 10.6355 6.20449 11.9688Z M18.2785 19.2109C18.2785 20.5442 17.1974 21.625 15.8637 21.625C14.5301 21.625 13.449 20.5442 13.449 19.2109C13.449 17.8777 14.5301 16.7969 15.8637 16.7969C17.1974 16.7969 18.2785 17.8777 18.2785 19.2109Z M18.2785 4.72656C18.2785 6.05981 17.1974 7.14062 15.8637 7.14062C14.5301 7.14062 13.449 6.05981 13.449 4.72656C13.449 3.39331 14.5301 2.3125 15.8637 2.3125C17.1974 2.3125 18.2785 3.39331 18.2785 4.72656Z M10.0679 4.72656C10.0679 6.05981 8.98674 7.14062 7.65312 7.14062C6.31949 7.14062 5.23837 6.05981 5.23837 4.72656C5.23837 3.39331 6.31949 2.3125 7.65312 2.3125C8.98674 2.3125 10.0679 3.39331 10.0679 4.72656Z`},s={name:`premo`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M17.1369 5.11692C18.3299 5.95659 19.2792 7.07138 19.9035 8.35296C20.1647 8.88904 19.8399 9.49855 19.258 9.68173C18.6801 9.86362 18.0668 9.55453 17.7795 9.03587C16.6745 7.04075 14.5008 5.684 12 5.684C9.49918 5.68401 7.32549 7.04075 6.22045 9.03586C5.93317 9.55453 5.31986 9.86363 4.74199 9.68174C4.16002 9.49856 3.83526 8.88903 4.09642 8.35295C4.72075 7.07138 5.67004 5.95659 6.86304 5.11692C8.35616 4.06601 10.1544 3.5 12 3.5C13.8456 3.5 15.6438 4.06601 17.1369 5.11692ZM7.7742 14.3996C8.11355 14.9526 8.56707 15.4366 9.11048 15.8191C9.95036 16.4102 10.9619 16.7286 12 16.7286C13.0382 16.7286 14.0496 16.4102 14.8895 15.8191C15.4329 15.4366 15.8865 14.9526 16.2258 14.3996C16.534 13.8974 16.2104 13.2916 15.6368 13.111C15.0632 12.9305 14.4592 13.2575 14.064 13.6989C13.5633 14.2583 12.8243 14.612 12 14.612C11.1757 14.612 10.4368 14.2583 9.93601 13.6989C9.54082 13.2575 8.93681 12.9305 8.36317 13.111C7.78962 13.2916 7.46605 13.8974 7.7742 14.3996ZM4.08941 15.6326C4.71362 16.9202 5.66557 18.0402 6.86307 18.8831C8.35619 19.934 10.1544 20.5 12 20.5C13.8456 20.5 15.6438 19.934 17.1369 18.8831C18.3344 18.0402 19.2864 16.9202 19.9106 15.6326C20.1668 15.104 19.847 14.5037 19.2737 14.3232C18.7003 14.1427 18.0922 14.4527 17.813 14.9703C16.7188 16.9989 14.5263 18.3834 12 18.3834C9.47368 18.3834 7.28119 16.9989 6.18697 14.9703C5.90777 14.4527 5.29965 14.1427 4.72629 14.3232C4.15301 14.5037 3.83318 15.104 4.08941 15.6326ZM16.2541 10.1086C16.1056 10.674 15.6029 10.8322 14.5974 11.1487L12.6752 11.7538L12.6752 11.7538C12.3404 11.8591 12.173 11.9118 12 11.9118C11.827 11.9118 11.6596 11.8591 11.3248 11.7538L9.40259 11.1487C8.39712 10.8322 7.89437 10.674 7.74596 10.1086C7.59754 9.54319 7.87571 9.25888 8.43204 8.69025C8.6384 8.47932 8.86529 8.28609 9.11049 8.11351C9.95036 7.52238 10.9619 7.204 12 7.204C13.0382 7.204 14.0497 7.52238 14.8895 8.11351C15.1347 8.28609 15.3616 8.47932 15.568 8.69024C16.1243 9.25887 16.4025 9.54319 16.2541 10.1086Z`},c={name:`pwex`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M12.7668 15.1491H18.4664V7.62094H13.8628C13.2614 7.62094 12.7731 8.13262 12.7668 8.76635L12.7668 8.77894V15.1491ZM13.8628 6C13.1347 6 12.4757 6.31245 11.9994 6.81734C11.5231 6.31256 10.8642 6.00019 10.1362 6.00019H4.43649C4.19434 6.00019 3.99805 6.20754 3.99805 6.46331V19.253C3.99805 19.2723 3.99908 19.2911 4.00107 19.3094C4.0023 19.3207 4.0039 19.3319 4.00586 19.3429C4.06807 19.6923 4.48746 19.8493 4.74372 19.5834L7.32722 16.9029C7.40921 16.8178 7.51953 16.7702 7.63445 16.7702H12.7668V16.77H19.5625C19.8047 16.77 20.001 16.5627 20.001 16.3069V6.46313C20.001 6.20735 19.8047 6 19.5625 6H13.8628ZM6.66535 7.9048C6.24448 7.9048 5.9033 8.24598 5.9033 8.66685C5.9033 9.08771 6.24448 9.42889 6.66535 9.42889H9.78975C10.2106 9.42889 10.5518 9.08771 10.5518 8.66685C10.5518 8.24598 10.2106 7.9048 9.78975 7.9048H6.66535ZM5.90328 11.258C5.90328 10.8371 6.24446 10.4959 6.66533 10.4959H9.78973C10.2106 10.4959 10.5518 10.8371 10.5518 11.258C10.5518 11.6789 10.2106 12.02 9.78973 12.02H6.66533C6.24446 12.02 5.90328 11.6789 5.90328 11.258ZM6.66533 13.0868C6.24446 13.0868 5.90328 13.428 5.90328 13.8488C5.90328 14.2697 6.24446 14.6109 6.66533 14.6109H7.79751C8.21838 14.6109 8.55956 14.2697 8.55956 13.8488C8.55956 13.428 8.21838 13.0868 7.79752 13.0868H6.66533Z`},l={name:`fourDInsight`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M5.33398 11.1475C5.33398 7.0982 8.50065 4.47998 12.0007 4.47998C15.5006 4.47998 18.6673 7.0982 18.6673 11.1475C18.6673 13.7332 16.6257 16.7742 12.559 20.2787C12.2423 20.5471 11.7673 20.5471 11.4507 20.2787C7.37565 16.7742 5.33398 13.7332 5.33398 11.1475ZM14.668 11.7014C14.668 13.3886 13.4013 14.4795 12.0013 14.4795C10.6013 14.4795 9.33464 13.3886 9.33464 11.7014C9.33464 10.624 10.1513 9.35691 11.778 7.8967C11.9046 7.78489 12.0946 7.78489 12.2213 7.8967C13.8513 9.35691 14.668 10.624 14.668 11.7014Z`},u={name:`inPress`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M16.1349 14.7431L16.8119 15.4062L18.5928 17.1923C18.9773 17.578 18.9768 18.2023 18.5915 18.5873C18.2067 18.972 17.5831 18.9726 17.1975 18.5887L15.4089 16.8083L14.7503 16.1282L15.1564 15.8081C14.0901 16.7241 12.7058 17.2756 11.1999 17.2756C7.84197 17.2756 5.12012 14.5555 5.12012 11.1998C5.12012 7.84412 7.84197 5.12402 11.1999 5.12402C14.5577 5.12402 17.2796 7.84412 17.2796 11.1998C17.2796 12.7048 16.7277 14.0882 15.8111 15.1538L16.1349 14.7431ZM6.9908 11.1998C6.9908 11.7856 7.10986 12.3429 7.32518 12.849C7.52626 13.3216 7.83051 13.6987 8.14615 14.0981C8.91243 14.9043 9.99618 15.4062 11.1999 15.4062C13.5289 15.4062 15.4089 13.5273 15.4089 11.1998C15.4089 10.7532 15.3397 10.3231 15.2113 9.91958C15.0504 9.41375 14.7729 9.00045 14.4821 8.56276C13.7114 7.60513 12.5287 6.9935 11.1999 6.9935C8.87085 6.9935 6.9908 8.87233 6.9908 11.1998Z M15.2113 9.91958L11.6743 13.3664L10.4571 12.0759L8.14615 14.0981C7.83051 13.6987 7.52626 13.3216 7.32518 12.849L10.5555 10.0224L11.7188 11.2556L14.4821 8.56276C14.7729 9.00045 15.0504 9.41375 15.2113 9.91958Z`},d={name:`loggingQualification`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M11.5014 4.17649C11.7919 3.94117 12.2075 3.94117 12.4981 4.17649L13.9996 5.39254L15.672 6.69748C15.8903 6.86784 16.0172 7.12985 16.0156 7.40678L15.9995 10.1624L16.017 16.595C16.0178 16.8709 15.8909 17.1317 15.6733 17.3015L13.9996 18.6075L12.4981 19.8235C12.2075 20.0588 11.7919 20.0588 11.5014 19.8235L9.99982 18.6075L8.32609 17.3015C8.10853 17.1317 7.98167 16.8709 7.98243 16.595L7.99991 10.1624L7.9838 7.40678C7.98218 7.12985 8.10913 6.86784 8.32746 6.69748L9.99982 5.39254L11.5014 4.17649Z`},f={name:`depthConversion`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M11.5909 14.6585C11.8317 14.8457 12.1689 14.8456 12.4096 14.6582L16.907 11.1568L17.3212 10.8361C17.6653 10.5696 17.6659 10.05 17.3223 9.78279L12.4096 5.96184C12.1689 5.7746 11.8318 5.7746 11.591 5.96184L6.67633 9.7844C6.33335 10.0512 6.33313 10.5695 6.67588 10.8365L7.087 11.1568L11.5909 14.6585ZM13.3246 8.36268L12 7.33119L10.5907 8.42867L12.0028 9.46418L13.3246 8.36268ZM14.4012 9.2011L13.1106 10.2766L14.5323 11.3192L15.8267 10.3112L14.4012 9.2011ZM12.0552 11.1561L13.4388 12.1707L12 13.2912L10.7041 12.282L12.0552 11.1561ZM8.17335 10.3112L9.62748 11.4436L10.9474 10.3437L9.49724 9.28021L8.17335 10.3112Z M11.9936 16.8245L7.48733 13.321C7.24787 13.1348 6.91263 13.1348 6.67321 13.321C6.33188 13.5865 6.33188 14.1024 6.67321 14.3679L11.3863 18.0336C11.7474 18.3145 12.2531 18.3145 12.6142 18.0336L17.3232 14.3711C17.6667 14.1039 17.6669 13.5848 17.3236 13.3173C17.0825 13.1294 16.7446 13.1293 16.5033 13.3169L11.9936 16.8245Z`},p={name:`sam`,prefix:`amplify`,height:`384`,width:`384`,svgPathData:`M308.028 196.427C307.706 202.939 310.208 209.349 315.344 213.366L339.664 232.383C342.599 234.701 343.372 238.872 341.518 242.271L310.618 295.728C309.227 298.201 306.601 299.591 303.974 299.591C303.047 299.591 302.12 299.437 301.193 299.128L272.407 287.567C266.395 285.152 259.614 286.142 254.154 289.63C251.567 291.282 248.918 292.843 246.202 294.294C240.405 297.391 236.039 302.814 235.107 309.319L230.741 339.761C230.278 343.469 227.033 346.25 223.171 346.25H161.371C157.508 346.25 154.264 343.469 153.8 339.761L149.435 309.319C148.502 302.814 144.136 297.395 138.325 294.323C135.647 292.907 133.033 291.383 130.48 289.757C124.947 286.233 118.083 285.178 111.996 287.622L83.3483 299.128C82.5758 299.437 81.6488 299.591 80.7218 299.591C77.9408 299.591 75.3143 298.201 73.9238 295.728L43.0238 242.271C41.1698 238.872 41.9423 234.701 44.8778 232.383L69.1975 213.366C74.3334 209.349 76.8435 202.938 76.5172 196.427C76.4392 194.871 76.3958 193.31 76.3958 191.75C76.3958 190.19 76.4392 188.629 76.5172 187.073C76.8435 180.562 74.3334 174.151 69.1975 170.134L44.8778 151.116C41.9423 148.799 41.0153 144.628 43.0238 141.229L73.9238 87.7715C75.3143 85.2995 77.9408 83.909 80.5673 83.909C81.4943 83.909 82.4213 84.0635 83.3483 84.3725L112.134 95.9332C118.147 98.3479 124.928 97.358 130.388 93.87C132.975 92.2178 135.624 90.6574 138.34 89.2063C144.136 86.1091 148.502 80.6865 149.435 74.1808L153.8 43.739C154.264 40.031 157.508 37.25 161.371 37.25H223.171C227.033 37.25 230.278 40.031 230.741 43.739L235.107 74.1808C236.039 80.6865 240.406 86.1051 246.216 89.177C248.895 90.5933 251.509 92.1166 254.061 93.7427C259.594 97.2671 266.458 98.3223 272.546 95.8775L301.193 84.3725C301.966 84.0635 302.893 83.909 303.82 83.909C306.601 83.909 309.227 85.2995 310.618 87.7715L341.518 141.229C343.372 144.628 342.599 148.799 339.664 151.116L315.344 170.134C310.208 174.151 307.706 180.561 308.028 187.073C308.104 188.609 308.146 190.166 308.146 191.75C308.146 193.334 308.104 194.891 308.028 196.427ZM277.244 191.75C277.244 188.506 277.089 185.261 276.471 180.472C275.136 169.696 279.525 158.91 288.059 152.198L296.153 145.768C301 141.917 302.294 135.097 299.195 129.738C296.085 124.362 289.496 122.089 283.733 124.404L274.154 128.251C264.01 132.365 252.394 130.753 243.717 124.079C237.537 119.444 231.357 115.891 224.714 113.11C214.599 109.006 207.395 99.8149 205.865 89.0075L204.431 78.8219C203.57 72.7016 198.333 68.15 192.152 68.15C186.006 68.15 180.787 72.6527 179.886 78.7329L178.364 89.0075C176.834 99.8149 169.63 109.006 159.515 113.11C153.18 115.736 146.846 119.444 140.202 124.388C131.625 130.868 120.197 132.43 110.229 128.405L100.598 124.537C94.8649 122.235 88.3108 124.496 85.217 129.844C82.1088 135.217 83.4435 142.059 88.3429 145.87L96.479 152.198C105.013 158.91 109.401 169.696 108.066 180.472C107.603 185.107 107.294 188.66 107.294 191.75C107.294 194.84 107.603 198.394 108.066 203.183C109.401 213.958 105.013 224.744 96.479 231.457L88.3429 237.785C83.4435 241.595 82.1088 248.438 85.217 253.81C88.3108 259.158 94.8649 261.42 100.598 259.117L110.229 255.25C120.373 251.135 131.989 252.747 140.666 259.421C146.846 264.056 153.026 267.61 159.669 270.391C169.784 274.494 176.988 283.685 178.518 294.493L179.941 304.601C180.809 310.766 186.083 315.35 192.309 315.35C198.499 315.35 203.756 310.815 204.663 304.691L206.174 294.493C207.704 283.685 214.908 274.494 225.023 270.391C231.357 267.764 237.692 264.056 244.335 259.112C252.912 252.632 264.341 251.07 274.308 255.095L283.94 258.963C289.673 261.265 296.227 259.004 299.321 253.656C302.429 248.283 301.094 241.441 296.195 237.63L288.059 231.302C279.525 224.59 275.136 213.804 276.471 203.029C276.935 198.394 277.244 194.995 277.244 191.75ZM192.273 129.95C158.129 129.95 130.473 157.605 130.473 191.75C130.473 225.895 158.129 253.55 192.273 253.55C226.418 253.55 254.073 225.895 254.073 191.75C254.073 157.605 226.418 129.95 192.273 129.95ZM161.373 191.75C161.373 208.745 175.278 222.65 192.273 222.65C209.268 222.65 223.173 208.745 223.173 191.75C223.173 174.755 209.268 160.85 192.273 160.85C175.278 160.85 161.373 174.755 161.373 191.75Z`},m=[{name:`bravos1`,prefix:`bravos`,height:`24`,width:`24`,color:`#99C6C9`,svgPathData:`M15.6121 11.9889C15.6121 11.472 15.2603 11.0214 14.7588 10.8961L10.2339 9.76484C8.30708 9.28313 6.95533 7.55184 6.95533 5.56568V5.49634H8.39813V5.56568C8.39813 6.88979 9.2993 8.04398 10.5839 8.36512L15.1088 9.49635C16.2525 9.78229 17.0549 10.81 17.0549 11.9889C17.0549 13.1679 16.2525 14.1956 15.1088 14.4815L10.5839 15.6128C9.2993 15.9339 8.39813 17.0881 8.39813 18.4122V18.4815H6.95533V18.4122C6.95533 16.426 8.30708 14.6947 10.2339 14.213L14.7588 13.0818C15.2603 12.9564 15.6121 12.5059 15.6121 11.9889Z`},{name:`bravos2`,prefix:`bravos`,height:`24`,width:`24`,color:`#CCE2E4`,svgPathData:`M12.7266 11.9889C12.7266 11.4218 12.3748 10.9141 11.8438 10.715L9.76403 9.93509C8.07464 9.30157 6.95543 7.68655 6.95543 5.88228V5.49634H8.39823V5.88228C8.39823 7.08513 9.14437 8.16181 10.2706 8.58416L12.3504 9.36407C13.4446 9.77438 14.1694 10.8204 14.1694 11.9889C14.1694 13.1575 13.4446 14.2035 12.3504 14.6138L10.2706 15.3937C9.14437 15.8161 8.39823 16.8927 8.39823 18.0956V18.4815H6.95543V18.0956C6.95543 16.2913 8.07464 14.6763 9.76403 14.0428L11.8438 13.2629C12.3748 13.0637 12.7266 12.5561 12.7266 11.9889Z`},{name:`bravos3`,prefix:`bravos`,height:`24`,width:`24`,color:`white`,svgPathData:`M9.84089 11.9889C9.84089 11.3077 9.52017 10.6663 8.97521 10.2576L8.68665 10.0412C7.59674 9.22372 6.95529 7.94083 6.95529 6.57844V5.49634H8.39809V6.57844C8.39809 7.4867 8.82572 8.34196 9.55233 8.88692L9.84089 9.10334C10.7492 9.78453 11.2837 10.8536 11.2837 11.9889C11.2837 13.1243 10.7492 14.1933 9.84089 14.8745L9.55233 15.091C8.82572 15.6359 8.39809 16.4912 8.39809 17.3994V18.4815H6.95529V17.3994C6.95529 16.037 7.59674 14.7542 8.68665 13.9367L8.97521 13.7203C9.52017 13.3116 9.84089 12.6701 9.84089 11.9889Z`}],h={name:`subsurfacePortal`,prefix:`amplify`,height:`48`,width:`48`,svgPathData:`M23.8046 35.103C23.0546 35.603 22.2483 35.9592 21.3858 36.1717C20.5233 36.3842 19.6546 36.4905 18.7796 36.4905C17.9046 36.4905 17.0421 36.3717 16.1921 36.1342C15.3421 35.8967 14.5296 35.553 13.7546 35.103C13.2046 35.428 12.6358 35.6967 12.0483 35.9092C11.4608 36.1217 10.8546 36.278 10.2296 36.378C9.82959 36.428 9.48584 36.3155 9.19834 36.0405C8.91084 35.7655 8.76709 35.4155 8.76709 34.9905C8.76709 34.5655 8.90459 34.203 9.17959 33.903C9.45459 33.603 9.80459 33.403 10.2296 33.303C10.7046 33.178 11.1483 33.0155 11.5608 32.8155C11.9733 32.6155 12.3796 32.378 12.7796 32.103C13.0546 31.903 13.3733 31.803 13.7358 31.803C14.0983 31.803 14.4171 31.903 14.6921 32.103C15.2921 32.528 15.9421 32.8592 16.6421 33.0967C17.3421 33.3342 18.0546 33.453 18.7796 33.453C19.5046 33.453 20.2233 33.3405 20.9358 33.1155C21.6483 32.8905 22.3046 32.5655 22.9046 32.1405C23.1796 31.9405 23.4921 31.8467 23.8421 31.8592C24.1921 31.8717 24.5046 31.978 24.7796 32.178C25.3796 32.603 26.0233 32.9217 26.7108 33.1342C27.3983 33.3467 28.1046 33.453 28.8296 33.453C29.5796 33.453 30.3046 33.3217 31.0046 33.0592C31.7046 32.7967 32.3671 32.453 32.9921 32.028C33.2671 31.853 33.5546 31.7592 33.8546 31.7467C34.1546 31.7342 34.4421 31.828 34.7171 32.028C35.1171 32.303 35.5171 32.553 35.9171 32.778C36.3171 33.003 36.7546 33.178 37.2296 33.303C37.6546 33.428 38.0171 33.6342 38.3171 33.9217C38.6171 34.2092 38.7671 34.5655 38.7671 34.9905C38.7671 35.4155 38.6171 35.7717 38.3171 36.0592C38.0171 36.3467 37.6546 36.453 37.2296 36.378C36.6296 36.278 36.0483 36.1155 35.4858 35.8905C34.9233 35.6655 34.3796 35.403 33.8546 35.103C33.1046 35.553 32.2983 35.8967 31.4358 36.1342C30.5733 36.3717 29.7046 36.4905 28.8296 36.4905C27.9546 36.4905 27.0858 36.3717 26.2233 36.1342C25.3608 35.8967 24.5546 35.553 23.8046 35.103ZM8.76709 29.7405V26.7405C8.76709 24.3155 9.23584 22.053 10.1733 19.953C11.1108 17.853 12.3921 16.028 14.0171 14.478C15.6421 12.928 17.5483 11.7092 19.7358 10.8217C21.9233 9.93423 24.2671 9.49048 26.7671 9.49048C27.1921 9.49048 27.6358 9.49673 28.0983 9.50923C28.5608 9.52173 29.0046 9.56548 29.4296 9.64048C29.9296 9.71548 30.2983 9.97798 30.5358 10.428C30.7733 10.878 30.7796 11.328 30.5546 11.778C30.3046 12.303 30.1108 12.828 29.9733 13.353C29.8358 13.878 29.7671 14.428 29.7671 15.003C29.7671 16.378 30.2546 17.553 31.2296 18.528C32.2046 19.503 33.3796 19.9905 34.7546 19.9905H37.2671C37.6921 19.9905 38.0483 20.1342 38.3358 20.4217C38.6233 20.7092 38.7671 21.0655 38.7671 21.4905C38.7671 21.9155 38.6233 22.2717 38.3358 22.5592C38.0483 22.8467 37.6921 22.9905 37.2671 22.9905H34.7546C32.5296 22.9905 30.6421 22.2155 29.0921 20.6655C27.5421 19.1155 26.7671 17.228 26.7671 15.003C26.7671 14.653 26.7921 14.2842 26.8421 13.8967C26.8921 13.5092 26.9671 13.128 27.0671 12.753C25.2171 13.203 23.7046 14.1592 22.5296 15.6217C21.3546 17.0842 20.7671 18.7905 20.7671 20.7405C20.7671 21.6405 20.9108 22.4967 21.1983 23.3092C21.4858 24.1217 21.8921 24.8905 22.4171 25.6155L22.9046 25.278C23.1796 25.078 23.4671 24.978 23.7671 24.978C24.0671 24.978 24.3546 25.078 24.6296 25.278C25.2046 25.678 25.8733 26.0155 26.6358 26.2905C27.3983 26.5655 28.1296 26.703 28.8296 26.703C29.5296 26.703 30.2608 26.5655 31.0233 26.2905C31.7858 26.0155 32.4546 25.678 33.0296 25.278C33.3046 25.103 33.5858 25.0092 33.8733 24.9967C34.1608 24.9842 34.4421 25.0655 34.7171 25.2405L35.5421 25.803C35.8171 25.953 36.0983 26.0967 36.3858 26.2342C36.6733 26.3717 36.9671 26.478 37.2671 26.553C37.6921 26.678 38.0483 26.8842 38.3358 27.1717C38.6233 27.4592 38.7671 27.8155 38.7671 28.2405C38.7671 28.6655 38.6171 29.0217 38.3171 29.3092C38.0171 29.5967 37.6546 29.703 37.2296 29.628C36.6546 29.528 36.0858 29.3717 35.5233 29.1592C34.9608 28.9467 34.4046 28.678 33.8546 28.353C33.0546 28.853 32.2421 29.2092 31.4171 29.4217C30.5921 29.6342 29.7296 29.7405 28.8296 29.7405C27.9296 29.7405 27.0296 29.6155 26.1296 29.3655C25.2296 29.1155 24.4546 28.778 23.8046 28.353C23.0296 28.828 22.2171 29.1717 21.3671 29.3842C20.5171 29.5967 19.6546 29.7155 18.7796 29.7405C17.9046 29.7655 17.0421 29.653 16.1921 29.403C15.3421 29.153 14.5296 28.803 13.7546 28.353C12.9796 28.803 12.1733 29.1467 11.3358 29.3842C10.4983 29.6217 9.64209 29.7405 8.76709 29.7405ZM18.7046 26.703H19.0796C19.2046 26.703 19.3296 26.6905 19.4546 26.6655C18.9046 25.7905 18.4858 24.853 18.1983 23.853C17.9108 22.853 17.7671 21.8155 17.7671 20.7405C17.7671 18.7155 18.575 17.1375 19.5 15.5C20.425 13.8625 21 13.5 21 13.5C21 13.5 20.0358 13.8717 18.7233 14.6842C17.4108 15.4967 16.2608 16.478 15.2733 17.628C14.2858 18.778 13.4921 20.0592 12.8921 21.4717C12.2921 22.8842 11.9296 24.3905 11.8046 25.9905C12.0046 25.8655 12.1921 25.753 12.3671 25.653C12.5421 25.553 12.7171 25.4405 12.8921 25.3155C13.1671 25.1155 13.4546 25.0092 13.7546 24.9967C14.0546 24.9842 14.3421 25.078 14.6171 25.278C14.8421 25.428 15.0671 25.5655 15.2921 25.6905C15.5171 25.8155 15.7546 25.9405 16.0046 26.0655C16.4296 26.2655 16.8671 26.4217 17.3171 26.5342C17.7671 26.6467 18.2296 26.703 18.7046 26.703Z`},g=[{name:`fluxMaps1`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M19.0773 4C19.5869 4.00016 19.9998 4.41549 19.9998 4.92773V8.30273C19.9998 8.81498 19.5869 9.23031 19.0773 9.23047C18.5675 9.23047 18.1541 8.81507 18.1541 8.30273V7.15039L15.4965 9.74609C15.136 10.0981 14.5516 10.0981 14.1911 9.74609C13.8308 9.39408 13.8309 8.82342 14.1911 8.47135L16.8696 5.85547H15.6925C15.1827 5.85547 14.7693 5.44005 14.7693 4.92773C14.7693 4.41539 15.1827 4 15.6925 4H19.0773Z`},{name:`fluxMaps2`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M18.1538 17.8876V11.5504C18.1538 11.0504 18.5671 10.6451 19.0769 10.6451C19.5867 10.6451 20 11.0504 20 11.5504V17.8876C20 19.0542 19.0357 20 17.8462 20H12.6154C12.1056 20 11.6923 19.5947 11.6923 19.0947C11.6923 18.5947 12.1056 18.1894 12.6154 18.1894H17.8462C18.0161 18.1894 18.1538 18.0543 18.1538 17.8876ZM4 11.2425V6.11241C4 4.94576 4.96431 4 6.15385 4H12.6154C13.1252 4 13.5385 4.40532 13.5385 4.90532C13.5385 5.40531 13.1252 5.81063 12.6154 5.81063H6.15385C5.98391 5.81063 5.84615 5.94574 5.84615 6.11241V11.2425C5.84615 11.7425 5.43288 12.1479 4.92308 12.1479C4.41328 12.1479 4 11.7425 4 11.2425Z`},{name:`fluxMaps3`,prefix:`amplify`,height:`24`,width:`24`,color:`white`,svgPathData:`M9.53834 13.5385C10.0481 13.5385 10.4615 13.9539 10.4615 14.4663V17.8413C10.4615 18.3536 10.0481 18.769 9.53834 18.769C9.02858 18.7689 8.61515 18.3536 8.61515 17.8413V16.7722L5.65028 19.67C5.2898 20.0221 4.70541 20.0221 4.34493 19.67C3.98461 19.318 3.98455 18.7473 4.34493 18.3953L7.41657 15.394H6.15354C5.64388 15.3938 5.23103 14.9785 5.23101 14.4663C5.23101 13.954 5.64386 13.5387 6.15354 13.5385H9.53834Z`}],_={name:`atwork`,prefix:`amplify`,height:`24`,width:`24`,svgPathData:`M8.53809 5.15234H15.3994V3.4375H17.1143V5.15234H17.9727C18.9159 5.15258 19.6875 5.92491 19.6875 6.86816V18.875C19.6875 19.8183 18.9159 20.5896 17.9727 20.5898H5.96484C5.02162 20.5896 4.25 19.8183 4.25 18.875V6.86816C4.25 5.9249 5.02162 5.15257 5.96484 5.15234H6.82324V3.4375H8.53809V5.15234ZM5.96484 18.875H17.9727V10.2988H5.96484V18.875ZM5.96484 6.86816V8.58301H17.9727V6.86816H5.96484Z`},v={name:`fluidSymphony`,prefix:`amplify`,height:`48`,width:`48`,svgPathData:`M29.7773 8C30.0167 8.00008 30.2108 8.19565 30.2109 8.4375V11.0664C30.2109 11.3083 30.0167 11.5048 29.7773 11.5049H29.7226C29.6629 11.5051 29.6142 11.5539 29.6142 11.6143V17.0645C29.6142 17.3079 29.6645 17.5488 29.7617 17.7715L36.7295 33.7451C36.9998 34.365 36.8928 35.0865 36.4541 35.5986L33.3105 39.2676C32.9811 39.6521 32.5023 39.874 31.999 39.874H16.7695C16.2557 39.874 15.768 39.6435 15.4384 39.2451L12.4033 35.5752C11.9816 35.0652 11.8819 34.3579 12.1455 33.749L19.0732 17.749C19.1659 17.5349 19.2146 17.304 19.2177 17.0703L19.292 11.6152C19.2926 11.5544 19.2437 11.5051 19.1836 11.5049H19.1543C18.9148 11.5049 18.7207 11.3084 18.7207 11.0664V8.4375C18.7207 8.1956 18.9148 8 19.1543 8H29.7773ZM23.1894 11.5049C22.9525 11.5051 22.7592 11.6971 22.7558 11.9365L22.6767 17.8262C22.6736 18.0599 22.6239 18.2908 22.5312 18.5049L16.1836 33.166C15.9199 33.775 16.0205 34.4822 16.4423 34.9922L17.0605 35.7402C17.3899 36.1383 17.877 36.368 18.3906 36.3682H30.414C30.9174 36.3682 31.3961 36.1472 31.7255 35.7627L32.3945 34.9824C32.8333 34.4702 32.9403 33.7478 32.6699 33.1279L26.2929 18.5098C26.1958 18.287 26.1455 18.0461 26.1455 17.8027V11.9424C26.1453 11.7006 25.9512 11.5049 25.7119 11.5049H23.1894ZM21.8056 25.4395C22.1922 24.5068 23.2367 24.0749 24.1386 24.4746C25.0403 24.8744 25.4577 25.9541 25.0713 26.8867L22.4062 33.3174C22.0197 34.2501 20.9751 34.682 20.0732 34.2822C19.1716 33.8823 18.7541 32.8026 19.1406 31.8701L21.8056 25.4395Z`};export{t as acquire,e as adca,_ as atwork,m as bravos,n as dasha,i as fdi,v as fluidSymphony,g as fluxMaps,r as forecastFormatter,l as fourDInsight,u as inPress,o as jsembark,d as loggingQualification,f as orca,s as premo,c as pwex,a as recap,p as sam,h as subsurfacePortal};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import e from"../ApplicationIconBase/ApplicationIconBase.js";import{fluidSymphony as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-16,left:-17,rotation:343},{top:26,left:11,rotation:193}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`FluidSymphony`;export{a as FluidSymphony};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import e from"../ApplicationIconBase/ApplicationIconBase.js";import{fdi as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-24,left:-20,rotation:325},{top:35,left:12,rotation:205}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`ForecastDataInventory`;export{a as ForecastDataInventory};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react9 from "react";
|
|
2
2
|
import { HTMLAttributes, KeyboardEvent, MouseEvent, ReactNode } from "react";
|
|
3
3
|
import { IconData } from "@equinor/eds-icons";
|
|
4
4
|
|
|
@@ -25,6 +25,6 @@ type DeletableChipProps = BaseChipProps & InteractiveChipBase & {
|
|
|
25
25
|
onDelete: (event: MouseEvent<HTMLButtonElement> | KeyboardEvent<HTMLButtonElement>) => void;
|
|
26
26
|
};
|
|
27
27
|
type ChipProps = Omit<HTMLAttributes<HTMLDivElement | HTMLButtonElement>, 'onClick'> & (ReadOnlyChipProps | ClickableChipProps | DeletableChipProps);
|
|
28
|
-
declare const Chip:
|
|
28
|
+
declare const Chip: react9.ForwardRefExoticComponent<ChipProps & react9.RefAttributes<HTMLDivElement | HTMLButtonElement>>;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { BaseChipProps, Chip, ClickableChipProps, DeletableChipProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ConfettiProps } from "./Confetti.types.js";
|
|
2
|
-
import
|
|
2
|
+
import { FC } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/Confetti/Confetti.d.ts
|
|
5
5
|
|
|
@@ -14,9 +14,6 @@ import React from "react";
|
|
|
14
14
|
* @param duration - Duration of the confetti effect in 'shower' mode (ms).
|
|
15
15
|
* @param onComplete - Callback fired when the confetti effect completes.
|
|
16
16
|
*/
|
|
17
|
-
declare const Confetti:
|
|
18
|
-
(props: ConfettiProps): React.ReactNode;
|
|
19
|
-
displayName: string;
|
|
20
|
-
};
|
|
17
|
+
declare const Confetti: FC<ConfettiProps>;
|
|
21
18
|
//#endregion
|
|
22
19
|
export { Confetti };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CONFETTI_DEFAULT_COLORS as e,CONFETTI_DEFAULT_SHAPES as t}from"./Confetti.constants.js";import{createConfetti as n}from"./utils/createConfetti.js";import{getSeasonalColors as r}from"./utils/seasonalColors.js";import{Canvas as i}from"./Confetti.styles.js";import
|
|
1
|
+
import{CONFETTI_DEFAULT_COLORS as e,CONFETTI_DEFAULT_SHAPES as t}from"./Confetti.constants.js";import{createConfetti as n}from"./utils/createConfetti.js";import{getSeasonalColors as r}from"./utils/seasonalColors.js";import{Canvas as i}from"./Confetti.styles.js";import{useCallback as a,useEffect as o,useRef as s}from"react";import{jsx as c}from"react/jsx-runtime";const l=l=>{let{mode:u=`boom`,shapeSize:d=12,className:f,style:p,onComplete:m}=l,h=l.colors&&l.colors.length?l.colors:r()||e,g=l.shapes&&l.shapes.length?l.shapes:t,_=s(Date.now()),v=l.mode===`shower`?l.duration??1/0:0;if(u===`shower`&&(v<=0||isNaN(v)))throw Error(`Duration must be a non-negative number`);let{effectCount:y=1/0}=l.mode===`boom`||l.mode===void 0?l:{effectCount:1/0};if(y<1)throw Error(`Effect count must be at least 1`);let b=l.mode===`boom`||l.mode===void 0?3e3:1,x=s(null),S=s(null),C=s([]),w=s(0),T=s(0),E=s(0),D=a(()=>{let e=x.current,t=e?.getContext(`2d`);!e||!t||(e.width=window.innerWidth,e.height=window.innerHeight,S.current=t)},[]),O=a(e=>{let t=S.current,r=x.current;if(!t||!r)return;w.current=requestAnimationFrame(O),t.clearRect(0,0,r.width,r.height);let i=Date.now()-_.current,a=u===`shower`?i<v:!0;a&&e-E.current>=b&&T.current<y&&(n({particles:C.current,mode:u,colors:h,shapeSize:d,shapes:g}),E.current=e,T.current+=1);let o=C.current;for(let e=o.length-1;e>=0;--e){let n=o[e];n.update(),n.draw(t),(n.opacity<=0||n.y>r.height)&&o.splice(e,1)}(T.current>=y||!a)&&o.length===0&&(cancelAnimationFrame(w.current),m&&m())},[h,y,b,u,d,g,v,m]);return o(()=>(D(),window.addEventListener(`resize`,D),w.current=requestAnimationFrame(e=>{E.current=e-b,O(e)}),()=>{cancelAnimationFrame(w.current),window.removeEventListener(`resize`,D)}),[O,D,b]),o(()=>{T.current=0},[y]),c(i,{"data-testid":`canvas-confetti`,ref:x,className:f,style:p})};l.displayName=`Confetti`;export{l as Confetti};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Variants } from "../../atoms/types/variants.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react13 from "react";
|
|
3
3
|
import { DatePickerProps } from "@equinor/eds-core-react";
|
|
4
4
|
|
|
5
5
|
//#region src/molecules/DatePicker/DatePicker.d.ts
|
|
@@ -9,11 +9,11 @@ type DatePickerProps$1 = Omit<DatePickerProps, 'variant' | 'defaultValue'> & {
|
|
|
9
9
|
meta?: string;
|
|
10
10
|
loading?: boolean;
|
|
11
11
|
};
|
|
12
|
-
declare const DatePicker$1:
|
|
12
|
+
declare const DatePicker$1: react13.ForwardRefExoticComponent<Omit<DatePickerProps, "defaultValue" | "variant"> & {
|
|
13
13
|
variant?: Variants;
|
|
14
14
|
defaultValue?: Date | undefined;
|
|
15
15
|
meta?: string;
|
|
16
16
|
loading?: boolean;
|
|
17
|
-
} &
|
|
17
|
+
} & react13.RefAttributes<HTMLDivElement>>;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { DatePicker$1 as DatePicker, DatePickerProps$1 as DatePickerProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Variants } from "../../atoms/types/variants.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react5 from "react";
|
|
3
3
|
import { DateRangePickerProps } from "@equinor/eds-core-react";
|
|
4
4
|
|
|
5
5
|
//#region src/molecules/DateRangePicker/DateRangePicker.d.ts
|
|
@@ -8,10 +8,10 @@ type DateRangePickerProps$1 = Omit<DateRangePickerProps, 'variant'> & {
|
|
|
8
8
|
meta?: string;
|
|
9
9
|
loading?: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare const DateRangePicker$1:
|
|
11
|
+
declare const DateRangePicker$1: react5.ForwardRefExoticComponent<Omit<DateRangePickerProps, "variant"> & {
|
|
12
12
|
variant?: Variants;
|
|
13
13
|
meta?: string;
|
|
14
14
|
loading?: boolean;
|
|
15
|
-
} &
|
|
15
|
+
} & react5.RefAttributes<HTMLDivElement>>;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { DateRangePicker$1 as DateRangePicker, DateRangePickerProps$1 as DateRangePickerProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react7 from "react";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
import { ButtonProps, DialogProps } from "@equinor/eds-core-react";
|
|
4
4
|
import { IconData } from "@equinor/eds-icons";
|
|
@@ -51,6 +51,6 @@ interface DialogProps$1 extends Omit<DialogProps, 'title'> {
|
|
|
51
51
|
* @param additionalInfo - Defaults to empty, and won't show the additional info button
|
|
52
52
|
* Also inherits props from EDS dialog
|
|
53
53
|
*/
|
|
54
|
-
declare const Dialog$1:
|
|
54
|
+
declare const Dialog$1: react7.ForwardRefExoticComponent<DialogProps$1 & react7.RefAttributes<HTMLDivElement>>;
|
|
55
55
|
//#endregion
|
|
56
56
|
export { Dialog$1 as Dialog, DialogAction, DialogProps$1 as DialogProps };
|
|
@@ -5,7 +5,7 @@ import{colors as e}from"../../atoms/style/colors.js";import{spacings as t}from".
|
|
|
5
5
|
align-items: center;
|
|
6
6
|
justify-content: space-between;
|
|
7
7
|
width: 100%;
|
|
8
|
-
padding: ${t.small} ${t.
|
|
8
|
+
padding: ${t.small} ${t.small} ${t.small}
|
|
9
9
|
${t.medium};
|
|
10
10
|
|
|
11
11
|
${({$withBorders:t})=>t?i`
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { SizeIconProps } from "../../atoms/types/Icon.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react11 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/EquinorLogo/EquinorLogo.d.ts
|
|
5
5
|
interface EquinorLogoProps extends Partial<SizeIconProps> {
|
|
6
6
|
large?: boolean;
|
|
7
7
|
color?: 'red' | 'white' | 'black';
|
|
8
8
|
}
|
|
9
|
-
declare const EquinorLogo:
|
|
9
|
+
declare const EquinorLogo: react11.ForwardRefExoticComponent<EquinorLogoProps & react11.RefAttributes<SVGSVGElement>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { EquinorLogo, EquinorLogoProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import e from"./CompactFileProgress.js";import t from"./RegularFileProgress.js";import{useMemo as n,useState as r}from"react";import{jsx as i}from"react/jsx-runtime";const a=a=>{let[o,s]=r(!1),c=n(()
|
|
1
|
+
import e from"./CompactFileProgress.js";import t from"./RegularFileProgress.js";import{useMemo as n,useState as r}from"react";import{jsx as i}from"react/jsx-runtime";const a=a=>{let[o,s]=r(!1),c=n(()=>!!a.isError||!!a.isDone,[a.isError,a.isDone]),l=async()=>{!c&&a.onCancel?a.onCancel():a.onDelete&&(s(!0),await a.onDelete(),s(!1))};return a.compact?i(e,{...a,isDeleting:o,showCompleteState:c,handleOnClick:l}):i(t,{...a,isDeleting:o,showCompleteState:c,handleOnClick:l})};export{a as FileProgress};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import{colors as e}from"../../atoms/style/colors.js";import{shape as t}from"../../atoms/style/index.js";import{Icon as n,Tooltip as r}from"@equinor/eds-core-react";import i from"styled-components";import{jsx as a}from"react/jsx-runtime";import{help_outline as o}from"@equinor/eds-icons";const s=i(n)`
|
|
2
|
+
fill: ${e.interactive.primary__resting.rgba};
|
|
3
|
+
cursor: pointer;
|
|
4
|
+
border-radius: ${t.circle.borderRadius};
|
|
5
|
+
&:hover {
|
|
6
|
+
fill: ${e.interactive.primary__hover.rgba};
|
|
7
|
+
background: ${e.interactive.primary__hover_alt.rgba};
|
|
8
|
+
}
|
|
9
|
+
`,c=({position:e=`top`,children:t})=>a(r,{placement:e,title:t,children:a(s,{data:o,size:16})});export{c as InputExplanation};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react102 from "react";
|
|
2
2
|
import { FocusEventHandler, HTMLAttributes, MouseEventHandler, ReactNode } from "react";
|
|
3
3
|
import { IconData } from "@equinor/eds-icons";
|
|
4
4
|
|
|
@@ -15,6 +15,6 @@ interface ListItemProps extends HTMLAttributes<HTMLButtonElement> {
|
|
|
15
15
|
isChild?: boolean;
|
|
16
16
|
borderBottom?: boolean;
|
|
17
17
|
}
|
|
18
|
-
declare const ListItem:
|
|
18
|
+
declare const ListItem: react102.ForwardRefExoticComponent<ListItemProps & react102.RefAttributes<HTMLButtonElement>>;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { ListItem, ListItemProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react19 from "react";
|
|
2
2
|
import { TooltipProps } from "@equinor/eds-core-react";
|
|
3
3
|
import * as _floating_ui_utils0 from "@floating-ui/utils";
|
|
4
4
|
|
|
@@ -6,14 +6,14 @@ import * as _floating_ui_utils0 from "@floating-ui/utils";
|
|
|
6
6
|
type OptionalTooltipProps = {
|
|
7
7
|
textTransform?: string;
|
|
8
8
|
} & TooltipProps;
|
|
9
|
-
declare const OptionalTooltip:
|
|
9
|
+
declare const OptionalTooltip: react19.ForwardRefExoticComponent<{
|
|
10
10
|
textTransform?: string;
|
|
11
11
|
} & {
|
|
12
12
|
placement?: _floating_ui_utils0.Placement;
|
|
13
|
-
title?:
|
|
13
|
+
title?: react19.ReactNode;
|
|
14
14
|
children: React.ReactElement & React.RefAttributes<HTMLElement>;
|
|
15
15
|
enterDelay?: number;
|
|
16
16
|
portalContainer?: HTMLElement;
|
|
17
|
-
} & Omit<
|
|
17
|
+
} & Omit<react19.HTMLAttributes<HTMLDivElement>, "title"> & react19.RefAttributes<HTMLDivElement>>;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { OptionalTooltip, OptionalTooltipProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react17 from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/molecules/ProfileAvatar/ProfileAvatar.d.ts
|
|
4
4
|
interface ProfileAvatarProps {
|
|
@@ -7,6 +7,6 @@ interface ProfileAvatarProps {
|
|
|
7
7
|
size?: 'small' | 'small-medium' | 'medium' | 'large' | 'x-large' | number;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const ProfileAvatar:
|
|
10
|
+
declare const ProfileAvatar: react17.ForwardRefExoticComponent<ProfileAvatarProps & react17.RefAttributes<HTMLDivElement>>;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { ProfileAvatar, ProfileAvatarProps };
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react41 from "react";
|
|
2
2
|
import { SearchProps } from "@equinor/eds-core-react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/Search/Search.d.ts
|
|
5
|
-
|
|
5
|
+
interface SearchProps$1 extends SearchProps {
|
|
6
|
+
lightBackground?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const Search$1: react41.ForwardRefExoticComponent<SearchProps$1 & react41.RefAttributes<HTMLInputElement>>;
|
|
6
9
|
//#endregion
|
|
7
10
|
export { Search$1 as Search };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import{animation as e}from"../../atoms/style/animation.js";import{colors as t}from"../../atoms/style/colors.js";import{forwardRef as n}from"react";import{Search as r}from"@equinor/eds-core-react";import i from"styled-components";import{jsx as
|
|
1
|
+
import{animation as e}from"../../atoms/style/animation.js";import{colors as t}from"../../atoms/style/colors.js";import{forwardRef as n}from"react";import{Search as r}from"@equinor/eds-core-react";import i,{css as a}from"styled-components";import{jsx as o}from"react/jsx-runtime";const s=i(r)`
|
|
2
2
|
input {
|
|
3
3
|
color: ${t.text.static_icons__default.rgba};
|
|
4
4
|
transition:
|
|
5
5
|
background ${e.transitionMS},
|
|
6
6
|
box-shadow ${e.transitionMS};
|
|
7
|
-
&:hover {
|
|
7
|
+
&:hover:not(:disabled) {
|
|
8
8
|
background: ${t.ui.background__light_medium.rgba};
|
|
9
9
|
box-shadow: inset 0 -2px 0 0 ${t.text.static_icons__tertiary.rgba};
|
|
10
10
|
}
|
|
@@ -17,4 +17,10 @@ import{animation as e}from"../../atoms/style/animation.js";import{colors as t}fr
|
|
|
17
17
|
box-shadow: inset 0 -2px 0 0 ${t.interactive.primary__resting.rgba};
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
${({$lightBackground:e})=>e?a`
|
|
22
|
+
> div:first-child {
|
|
23
|
+
background: ${t.ui.background__default.rgba};
|
|
24
|
+
}
|
|
25
|
+
`:``}
|
|
26
|
+
`,c=n(({lightBackground:e=!1,...t},n)=>o(s,{...t,ref:n,autoComplete:`off`,$lightBackground:e}));c.displayName=`Search`;export{c as Search};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{useSelect as e}from"../../atoms/hooks/useSelect.js";import{
|
|
1
|
+
import{useSelect as e}from"../../atoms/hooks/useSelect.js";import{InputExplanation as t}from"../InputExplanation/InputExplanation.js";import{useOutsideClick as n}from"../../node_modules/@equinor/eds-utils/dist/esm/hooks/useOutsideClick.js";import{SelectItemSkeleton as r}from"./SelectItemSkeleton.js";import{LabelWrapper as i,PersistentComboBoxWrapper as a,PersistentStickyWrapper as o,StyledMenu as s}from"./Select.styles.js";import{GroupedSelectMenu as c}from"./GroupedSelectMenu.js";import{GroupedSelectPersistent as l}from"./GroupedSelectPersistent.js";import{ListSelectMenu as u}from"./ListSelectMenu.js";import{ListSelectPersistent as d}from"./ListSelectPersistent.js";import{SearchBar as f}from"./SearchBar.js";import{useMemo as p,useRef as m}from"react";import{Label as h}from"@equinor/eds-core-react";import{Fragment as g,jsx as _,jsxs as v}from"react/jsx-runtime";const y=y=>{let{clearable:ee=!0,loading:b=!1,disabled:x=!1,lightBackground:S=!1,underlineHighlight:C=!1,sortValues:w=!0,placeholder:T=`Select...`,label:E,meta:D,id:O=`amplify-combobox-${E}`,inDialog:k=!1,onSearchFilter:A,CustomMenuItemComponent:j,mode:M=`menu`,explanation:N,explanationPosition:P}=y,{handleOnAddItem:F,handleOnItemKeyDown:I,handleOnItemSelect:L,itemRefs:R,search:z,handleOnClose:B,open:V,handleOnClear:H,handleOnSearchChange:U,handleOnSearchKeyDown:W,handleToggleOpen:G,selectedValues:K,handleOnOpen:q,handleOnRemoveItem:J,searchRef:Y,tryingToRemoveItem:X}=e({...y,clearable:ee,loading:b,disabled:x,lightBackground:S,underlineHighlight:C,sortValues:w,placeholder:T}),Z=m(null),Q=m(null),$=p(()=>!!E||!!D,[E,D]);if(n(Q.current,e=>{k&&V&&e.target&&Z.current&&Q.current&&!Z.current.contains(e.target)&&!Q.current?.contains(e.target)&&B()}),M===`persistent`&&`value`in y&&y.value)throw Error(`You cannot use SingleSelect with persistent mode`);if(M===`persistent`){let e=`groups`in y&&y.groups?_(l,{...y,search:z,itemRefs:R,onItemSelect:L,onItemKeyDown:I,onSearchFilter:A,CustomMenuItemComponent:j}):_(d,{...y,search:z,itemRefs:R,onAddItem:y.onAddItem?F:void 0,onItemSelect:L,onItemKeyDown:I,onSearchFilter:A,CustomMenuItemComponent:j});return v(g,{children:[$&&_(h,{label:v(i,{children:[E,N&&_(t,{position:P,children:N})]}),meta:D,htmlFor:O,disabled:x}),v(a,{$maxHeight:y.mode===`persistent`&&y.maxHeight?y.maxHeight:void 0,$shouldShowLabel:$,children:[_(o,{children:_(f,{props:y,anchorRef:Z,search:z,searchRef:Y,open:V,selectedValues:K,handleOnOpen:q,handleToggleOpen:G,handleOnRemoveItem:J,tryingToRemoveItem:X,handleOnSearchChange:U,handleOnSearchKeyDown:W,handleOnClear:H})}),y.loading?v(g,{children:[_(r,{}),_(r,{}),_(r,{})]}):e]})]})}return v(`div`,{children:[$&&_(h,{label:v(i,{children:[E,N&&_(t,{position:P,children:N})]}),meta:D,htmlFor:O,disabled:x}),_(f,{props:y,anchorRef:Z,search:z,searchRef:Y,open:V,selectedValues:K,handleOnOpen:q,handleToggleOpen:G,handleOnRemoveItem:J,tryingToRemoveItem:X,handleOnSearchChange:U,handleOnSearchKeyDown:W,handleOnClear:H}),V&&_(s,{ref:Q,open:!0,id:`combobox-menu`,anchorEl:Z.current,onClose:B,placement:`bottom`,style:{width:`${Z.current?.clientWidth}px`,maxWidth:`${Z.current?.clientWidth}px`},children:`groups`in y&&y.groups?_(c,{...y,search:z,itemRefs:R,onItemSelect:L,onItemKeyDown:I,onSearchFilter:A,CustomMenuItemComponent:j}):_(u,{...y,search:z,itemRefs:R,onAddItem:y.onAddItem?F:void 0,onItemSelect:L,onItemKeyDown:I,onSearchFilter:A,CustomMenuItemComponent:j})},`select-menu-${z}`)]})};export{y as Select};
|
|
@@ -6,6 +6,10 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
6
6
|
background-color: ${r.ui.background__default.rgba};
|
|
7
7
|
`}
|
|
8
8
|
`,p=u.span`
|
|
9
|
+
display: flex;
|
|
10
|
+
gap: ${i.x_small};
|
|
11
|
+
width: 100%;
|
|
12
|
+
`,m=u.span`
|
|
9
13
|
display: flex;
|
|
10
14
|
gap: ${i.small};
|
|
11
15
|
align-items: center;
|
|
@@ -27,7 +31,7 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
27
31
|
border-bottom: 1px solid ${r.ui.background__heavy.rgba};
|
|
28
32
|
padding-bottom: ${i.small};
|
|
29
33
|
`}
|
|
30
|
-
`,
|
|
34
|
+
`,h=u.div`
|
|
31
35
|
position: relative;
|
|
32
36
|
display: grid;
|
|
33
37
|
grid-template-columns: 1fr auto;
|
|
@@ -97,7 +101,7 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
97
101
|
width: calc(100% - 24px);
|
|
98
102
|
}
|
|
99
103
|
}
|
|
100
|
-
`,
|
|
104
|
+
`,g=u.section`
|
|
101
105
|
position: relative;
|
|
102
106
|
display: flex;
|
|
103
107
|
flex-wrap: wrap;
|
|
@@ -139,7 +143,7 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
139
143
|
}
|
|
140
144
|
}
|
|
141
145
|
}
|
|
142
|
-
`,
|
|
146
|
+
`,_=u(s)`
|
|
143
147
|
position: absolute;
|
|
144
148
|
top: 50%;
|
|
145
149
|
transform: translate(0, -50%);
|
|
@@ -159,13 +163,13 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
159
163
|
fill: ${r.interactive.disabled__text.rgba};
|
|
160
164
|
}
|
|
161
165
|
}
|
|
162
|
-
`,
|
|
166
|
+
`,v=u(o)`
|
|
163
167
|
background: ${({$tryingToRemove:e,$lightBackground:t})=>e?r.interactive.primary__hover_alt.rgba:t?r.ui.background__light.rgba:r.ui.background__default.rgba} !important;
|
|
164
|
-
`,
|
|
168
|
+
`,y=u.div`
|
|
165
169
|
padding: ${i.small} 0;
|
|
166
|
-
`,
|
|
170
|
+
`,b=u(l)`
|
|
167
171
|
padding: ${i.small} 0 ${i.small} ${i.medium};
|
|
168
|
-
`,
|
|
172
|
+
`,x=u(c.Item)`
|
|
169
173
|
flex-grow: 1;
|
|
170
174
|
padding-left: 10px;
|
|
171
175
|
|
|
@@ -189,16 +193,16 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
189
193
|
background: ${r.interactive.primary__selected_hover.rgba};
|
|
190
194
|
}
|
|
191
195
|
`:``}}
|
|
192
|
-
`,
|
|
196
|
+
`,S=u.div`
|
|
193
197
|
border: 1px solid ${r.ui.background__heavy.rgba};
|
|
194
198
|
border-radius: ${a.corners.borderRadius};
|
|
195
199
|
overflow: auto;
|
|
196
200
|
background-color: ${r.ui.background__default.rgba};
|
|
197
201
|
height: ${({$shouldShowLabel:e,$maxHeight:t})=>t||(e?d`calc(100% - 16px)`:`100%`)};
|
|
198
|
-
`,
|
|
202
|
+
`,C=u.div`
|
|
199
203
|
position: sticky;
|
|
200
204
|
top: 0;
|
|
201
|
-
`,
|
|
205
|
+
`,w=u.button`
|
|
202
206
|
width: 100%;
|
|
203
207
|
display: flex;
|
|
204
208
|
align-items: center;
|
|
@@ -215,29 +219,29 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
215
219
|
&:focus-visible {
|
|
216
220
|
outline: 2px dashed ${r.interactive.primary__resting.rgba};
|
|
217
221
|
}
|
|
218
|
-
`,
|
|
222
|
+
`,T=u.hr`
|
|
219
223
|
height: calc(100% + ${i.medium} * 2);
|
|
220
224
|
justify-self: center;
|
|
221
225
|
width: ${i.x_large};
|
|
222
226
|
min-width: ${i.x_large};
|
|
223
|
-
`,
|
|
227
|
+
`,E=u(l)`
|
|
224
228
|
user-select: none;
|
|
225
229
|
pointer-events: none;
|
|
226
230
|
position: absolute;
|
|
227
231
|
color: ${r.text.static_icons__tertiary.rgba};
|
|
228
232
|
top: calc(50%);
|
|
229
233
|
transform: translate(0, -50%);
|
|
230
|
-
`,
|
|
234
|
+
`,D=u(E)`
|
|
231
235
|
white-space: nowrap;
|
|
232
236
|
overflow: hidden;
|
|
233
237
|
text-overflow: ellipsis;
|
|
234
238
|
color: ${r.text.static_icons__default.rgba};
|
|
235
239
|
max-width: 100%;
|
|
236
|
-
`,D=u(l)`
|
|
237
|
-
margin: ${i.medium};
|
|
238
240
|
`,O=u(l)`
|
|
241
|
+
margin: ${i.medium};
|
|
242
|
+
`,k=u(l)`
|
|
239
243
|
margin-left: ${i.medium};
|
|
240
|
-
`,
|
|
244
|
+
`,A=u(c)`
|
|
241
245
|
max-height: 20rem;
|
|
242
246
|
max-width: inherit;
|
|
243
247
|
overflow-y: auto;
|
|
@@ -245,10 +249,10 @@ import{animation as e}from"../../atoms/style/animation.js";import{VARIANT_COLORS
|
|
|
245
249
|
width: inherit;
|
|
246
250
|
max-width: inherit;
|
|
247
251
|
}
|
|
248
|
-
`,
|
|
252
|
+
`,j=u.div`
|
|
249
253
|
display: flex;
|
|
250
254
|
align-items: center;
|
|
251
|
-
`,
|
|
255
|
+
`,M=u(s)`
|
|
252
256
|
width: 36px;
|
|
253
257
|
height: 36px;
|
|
254
|
-
`;export{
|
|
258
|
+
`;export{_ as ClearButton,v as ComboBoxChip,h as Container,b as GroupTitle,m as HelperWrapper,p as LabelWrapper,T as MenuItemSpacer,j as MenuItemWrapper,k as NoItemsFoundText,O as NoTagFoundText,S as PersistentComboBoxWrapper,y as PersistentGroupsWrapper,w as PersistentListItem,C as PersistentStickyWrapper,E as PlaceholderText,g as Section,M as SmallButton,A as StyledMenu,x as StyledMenuItem,D as ValueText,f as Wrapper};
|