@equinor/amplify-component-lib 11.0.2 → 11.0.3

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.
Files changed (61) hide show
  1. package/dist/atoms/hooks/useLocalStorage.d.ts +2 -2
  2. package/dist/atoms/hooks/useSelect.d.ts +3 -3
  3. package/dist/deprecated/ExpandingIconButton/ExpandingIconButton.d.ts +2 -2
  4. package/dist/deprecated/IconToggleButton.d.ts +2 -2
  5. package/dist/molecules/ApplicationIcon/ApplicationIcon.js +1 -1
  6. package/dist/molecules/ApplicationIcon/{ApplicationIconBase/ApplicationIconBase.js → ApplicationIconBase.js} +13 -10
  7. package/dist/molecules/ApplicationIcon/Fallback.js +1 -1
  8. package/dist/molecules/ApplicationIcon/Icons/Acquire.js +1 -1
  9. package/dist/molecules/ApplicationIcon/Icons/Adca.js +1 -1
  10. package/dist/molecules/ApplicationIcon/Icons/Atwork.js +1 -1
  11. package/dist/molecules/ApplicationIcon/Icons/Bravos.js +1 -1
  12. package/dist/molecules/ApplicationIcon/Icons/Dasha.js +1 -1
  13. package/dist/molecules/ApplicationIcon/Icons/DataDeliveryPlan.js +1 -0
  14. package/dist/molecules/ApplicationIcon/Icons/FluidSymphony.js +1 -1
  15. package/dist/molecules/ApplicationIcon/Icons/FluxMaps.js +1 -1
  16. package/dist/molecules/ApplicationIcon/Icons/ForecastDataInventory.js +1 -1
  17. package/dist/molecules/ApplicationIcon/Icons/ForecastFormatter.js +1 -1
  18. package/dist/molecules/ApplicationIcon/Icons/JsEmbark.js +1 -1
  19. package/dist/molecules/ApplicationIcon/Icons/LoggingQualification.js +1 -1
  20. package/dist/molecules/ApplicationIcon/Icons/Orca.js +1 -1
  21. package/dist/molecules/ApplicationIcon/Icons/Premo.js +1 -1
  22. package/dist/molecules/ApplicationIcon/Icons/Pwex.js +1 -1
  23. package/dist/molecules/ApplicationIcon/Icons/Recap.js +1 -1
  24. package/dist/molecules/ApplicationIcon/Icons/Sam.js +1 -1
  25. package/dist/molecules/ApplicationIcon/Icons/SubsurfacePortal.js +1 -1
  26. package/dist/molecules/DateRangePicker/DateRangePicker.d.ts +3 -3
  27. package/dist/molecules/Dialog/Dialog.d.ts +2 -2
  28. package/dist/molecules/EquinorLogo/EquinorLogo.d.ts +2 -2
  29. package/dist/molecules/IconCell/IconCell.d.ts +2 -2
  30. package/dist/molecules/OptionalTooltip/OptionalTooltip.d.ts +4 -4
  31. package/dist/molecules/ProfileAvatar/ProfileAvatar.d.ts +2 -2
  32. package/dist/molecules/RichTextEditor/index.d.ts +5 -5
  33. package/dist/molecules/Search/Search.d.ts +2 -2
  34. package/dist/molecules/Skeleton/SkeletonBase/SkeletonBase.d.ts +2 -2
  35. package/dist/organisms/Filter/Filter.d.ts +2 -2
  36. package/dist/organisms/Filter/QuickFilter.d.ts +2 -2
  37. package/dist/organisms/Filter/SortMenu.d.ts +2 -2
  38. package/dist/organisms/SideBar/SideBar.d.ts +2 -2
  39. package/dist/organisms/Status/Action.d.ts +2 -2
  40. package/dist/organisms/Status/Description.d.ts +2 -2
  41. package/dist/organisms/Status/MissingAccesses.d.ts +2 -2
  42. package/dist/organisms/Status/Title.d.ts +2 -2
  43. package/dist/organisms/Status/collections/BadRequest.d.ts +2 -2
  44. package/dist/organisms/Status/collections/GenericError.d.ts +2 -2
  45. package/dist/organisms/Status/collections/MissingPermissions.d.ts +2 -2
  46. package/dist/organisms/Status/collections/PageNotFound.d.ts +2 -2
  47. package/dist/organisms/Status/collections/ServerError.d.ts +2 -2
  48. package/dist/organisms/ToggleGroup/ToggleGroup.d.ts +2 -2
  49. package/dist/organisms/ToggleGroup/ToggleGroupOption.d.ts +2 -2
  50. package/dist/organisms/TopBar/Account/Account.d.ts +0 -3
  51. package/dist/organisms/TopBar/Account/Account.js +1 -1
  52. package/dist/organisms/TopBar/Account/ImpersonateMenu/CreateOrEditUser/CreateOrEditUser.js +1 -1
  53. package/dist/organisms/TopBar/Account/ImpersonateMenu/ImpersonateMenu.js +1 -1
  54. package/dist/organisms/TopBar/Actions.d.ts +2 -2
  55. package/dist/organisms/TopBar/FieldMenu/FieldMenu.d.ts +2 -2
  56. package/dist/organisms/TopBar/Notifications/NotificationProvider.d.ts +2 -2
  57. package/package.json +3 -3
  58. package/dist/molecules/ApplicationIcon/ApplicationIconBase/ApplicationIconContent.js +0 -1
  59. package/dist/molecules/ApplicationIcon/ApplicationIconCollection.js +0 -1
  60. package/dist/molecules/ApplicationIcon/Icons/FourDInsight.js +0 -1
  61. package/dist/molecules/ApplicationIcon/Icons/InPress.js +0 -1
@@ -1,6 +1,6 @@
1
- import * as react139 from "react";
1
+ import * as react147 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, react139.Dispatch<react139.SetStateAction<T>>, () => void];
4
+ declare const useLocalStorage: <T>(key: string, defaultState: T, keepAliveMs?: number) => readonly [T, react147.Dispatch<react147.SetStateAction<T>>, () => void];
5
5
  //#endregion
6
6
  export { useLocalStorage };
@@ -1,6 +1,6 @@
1
1
  import { SelectOption, SelectOptionRequired } from "../../molecules/Select/Select.types.js";
2
2
  import { SelectComponentProps } from "../../molecules/Select/Select.js";
3
- import * as react141 from "react";
3
+ import * as react149 from "react";
4
4
  import { ChangeEvent, KeyboardEvent } from "react";
5
5
 
6
6
  //#region src/atoms/hooks/useSelect.d.ts
@@ -16,8 +16,8 @@ declare const useSelect: <T extends SelectOptionRequired>(props: SelectComponent
16
16
  handleOnOpen: () => void;
17
17
  handleOnRemoveItem: (item: SelectOption<T>) => void;
18
18
  search: string;
19
- searchRef: react141.RefObject<HTMLInputElement | null>;
20
- itemRefs: react141.RefObject<(HTMLButtonElement | null)[]>;
19
+ searchRef: react149.RefObject<HTMLInputElement | null>;
20
+ itemRefs: react149.RefObject<(HTMLButtonElement | null)[]>;
21
21
  selectedValues: T[];
22
22
  open: boolean;
23
23
  tryingToRemoveItem: T | undefined;
@@ -1,4 +1,4 @@
1
- import * as react0 from "react";
1
+ import * as react1 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: react0.ForwardRefExoticComponent<ExpandingIconButtonProps & react0.RefAttributes<HTMLDivElement>>;
15
+ declare const ExpandingIconButton: react1.ForwardRefExoticComponent<ExpandingIconButtonProps & react1.RefAttributes<HTMLDivElement>>;
16
16
  //#endregion
17
17
  export { ExpandingIconButton };
@@ -1,4 +1,4 @@
1
- import * as react1 from "react";
1
+ import * as react3 from "react";
2
2
  import { IconData } from "@equinor/eds-icons";
3
3
 
4
4
  //#region src/deprecated/IconToggleButton.d.ts
@@ -21,6 +21,6 @@ interface IconToggleButtonProps {
21
21
  /**
22
22
  * @deprecated Being deprecated from amplify-component-lib move into app if you want the implementation
23
23
  */
24
- declare const IconToggleButton: react1.ForwardRefExoticComponent<IconToggleButtonProps & react1.RefAttributes<HTMLButtonElement>>;
24
+ declare const IconToggleButton: react3.ForwardRefExoticComponent<IconToggleButtonProps & react3.RefAttributes<HTMLButtonElement>>;
25
25
  //#endregion
26
26
  export { IconToggleButton };
@@ -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{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
+ 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{DataDeliveryPlan as a}from"./Icons/DataDeliveryPlan.js";import{FluidSymphony as o}from"./Icons/FluidSymphony.js";import{FluxMaps as s}from"./Icons/FluxMaps.js";import{ForecastDataInventory as c}from"./Icons/ForecastDataInventory.js";import{ForecastFormatter as l}from"./Icons/ForecastFormatter.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{forwardRef as y}from"react";import{jsx as b}from"react/jsx-runtime";const x=[{appName:[`adca`],component:t},{appName:[`portal`,`embark`,`jsembark`],component:u},{appName:[`acquire`],component:e},{appName:[`dasha`],component:i},{appName:[`forecast formatter`,`Forecast formatter`,`Forecast Formatter`,`forecast-formatter`],component:l},{appName:[`fdi`],component:c},{appName:[`fluid-symphony`,`Fluid Symphony`],component:o},{appName:[`orca`],component:f},{appName:[`logging-qualification`,`logging qualification`,`ltg`],component:d},{appName:[`flux-maps`,`fluxmaps`,`flux maps`],component:s},{appName:[`recap`],component:h},{appName:[`pwex`],component:m},{appName:[`bravos`],component:r},{appName:[`premo`],component:p},{appName:[`sam`],component:g},{appName:[`subsurface portal`],component:_},{appName:[`atwork`],component:n},{appName:[`data delivery plan`,`data-delivery-plan`],component:a}],S=y(({name:e,size:t=48,iconOnly:n=!1,withHover:r=!1,grayScale:i=!1},a)=>{let o=x.find(t=>t.appName.includes(e.toLowerCase()));return o===void 0?b(v,{size:t,ref:a,iconOnly:n,withHover:r,grayScale:i,name:e}):b(o.component,{size:t,ref:a,iconOnly:n,withHover:r,grayScale:i})});S.displayName=`ApplicationIcon`;export{S as ApplicationIcon};
@@ -1,4 +1,4 @@
1
- import{tokens as e}from"../../../node_modules/@equinor/eds-tokens/dist/esm/base/index.js";import{ApplicationIconContent as t}from"./ApplicationIconContent.js";import{GRAYSCALE_FILTER_VALUE as n}from"../ApplicationIcon.constants.js";import{forwardRef as r}from"react";import i,{css as a}from"styled-components";import{jsx as o,jsxs as s}from"react/jsx-runtime";const{colors:c,elevation:l}=e,u=i.div`
1
+ import{colors as e}from"../../atoms/style/colors.js";import{GRAYSCALE_FILTER_VALUE as t}from"./ApplicationIcon.constants.js";import{forwardRef as n}from"react";import r,{css as i}from"styled-components";import{jsx as a,jsxs as o}from"react/jsx-runtime";const s=r.div`
2
2
  position: relative;
3
3
  display: flex;
4
4
  justify-content: center;
@@ -9,8 +9,8 @@ import{tokens as e}from"../../../node_modules/@equinor/eds-tokens/dist/esm/base/
9
9
  height: ${({$size:e})=>`${e}px`};
10
10
  z-index: 100;
11
11
  overflow: hidden;
12
- ${({$grayScale:e})=>e?a`
13
- filter: ${n};
12
+ ${({$grayScale:e})=>e?i`
13
+ filter: ${t};
14
14
  `:``}
15
15
  > svg {
16
16
  position: absolute;
@@ -19,18 +19,21 @@ import{tokens as e}from"../../../node_modules/@equinor/eds-tokens/dist/esm/base/
19
19
  pointer-events: none;
20
20
  transition: all 2s ease-in-out;
21
21
  z-index: 300;
22
- transform: scale(0.8);
22
+ width: 100%;
23
+ height: 100%;
23
24
  }
25
+
24
26
  > p {
25
27
  color: #ffffff;
26
28
  z-index: 300;
27
29
  font-weight: 700;
28
30
  }
29
- ${({$withHover:e})=>e&&a`
31
+
32
+ ${({$withHover:e})=>e&&i`
30
33
  cursor: pointer;
31
34
  &:hover {
32
35
  > svg {
33
- transform: scale(0.9);
36
+ transform: scale(1.08);
34
37
  }
35
38
  > div:nth-child(even) {
36
39
  top: -80%;
@@ -42,7 +45,7 @@ import{tokens as e}from"../../../node_modules/@equinor/eds-tokens/dist/esm/base/
42
45
  }
43
46
  }
44
47
  `};
45
- `,d=i.div`
48
+ `,c=r.div`
46
49
  position: absolute;
47
50
  top: ${e=>e.$top}%;
48
51
  left: ${e=>e.$left}%;
@@ -50,10 +53,10 @@ import{tokens as e}from"../../../node_modules/@equinor/eds-tokens/dist/esm/base/
50
53
  z-index: ${e=>200-e.$index};
51
54
  width: 120%;
52
55
  height: 80%;
53
- box-shadow: ${l.raised};
56
+ box-shadow: rgba(0, 0, 0, 0.7) 0 0 12px;
54
57
  // This background is set to hex and not rgba because design do not want this color to change in dark mode , 18 march 2024.
55
- background: ${c.interactive.primary__resting.hex};
58
+ background: ${e.interactive.primary__resting.hex};
56
59
  transition: all 3s cubic-bezier(0.25, 1, 0.5, 1);
57
60
  transform: rotate(${e=>e.$rotation}deg);
58
61
  pointer-events: none;
59
- `,f=r(({size:e=48,shapes:n,iconOnly:r,withHover:i,grayScale:a=!1,...c},l)=>r?o(u,{"data-testid":`application-icon`,ref:l,$size:e,$iconOnly:!0,$withHover:i,$grayScale:a,children:o(t,{size:e,...c})}):s(u,{"data-testid":`application-icon`,ref:l,$size:e,$withHover:i,$grayScale:a,children:[o(t,{size:e,...c}),n.map((e,t)=>o(d,{"data-testid":`shape`,$index:t,$top:e.top,$left:e.left,$rotation:e.rotation,$grayScale:a},`shape-${t}`))]}));f.displayName=`ApplicationIconBase`;var p=f;export{p as default};
62
+ `,l=n(({size:e,shapes:t,iconOnly:n,withHover:r,grayScale:i=!1,children:l},u)=>n?a(s,{"data-testid":`application-icon`,ref:u,$size:e,$iconOnly:!0,$withHover:r,$grayScale:i,children:l}):o(s,{"data-testid":`application-icon`,ref:u,$size:e,$withHover:r,$grayScale:i,children:[l,t.map((e,t)=>a(c,{"data-testid":`shape`,$index:t,$top:e.top,$left:e.left,$rotation:e.rotation,$grayScale:i},`shape-${t}`))]}));l.displayName=`ApplicationIconBase`;export{l as ApplicationIconBase};
@@ -1 +1 @@
1
- import{nameToShapes as e}from"./ApplicationIcon.utils.js";import t from"./ApplicationIconBase/ApplicationIconBase.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=n((n,i)=>r(t,{ref:i,shapes:e(n.name),...n}));i.displayName=`Fallback`;export{i as Fallback};
1
+ import{ApplicationIconBase as e}from"./ApplicationIconBase.js";import{nameToAcronym as t,nameToShapes as n}from"./ApplicationIcon.utils.js";import{forwardRef as r}from"react";import{Typography as i}from"@equinor/eds-core-react";import{jsx as a}from"react/jsx-runtime";const o=r((r,o)=>a(e,{ref:o,shapes:n(r.name),...r,children:a(i,{style:{fontSize:r.size/2},children:t(r.name)})}));o.displayName=`Fallback`;export{o as Fallback};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{acquire as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-45,left:-5,rotation:25},{top:64,left:-5,rotation:5}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`Acquire`;export{a as Acquire};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-40,left:-10,rotation:13},{top:60,left:-8,rotation:217}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{d:`M34 29.2696C34 26.9416 30.0264 26.7489 28.0419 26.7978C27.4513 26.8124 26.9412 26.3453 26.9412 25.7546L26.9412 22.0942M34 29.2696C34 32.3724 29.2941 31.9845 26.9412 31.9845L15 31.9845C14.4477 31.9845 14 31.5368 14 30.9845L14 19.0217C14 18.4694 14.4477 18.0217 15 18.0217L26.9412 18.0217M34 29.2696L34 24.5M34 29.2696C34 27.8612 34 26.1882 34 24.5M26.9412 22.0942L26.9412 20.0579M26.9412 22.0942L34 22.0942M26.9412 18.0217L26.9412 15.045C26.9412 14.4754 27.4141 14.0246 27.9804 14.0852C29.9431 14.2955 34 14.986 34 17.1028M26.9412 18.0217L34 18M26.9412 18.0217L26.9412 20.0579M34 17.1028C34 17.3762 34 17.6767 34 18M34 17.1028L34 18M34 17.1028L27 16M34 18L34 20M34 18C34 18.5982 34 19.2742 34 20M26.9412 20.0579L34 20M34 20C34 20.6635 34 21.3687 34 22.0942M34 20L34 22.0942M34 22.0942L34 24.5M34 22.0942C34 22.8814 34 23.6924 34 24.5M27 24.5L34 24.5`,stroke:`#F5F5F5`,strokeWidth:`3`})})}));i.displayName=`Acquire`;export{i as Acquire};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{adca as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-18,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=`Adca`;export{a as Adca};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";const i=[{top:-11,left:-28,rotation:134},{top:27,left:9,rotation:-41}],a=t((t,a)=>n(e,{ref:a,shapes:i,...t,children:r(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[n(`path`,{d:`M40.0169 34.7181L40.2186 34.7046C41.2134 34.5852 41.9756 33.7291 41.9568 32.7058C41.9379 31.6824 41.1447 30.8554 40.1462 30.7726L39.9445 30.7659L39.3808 30.7707C36.6184 30.766 34.6882 30.3355 33.204 29.7004C31.8193 29.1077 30.7182 28.2938 29.6186 27.2856L29.1466 26.8417C28.2033 25.9344 27.327 24.9228 26.4414 23.8363L25.5496 22.7254C21.7374 17.9267 17.4328 12 7.97658 12C6.88509 12 6.00023 12.8851 6 13.9765C6 15.0682 6.88494 15.9531 7.97658 15.9531C15.3014 15.9531 18.5113 20.2211 22.4544 25.1846L23.3703 26.3263C24.3061 27.4747 25.3047 28.6308 26.4066 29.6907L26.949 30.2013C28.2409 31.3858 29.7168 32.5081 31.6492 33.3351C33.7195 34.221 36.1946 34.7182 39.3721 34.7239L40.0169 34.7181Z`,fill:`white`,fillOpacity:`0.2`}),n(`path`,{d:`M30.2117 28.7016C30.2117 27.6099 29.3268 26.725 28.2351 26.725C27.1435 26.725 26.2585 27.6099 26.2585 28.7016C26.2585 29.7932 27.1435 30.6782 28.2351 30.6782C29.3268 30.6782 30.2117 29.7932 30.2117 28.7016Z`,fill:`white`}),n(`path`,{d:`M35.6255 31.9684C35.6255 30.8768 34.7406 29.9918 33.6489 29.9918C32.5573 29.9918 31.6724 30.8768 31.6724 31.9684C31.6724 33.0601 32.5573 33.945 33.6489 33.945C34.7406 33.945 35.6255 33.0601 35.6255 31.9684Z`,fill:`white`}),n(`path`,{d:`M42 32.7422C42 31.6505 41.1151 30.7656 40.0235 30.7656C38.9318 30.7656 38.0469 31.6505 38.0469 32.7422C38.0469 33.8338 38.9318 34.7188 40.0235 34.7188C41.1151 34.7188 42 33.8338 42 32.7422Z`,fill:`white`}),n(`path`,{d:`M22.4544 25.1844C23.1334 26.0389 24.3764 26.1815 25.2311 25.5029C26.0858 24.8238 26.2286 23.58 25.5496 22.7252C21.7374 17.9266 17.4328 12.0008 7.97658 12.0008C6.88494 12.0008 6 12.8857 6 13.9773C6.0002 15.0688 6.88507 15.9539 7.97658 15.9539C15.3014 15.9539 18.5113 20.2209 22.4544 25.1844Z`,fill:`white`})]})}));a.displayName=`Adca`;export{a as Adca};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{atwork as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-45,left:1,rotation:15},{top:72,left:-5,rotation:220}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`atWork`;export{a as AtWork};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-22,left:-17,rotation:0},{top:40,left:11,rotation:200}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{d:`M28.7021 10C29.6186 10.0001 30.3613 10.7427 30.3613 11.6592V12.7656H32.5742C35.0183 12.7656 37 14.7473 37 17.1914V34.3398C36.9999 36.7838 35.0183 38.7646 32.5742 38.7646H15.4258L15.1973 38.7588C12.8593 38.64 11.0001 36.7073 11 34.3398V17.1914C11 14.8239 12.8593 12.8903 15.1973 12.7715L15.4258 12.7656H17.6387V11.6592C17.6387 10.7426 18.3813 10 19.2979 10C20.2144 10 20.957 10.7426 20.957 11.6592V12.7656H27.042V11.6592C27.042 10.7426 27.7856 10 28.7021 10ZM14.3193 34.3398C14.3195 34.9508 14.8148 35.4463 15.4258 35.4463H32.5742C33.1852 35.4463 33.6805 34.9508 33.6807 34.3398V24.3828H14.3193V34.3398ZM15.4258 16.085C14.8148 16.085 14.3193 16.5804 14.3193 17.1914V21.0635H33.6807V17.1914C33.6807 16.5804 33.1852 16.085 32.5742 16.085H30.3613V17.7441C30.3613 18.6606 29.6186 19.4032 28.7021 19.4033C27.7856 19.4033 27.042 18.6607 27.042 17.7441V16.085H20.957V17.7441C20.957 18.6607 20.2144 19.4033 19.2979 19.4033C18.3813 19.4033 17.6387 18.6607 17.6387 17.7441V16.085H15.4258Z`,fill:`white`})})}));i.displayName=`AtWork`;export{i as AtWork};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{bravos as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-18,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=`Bravos`;export{a as Bravos};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";const i=[{top:-22,left:-17,rotation:0},{top:40,left:11,rotation:200}],a=t((t,a)=>n(e,{ref:a,shapes:i,...t,children:r(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[n(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M31.3136 24C31.3136 22.9662 30.61 22.065 29.607 21.8143L20.5572 19.5518C16.7035 18.5884 14 15.1258 14 11.1535V11.0148H16.8856V11.1535C16.8856 13.8017 18.688 16.1101 21.2571 16.7524L30.3069 19.0148C32.5944 19.5867 34.1992 21.6421 34.1992 24C34.1992 26.358 32.5944 28.4133 30.3069 28.9852L21.2571 31.2477C18.688 31.89 16.8856 34.1983 16.8856 36.8465V36.9852H14V36.8465C14 32.8742 16.7035 29.4117 20.5572 28.4482L29.607 26.1858C30.61 25.935 31.3136 25.0339 31.3136 24Z`,fill:`#99C6C9`}),n(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M25.5424 24C25.5424 22.8657 24.8388 21.8504 23.7767 21.4522L19.6172 19.8923C16.2384 18.6253 14 15.3953 14 11.7867V11.0148H16.8856V11.7867C16.8856 14.1924 18.3779 16.3458 20.6304 17.1905L24.7899 18.7503C26.9782 19.5709 28.428 21.6629 28.428 24C28.428 26.3372 26.9782 28.4291 24.7899 29.2498L20.6304 30.8096C18.3779 31.6543 16.8856 33.8076 16.8856 36.2133V36.9852H14V36.2133C14 32.6048 16.2384 29.3748 19.6172 28.1077L23.7767 26.5479C24.8388 26.1496 25.5424 25.1343 25.5424 24Z`,fill:`#CCE2E4`}),n(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M19.7713 24C19.7713 22.6376 19.1298 21.3547 18.0399 20.5373L17.4628 20.1045C15.2829 18.4696 14.0001 15.9038 14.0001 13.179V11.0148H16.8857V13.179C16.8857 14.9956 17.7409 16.7061 19.1941 17.796L19.7713 18.2288C21.5878 19.5912 22.6569 21.7294 22.6569 24C22.6569 26.2707 21.5878 28.4088 19.7713 29.7712L19.1941 30.2041C17.7409 31.294 16.8857 33.0045 16.8857 34.821V36.9852H14.0001V34.821C14.0001 32.0962 15.2829 29.5305 17.4628 27.8956L18.0399 27.4627C19.1298 26.6453 19.7713 25.3624 19.7713 24Z`,fill:`white`})]})}));a.displayName=`Bravos`;export{a as Bravos};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{dasha as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-25,left:-20,rotation:-5},{top:12,left:45,rotation:-70}],a=n((n,a)=>r(e,{iconData:t,shapes:i,ref:a,...n}));a.displayName=`Dasha`;export{a as Dasha};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-25,left:-20,rotation:-18},{top:12,left:36,rotation:-70}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{d:`M15.7273 29.2044L21.6364 33.0795V25.4027L15.7273 21.7561V29.2044ZM26.3636 25.4015V33.0795L32.2727 29.2044V21.7549L26.3636 25.4015ZM17.8959 17.3714L23.9988 21.1383L30.1018 17.3714L24 13.369L17.8959 17.3714ZM37 30.5638C37 31.4096 36.5828 32.1961 35.8955 32.6468L25.2591 39.6216C24.4895 40.1261 23.5105 40.1261 22.7409 39.6216L12.1045 32.6468C11.4172 32.1961 11 31.4096 11 30.5638V17.4363C11 16.5905 11.4172 15.804 12.1045 15.3534L22.7409 8.37855L22.8874 8.28961C23.632 7.87573 24.5377 7.90553 25.2591 8.37855L35.8955 15.3534C36.5828 15.804 37 16.5905 37 17.4363V30.5638Z`,fill:`#F5F5F5`})})}));i.displayName=`Dasha`;export{i as Dasha};
@@ -0,0 +1 @@
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";const i=[{top:-18,left:-17,rotation:343},{top:40,left:11,rotation:200}],a=t((t,a)=>n(e,{ref:a,shapes:i,...t,children:r(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[n(`path`,{d:`M39 36.1875C39 37.7408 37.7408 39 36.1875 39H11.8125C10.2592 39 9 37.7408 9 36.1875V11.8125C9.00003 10.2592 10.2592 9.00001 11.8125 9H24.9375C25.973 9 26.8125 9.83947 26.8125 10.875C26.8125 11.9105 25.973 12.75 24.9375 12.75H12.75V35.25H35.25V23.0625C35.25 22.027 36.0895 21.1875 37.125 21.1875C38.1605 21.1875 39 22.027 39 23.0625V36.1875Z`,fill:`#F7F7F7`}),n(`path`,{d:`M34.558 10.7056C35.2657 9.92565 36.4853 9.85543 37.2813 10.5487C38.0773 11.242 38.149 12.437 37.4414 13.2169L25.714 26.1428L19.13 18.8855C18.4224 18.1056 18.4941 16.9106 19.2901 16.2173C20.0861 15.524 21.3057 15.5942 22.0133 16.3741L25.714 20.454L34.558 10.7056Z`,fill:`#F5F5F5`})]})}));a.displayName=`DataDeliveryPlan`;export{a as DataDeliveryPlan};
@@ -1 +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};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-18,left:-17,rotation:343},{top:40,left:11,rotation:200}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`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`,fill:`#F5F5F5`})})}));i.displayName=`FluidSymphony`;export{i as FluidSymphony};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{fluxMaps as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-20,left:-17,rotation:343},{top:46,left:11,rotation:193}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`FluxMaps`;export{a as FluxMaps};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";const i=[{top:-22,left:-17,rotation:0},{top:40,left:11,rotation:200}],a=t((t,a)=>n(e,{ref:a,shapes:i,...t,children:r(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[n(`path`,{d:`M36.3275 9.5C37.2513 9.50028 37.9996 10.2531 37.9996 11.1815V17.2987C37.9996 18.2271 37.2513 18.9799 36.3275 18.9802C35.4035 18.9802 34.6543 18.2273 34.6543 17.2987V15.2101L29.8374 19.9148C29.184 20.5527 28.1248 20.5529 27.4714 19.9148C26.8183 19.2768 26.8184 18.2424 27.4714 17.6043L32.3261 12.863H30.1926C29.2686 12.863 28.5194 12.1101 28.5193 11.1815C28.5193 10.2529 29.2686 9.5 30.1926 9.5H36.3275Z`,fill:`white`}),n(`path`,{d:`M34.6538 34.6713V23.1851C34.6538 22.2788 35.4029 21.5442 36.3269 21.5442C37.2509 21.5442 38 22.2788 38 23.1851V34.6713C38 36.7858 36.2522 38.5 34.0962 38.5H24.6154C23.6914 38.5 22.9423 37.7654 22.9423 36.8591C22.9423 35.9529 23.6914 35.2182 24.6154 35.2182H34.0962C34.4042 35.2182 34.6538 34.9733 34.6538 34.6713ZM9 22.6271V13.3287C9 11.2142 10.7478 9.5 12.9038 9.5H24.6154C25.5394 9.5 26.2885 10.2347 26.2885 11.1409C26.2885 12.0471 25.5394 12.7818 24.6154 12.7818H12.9038C12.5958 12.7818 12.3462 13.0267 12.3462 13.3287V22.6271C12.3462 23.5333 11.5971 24.268 10.6731 24.268C9.74906 24.268 9 23.5333 9 22.6271Z`,fill:`white`}),n(`path`,{d:`M19.0382 26.7886C19.9623 26.7886 20.7115 27.5415 20.7115 28.4701V34.5873C20.7115 35.5159 19.9623 36.2688 19.0382 36.2688C18.1143 36.2687 17.365 35.5158 17.365 34.5873V32.6497L11.9911 37.9019C11.3378 38.5401 10.2786 38.5401 9.62519 37.9019C8.97211 37.2638 8.972 36.2295 9.62519 35.5915L15.1925 30.1516H12.9033C11.9795 30.1513 11.2312 29.3985 11.2312 28.4701C11.2312 27.5416 11.9795 26.7888 12.9033 26.7886H19.0382Z`,fill:`white`})]})}));a.displayName=`FluxMaps`;export{a as FluxMaps};
@@ -1 +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
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";const i=[{top:-18,left:-17,rotation:343},{top:40,left:11,rotation:200}],a=t((t,a)=>n(e,{ref:a,shapes:i,...t,children:r(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[n(`path`,{d:`M23.322 7.74821C23.8779 7.42725 24.5629 7.42729 25.1189 7.74821L31.2628 11.2951C32.1222 11.7913 32.4164 12.89 31.9202 13.7494C31.4241 14.6088 30.3253 14.9036 29.4659 14.4075L24.2204 11.3782L13.5937 17.5145V30.485L24.2204 36.6207L34.8477 30.485V26.8141L25.2832 32.417C24.7283 32.742 24.0418 32.7454 23.4834 32.4263L19.2908 30.0305C18.4291 29.5382 18.1299 28.4408 18.6222 27.5791C19.1146 26.7175 20.212 26.4182 21.0736 26.9106L24.3631 28.7899L35.7362 22.1283C36.2918 21.8029 36.9791 21.8 37.5377 22.1201C38.0965 22.4404 38.4414 23.035 38.4414 23.6789V31.5226C38.4414 32.1645 38.0989 32.7575 37.543 33.0785L25.1189 40.2519C24.563 40.5727 23.8778 40.5728 23.322 40.2519L10.8984 33.0785C10.3425 32.7575 10 32.1645 10 31.5226V16.4769L10.0041 16.357C10.0438 15.7618 10.3773 15.2219 10.8984 14.921L23.322 7.74821Z`,fill:`white`}),n(`path`,{d:`M35.1562 15.0554C36.0156 14.5593 37.1143 14.8535 37.6105 15.7129C38.1066 16.5722 37.8123 17.6709 36.953 18.1671L25.2916 24.9001C24.6274 25.2835 23.8092 25.2835 23.145 24.9001L19.26 22.6569C18.4006 22.1607 18.1064 21.0621 18.6025 20.2027C19.0987 19.3433 20.1974 19.0485 21.0568 19.5446L24.2183 21.3696L35.1562 15.0554Z`,fill:`white`})]})}));a.displayName=`ForecastDataInventory`;export{a as ForecastDataInventory};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{forecastFormatter 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=`ForecastFormatter`;export{a as ForecastFormatter};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";const i=[{top:-22,left:-17,rotation:0},{top:40,left:11,rotation:200}],a=t((t,a)=>n(e,{ref:a,shapes:i,...t,children:r(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[n(`path`,{d:`M10 35.8696V11.8261C10 10.8176 10.8176 10.0001 11.8261 10.0001C12.8346 10.0001 13.6522 10.8176 13.6522 11.8261V35.8696C13.6522 36.8782 12.8346 37.6957 11.8261 37.6957C10.8176 37.6957 10 36.8782 10 35.8696Z`,fill:`white`}),n(`path`,{d:`M38 11.8261L38 35.8696C38 36.8781 37.1824 37.6957 36.1739 37.6957C35.1654 37.6957 34.3478 36.8781 34.3478 35.8696L34.3478 11.8261C34.3478 10.8176 35.1654 10 36.1739 10C37.1824 10 38 10.8176 38 11.8261Z`,fill:`white`}),n(`path`,{d:`M19.739 25.2175C19.739 26.226 18.9214 27.0436 17.9129 27.0436C16.9044 27.0436 16.0868 26.226 16.0868 25.2175L16.0868 11.8261C16.0868 10.8176 16.9044 10.0001 17.9129 10.0001C18.9214 10.0001 19.739 10.8176 19.739 11.8261L19.739 25.2175Z`,fill:`white`}),n(`path`,{d:`M28.2609 22.4783C28.2609 21.4698 29.0784 20.6522 30.087 20.6522C31.0955 20.6522 31.913 21.4698 31.913 22.4783L31.913 35.8696C31.913 36.8781 31.0955 37.6957 30.087 37.6957C29.0784 37.6957 28.2609 36.8781 28.2609 35.8696L28.2609 22.4783Z`,fill:`white`}),n(`path`,{d:`M25.826 12.7392C25.826 13.7477 25.0085 14.5653 24 14.5653C22.9914 14.5653 22.1739 13.7477 22.1739 12.7392L22.1739 11.8261C22.1739 10.8176 22.9914 10.0001 24 10.0001C25.0085 10.0001 25.826 10.8176 25.826 11.8261L25.826 12.7392Z`,fill:`white`}),n(`path`,{d:`M22.174 34.9565C22.174 33.948 22.9915 33.1305 24 33.1305C25.0086 33.1305 25.8261 33.948 25.8261 34.9565L25.8261 35.8696C25.8261 36.8781 25.0086 37.6957 24 37.6957C22.9915 37.6957 22.174 36.8781 22.174 35.8696L22.174 34.9565Z`,fill:`white`})]})}));a.displayName=`ForecastFormatter`;export{a as ForecastFormatter};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{jsembark as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-16,left:-31,rotation:339},{top:52,left:-5,rotation:220}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`JsEmbark`;export{a as JsEmbark};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";const i=[{top:-22,left:-17,rotation:0},{top:40,left:11,rotation:200}],a=t((t,a)=>n(e,{ref:a,shapes:i,...t,children:r(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[n(`circle`,{cx:`23.6667`,cy:`24.3333`,r:`3.33333`,fill:`#F5F5F5`}),n(`circle`,{cx:`17.6667`,cy:`34.3333`,r:`3.33333`,fill:`#F5F5F5`}),n(`circle`,{cx:`12.3333`,cy:`24.3333`,r:`3.33333`,fill:`#F5F5F5`}),n(`circle`,{cx:`35.0001`,cy:`24.3333`,r:`3.33333`,fill:`#F5F5F5`}),n(`circle`,{cx:`29.0001`,cy:`34.3333`,r:`3.33333`,fill:`#F5F5F5`}),n(`circle`,{cx:`29.0001`,cy:`14.3333`,r:`3.33333`,fill:`#F5F5F5`}),n(`circle`,{cx:`17.6667`,cy:`14.3333`,r:`3.33333`,fill:`#F5F5F5`})]})}));a.displayName=`JsEmbark`;export{a as JsEmbark};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{loggingQualification 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=`LoggingQualification`;export{a as LoggingQualification};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-18,left:-17,rotation:343},{top:40,left:11,rotation:200}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{d:`M23.9841 12.2667C24.4232 11.9111 25.0511 11.9111 25.4902 12.2667L27.7591 14.1042L30.2862 16.0761C30.6161 16.3335 30.8079 16.7294 30.8055 17.1479L30.7811 21.3118L30.8076 31.0318C30.8087 31.4488 30.617 31.8429 30.2882 32.0994L27.7591 34.0729L25.4902 35.9104C25.0511 36.266 24.4232 36.266 23.9841 35.9104L21.7152 34.0729L19.1861 32.0994C18.8573 31.8429 18.6656 31.4488 18.6668 31.0318L18.6932 21.3118L18.6688 17.1479C18.6664 16.7294 18.8582 16.3335 19.1881 16.0761L21.7152 14.1042L23.9841 12.2667Z`,fill:`#F5F5F5`})})}));i.displayName=`LoggingQualification`;export{i as LoggingQualification};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{orca 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:328},{top:26,left:11,rotation:193}],a=n((n,a)=>r(e,{iconData:t,shapes:i,ref:a,...n}));a.displayName=`Orca`;export{a as Orca};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-22,left:-17,rotation:0},{top:40,left:11,rotation:200}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M33.0162 26.6358C33.4988 26.2606 34.1746 26.2611 34.6569 26.6367C35.3437 27.1718 35.3433 28.2107 34.6559 28.7451L25.235 36.0694C24.5127 36.6308 23.5012 36.6308 22.7789 36.0694L13.3483 28.7383C12.6657 28.2073 12.6656 27.1746 13.3483 26.6436C13.8271 26.2713 14.4983 26.2714 14.9772 26.6436L23.9928 33.6514L33.0162 26.6358ZM23.1813 11.9258C23.6628 11.5513 24.3373 11.5515 24.819 11.9258L34.6442 19.5674C35.3314 20.1022 35.3298 21.1416 34.6412 21.6748L33.8141 22.3155L24.819 29.3184C24.3375 29.6929 23.663 29.6937 23.1813 29.3194L14.1735 22.3155L13.3522 21.6758C12.6665 21.1416 12.6671 20.1041 13.3531 19.5703L23.1813 11.9258ZM21.4069 24.5655L23.9996 26.585L26.8776 24.3428L24.11 22.3135L21.4069 24.5655ZM16.3463 20.625L19.2535 22.8887L21.8942 20.6885L18.9938 18.5625L16.3463 20.625ZM26.2203 20.5547L29.0641 22.6407L31.653 20.625L28.8014 18.4043L26.2203 20.5547ZM21.1803 16.8594L24.0045 18.9297L26.6481 16.7266L23.9996 14.6651L21.1803 16.8594Z`,fill:`#F5F5F5`})})}));i.displayName=`Orca`;export{i as Orca};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{premo as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-25,left:-5,rotation:25},{top:45,left:-11,rotation:15}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`Premo`;export{a as Premo};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-16,left:-31,rotation:339},{top:52,left:-5,rotation:220}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M33.4177 11.0436C35.6049 12.6242 37.3453 14.7226 38.4898 17.135C38.9686 18.1441 38.3733 19.2914 37.3063 19.6362C36.2469 19.9786 35.1225 19.3968 34.5959 18.4205C32.57 14.6649 28.5848 12.1111 24 12.1111C19.4152 12.1111 15.4301 14.6649 13.4042 18.4205C12.8775 19.3968 11.7531 19.9786 10.6937 19.6362C9.62675 19.2914 9.03136 18.1441 9.51015 17.135C10.6547 14.7226 12.3951 12.6242 14.5823 11.0436C17.3197 9.06544 20.6164 8 24 8C27.3836 8 30.6803 9.06544 33.4177 11.0436ZM16.2527 28.5168C16.8749 29.5579 17.7063 30.4689 18.7026 31.1888C20.2424 32.3015 22.0968 32.9008 24.0001 32.9008C25.9033 32.9008 27.7577 32.3015 29.2975 31.1888C30.2938 30.4689 31.1252 29.5579 31.7474 28.5168C32.3123 27.5715 31.7191 26.4312 30.6676 26.0913C29.6159 25.7515 28.5086 26.3671 27.7841 27.198C26.866 28.2508 25.5112 28.9167 24.0001 28.9167C22.4889 28.9167 21.1341 28.2508 20.2161 27.198C19.4915 26.3671 18.3842 25.7515 17.3325 26.0913C16.281 26.4312 15.6878 27.5715 16.2527 28.5168ZM9.49728 30.8378C10.6417 33.2616 12.3869 35.3699 14.5823 36.9564C17.3197 38.9346 20.6165 40 24 40C27.3836 40 30.6804 38.9346 33.4178 36.9564C35.6132 35.3699 37.3584 33.2616 38.5028 30.8378C38.9726 29.8428 38.3862 28.7128 37.3352 28.3731C36.284 28.0334 35.1691 28.6169 34.6572 29.5912C32.6511 33.4097 28.6316 36.0159 24 36.0159C19.3685 36.0159 15.3489 33.4097 13.3428 29.5912C12.8309 28.6169 11.7161 28.0334 10.6649 28.3731C9.61389 28.7128 9.02753 29.8428 9.49728 30.8378ZM31.7992 20.4397C31.5271 21.504 30.6054 21.8018 28.762 22.3976L25.2379 23.5365C24.6241 23.7348 24.3173 23.834 24.0001 23.834C23.6828 23.834 23.376 23.7348 22.7623 23.5365L19.2381 22.3976C17.3948 21.8018 16.4731 21.504 16.201 20.4397C15.9289 19.3754 16.4388 18.8402 17.4588 17.7699C17.8371 17.3728 18.2531 17.0091 18.7026 16.6843C20.2424 15.5715 22.0968 14.9722 24.0001 14.9722C25.9033 14.9722 27.7577 15.5715 29.2975 16.6843C29.747 17.0091 30.163 17.3728 30.5413 17.7699C31.5613 18.8402 32.0713 19.3754 31.7992 20.4397Z`,fill:`#F5F5F5`})})}));i.displayName=`Premo`;export{i as Premo};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{pwex as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-18,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=`Pwex`;export{a as Pwex};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-18,left:-17,rotation:343},{top:40,left:11,rotation:200}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{d:`M20.5844 12.0001C21.9187 12.0001 23.1264 12.573 23.9994 13.4982C24.8724 12.5726 26.0808 12.0002 27.4154 12.0001H37.8636C38.3072 12.0004 38.6672 12.3802 38.6674 12.8488V30.8927C38.6673 31.3614 38.3073 31.7411 37.8636 31.7413H15.9984C15.867 31.7414 15.7387 31.7754 15.6244 31.839C15.5785 31.8645 15.5352 31.8951 15.4945 31.9298C15.4743 31.947 15.4546 31.9651 15.4359 31.9845L10.7006 36.8986C10.1922 37.4259 9.33337 37.0447 9.33337 36.2921V12.8488C9.33352 12.38 9.69332 12.0001 10.1371 12.0001H20.5844ZM27.4154 14.9708C26.3059 14.971 25.4066 15.9219 25.4066 17.0939V28.7706H35.8539V14.9708H27.4154ZM14.222 24.9913C13.4507 24.9914 12.8256 25.6174 12.8256 26.3888C12.8257 27.1601 13.4507 27.7852 14.222 27.7853H16.2972C17.0686 27.7853 17.6946 27.1602 17.6947 26.3888C17.6947 25.6173 17.0687 24.9913 16.2972 24.9913H14.222ZM14.222 20.2423C13.4507 20.2424 12.8256 20.8674 12.8256 21.6388C12.8256 22.4102 13.4507 23.0352 14.222 23.0353H19.9496C20.7209 23.0351 21.3461 22.4101 21.3461 21.6388C21.3461 20.8675 20.7208 20.2425 19.9496 20.2423H14.222ZM14.222 15.4923C13.4508 15.4925 12.8257 16.1176 12.8256 16.8888C12.8256 17.6601 13.4507 18.2861 14.222 18.2863H19.9496C20.7209 18.2861 21.3461 17.6602 21.3461 16.8888C21.3459 16.1175 20.7208 15.4924 19.9496 15.4923H14.222Z`,fill:`#F5F5F5`})})}));i.displayName=`Pwex`;export{i as Pwex};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{recap as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-16,left:-31,rotation:339},{top:52,left:-5,rotation:220}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`Recap`;export{a as Recap};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-16,left:-31,rotation:339},{top:52,left:-5,rotation:220}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{d:`M16 24L21.3333 30L32 18`,stroke:`#F5F5F5`,strokeWidth:`4`,strokeLinecap:`round`})})}));i.displayName=`Recap`;export{i as Recap};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{sam as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-18,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=`Sam`;export{a as Sam};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-18,left:-17,rotation:343},{top:40,left:11,rotation:200}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{fillRule:`evenodd`,clipRule:`evenodd`,d:`M26.5031 11.5C26.8154 11.5002 27.0779 11.7255 27.1154 12.0254L27.59 15.3379C28.3524 15.6504 29.0524 16.0626 29.7023 16.5625L32.8156 15.3125C32.878 15.2876 32.9527 15.2754 33.0275 15.2754C33.2525 15.2754 33.4648 15.3879 33.5773 15.5879L36.0773 19.9121C36.2273 20.1871 36.1654 20.5254 35.9279 20.7129L33.2902 22.7754C33.3402 23.1753 33.3781 23.5751 33.3781 24C33.3781 24.4249 33.3402 24.8247 33.2902 25.2246L35.9279 27.2871C36.1654 27.4746 36.2273 27.8129 36.0773 28.0879L33.5773 32.4121C33.4648 32.6121 33.2527 32.7246 33.0402 32.7246C32.9653 32.7246 32.8905 32.7124 32.8156 32.6875L29.7023 31.4375C29.0524 31.9249 28.3524 32.3496 27.59 32.6621L27.1154 35.9746C27.0779 36.2745 26.8154 36.4998 26.5031 36.5H21.5031C21.1906 36.5 20.9273 36.2746 20.8898 35.9746L20.4152 32.6621C19.6528 32.3496 18.9528 31.9374 18.3029 31.4375L15.1906 32.6875C15.1281 32.7125 15.0527 32.7246 14.9777 32.7246C14.7527 32.7246 14.5404 32.6121 14.4279 32.4121L11.9279 28.0879C11.7779 27.8129 11.8398 27.4746 12.0773 27.2871L14.715 25.2246C14.665 24.8247 14.6281 24.4124 14.6281 24C14.6281 23.5876 14.665 23.1753 14.715 22.7754L12.0773 20.7129C11.8398 20.5254 11.7654 20.1871 11.9279 19.9121L14.4279 15.5879C14.5404 15.3879 14.7526 15.2754 14.965 15.2754C15.04 15.2754 15.1156 15.2875 15.1906 15.3125L18.3029 16.5625C18.9528 16.0751 19.6528 15.6504 20.4152 15.3379L20.8898 12.0254C20.9273 11.7254 21.1906 11.5 21.5031 11.5H26.5031ZM22.8781 15.6875L22.6779 17.0996L21.3527 17.6377C20.8403 17.8502 20.3276 18.1499 19.7902 18.5498L18.6652 19.4004L17.3654 18.875L15.7775 18.2373L14.9025 19.75L16.2531 20.7998L17.3654 21.6748L17.1906 23.0879C17.1531 23.4627 17.1281 23.7501 17.1281 24C17.1281 24.25 17.1531 24.5374 17.1906 24.9248L17.3654 26.3379L16.2531 27.2129L14.9025 28.2627L15.7775 29.7754L17.3654 29.1377L18.6906 28.5996L19.8273 29.4746C20.3273 29.8496 20.8279 30.1373 21.3654 30.3623L22.6906 30.9004L22.8898 32.3125L23.1281 34H24.8781L25.1281 32.3125L25.3273 30.9004L26.6525 30.3623C27.165 30.1498 27.6776 29.8501 28.215 29.4502L29.34 28.5996L30.6398 29.125L32.2277 29.7627L33.1027 28.25L31.7531 27.2002L30.6398 26.3252L30.8156 24.9121C30.8531 24.5373 30.8781 24.2624 30.8781 24C30.8781 23.7376 30.8655 23.4751 30.8156 23.0879L30.6398 21.6748L31.7531 20.7998L33.09 19.7373L32.215 18.2246L30.6281 18.8623L29.3029 19.4004L28.1652 18.5254C27.6653 18.1505 27.1654 17.8627 26.6281 17.6377L25.3029 17.0996L25.1027 15.6875L24.8654 14H23.1281L22.8781 15.6875ZM24.0031 19C26.7654 19.0002 29.0031 21.2376 29.0031 24C29.0031 26.7624 26.7654 28.9998 24.0031 29C21.2406 29 19.0031 26.7625 19.0031 24C19.0031 21.2375 21.2406 19 24.0031 19ZM24.0031 21.5C22.6281 21.5 21.5031 22.625 21.5031 24C21.5031 25.375 22.6281 26.5 24.0031 26.5C25.3779 26.4998 26.5031 25.3749 26.5031 24C26.5031 22.6251 25.3779 21.5002 24.0031 21.5Z`,fill:`#F5F5F5`})})}));i.displayName=`Sam`;export{i as Sam};
@@ -1 +1 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{subsurfacePortal as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-45,left:-5,rotation:25},{top:64,left:-5,rotation:5}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`Acquire`;export{a as SubsurfacePortal};
1
+ import{ApplicationIconBase as e}from"../ApplicationIconBase.js";import{forwardRef as t}from"react";import{jsx as n}from"react/jsx-runtime";const r=[{top:-40,left:-10,rotation:13},{top:60,left:-13,rotation:206}],i=t((t,i)=>n(e,{ref:i,shapes:r,...t,children:n(`svg`,{width:`48`,height:`48`,viewBox:`0 0 48 48`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:n(`path`,{d:`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.2296 16.8842 19.1546 15.2467C20.0796 13.6092 21.3671 12.2655 23.0171 11.2155V12.8655C21.4671 13.2655 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`,fill:`#F5F5F5`})})}));i.displayName=`Acquire`;export{i as SubsurfacePortal};
@@ -1,5 +1,5 @@
1
1
  import { Variants } from "../../atoms/types/variants.js";
2
- import * as react11 from "react";
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: react11.ForwardRefExoticComponent<Omit<DateRangePickerProps, "variant"> & {
11
+ declare const DateRangePicker$1: react5.ForwardRefExoticComponent<Omit<DateRangePickerProps, "variant"> & {
12
12
  variant?: Variants;
13
13
  meta?: string;
14
14
  loading?: boolean;
15
- } & react11.RefAttributes<HTMLDivElement>>;
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 react13 from "react";
1
+ import * as react11 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: react13.ForwardRefExoticComponent<DialogProps$1 & react13.RefAttributes<HTMLDivElement>>;
54
+ declare const Dialog$1: react11.ForwardRefExoticComponent<DialogProps$1 & react11.RefAttributes<HTMLDivElement>>;
55
55
  //#endregion
56
56
  export { Dialog$1 as Dialog, DialogAction, DialogProps$1 as DialogProps };
@@ -1,11 +1,11 @@
1
1
  import { SizeIconProps } from "../../atoms/types/Icon.js";
2
- import * as react5 from "react";
2
+ import * as react13 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: react5.ForwardRefExoticComponent<EquinorLogoProps & react5.RefAttributes<SVGSVGElement>>;
9
+ declare const EquinorLogo: react13.ForwardRefExoticComponent<EquinorLogoProps & react13.RefAttributes<SVGSVGElement>>;
10
10
  //#endregion
11
11
  export { EquinorLogo, EquinorLogoProps };
@@ -1,5 +1,5 @@
1
1
  import { IconCellColor, IconCellState, IconCellVariant, IconCellVariants } from "./IconCell.types.js";
2
- import * as react29 from "react";
2
+ import * as react15 from "react";
3
3
  import { HTMLAttributes, MouseEventHandler, ReactNode } from "react";
4
4
  import { IconData } from "@equinor/eds-icons";
5
5
 
@@ -49,6 +49,6 @@ type IconCellProps = ScribbledOutProps | RegularIconCellProps;
49
49
  * @param {React.Ref<HTMLButtonElement>} ref - Ref forwarded to the inner button element.
50
50
  * @returns {JSX.Element} The rendered IconCell.
51
51
  */
52
- declare const IconCell: react29.ForwardRefExoticComponent<IconCellProps & react29.RefAttributes<HTMLButtonElement>>;
52
+ declare const IconCell: react15.ForwardRefExoticComponent<IconCellProps & react15.RefAttributes<HTMLButtonElement>>;
53
53
  //#endregion
54
54
  export { IconCell, IconCellProps };
@@ -1,4 +1,4 @@
1
- import * as react23 from "react";
1
+ import * as react17 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: react23.ForwardRefExoticComponent<{
9
+ declare const OptionalTooltip: react17.ForwardRefExoticComponent<{
10
10
  textTransform?: string;
11
11
  } & {
12
12
  placement?: _floating_ui_utils0.Placement;
13
- title?: react23.ReactNode;
13
+ title?: react17.ReactNode;
14
14
  children: React.ReactElement & React.RefAttributes<HTMLElement>;
15
15
  enterDelay?: number;
16
16
  portalContainer?: HTMLElement;
17
- } & Omit<react23.HTMLAttributes<HTMLDivElement>, "title"> & react23.RefAttributes<HTMLDivElement>>;
17
+ } & Omit<react17.HTMLAttributes<HTMLDivElement>, "title"> & react17.RefAttributes<HTMLDivElement>>;
18
18
  //#endregion
19
19
  export { OptionalTooltip, OptionalTooltipProps };
@@ -1,4 +1,4 @@
1
- import * as react27 from "react";
1
+ import * as react21 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: react27.ForwardRefExoticComponent<ProfileAvatarProps & react27.RefAttributes<HTMLDivElement>>;
10
+ declare const ProfileAvatar: react21.ForwardRefExoticComponent<ProfileAvatarProps & react21.RefAttributes<HTMLDivElement>>;
11
11
  //#endregion
12
12
  export { ProfileAvatar, ProfileAvatarProps };
@@ -2,16 +2,16 @@ import { EditorStylingProps, RichTextContentProps } from "./RichTextEditor.style
2
2
  import { EditorProviderProps } from "./EditorProvider.js";
3
3
  import { MenuBarProps } from "./MenuBar/MenuBar.js";
4
4
  import { RichTextEditor } from "./RichTextEditor.js";
5
- import * as react15 from "react";
5
+ import * as react23 from "react";
6
6
  import * as _tiptap_react0 from "@tiptap/react";
7
7
  import * as styled_components_dist_types0 from "styled-components/dist/types";
8
8
 
9
9
  //#region src/molecules/RichTextEditor/index.d.ts
10
10
  declare const RichText: {
11
- Styling: styled_components_dist_types0.IStyledComponentBase<"web", styled_components_dist_types0.Substitute<react15.DetailedHTMLProps<react15.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, EditorStylingProps>> & string;
12
- Provider: react15.FC<EditorProviderProps>;
13
- Content: styled_components_dist_types0.IStyledComponentBase<"web", styled_components_dist_types0.Substitute<Omit<_tiptap_react0.EditorContentProps, "ref"> & react15.RefAttributes<HTMLDivElement>, RichTextContentProps>> & string & Omit<react15.NamedExoticComponent<Omit<_tiptap_react0.EditorContentProps, "ref"> & react15.RefAttributes<HTMLDivElement>>, keyof react15.Component<any, {}, any>>;
14
- Bar: react15.FC<MenuBarProps>;
11
+ Styling: styled_components_dist_types0.IStyledComponentBase<"web", styled_components_dist_types0.Substitute<react23.DetailedHTMLProps<react23.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, EditorStylingProps>> & string;
12
+ Provider: react23.FC<EditorProviderProps>;
13
+ Content: styled_components_dist_types0.IStyledComponentBase<"web", styled_components_dist_types0.Substitute<Omit<_tiptap_react0.EditorContentProps, "ref"> & react23.RefAttributes<HTMLDivElement>, RichTextContentProps>> & string & Omit<react23.NamedExoticComponent<Omit<_tiptap_react0.EditorContentProps, "ref"> & react23.RefAttributes<HTMLDivElement>>, keyof react23.Component<any, {}, any>>;
14
+ Bar: react23.FC<MenuBarProps>;
15
15
  };
16
16
  //#endregion
17
17
  export { RichText };
@@ -1,10 +1,10 @@
1
- import * as react39 from "react";
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
6
  lightBackground?: boolean;
7
7
  }
8
- declare const Search$1: react39.ForwardRefExoticComponent<SearchProps$1 & react39.RefAttributes<HTMLInputElement>>;
8
+ declare const Search$1: react41.ForwardRefExoticComponent<SearchProps$1 & react41.RefAttributes<HTMLInputElement>>;
9
9
  //#endregion
10
10
  export { Search$1 as Search };
@@ -1,4 +1,4 @@
1
- import * as react41 from "react";
1
+ import * as react39 from "react";
2
2
  import * as styled_components_dist_types6 from "styled-components/dist/types";
3
3
  import * as styled_components_dist_models_Keyframes0 from "styled-components/dist/models/Keyframes";
4
4
 
@@ -7,6 +7,6 @@ declare const skeletonBaseloading: styled_components_dist_models_Keyframes0.defa
7
7
  interface SkeletonBaseProps {
8
8
  $offset?: number;
9
9
  }
10
- declare const SkeletonBase: styled_components_dist_types6.IStyledComponentBase<"web", styled_components_dist_types6.Substitute<react41.DetailedHTMLProps<react41.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SkeletonBaseProps>> & string;
10
+ declare const SkeletonBase: styled_components_dist_types6.IStyledComponentBase<"web", styled_components_dist_types6.Substitute<react39.DetailedHTMLProps<react39.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SkeletonBaseProps>> & string;
11
11
  //#endregion
12
12
  export { SkeletonBase, SkeletonBaseProps, skeletonBaseloading };
@@ -1,5 +1,5 @@
1
1
  import { FilterProps } from "./Filter.types.js";
2
- import * as react_jsx_runtime6 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/organisms/Filter/Filter.d.ts
5
5
 
@@ -32,6 +32,6 @@ declare function Filter<T extends string>({
32
32
  id,
33
33
  openOnFocus,
34
34
  ...rest
35
- }: FilterProps<T>): react_jsx_runtime6.JSX.Element;
35
+ }: FilterProps<T>): react_jsx_runtime11.JSX.Element;
36
36
  //#endregion
37
37
  export { Filter };
@@ -1,6 +1,6 @@
1
1
  import { SelectOptionRequired } from "../../molecules/Select/Select.types.js";
2
2
  import { FilterProps } from "./Filter.types.js";
3
- import * as react_jsx_runtime7 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime12 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/organisms/Filter/QuickFilter.d.ts
6
6
  interface QuickFilterProps<T extends string> {
@@ -14,6 +14,6 @@ declare function QuickFilter<T extends string>({
14
14
  items,
15
15
  onQuickFilter,
16
16
  label
17
- }: QuickFilterProps<T>): react_jsx_runtime7.JSX.Element;
17
+ }: QuickFilterProps<T>): react_jsx_runtime12.JSX.Element;
18
18
  //#endregion
19
19
  export { QuickFilter };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime5 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime10 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/organisms/Filter/SortMenu.d.ts
4
4
  interface SortMenuProps<S> {
@@ -13,6 +13,6 @@ declare function SortMenu<S>({
13
13
  value,
14
14
  onChange,
15
15
  items
16
- }: SortMenuProps<S>): react_jsx_runtime5.JSX.Element;
16
+ }: SortMenuProps<S>): react_jsx_runtime10.JSX.Element;
17
17
  //#endregion
18
18
  export { SortMenu };
@@ -1,4 +1,4 @@
1
- import * as react129 from "react";
1
+ import * as react137 from "react";
2
2
  import { HTMLAttributes, ReactNode } from "react";
3
3
 
4
4
  //#region src/organisms/SideBar/SideBar.d.ts
@@ -16,6 +16,6 @@ interface SideBarWithCreate extends SideBarProps {
16
16
  createDisabled?: boolean;
17
17
  createActive?: boolean;
18
18
  }
19
- declare const SideBar: react129.ForwardRefExoticComponent<(SideBarWithCreate | BaseSideBar) & react129.RefAttributes<HTMLDivElement>>;
19
+ declare const SideBar: react137.ForwardRefExoticComponent<(SideBarWithCreate | BaseSideBar) & react137.RefAttributes<HTMLDivElement>>;
20
20
  //#endregion
21
21
  export { SideBar };
@@ -1,10 +1,10 @@
1
- import * as react150 from "react";
1
+ import * as react131 from "react";
2
2
 
3
3
  //#region src/organisms/Status/Action.d.ts
4
4
  interface ActionProps {
5
5
  onClick: () => void;
6
6
  buttonText?: string;
7
7
  }
8
- declare const Action: react150.ForwardRefExoticComponent<ActionProps & react150.RefAttributes<HTMLButtonElement>>;
8
+ declare const Action: react131.ForwardRefExoticComponent<ActionProps & react131.RefAttributes<HTMLButtonElement>>;
9
9
  //#endregion
10
10
  export { Action };
@@ -1,9 +1,9 @@
1
- import * as react148 from "react";
1
+ import * as react133 from "react";
2
2
 
3
3
  //#region src/organisms/Status/Description.d.ts
4
4
  interface DescriptionProps {
5
5
  text?: string;
6
6
  }
7
- declare const Description: react148.ForwardRefExoticComponent<DescriptionProps & react148.RefAttributes<HTMLHeadingElement>>;
7
+ declare const Description: react133.ForwardRefExoticComponent<DescriptionProps & react133.RefAttributes<HTMLHeadingElement>>;
8
8
  //#endregion
9
9
  export { Description };
@@ -1,4 +1,4 @@
1
- import * as react146 from "react";
1
+ import * as react135 from "react";
2
2
 
3
3
  //#region src/organisms/Status/MissingAccesses.d.ts
4
4
  interface AccessType {
@@ -9,6 +9,6 @@ interface MissingAccessesProps {
9
9
  accesses?: AccessType[];
10
10
  text?: string;
11
11
  }
12
- declare const MissingAccesses: react146.ForwardRefExoticComponent<MissingAccessesProps & react146.RefAttributes<HTMLDivElement>>;
12
+ declare const MissingAccesses: react135.ForwardRefExoticComponent<MissingAccessesProps & react135.RefAttributes<HTMLDivElement>>;
13
13
  //#endregion
14
14
  export { MissingAccesses };
@@ -1,9 +1,9 @@
1
- import * as react144 from "react";
1
+ import * as react129 from "react";
2
2
 
3
3
  //#region src/organisms/Status/Title.d.ts
4
4
  interface TitleProps {
5
5
  title?: string;
6
6
  }
7
- declare const Title: react144.ForwardRefExoticComponent<TitleProps & react144.RefAttributes<HTMLHeadingElement>>;
7
+ declare const Title: react129.ForwardRefExoticComponent<TitleProps & react129.RefAttributes<HTMLHeadingElement>>;
8
8
  //#endregion
9
9
  export { Title };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime9 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime6 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/organisms/Status/collections/BadRequest.d.ts
4
4
  interface BadRequestProps {
@@ -12,6 +12,6 @@ declare const BadRequest: ({
12
12
  redirectFallbackUrl,
13
13
  onBackClick,
14
14
  hideBackButton
15
- }: BadRequestProps) => react_jsx_runtime9.JSX.Element;
15
+ }: BadRequestProps) => react_jsx_runtime6.JSX.Element;
16
16
  //#endregion
17
17
  export { BadRequest };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime11 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime5 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/organisms/Status/collections/GenericError.d.ts
4
4
  interface GenericErrorProps {
@@ -14,6 +14,6 @@ declare const GenericError: ({
14
14
  redirectFallbackUrl,
15
15
  onBackClick,
16
16
  hideBackButton
17
- }: GenericErrorProps) => react_jsx_runtime11.JSX.Element;
17
+ }: GenericErrorProps) => react_jsx_runtime5.JSX.Element;
18
18
  //#endregion
19
19
  export { GenericError };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime8 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime7 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/organisms/Status/collections/MissingPermissions.d.ts
4
4
  interface MissingPermissionsProps {
@@ -14,6 +14,6 @@ declare const MissingPermissions: ({
14
14
  redirectFallbackUrl,
15
15
  onBackClick,
16
16
  hideBackButton
17
- }: MissingPermissionsProps) => react_jsx_runtime8.JSX.Element;
17
+ }: MissingPermissionsProps) => react_jsx_runtime7.JSX.Element;
18
18
  //#endregion
19
19
  export { MissingPermissions };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime10 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime8 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/organisms/Status/collections/PageNotFound.d.ts
4
4
  interface PageNotFoundProps {
@@ -12,6 +12,6 @@ declare const PageNotFound: ({
12
12
  redirectFallbackUrl,
13
13
  onBackClick,
14
14
  hideBackButton
15
- }: PageNotFoundProps) => react_jsx_runtime10.JSX.Element;
15
+ }: PageNotFoundProps) => react_jsx_runtime8.JSX.Element;
16
16
  //#endregion
17
17
  export { PageNotFound };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime12 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime9 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/organisms/Status/collections/ServerError.d.ts
4
4
  interface ServerErrorProps {
@@ -12,6 +12,6 @@ declare const ServerError: ({
12
12
  redirectFallbackUrl,
13
13
  onBackClick,
14
14
  hideBackButton
15
- }: ServerErrorProps) => react_jsx_runtime12.JSX.Element;
15
+ }: ServerErrorProps) => react_jsx_runtime9.JSX.Element;
16
16
  //#endregion
17
17
  export { ServerError };
@@ -1,7 +1,7 @@
1
1
  import { ToggleGroup as ToggleGroup$1 } from "./ToggleGroup.types.js";
2
- import * as react137 from "react";
2
+ import * as react145 from "react";
3
3
 
4
4
  //#region src/organisms/ToggleGroup/ToggleGroup.d.ts
5
- declare const ToggleGroup: react137.ForwardRefExoticComponent<ToggleGroup$1 & react137.RefAttributes<HTMLDivElement>>;
5
+ declare const ToggleGroup: react145.ForwardRefExoticComponent<ToggleGroup$1 & react145.RefAttributes<HTMLDivElement>>;
6
6
  //#endregion
7
7
  export { ToggleGroup };
@@ -1,9 +1,9 @@
1
1
  import { ToggleGroupOption as ToggleGroupOption$1 } from "./ToggleGroup.types.js";
2
- import * as react135 from "react";
2
+ import * as react143 from "react";
3
3
  import { HTMLAttributes } from "react";
4
4
 
5
5
  //#region src/organisms/ToggleGroup/ToggleGroupOption.d.ts
6
6
  type ToggleGroupOptionProps = ToggleGroupOption$1 & Omit<HTMLAttributes<HTMLButtonElement>, 'onToggle' | 'disabled'>;
7
- declare const ToggleGroupOption: react135.ForwardRefExoticComponent<ToggleGroupOptionProps & react135.RefAttributes<HTMLButtonElement>>;
7
+ declare const ToggleGroupOption: react143.ForwardRefExoticComponent<ToggleGroupOptionProps & react143.RefAttributes<HTMLButtonElement>>;
8
8
  //#endregion
9
9
  export { ToggleGroupOption };
@@ -1,4 +1,3 @@
1
- import { Field } from "../../../atoms/types/Field.js";
2
1
  import { FC, ReactElement, ReactNode, RefObject } from "react";
3
2
 
4
3
  //#region src/organisms/TopBar/Account/Account.d.ts
@@ -7,8 +6,6 @@ interface AccountProps {
7
6
  hideRoles?: boolean;
8
7
  useDisplayNameForRole?: boolean;
9
8
  children?: ReactNode;
10
- availableFields?: Field[];
11
- availableWells?: string[];
12
9
  enableEnvironmentToggle?: boolean;
13
10
  onImpersonateChange?: () => void;
14
11
  }
@@ -1 +1 @@
1
- import{EnvironmentType as e}from"../../../atoms/enums/Environment.js";import{environment as t}from"../../../atoms/utils/auth_environment.js";import{useAuth as ee}from"../../../providers/AuthProvider/AuthProvider.js";import{useLocalStorage as n}from"../../../atoms/hooks/useLocalStorage.js";import{Button as r}from"../../../molecules/Button/Button.js";import{TopBarMenu as i}from"../TopBarMenu.js";import{useActiveImpersonationUser as a}from"./ImpersonateMenu/hooks/useActiveImpersonationUser.js";import{useCanImpersonate as o}from"./ImpersonateMenu/hooks/useCanImpersonate.js";import{useMappedRoles as s}from"./ImpersonateMenu/hooks/useMappedRoles.js";import{useStopImpersonation as c}from"./ImpersonateMenu/hooks/useStopImpersonation.js";import{ButtonWrapper as l,Container as u,EnvironmentToggleWrapper as d,TextContent as f}from"./Account.styles.js";import{impersonateUserDtoToFullName as p}from"./ImpersonateMenu/Impersonate.utils.js";import{ImpersonateMenu as m}from"./ImpersonateMenu/ImpersonateMenu.js";import{AccountAvatar as h}from"./AccountAvatar.js";import{AccountButton as te}from"./AccountButton.js";import{ActiveUserImpersonationButton as ne}from"./ActiveUserImpersonationButton.js";import{ImpersonateButton as re}from"./ImpersonateButton.js";import{RoleList as ie}from"./RoleList.js";import{EnvironmentToggle as ae}from"./EnvironmentToggle.js";import{StatusChips as g}from"./StatusChips.js";import{useCallback as oe,useEffect as _,useMemo as v,useRef as y,useState as b}from"react";import{Icon as x,Typography as S}from"@equinor/eds-core-react";import{Fragment as C,jsx as w,jsxs as T}from"react/jsx-runtime";import{log_out as E}from"@equinor/eds-icons";import{ENVIRONMENT_TOGGLE_KEY as D}from"@equinor/subsurface-app-management";const O=({renderCustomButton:O,hideRoles:k=!1,useDisplayNameForRole:A=!1,children:j,availableFields:M,availableWells:N,enableEnvironmentToggle:P=!1,onImpersonateChange:F})=>{let I=t.getEnvironmentName(import.meta.env.VITE_ENVIRONMENT_NAME),se=t.getApiClientId(import.meta.env.VITE_API_CLIENT_ID),L=t.getAppName(import.meta.env.VITE_NAME),{account:R,roles:z,logout:B}=ee(),[V,H]=b(!1),[U,W]=b(!1),[G,K]=n(D,[]),q=y(null),{data:ce=!0}=o(),{data:J}=a(),{mutate:Y}=c(),X=s(J?J.roles:z??[],A),le=J?p(J):R?.name,ue=J?J.uniqueName:R?.username,Z=()=>H(!1),Q=oe(()=>{H(e=>!e),W(!1)},[]),$=()=>{W(!0),H(!1)};return _(()=>{J&&J.appName!=null&&J.appName.toUpperCase()!=L.toUpperCase()&&Y()},[J,L,Y]),T(C,{children:[v(()=>O?O(q,Q):null,[O,Q])||w(te,{ref:q,onClick:Q,environmentToggle:G}),T(i,{open:V,title:`Account`,onClose:Z,anchorEl:q.current,children:[T(u,{children:[J&&w(ne,{onClick:$}),w(h,{environmentToggle:G}),T(f,{children:[w(S,{variant:`h6`,children:le}),w(S,{children:ue})]}),G.length>0&&w(g,{statuses:G}),X&&!k&&w(C,{children:X.length<=3?w(g,{statuses:X}):w(ie,{roles:X})}),j,ce&&I!==e.PRODUCTION&&se&&w(re,{onOpenImpersonateMenu:$,onClose:Z,onImpersonateChange:F})]}),P&&I!==e.PRODUCTION&&w(d,{children:w(ae,{setEnvironmentToggle:K,environmentToggle:G})}),w(l,{children:T(r,{variant:`ghost`,onClick:B,children:[w(x,{data:E}),`Log out`]})})]}),w(m,{open:U,onClose:()=>W(!1),anchorEl:q.current,availableFields:M,availableWells:N,onImpersonateChange:F})]})};O.displayName=`TopBar.Account`;export{O as Account};
1
+ import{EnvironmentType as e}from"../../../atoms/enums/Environment.js";import{environment as t}from"../../../atoms/utils/auth_environment.js";import{useAuth as ee}from"../../../providers/AuthProvider/AuthProvider.js";import{useLocalStorage as n}from"../../../atoms/hooks/useLocalStorage.js";import{Button as r}from"../../../molecules/Button/Button.js";import{TopBarMenu as i}from"../TopBarMenu.js";import{useActiveImpersonationUser as a}from"./ImpersonateMenu/hooks/useActiveImpersonationUser.js";import{useCanImpersonate as o}from"./ImpersonateMenu/hooks/useCanImpersonate.js";import{useMappedRoles as s}from"./ImpersonateMenu/hooks/useMappedRoles.js";import{useStopImpersonation as te}from"./ImpersonateMenu/hooks/useStopImpersonation.js";import{ButtonWrapper as c,Container as l,EnvironmentToggleWrapper as u,TextContent as d}from"./Account.styles.js";import{impersonateUserDtoToFullName as f}from"./ImpersonateMenu/Impersonate.utils.js";import{ImpersonateMenu as p}from"./ImpersonateMenu/ImpersonateMenu.js";import{AccountAvatar as m}from"./AccountAvatar.js";import{AccountButton as h}from"./AccountButton.js";import{ActiveUserImpersonationButton as ne}from"./ActiveUserImpersonationButton.js";import{ImpersonateButton as re}from"./ImpersonateButton.js";import{RoleList as ie}from"./RoleList.js";import{EnvironmentToggle as ae}from"./EnvironmentToggle.js";import{StatusChips as g}from"./StatusChips.js";import{useCallback as oe,useEffect as _,useMemo as v,useRef as y,useState as b}from"react";import{Icon as x,Typography as S}from"@equinor/eds-core-react";import{Fragment as C,jsx as w,jsxs as T}from"react/jsx-runtime";import{log_out as E}from"@equinor/eds-icons";import{ENVIRONMENT_TOGGLE_KEY as D}from"@equinor/subsurface-app-management";const O=({renderCustomButton:O,hideRoles:k=!1,useDisplayNameForRole:A=!1,children:j,enableEnvironmentToggle:M=!1,onImpersonateChange:N})=>{let P=t.getEnvironmentName(import.meta.env.VITE_ENVIRONMENT_NAME),F=t.getApiClientId(import.meta.env.VITE_API_CLIENT_ID),I=t.getAppName(import.meta.env.VITE_NAME),{account:L,roles:R,logout:z}=ee(),[B,V]=b(!1),[H,U]=b(!1),[W,G]=n(D,[]),K=y(null),{data:q=!0}=o(),{data:J}=a(),{mutate:Y}=te(),X=s(J?J.roles:R??[],A),se=J?f(J):L?.name,ce=J?J.uniqueName:L?.username,Z=()=>V(!1),Q=oe(()=>{V(e=>!e),U(!1)},[]),$=()=>{U(!0),V(!1)};return _(()=>{J&&J.appName!=null&&J.appName.toUpperCase()!=I.toUpperCase()&&Y()},[J,I,Y]),T(C,{children:[v(()=>O?O(K,Q):null,[O,Q])||w(h,{ref:K,onClick:Q,environmentToggle:W}),T(i,{open:B,title:`Account`,onClose:Z,anchorEl:K.current,children:[T(l,{children:[J&&w(ne,{onClick:$}),w(m,{environmentToggle:W}),T(d,{children:[w(S,{variant:`h6`,children:se}),w(S,{children:ce})]}),W.length>0&&w(g,{statuses:W}),X&&!k&&w(C,{children:X.length<=3?w(g,{statuses:X}):w(ie,{roles:X})}),j,q&&P!==e.PRODUCTION&&F&&w(re,{onOpenImpersonateMenu:$,onClose:Z,onImpersonateChange:N})]}),M&&P!==e.PRODUCTION&&w(u,{children:w(ae,{setEnvironmentToggle:G,environmentToggle:W})}),w(c,{children:T(r,{variant:`ghost`,onClick:z,children:[w(x,{data:E}),`Log out`]})})]}),w(p,{open:H,onClose:()=>U(!1),anchorEl:K.current,onImpersonateChange:N})]})};O.displayName=`TopBar.Account`;export{O as Account};
@@ -1 +1 @@
1
- import{environment as e}from"../../../../../atoms/utils/auth_environment.js";import{TextField as t}from"../../../../../molecules/TextField/TextField.js";import{ComboBox as n}from"../../../../../molecules/Select/ComboBox/ComboBox.js";import{SingleSelect as r}from"../../../../../molecules/Select/SingleSelect/SingleSelect.js";import{useAllAppRoles as i}from"../hooks/useAllAppRoles.js";import{useCreateImpersonation as a}from"../hooks/useCreateImpersonation.js";import{useEditImpersonation as o}from"../hooks/useEditImpersonation.js";import{Header as s}from"../Impersonate.styles.js";import{Container as c,Section as l}from"./CreateOrEditUser.styles.js";import{useEffect as u,useMemo as d,useRef as f,useState as p}from"react";import{Button as m,DotProgress as h,Icon as g,Typography as _}from"@equinor/eds-core-react";import{jsx as v,jsxs as y}from"react/jsx-runtime";import{arrow_back as b}from"@equinor/eds-icons";const x=({editingUser:x,onBack:S,availableFields:C,availableWells:w})=>{let T=f(!1),[E,D]=p([]),[O,k]=p(``),[A,j]=p(``),[M,N]=p(``),[P,F]=p(void 0),[I,L]=p(void 0),{data:R,isLoading:z}=i();u(()=>{x&&R&&!T.current&&(T.current=!0,D(x.roles.map(e=>{let t=R.find(t=>t.value===e);return t?{value:e,label:t.displayName}:{value:e,label:e}})),C&&F(C.find(e=>e.uuid==x.field)?.name??void 0),w&&L(w.find(e=>e==x.well)??void 0),k(x.firstName),j(x.lastName),N(x.email??``))},[R,x,T,C,w]);let B=d(()=>R?.map(e=>({value:e.value,label:e.displayName}))??[],[R]),V=C?.map(e=>({value:e.uuid??``,label:e.name??``}))??[],H=w?.map(e=>({value:e,label:e}))??[],{mutateAsync:U,isPending:W}=a(),{mutateAsync:G,isPending:K}=o(),q=W||K,J=d(()=>O===``||A===``||E.length===0,[O,A,E.length]);return y(c,{children:[y(s,{children:[v(m,{variant:`ghost_icon`,onClick:S,children:v(g,{data:b})}),v(_,{variant:`h6`,children:x?`Edit user`:`Create new user`})]}),y(l,{children:[v(t,{id:`first-name`,label:`First name`,placeholder:`Add first name...`,value:O,onChange:e=>{k(e.target.value)}}),v(t,{id:`last-name`,label:`Last name`,placeholder:`Add last name...`,value:A,onChange:e=>{j(e.target.value)}}),v(t,{id:`email`,label:`E-mail`,placeholder:`Add e-mail...`,meta:`Optional`,value:M,onChange:e=>{N(e.target.value)}})]}),y(l,{children:[V&&V.length>0&&v(r,{placeholder:`Select field...`,label:`Field`,meta:`Optional (For internal application role purposes)`,value:V.find(e=>e.value===P),onSelect:e=>{F(e?.value)},items:V}),H&&H.length>0&&v(r,{label:`Well`,placeholder:`Select well...`,meta:`Optional (For internal application role purposes)`,value:H.find(e=>e.value===I),onSelect:e=>{L(e?.value)},items:H})]}),v(l,{children:v(n,{label:`Roles`,placeholder:`Select roles...`,values:E,onSelect:e=>{D(e)},items:B,loading:z})}),y(l,{children:[v(m,{variant:`outlined`,onClick:S,children:`Cancel`}),q?v(m,{children:v(h,{})}):v(m,{onClick:async()=>{x?(await G({id:x.id,firstName:O,lastName:A,fullName:`${O} ${A}`,email:M===``?void 0:M,field:P,well:I,roles:E.map(e=>e.value).sort(),uniqueName:x.uniqueName,appName:x.appName,activeUsers:[]}),S()):(await U({firstName:O,lastName:A,field:P,well:I,email:M===``?void 0:M,roles:E.map(e=>e.value).sort(),uniqueName:`${O}.${A}`.toLowerCase(),appName:e.getAppName(import.meta.env.VITE_NAME),activeUsers:[]}),S())},disabled:J,children:x?`Save`:`Create`})]})]})};export{x as CreateOrEditUser};
1
+ import{environment as e}from"../../../../../atoms/utils/auth_environment.js";import{TextField as t}from"../../../../../molecules/TextField/TextField.js";import{ComboBox as n}from"../../../../../molecules/Select/ComboBox/ComboBox.js";import{useAllAppRoles as r}from"../hooks/useAllAppRoles.js";import{useCreateImpersonation as i}from"../hooks/useCreateImpersonation.js";import{useEditImpersonation as a}from"../hooks/useEditImpersonation.js";import{Header as o}from"../Impersonate.styles.js";import{Container as s,Section as c}from"./CreateOrEditUser.styles.js";import{useEffect as l,useMemo as u,useRef as d,useState as f}from"react";import{Button as p,DotProgress as m,Icon as h,Typography as g}from"@equinor/eds-core-react";import{jsx as _,jsxs as v}from"react/jsx-runtime";import{arrow_back as y}from"@equinor/eds-icons";const b=({editingUser:b,onBack:x,availableFields:S,availableWells:C})=>{let w=d(!1),[T,E]=f([]),[D,O]=f(``),[k,A]=f(``),[j,M]=f(``),{data:N,isLoading:P}=r();l(()=>{b&&N&&!w.current&&(w.current=!0,E(b.roles.map(e=>{let t=N.find(t=>t.value===e);return t?{value:e,label:t.displayName}:{value:e,label:e}})),O(b.firstName),A(b.lastName),M(b.email??``))},[N,b,w,S,C]);let F=u(()=>N?.map(e=>({value:e.value,label:e.displayName}))??[],[N]),{mutateAsync:I,isPending:L}=i(),{mutateAsync:R,isPending:z}=a(),B=L||z,V=u(()=>D===``||k===``||T.length===0,[D,k,T.length]);return v(s,{children:[v(o,{children:[_(p,{variant:`ghost_icon`,onClick:x,children:_(h,{data:y})}),_(g,{variant:`h6`,children:b?`Edit user`:`Create new user`})]}),v(c,{children:[_(t,{id:`first-name`,label:`First name`,placeholder:`Add first name...`,value:D,onChange:e=>{O(e.target.value)}}),_(t,{id:`last-name`,label:`Last name`,placeholder:`Add last name...`,value:k,onChange:e=>{A(e.target.value)}}),_(t,{id:`email`,label:`E-mail`,placeholder:`Add e-mail...`,meta:`Optional`,value:j,onChange:e=>{M(e.target.value)}})]}),_(c,{children:_(n,{label:`Roles`,placeholder:`Select roles...`,values:T,onSelect:e=>{E(e)},items:F,loading:P})}),v(c,{children:[_(p,{variant:`outlined`,onClick:x,children:`Cancel`}),B?_(p,{children:_(m,{})}):_(p,{onClick:async()=>{b?(await R({id:b.id,firstName:D,lastName:k,fullName:`${D} ${k}`,email:j===``?void 0:j,roles:T.map(e=>e.value).sort(),uniqueName:b.uniqueName,appName:b.appName,activeUsers:[]}),x()):(await I({firstName:D,lastName:k,email:j===``?void 0:j,roles:T.map(e=>e.value).sort(),uniqueName:`${D}.${k}`.toLowerCase(),appName:e.getAppName(import.meta.env.VITE_NAME),activeUsers:[]}),x())},disabled:V,children:b?`Save`:`Create`})]})]})};export{b as CreateOrEditUser};
@@ -1 +1 @@
1
- import{Search as e}from"../../../../molecules/Search/Search.js";import{useActiveImpersonationUser as t}from"./hooks/useActiveImpersonationUser.js";import{CreateOrEditUser as n}from"./CreateOrEditUser/CreateOrEditUser.js";import{DeleteUser as r}from"./DeleteUser/DeleteUser.js";import{useGetAllImpersonationUsersForApp as i}from"./hooks/useGetAllImpersonationUsersForApp.js";import{Actions as a}from"./Actions.js";import{CreateNewUserButton as o}from"./CreateNewUserButton.js";import{Content as s,Header as c,NoUsersText as l}from"./ImpersonateMenu.styles.js";import{impersonateUserDtoToFullName as u}from"./Impersonate.utils.js";import{UserImpersonation as d}from"./UserImpersonation.js";import{useEffect as f,useState as p}from"react";import{Menu as m,Typography as h}from"@equinor/eds-core-react";import{jsx as g,jsxs as _}from"react/jsx-runtime";const v=({open:v,onClose:y,anchorEl:b,availableFields:x,availableWells:S,onImpersonateChange:C})=>{let[w,T]=p(!1),[E,D]=p(void 0),[O,k]=p(void 0),[A,j]=p(``),[M,N]=p(``),{data:P}=i(),{data:F}=t(),I=P?.filter(e=>u(e).toLowerCase().includes(M.toLowerCase()));f(()=>{!v&&F&&A!==F.uniqueName?j(F.uniqueName):!v&&!F&&A!==``&&j(``)},[F,v,A]);let L=()=>{y()},R=()=>T(!0),z=()=>{T(!1),E&&D(void 0)},B=()=>{T(!1),E&&D(void 0),L()},V=e=>{D(P?.find(t=>t.uniqueName===e)),T(!0)},H=e=>{k(P?.find(t=>t.uniqueName===e))};return v?w?g(m,{open:!0,anchorEl:b,onClose:B,placement:`bottom-end`,style:{width:`400px`},children:g(n,{editingUser:E,onBack:z,availableFields:x,availableWells:S})}):O?g(m,{open:!0,anchorEl:b,onClose:B,placement:`bottom-end`,style:{width:`400px`},children:g(r,{user:O,onBack:()=>{k(void 0)}})}):_(m,{open:!0,anchorEl:b,onClose:L,placement:`bottom-end`,style:{width:`400px`},children:[_(c,{children:[g(h,{variant:`h6`,children:`Impersonate`}),g(h,{variant:`caption`,children:`Select a user to impersonate`}),g(e,{placeholder:`Search users`,value:M,onChange:e=>{N(e.target.value)}})]}),g(s,{children:I&&I.length>0?I?.map(e=>g(d,{...e,selected:A===e.uniqueName,onClick:j,onEdit:V,onDelete:H},e.uniqueName)):g(l,{children:`No items found`})}),g(o,{onClick:R}),g(a,{selectedUniqueName:A,onCancel:y,onImpersonateChange:C})]}):null};export{v as ImpersonateMenu};
1
+ import{Search as e}from"../../../../molecules/Search/Search.js";import{useActiveImpersonationUser as t}from"./hooks/useActiveImpersonationUser.js";import{CreateOrEditUser as n}from"./CreateOrEditUser/CreateOrEditUser.js";import{DeleteUser as r}from"./DeleteUser/DeleteUser.js";import{useGetAllImpersonationUsersForApp as i}from"./hooks/useGetAllImpersonationUsersForApp.js";import{Actions as a}from"./Actions.js";import{CreateNewUserButton as o}from"./CreateNewUserButton.js";import{Content as s,Header as c,NoUsersText as l}from"./ImpersonateMenu.styles.js";import{impersonateUserDtoToFullName as u}from"./Impersonate.utils.js";import{UserImpersonation as d}from"./UserImpersonation.js";import{useEffect as f,useState as p}from"react";import{Menu as m,Typography as h}from"@equinor/eds-core-react";import{jsx as g,jsxs as _}from"react/jsx-runtime";const v=({open:v,onClose:y,anchorEl:b,onImpersonateChange:x})=>{let[S,C]=p(!1),[w,T]=p(void 0),[E,D]=p(void 0),[O,k]=p(``),[A,j]=p(``),{data:M}=i(),{data:N}=t(),P=M?.filter(e=>u(e).toLowerCase().includes(A.toLowerCase()));f(()=>{!v&&N&&O!==N.uniqueName?k(N.uniqueName):!v&&!N&&O!==``&&k(``)},[N,v,O]);let F=()=>{y()},I=()=>C(!0),L=()=>{C(!1),w&&T(void 0)},R=()=>{C(!1),w&&T(void 0),F()},z=e=>{T(M?.find(t=>t.uniqueName===e)),C(!0)},B=e=>{D(M?.find(t=>t.uniqueName===e))};return v?S?g(m,{open:!0,anchorEl:b,onClose:R,placement:`bottom-end`,style:{width:`400px`},children:g(n,{editingUser:w,onBack:L})}):E?g(m,{open:!0,anchorEl:b,onClose:R,placement:`bottom-end`,style:{width:`400px`},children:g(r,{user:E,onBack:()=>{D(void 0)}})}):_(m,{open:!0,anchorEl:b,onClose:F,placement:`bottom-end`,style:{width:`400px`},children:[_(c,{children:[g(h,{variant:`h6`,children:`Impersonate`}),g(h,{variant:`caption`,children:`Select a user to impersonate`}),g(e,{placeholder:`Search users`,value:A,onChange:e=>{j(e.target.value)}})]}),g(s,{children:P&&P.length>0?P?.map(e=>g(d,{...e,selected:O===e.uniqueName,onClick:k,onEdit:z,onDelete:B},e.uniqueName)):g(l,{children:`No items found`})}),g(o,{onClick:I}),g(a,{selectedUniqueName:O,onCancel:y,onImpersonateChange:x})]}):null};export{v as ImpersonateMenu};
@@ -1,7 +1,7 @@
1
- import * as react133 from "react";
1
+ import * as react141 from "react";
2
2
  import { HTMLAttributes } from "react";
3
3
 
4
4
  //#region src/organisms/TopBar/Actions.d.ts
5
- declare const Actions: react133.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react133.RefAttributes<HTMLDivElement>>;
5
+ declare const Actions: react141.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react141.RefAttributes<HTMLDivElement>>;
6
6
  //#endregion
7
7
  export { Actions };
@@ -1,5 +1,5 @@
1
1
  import { Field } from "../../../atoms/types/Field.js";
2
- import * as react131 from "react";
2
+ import * as react139 from "react";
3
3
 
4
4
  //#region src/organisms/TopBar/FieldMenu/FieldMenu.d.ts
5
5
  interface FieldMenuProps {
@@ -8,6 +8,6 @@ interface FieldMenuProps {
8
8
  itemNameSingular?: string;
9
9
  showAccessITLink?: boolean;
10
10
  }
11
- declare const FieldMenu: react131.ForwardRefExoticComponent<FieldMenuProps & react131.RefAttributes<HTMLDivElement>>;
11
+ declare const FieldMenu: react139.ForwardRefExoticComponent<FieldMenuProps & react139.RefAttributes<HTMLDivElement>>;
12
12
  //#endregion
13
13
  export { FieldMenu };
@@ -1,4 +1,4 @@
1
- import * as react143 from "react";
1
+ import * as react151 from "react";
2
2
  import { Dispatch, FC, ReactNode, SetStateAction } from "react";
3
3
 
4
4
  //#region src/organisms/TopBar/Notifications/NotificationProvider.d.ts
@@ -6,7 +6,7 @@ interface NotificationContext {
6
6
  setIsOpen: Dispatch<SetStateAction<boolean>>;
7
7
  isOpen: boolean;
8
8
  }
9
- declare const NotificationContext: react143.Context<NotificationContext | undefined>;
9
+ declare const NotificationContext: react151.Context<NotificationContext | undefined>;
10
10
  declare const useNotification: () => NotificationContext;
11
11
  //#endregion
12
12
  export { useNotification };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/amplify-component-lib",
3
- "version": "11.0.2",
3
+ "version": "11.0.3",
4
4
  "description": "Frontend Typescript components for the Amplify team",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -53,7 +53,7 @@
53
53
  },
54
54
  "devDependencies": {
55
55
  "@equinor/eds-icons": "^0.22.0",
56
- "@equinor/subsurface-app-management": "5.2.0",
56
+ "@equinor/subsurface-app-management": "5.2.1",
57
57
  "@eslint/js": "^9.22.0",
58
58
  "@faker-js/faker": "^9.6.0",
59
59
  "@storybook/addon-coverage": "^2.0.0",
@@ -114,7 +114,7 @@
114
114
  "@equinor/eds-core-react": "0.44.0",
115
115
  "@equinor/eds-data-grid-react": "^0.7.5",
116
116
  "@equinor/eds-icons": "*",
117
- "@equinor/subsurface-app-management": "^5.2.0",
117
+ "@equinor/subsurface-app-management": "^5.2.1",
118
118
  "@tanstack/react-query": "*",
119
119
  "@tanstack/react-router": "*",
120
120
  "@tiptap/core": "^3.1.0",
@@ -1 +0,0 @@
1
- import{nameToAcronym as e}from"../ApplicationIcon.utils.js";import{Icon as t,Typography as n}from"@equinor/eds-core-react";import{jsx as r}from"react/jsx-runtime";const i=({size:i,...a})=>`iconData`in a?Array.isArray(a.iconData)?a.iconData.map((e,n)=>r(t,{"data-testid":`icon-part-${n}`,data:e,size:i,color:e.color},`icon-${n}`)):r(t,{data:a.iconData,size:i,color:`#ffffff`}):r(n,{style:{fontSize:i/2},children:e(a.name)});export{i as ApplicationIconContent};
@@ -1 +0,0 @@
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};
@@ -1 +0,0 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{fourDInsight as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-20,left:-17,rotation:343},{top:46,left:11,rotation:193}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`FourDInsight`;export{a as FourDInsight};
@@ -1 +0,0 @@
1
- import e from"../ApplicationIconBase/ApplicationIconBase.js";import{inPress as t}from"../ApplicationIconCollection.js";import{forwardRef as n}from"react";import{jsx as r}from"react/jsx-runtime";const i=[{top:-31,left:-17,rotation:343},{top:42,left:32,rotation:182}],a=n((n,a)=>r(e,{ref:a,iconData:t,shapes:i,...n}));a.displayName=`InPress`;export{a as InPress};