@equinor/echo-framework 0.14.1-beta-4 → 0.14.1-beta-5

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 (3) hide show
  1. package/index.cjs +169 -1
  2. package/package.json +1 -1
  3. package/index.css +0 -2935
package/index.cjs CHANGED
@@ -1138,6 +1138,36 @@ $$m({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign$1
1138
1138
  assign: assign$1
1139
1139
  });
1140
1140
 
1141
+ function styleInject(css, ref) {
1142
+ if ( ref === void 0 ) ref = {};
1143
+ var insertAt = ref.insertAt;
1144
+
1145
+ if (!css || typeof document === 'undefined') { return; }
1146
+
1147
+ var head = document.head || document.getElementsByTagName('head')[0];
1148
+ var style = document.createElement('style');
1149
+ style.type = 'text/css';
1150
+
1151
+ if (insertAt === 'top') {
1152
+ if (head.firstChild) {
1153
+ head.insertBefore(style, head.firstChild);
1154
+ } else {
1155
+ head.appendChild(style);
1156
+ }
1157
+ } else {
1158
+ head.appendChild(style);
1159
+ }
1160
+
1161
+ if (style.styleSheet) {
1162
+ style.styleSheet.cssText = css;
1163
+ } else {
1164
+ style.appendChild(document.createTextNode(css));
1165
+ }
1166
+ }
1167
+
1168
+ var css_248z$14 = ":root{--echo-framework-z-level-panel-left:500;--echo-framework-z-level-panel-main:550;--echo-framework-z-level-bottom-bar:1425;--echo-framework-z-level-scrim:1450}[class^=Scrim__StyledScrim]{z-index:var(--echo-framework-z-level-scrim)!important}";
1169
+ styleInject(css_248z$14);
1170
+
1141
1171
  /* eslint-disable @typescript-eslint/no-explicit-any */
1142
1172
  /**
1143
1173
  * Hook returns a Echo compliant push function for the browser history
@@ -4842,6 +4872,9 @@ immer.immer(set => ({
4842
4872
  }
4843
4873
  })));
4844
4874
 
4875
+ var css_248z$13 = ":root{--xSmall:0.25rem;--small:0.5rem;--medium:1rem;--large:1.5rem;--xLarge:2rem;--black:#000;--white:#fff;--equiBlue1:#233746;--equiBlue2:#d7e1ed;--equiBlue3:#d5eaf4;--equiGray1:#87929a;--equiGray2:#b4bbc0;--equiGray3:#d1d5d8;--equiGray4:#e3e6e8;--equiRed1:#ff1243;--darkEquiRed:#ce183e;--equiGreen1:#006f79;--equiGreen2:#deedee;--equiGreen3:#e6faec;--echoText:#3d3d3d;--disabledBackgroundColor:#eaeaea;--disabledColor:#6f6f6f;--onGoing:#fbca36;--done:#4bb748;--asBuilt:#007079;--planned:#4bb748;--future:#52c0ff;--historic:#ff7d98;--outOfService:#ff9200;--reserved:#243746;--voided:#eb0000;--default:#dcdcdc;--ok:#23ef2a;--os:#adaead;--pa:#f94693;--pb:#fd0;--unknown:#525252;--rfccSent:#bcf316;--rfccPartly:#c7f316;--rfcc:#60f316;--rfocSent:#0dccf2;--rfocPartly:#1accf2;--rfoc:#0d59f2;--rfccRejected:#ff1243;--rfocRejected:#ff1243;--handoverError:#eb0000;--priorityHigh:#ff1243;--priorityMedium:#fbca36;--systems:#d5eaf4;--locations:#3eb54a;--warningText:#ad6200;--warningIcon:#ff9200;--warningBackground:#ffe7d6;--dropDownButtonBackground:#f0f0f0;--dropDownTextColor:grey;--searchBarBackground:#f7f7f7;--highSeverity:#ffc1c1;--mediumSeverity:#ffe7d6;--lowSeverity:#dce6ee;--defaultSeverity:#d5eaf4;--highSeverityText:#eb0000;--mediumSeverityText:#52c0ff;--lowSeverityText:#4bb748;--defaultSeverityText:#3d3d3d;--toggleActive:#4bb748;--toggleInactive:#b30d2f;--hoverIcon:#004f55;--tertiaryText:#6f6f6f;--dividerColor:#dcdcdc}#theme_root__TvoHk,body,html{height:100%;overflow:hidden;width:100%}html[data-theme=dark]{--equiGreen1:#006f79}body,h1,h2,h3,h4,h5,h6,label,p{color:var(--echoText)}body,html,span{font-family:Equinor!important}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#f7f7f7;border-radius:5px}::-webkit-scrollbar-thumb{background:#007079;border-radius:5px}::-webkit-scrollbar-thumb:hover{background:#004f55}button,input{appearance:none;background:transparent;border:inherit;color:inherit;font:inherit;outline:0}input,input:after,input:before{-webkit-user-select:initial;-khtml-user-select:initial;-moz-user-select:initial;-ms-user-select:initial;user-select:auto}";
4876
+ styleInject(css_248z$13);
4877
+
4845
4878
  exports.LegendStatus = void 0;
4846
4879
  (function (LegendStatus) {
4847
4880
  LegendStatus["Unknown"] = "Unknown";
@@ -5010,7 +5043,9 @@ function listToLowerCase(values) {
5010
5043
  return values.map(v => v.toLowerCase());
5011
5044
  }
5012
5045
 
5046
+ var css_248z$12 = ".AppLinks-module_AppBar__2ZZaq{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:center;margin:0 auto 48px}";
5013
5047
  var style$q = {"AppBar":"AppLinks-module_AppBar__2ZZaq"};
5048
+ styleInject(css_248z$12);
5014
5049
 
5015
5050
  const addInstCodeParamToAppLink = (appLink, instCode) => {
5016
5051
  const existingParams = appLink.params;
@@ -5076,7 +5111,9 @@ const icon$1 = ({
5076
5111
  })
5077
5112
  }));
5078
5113
 
5079
- var style$p = {"barButtons":"EchoContent-module_barButtons__nsM6X","activeBottomBarButton":"EchoContent-module_activeBottomBarButton__a8kxs","spinningIcon":"EchoContent-module_spinningIcon__EDkWM","spinAnimation":"EchoContent-module_spinAnimation__enGOK","echoTopBar":"EchoContent-module_echoTopBar__QTcyL","headerDetails":"EchoContent-module_headerDetails__Z6x0e","headerIcons":"EchoContent-module_headerIcons__7SwgN"};
5114
+ var css_248z$11 = ".EchoContent-module_barButtons__nsM6X{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.EchoContent-module_barButtons__nsM6X>button>span{grid-gap:0;display:flex;flex-direction:column}.EchoContent-module_barButtons__nsM6X>button>span>svg{display:inline-flex;margin-bottom:.2rem}.EchoContent-module_barButtons__nsM6X>button>span>span{color:var(--echoText);display:inline-flex;font-size:.65625rem;line-height:.75rem}.EchoContent-module_activeBottomBarButton__a8kxs{background-color:var(--equiGreen3);border-top:2px solid var(--equiGreen1)}.EchoContent-module_activeBottomBarButton__a8kxs>button:focus{outline:none!important}.EchoContent-module_activeBottomBarButton__a8kxs>button:focus-visible{outline:1px dashed #004f55!important;outline-offset:2px!important}@media screen and (max-width:927px) and (orientation:landscape){.EchoContent-module_activeBottomBarButton__a8kxs{border-right:2px solid var(--equiGreen1);border-top:0}.EchoContent-module_barButtons__nsM6X{max-height:96px;width:56px}}@keyframes EchoContent-module_spinAnimation__enGOK{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.EchoContent-module_spinningIcon__EDkWM{animation:EchoContent-module_spinAnimation__enGOK 1.5s linear infinite reverse}.EchoContent-module_headerDetails__Z6x0e{justify-self:end}.EchoContent-module_headerIcons__7SwgN>svg{margin:0 8px}";
5115
+ var style$p = {"barButtons":"EchoContent-module_barButtons__nsM6X","activeBottomBarButton":"EchoContent-module_activeBottomBarButton__a8kxs","spinningIcon":"EchoContent-module_spinningIcon__EDkWM","spinAnimation":"EchoContent-module_spinAnimation__enGOK","headerDetails":"EchoContent-module_headerDetails__Z6x0e","headerIcons":"EchoContent-module_headerIcons__7SwgN"};
5116
+ styleInject(css_248z$11);
5080
5117
 
5081
5118
  const EchoBarComponent = ({
5082
5119
  isFullScreenModeEnabled,
@@ -5177,7 +5214,9 @@ const EchoBarComponent = ({
5177
5214
  };
5178
5215
  var EchoBarComponent$1 = /*#__PURE__*/React.memo(EchoBarComponent);
5179
5216
 
5217
+ var css_248z$10 = ".EchoMenu-module_echoTopBar__F5JYY{border-bottom:1px solid var(--default)!important;padding-left:12px!important;padding-right:var(--small)!important;width:100%!important}.EchoMenu-module_topBarItems__lZMfa{align-items:center;display:flex}.EchoMenu-module_topBarItem__ahWg0{padding:0 .25em}.EchoMenu-module_echoToolMenu__07CMW{background:#fff;border-right:1px solid var(--default);display:flex;flex-direction:column;height:100%;width:64px;z-index:var(--echo-framework-z-level-panel-left)}.EchoMenu-module_headerDetails__McF40{justify-self:end}@media screen and (min-width:768px){.EchoMenu-module_headerDetails__McF40{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:65px}}@media screen and (min-width:1024px){.EchoMenu-module_headerDetails__McF40{overflow:auto;text-overflow:clip;white-space:normal;width:auto}}.EchoMenu-module_eeLogo__DU06g svg{height:24px!important;width:24px!important}.EchoMenu-module_headerDetails__McF40,.EchoMenu-module_headerTitleArea__Rjd9f{align-items:center;display:flex;height:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EchoMenu-module_plantName__OkipP{overflow:hidden;text-align:right;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap;width:100%}.EchoMenu-module_headerIcons__dZLjR>svg{margin:0 8px}.EchoMenu-module_popoverContent__9SvmG>div{width:300px}.EchoMenu-module_popoverTitle__soO-h{display:flex;height:24px;justify-content:space-between;margin:0;width:100%}";
5180
5218
  var style$o = {"echoTopBar":"EchoMenu-module_echoTopBar__F5JYY","topBarItems":"EchoMenu-module_topBarItems__lZMfa","topBarItem":"EchoMenu-module_topBarItem__ahWg0","echoToolMenu":"EchoMenu-module_echoToolMenu__07CMW","headerDetails":"EchoMenu-module_headerDetails__McF40","eeLogo":"EchoMenu-module_eeLogo__DU06g","headerTitleArea":"EchoMenu-module_headerTitleArea__Rjd9f","plantName":"EchoMenu-module_plantName__OkipP","headerIcons":"EchoMenu-module_headerIcons__dZLjR","popoverContent":"EchoMenu-module_popoverContent__9SvmG","popoverTitle":"EchoMenu-module_popoverTitle__soO-h"};
5219
+ styleInject(css_248z$10);
5181
5220
 
5182
5221
  const useEchoUserInterfaceStore = zustand__namespace.create(set => ({
5183
5222
  activeAppMenuItem: '',
@@ -5888,7 +5927,9 @@ const EchoTopBar = () => {
5888
5927
  };
5889
5928
  var EchoTopBar$1 = /*#__PURE__*/React.memo(EchoTopBar);
5890
5929
 
5930
+ var css_248z$$ = ".layout-module_echoContentContainerFullScreenMode__4ZF8W,.layout-module_echoContentContainer__aiKkp{height:calc(100% - 48px);padding:env(safe-area-inset-top,20px) env(safe-area-inset-right,20px) env(safe-area-inset-bottom,20px) env(safe-area-inset-left,20px);width:100%}.layout-module_echoContentContainerFullScreenMode__4ZF8W{height:100%!important;padding:0!important}.layout-module_deviceOrientationFullScreenMode__D7e4V,.layout-module_deviceOrientation__b-F7k{display:flex;flex-direction:column;height:100%!important;width:100%}.layout-module_deviceOrientationFullScreenMode__D7e4V{height:100%!important;padding:0!important}@media screen and (max-width:927px) and (orientation:landscape){.layout-module_echoContentContainer__aiKkp{display:flex;flex-direction:row;height:100%}.layout-module_deviceOrientation__b-F7k{height:100%!important;width:calc(100% - 48px)}}@media screen and (max-width:767px) and (orientation:portrait){.layout-module_deviceOrientation__b-F7k{height:calc(100% - 48px)}}@media screen and (min-width:928px) and (orientation:landscape){.layout-module_echoContentContainer__aiKkp{display:flex;height:calc(100% - 64px)}}@media screen and (min-width:768px) and (orientation:portrait){.layout-module_echoContentContainer__aiKkp{display:flex;height:calc(100% - 64px)}}.layout-module_applicationWrapper__0345V{animation:layout-module_fadeIn__JmqJL 2s;background-color:#fff;background-image:url(../../images/frontpage-brand-placeholder-vert.jpg);background-size:cover;height:calc(100% - 4em);overflow:auto;position:relative;width:100%}@keyframes layout-module_fadeIn__JmqJL{0%{opacity:0}to{opacity:1}}@media screen and (min-width:640px){.layout-module_applicationWrapper__0345V{background-image:none}}.layout-module_mainLayoutWrapper__eKwZ5{height:calc(100% - 4em);overflow:hidden;width:100%}.layout-module_bgTransparent__RhT-I{background-color:transparent}.layout-module_footerDisclaimer__jcKoG{font-size:.7rem}.layout-module_footerLogo__qgmUX{max-height:2.5rem}.layout-module_navbarBrand__dGCu2{color:red}::selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}.layout-module_colorLayout__Cfv-I{background-color:#eaf4f9;height:calc(100% - 4em);overflow:hidden;position:relative;width:100%}.layout-module_pdfViewerNative__mslqB{background-color:#323639;height:calc(100% - 4em);overflow:hidden;padding-top:6.5rem;position:relative;width:100%}.layout-module_web3DLayout__RZ-2r{height:100%;overflow:clip;position:relative;width:100%}.layout-module_cameraLayout__gd2n4{background-color:\"transparent\";height:100%;position:relative;width:100%}.layout-module_defaultLayout__jZMVT{height:100%;overflow:hidden;position:relative;width:100%}.layout-module_noPadding__ilNsb{padding:0}.layout-module_noMargin__L-zbT{margin:0}";
5891
5931
  var style$n = {"echoContentContainer":"layout-module_echoContentContainer__aiKkp","echoContentContainerFullScreenMode":"layout-module_echoContentContainerFullScreenMode__4ZF8W","deviceOrientation":"layout-module_deviceOrientation__b-F7k","deviceOrientationFullScreenMode":"layout-module_deviceOrientationFullScreenMode__D7e4V","applicationWrapper":"layout-module_applicationWrapper__0345V","fadeIn":"layout-module_fadeIn__JmqJL","mainLayoutWrapper":"layout-module_mainLayoutWrapper__eKwZ5","bgTransparent":"layout-module_bgTransparent__RhT-I","footerDisclaimer":"layout-module_footerDisclaimer__jcKoG","footerLogo":"layout-module_footerLogo__qgmUX","navbarBrand":"layout-module_navbarBrand__dGCu2","colorLayout":"layout-module_colorLayout__Cfv-I","pdfViewerNative":"layout-module_pdfViewerNative__mslqB","web3DLayout":"layout-module_web3DLayout__RZ-2r","cameraLayout":"layout-module_cameraLayout__gd2n4","defaultLayout":"layout-module_defaultLayout__jZMVT","noPadding":"layout-module_noPadding__ilNsb","noMargin":"layout-module_noMargin__L-zbT"};
5932
+ styleInject(css_248z$$);
5892
5933
 
5893
5934
  const Layout = ({
5894
5935
  layoutKey,
@@ -7814,7 +7855,9 @@ const displayToast = payload => {
7814
7855
  EchoCore.eventHub.emit(EchoCore.EchoEvents.Toaster, payload);
7815
7856
  };
7816
7857
 
7858
+ var css_248z$_ = ".externalLinkButton-module_echoButton__xkJ5x{display:inline-block;padding:16px;position:relative;width:90px}.externalLinkButton-module_echoButtonDisabled__xUCef{padding-bottom:0}.externalLinkButton-module_echoButtonRounded__JNwzW,.externalLinkButton-module_roundedButtonWrapper__lwLCr{display:inline-block;position:relative}.externalLinkButton-module_externalLink__tWjpz{position:absolute;right:1em}.externalLinkButton-module_asyncButtonSpinner__HUDkn{opacity:.75;position:absolute;z-index:10}@media screen and (min-width:420px){.externalLinkButton-module_echoButtonDisabled__xUCef,.externalLinkButton-module_echoButton__xkJ5x{width:96px}}.externalLinkButton-module_echoButton__xkJ5x svg{display:inline-block;height:48px;margin:0 8px 8px;width:48px}.externalLinkButton-module_echoButtonRounded__JNwzW svg{display:inline-block;height:24px;margin:0 8px;width:24px}.externalLinkButton-module_echoButton__xkJ5x span{color:#007079;display:inline-block;font-size:14px;font-weight:500;line-height:16px;width:64px}.externalLinkButton-module_echoButton__xkJ5x:hover svg{fill:#004f55}.externalLinkButton-module_echoButton__xkJ5x:hover span{color:#004f55}.externalLinkButton-module_echoButtonDisabled__xUCef span{color:var(--disabledColor)}.externalLinkButton-module_echoButtonDisabled__xUCef:hover svg{fill:var(--disabledColor)}.externalLinkButton-module_echoButtonDisabled__xUCef:hover span{color:var(--disabledColor)}.externalLinkButton-module_roundedButtonIconAsImage__gBfPr{height:30px;justify-self:center;width:30px}.externalLinkButton-module_largeButtonIconAsImage__Qdpay{height:auto;justify-self:center;width:100%}.externalLinkButton-module_toolTip__RwCbB{background-color:#233746;border-radius:8px;box-shadow:0 0 4px rgba(0,0,0,.05),0 4px 4px rgba(0,0,0,.05);color:#fff;display:block;padding:8px 16px;position:absolute;z-index:1}.externalLinkButton-module_toolTipContainer__DQOwX{display:inline-flex;justify-content:center}.externalLinkButton-module_stidIcon__zI8m8{height:auto!important}";
7817
7859
  var style$m = {"echoButton":"externalLinkButton-module_echoButton__xkJ5x","echoButtonDisabled":"externalLinkButton-module_echoButtonDisabled__xUCef","echoButtonRounded":"externalLinkButton-module_echoButtonRounded__JNwzW","roundedButtonWrapper":"externalLinkButton-module_roundedButtonWrapper__lwLCr","externalLink":"externalLinkButton-module_externalLink__tWjpz","asyncButtonSpinner":"externalLinkButton-module_asyncButtonSpinner__HUDkn","roundedButtonIconAsImage":"externalLinkButton-module_roundedButtonIconAsImage__gBfPr","largeButtonIconAsImage":"externalLinkButton-module_largeButtonIconAsImage__Qdpay","toolTip":"externalLinkButton-module_toolTip__RwCbB","toolTipContainer":"externalLinkButton-module_toolTipContainer__DQOwX","stidIcon":"externalLinkButton-module_stidIcon__zI8m8"};
7860
+ styleInject(css_248z$_);
7818
7861
 
7819
7862
  exports.ExternalLinkButtonStyle = void 0;
7820
7863
  (function (ExternalLinkButtonStyle) {
@@ -9612,9 +9655,13 @@ const ExternalLinkToTrendingApp = ({
9612
9655
  });
9613
9656
  };
9614
9657
 
9658
+ var css_248z$Z = ".chunkLoadErrorMessage-module_contentError__Je5rA{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;width:100%}.chunkLoadErrorMessage-module_contentError__Je5rA>div>div>p{text-align:center}.chunkLoadErrorMessage-module_errorMessage__wrLXW{width:300px}.chunkLoadErrorMessage-module_refreshMessage__qrBAv{padding-top:8px;text-align:center;width:300px}.chunkLoadErrorMessage-module_actionButtonSection__NgO0G{text-align:center}";
9615
9659
  var style$l = {"contentError":"chunkLoadErrorMessage-module_contentError__Je5rA","errorMessage":"chunkLoadErrorMessage-module_errorMessage__wrLXW","refreshMessage":"chunkLoadErrorMessage-module_refreshMessage__qrBAv","actionButtonSection":"chunkLoadErrorMessage-module_actionButtonSection__NgO0G"};
9660
+ styleInject(css_248z$Z);
9616
9661
 
9662
+ var css_248z$Y = ".echoLogo-module_echoLogo__AP0el{color:var(--equiRed1);display:inline-block;font-size:56px;font-weight:500;line-height:56px;text-align:right;text-transform:lowercase;width:100%}";
9617
9663
  var style$k = {"echoLogo":"echoLogo-module_echoLogo__AP0el"};
9664
+ styleInject(css_248z$Y);
9618
9665
 
9619
9666
  const EchoLogo = ({
9620
9667
  className
@@ -9626,7 +9673,9 @@ const EchoLogo = ({
9626
9673
  }));
9627
9674
  };
9628
9675
 
9676
+ var css_248z$X = ".notificationCardWithLogo-module_errorContainer__5mVew{align-items:center;display:flex;flex-direction:column;justify-content:center;position:relative}.notificationCardWithLogo-module_errorHeader__lzg74{align-items:flex-end;display:flex;justify-content:center}.notificationCardWithLogo-module_errorAction__KY1Hm{text-align:center}.notificationCardWithLogo-module_errorMessage__tjwmz{margin-bottom:16px}.notificationCardWithLogo-module_appLogo__vHayY{margin-bottom:72px;width:auto}.notificationCardWithLogo-module_errorWrapper__iCgbu{max-width:600px}";
9629
9677
  var style$j = {"errorContainer":"notificationCardWithLogo-module_errorContainer__5mVew","errorHeader":"notificationCardWithLogo-module_errorHeader__lzg74","errorAction":"notificationCardWithLogo-module_errorAction__KY1Hm","errorMessage":"notificationCardWithLogo-module_errorMessage__tjwmz","appLogo":"notificationCardWithLogo-module_appLogo__vHayY","errorWrapper":"notificationCardWithLogo-module_errorWrapper__iCgbu"};
9678
+ styleInject(css_248z$X);
9630
9679
 
9631
9680
  const NotificationCardWithLogo = ({
9632
9681
  containerClassName,
@@ -9716,7 +9765,9 @@ const ChunkLoadErrorMessage = () => {
9716
9765
  });
9717
9766
  };
9718
9767
 
9768
+ var css_248z$W = ".errorBoundaryBaseMessage-module_errorContainer__s3ysk{align-items:center;display:flex;flex-direction:column;justify-content:center;position:relative;top:64px}.errorBoundaryBaseMessage-module_errorHeader__KeM0a{align-items:flex-end;display:flex;justify-content:center;margin-bottom:32px}.errorBoundaryBaseMessage-module_errorDetails__aSrac{height:calc(100vh - 500px);max-height:800px;overflow:auto;white-space:pre-wrap}.errorBoundaryBaseMessage-module_errorAction__hsWA7{display:flex;justify-content:space-evenly;margin-bottom:16px}.errorBoundaryBaseMessage-module_actionButton__QohvC{width:180px}@media screen and (max-width:480px){.errorBoundaryBaseMessage-module_errorDetailsSmallScreen__rFcUV{margin-left:auto;margin-right:auto;width:300px}}";
9719
9769
  var style$i = {"errorContainer":"errorBoundaryBaseMessage-module_errorContainer__s3ysk","errorHeader":"errorBoundaryBaseMessage-module_errorHeader__KeM0a","errorDetails":"errorBoundaryBaseMessage-module_errorDetails__aSrac","errorAction":"errorBoundaryBaseMessage-module_errorAction__hsWA7","actionButton":"errorBoundaryBaseMessage-module_actionButton__QohvC","errorDetailsSmallScreen":"errorBoundaryBaseMessage-module_errorDetailsSmallScreen__rFcUV"};
9770
+ styleInject(css_248z$W);
9720
9771
 
9721
9772
  const ErrorBoundaryBaseMessage = ({
9722
9773
  errorTitle,
@@ -9845,7 +9896,9 @@ const ContextualAppLinks$1 = ({
9845
9896
  };
9846
9897
  var LinksWrapper = /*#__PURE__*/React.memo(ContextualAppLinks$1);
9847
9898
 
9899
+ var css_248z$V = ".externalAppsMenu-module_externalAppsMenuContainer__rx4x-{animation:externalAppsMenu-module_fadein__Tpzls .4s;display:inline-block;height:40px;margin:0;padding:0;position:relative;width:40px}.externalAppsMenu-module_appMenu__WjdtL>[role=menu]{width:250px}.externalAppsMenu-module_appMenu__WjdtL [role=menu]>div{display:flex;flex-direction:column;min-height:130px;min-width:150px}";
9848
9900
  var styles$C = {"externalAppsMenuContainer":"externalAppsMenu-module_externalAppsMenuContainer__rx4x-","fadein":"externalAppsMenu-module_fadein__Tpzls","appMenu":"externalAppsMenu-module_appMenu__WjdtL"};
9901
+ styleInject(css_248z$V);
9849
9902
 
9850
9903
  exports.ExtendableComponentName = void 0;
9851
9904
  (function (ExtendableComponentName) {
@@ -9970,7 +10023,9 @@ const ExternalAppsMenu = _a => {
9970
10023
  }));
9971
10024
  };
9972
10025
 
10026
+ var css_248z$U = ".iconButtonSpinner-module_container__5wiwO{height:48px;position:relative;width:48px}.iconButtonSpinner-module_spinner__8D-KT{position:relative;text-align:center;top:50%;transform:translateY(-50%)}";
9973
10027
  var styles$B = {"container":"iconButtonSpinner-module_container__5wiwO","spinner":"iconButtonSpinner-module_spinner__8D-KT"};
10028
+ styleInject(css_248z$U);
9974
10029
 
9975
10030
  /**
9976
10031
  * Local component for external link buttons. Provides a spinner overlay for any icon buttons, which might have any async calls.
@@ -10418,7 +10473,9 @@ const getParamsFor3DWeb = (instCode, tagDetails, tagNo) => __awaiter(void 0, voi
10418
10473
  return paramsString;
10419
10474
  });
10420
10475
 
10476
+ var css_248z$T = ".echo3dButton-module_echoButton__r17fM{display:inline-block;padding:16px;position:relative;width:90px}.echo3dButton-module_echoButtonDisabled__1IsTA svg,.echo3dButton-module_echoButton__r17fM svg{display:inline-block;height:48px;margin:0 8px 8px;width:48px}.echo3dButton-module_echoButtonDisabled__1IsTA span,.echo3dButton-module_echoButton__r17fM span{color:#007079;display:inline-block;font-size:.875em;font-weight:500;line-height:16px;width:64px}.echo3dButton-module_echoButtonDisabled__1IsTA{padding-bottom:0}.echo3dButton-module_echoButtonDisabled__1IsTA span{color:var(--disabledColor)}.echo3dButton-module_echoButtonDisabled__1IsTA:hover svg{fill:var(--disabledColor)}.echo3dButton-module_echoButtonDisabled__1IsTA:hover span{color:var(--disabledColor)}.echo3dButton-module_echoButton__r17fM:hover svg{fill:#004f55}.echo3dButton-module_echoButton__r17fM:hover span{color:#004f55}@media screen and (min-width:420px){.echo3dButton-module_echoButtonDisabled__1IsTA,.echo3dButton-module_echoButton__r17fM{width:96px}}";
10421
10477
  var styles$A = {"echoButton":"echo3dButton-module_echoButton__r17fM","echoButtonDisabled":"echo3dButton-module_echoButtonDisabled__1IsTA"};
10478
+ styleInject(css_248z$T);
10422
10479
 
10423
10480
  const E3DWebBetaIcon = ({
10424
10481
  color
@@ -10452,7 +10509,9 @@ const E3DWebBetaIcon = ({
10452
10509
  })]
10453
10510
  }));
10454
10511
 
10512
+ var css_248z$S = ".missingEcho3dAccessDialog-module_marginTop__loC2c{margin-top:8px!important}";
10455
10513
  var styles$z = {"marginTop":"missingEcho3dAccessDialog-module_marginTop__loC2c"};
10514
+ styleInject(css_248z$S);
10456
10515
 
10457
10516
  const MissingEcho3dAccessDialog = ({
10458
10517
  isDialogOpen,
@@ -10521,7 +10580,9 @@ const MissingEcho3dAccessDialog = ({
10521
10580
  }));
10522
10581
  };
10523
10582
 
10583
+ var css_248z$R = ".plantNotAvailableInfo-module_toolTip__qOh8-{background-color:#233746;border-radius:8px;box-shadow:0 0 4px rgba(0,0,0,.05),0 4px 4px rgba(0,0,0,.05);color:#fff;display:block;padding:8px 16px;position:absolute;z-index:1}.plantNotAvailableInfo-module_toolTipContainer__PJHrc{display:inline-flex;justify-content:center}";
10524
10584
  var style$h = {"toolTip":"plantNotAvailableInfo-module_toolTip__qOh8-","toolTipContainer":"plantNotAvailableInfo-module_toolTipContainer__PJHrc"};
10585
+ styleInject(css_248z$R);
10525
10586
 
10526
10587
  const PlantNotAvailableInfo = ({
10527
10588
  children
@@ -10688,7 +10749,9 @@ Echo3DButton.defaultProps = {
10688
10749
  openInNewWindow: false
10689
10750
  };
10690
10751
 
10752
+ var css_248z$Q = ".openIn3dDropdown-module_titleWrapper__z3B-I{border-bottom:1px solid rgba(0,0,0,.125);padding:0 16px 7px}.openIn3dDropdown-module_title__cDQGM{font-size:10px!important;font-weight:500!important}.openIn3dDropdown-module_contentWrapper__adzyM{display:flex;flex-direction:column;padding:8px 8px 0}.openIn3dDropdown-module_openIn3dWebButton__V1g5S{justify-content:space-between!important}.openIn3dDropdown-module_openIn3dAppButton__xk0P7{border-bottom:1px solid rgba(0,0,0,.125);justify-content:space-between!important}.openIn3dDropdown-module_menu3dModels__SqUw4{right:-10px!important}.openIn3dDropdown-module_externalLink__NnjUM{position:absolute;right:1em}";
10691
10753
  var styles$y = {"titleWrapper":"openIn3dDropdown-module_titleWrapper__z3B-I","title":"openIn3dDropdown-module_title__cDQGM","contentWrapper":"openIn3dDropdown-module_contentWrapper__adzyM","openIn3dWebButton":"openIn3dDropdown-module_openIn3dWebButton__V1g5S","openIn3dAppButton":"openIn3dDropdown-module_openIn3dAppButton__xk0P7","menu3dModels":"openIn3dDropdown-module_menu3dModels__SqUw4","externalLink":"openIn3dDropdown-module_externalLink__NnjUM"};
10754
+ styleInject(css_248z$Q);
10692
10755
 
10693
10756
  const OpenIn3dDropdown = ({
10694
10757
  anchorRef,
@@ -10926,7 +10989,9 @@ const FooterLogo = () => jsxRuntime.jsxs("svg", Object.assign({
10926
10989
  })]
10927
10990
  }));
10928
10991
 
10992
+ var css_248z$P = ".footer-module_echoFooter__G00YD{background:#fff;bottom:0;display:flex;left:0;position:fixed}@media screen and (max-width:767px) and (orientation:portrait){.footer-module_echoFooter__G00YD{bottom:48px}}@media screen and (max-width:927px) and (orientation:landscape){.footer-module_echoFooter__G00YD{left:48px}}@media screen and (min-width:360px){.footer-module_echoFooter__G00YD{height:33px}}@media screen and (min-width:640px){.footer-module_echoFooter__G00YD{height:56px;width:100%}}p.footer-module_footerDisclaimer__AkC9l{font-size:10px;width:100%}.footer-module_footerLogo__Y-Dny{display:none;float:right;margin:0 0 12px;max-height:2.5rem;padding:12px 16px;width:74px}.footer-module_tosFooter__6AHMy{background:#fff;bottom:0;height:33px;left:0;position:fixed;width:100%}@media screen and (min-width:640px){p.footer-module_footerDisclaimer__AkC9l{line-height:32px;margin:0;padding:12px 16px}.footer-module_footerLogo__Y-Dny{display:block}.footer-module_tosFooter__6AHMy{height:56px}}";
10929
10993
  var style$g = {"echoFooter":"footer-module_echoFooter__G00YD","footerDisclaimer":"footer-module_footerDisclaimer__AkC9l","footerLogo":"footer-module_footerLogo__Y-Dny","tosFooter":"footer-module_tosFooter__6AHMy"};
10994
+ styleInject(css_248z$P);
10930
10995
 
10931
10996
  exports.FooterType = void 0;
10932
10997
  (function (FooterType) {
@@ -10971,7 +11036,9 @@ const FullScreenButton = ({
10971
11036
  }));
10972
11037
  };
10973
11038
 
11039
+ var css_248z$O = ".fullScreenChip-module_fullScreenChip__464W-{background:rgba(0,0,0,.8)!important;color:var(--white)!important}.fullScreenChip-module_fullScreenChip__464W-:hover{background:rgba(0,0,0,.9)!important}.fullScreenChip-module_fullScreenChip__464W- svg{fill:var(--white)!important}.fullScreenChip-module_fullScreenChip__464W- svg:hover{fill:var(--white)!important;background:var(--black)!important}";
10974
11040
  var style$f = {"fullScreenChip":"fullScreenChip-module_fullScreenChip__464W-"};
11041
+ styleInject(css_248z$O);
10975
11042
 
10976
11043
  const FullScreenChip = ({
10977
11044
  onClick,
@@ -10989,7 +11056,9 @@ const FullScreenChip = ({
10989
11056
  }));
10990
11057
  };
10991
11058
 
11059
+ var css_248z$N = ".fullscreenModeButtons-module_fullScreenChip__JEv9C{display:flex;margin-left:var(--small);margin-top:var(--small);position:absolute;z-index:2}.fullscreenModeButtons-module_fullScreenButton__TeuUj{margin-right:var(--small);margin-top:var(--small);position:absolute;right:4em;top:0;z-index:2}.fullscreenModeButtons-module_fullScreenButtonFullscreenMode__aktEv{right:0!important}@media screen and (max-width:927px) and (orientation:landscape){.fullscreenModeButtons-module_fullScreenButton__TeuUj{right:0;top:3em}.fullscreenModeButtons-module_fullScreenButtonFullscreenMode__aktEv{top:0}.fullscreenModeButtons-module_fullScreenChip__JEv9C{margin-left:var(--medium)!important}}@media screen and (max-width:767px) and (orientation:portrait){.fullscreenModeButtons-module_fullScreenButton__TeuUj{right:0;top:3em}.fullscreenModeButtons-module_fullScreenButtonFullscreenMode__aktEv{top:0}}";
10992
11060
  var style$e = {"fullScreenChip":"fullscreenModeButtons-module_fullScreenChip__JEv9C","fullScreenButton":"fullscreenModeButtons-module_fullScreenButton__TeuUj","fullScreenButtonFullscreenMode":"fullscreenModeButtons-module_fullScreenButtonFullscreenMode__aktEv"};
11061
+ styleInject(css_248z$N);
10993
11062
 
10994
11063
  const FullScreenModeButtons = ({
10995
11064
  buttonClassName,
@@ -11048,7 +11117,9 @@ const FullScreenModeButtons = ({
11048
11117
  });
11049
11118
  };
11050
11119
 
11120
+ var css_248z$M = ".appLoadingIndicator-module_loadingContainer__2grwV{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;padding-top:0;text-align:center}.appLoadingIndicator-module_progressIndicator__XovT7{margin-bottom:16px}";
11051
11121
  var style$d = {"loadingContainer":"appLoadingIndicator-module_loadingContainer__2grwV","progressIndicator":"appLoadingIndicator-module_progressIndicator__XovT7"};
11122
+ styleInject(css_248z$M);
11052
11123
 
11053
11124
  const AppLoadingIndicator = ({
11054
11125
  loadingText
@@ -11170,7 +11241,9 @@ const themeConst = {
11170
11241
  dividerColor: '#dcdcdc'
11171
11242
  };
11172
11243
 
11244
+ var css_248z$L = ".accordionItem-module_accordionIconLeft__3gR3c{margin-right:28px}.accordionItem-module_appMenuAccordionItemHeader__OWdor{height:60px!important;padding:12px!important}.accordionItem-module_accordionSubHeader__0lUVl{color:var(--echoText);font-size:11px}";
11173
11245
  var style$c = {"accordionIconLeft":"accordionItem-module_accordionIconLeft__3gR3c","appMenuAccordionItemHeader":"accordionItem-module_appMenuAccordionItemHeader__OWdor","accordionSubHeader":"accordionItem-module_accordionSubHeader__0lUVl"};
11246
+ styleInject(css_248z$L);
11174
11247
 
11175
11248
  const {
11176
11249
  Item,
@@ -11219,7 +11292,9 @@ const DefaultAccordionItem = ({
11219
11292
  }));
11220
11293
  };
11221
11294
 
11295
+ var css_248z$K = ".applicationList-module_applicationButtonGroup__sH5k2{margin-bottom:var(--medium)}.applicationList-module_applicationListContainer__JFaSC h4{font-size:16px;margin-bottom:var(--medium)}.applicationList-module_navBarIcon__PXIQk{position:relative;width:96px}.applicationList-module_badge__rbkpm{color:var(--equiGreen1)}";
11222
11296
  var style$b = {"applicationButtonGroup":"applicationList-module_applicationButtonGroup__sH5k2","applicationListContainer":"applicationList-module_applicationListContainer__JFaSC","navBarIcon":"applicationList-module_navBarIcon__PXIQk","badge":"applicationList-module_badge__rbkpm"};
11297
+ styleInject(css_248z$K);
11223
11298
 
11224
11299
  const ApplicationList = () => {
11225
11300
  return jsxRuntime.jsx("div", Object.assign({
@@ -11235,9 +11310,13 @@ const ApplicationList = () => {
11235
11310
  }));
11236
11311
  };
11237
11312
 
11313
+ var css_248z$J = "@media only screen and (max-width:500px){.pageMenu-module_pageMenuDrawer__tzgE4{right:-345px;width:auto}}.pageMenu-module_versionInformation__OEAvO{display:flex;flex:1 0 auto;flex-direction:column;font-size:12px;height:fit-content;justify-content:flex-end;margin:20px 0}.pageMenu-module_appMenuHeaderLink__oQ5O5{color:var(--echoText);display:inline-block;font-size:16px;font-weight:500;line-height:24px;padding:8px 0;width:100%}.pageMenu-module_appMenuHeaderLink__oQ5O5:hover{text-decoration:none}.pageMenu-module_appMenuContainer__-Og-F{display:flex;flex-flow:column;height:100%}";
11238
11314
  var style$a = {"pageMenuDrawer":"pageMenu-module_pageMenuDrawer__tzgE4","versionInformation":"pageMenu-module_versionInformation__OEAvO","appMenuHeaderLink":"pageMenu-module_appMenuHeaderLink__oQ5O5","appMenuContainer":"pageMenu-module_appMenuContainer__-Og-F"};
11315
+ styleInject(css_248z$J);
11239
11316
 
11317
+ var css_248z$I = ".pageMenuDrawerItem-module_accordionLogoHeader__eXZNU{border-left:1px solid #dcdcdc;border-right:1px solid #dcdcdc;color:var(--echoText);display:flex;flex-shrink:0;flex-wrap:wrap;height:fit-content;padding:6px 0;text-align:left}.pageMenuDrawerItem-module_accordionExtraHeight__nhMz-{height:60px}.pageMenuDrawerItem-module_accordionLogoHeader__eXZNU:hover{background-color:var(--searchBarBackground)}.pageMenuDrawerItem-module_accordionLogoHeader__eXZNU .pageMenuDrawerItem-module_accordionLogoText__TTxo5>a{color:var(--echoText)}.pageMenuDrawerItem-module_accordionLogo__30Gy-{height:24px;margin:auto 28px auto 12px;order:1;width:24px}.pageMenuDrawerItem-module_accordionExternalLink__cBgXQ{margin:auto 0 auto 36px;order:3}.pageMenuDrawerItem-module_accordionLogoText__TTxo5{align-self:center;margin:auto 0;order:2;width:calc(100% - 128px)}.pageMenuDrawerItem-module_borderBottom__tMskx{border-bottom:1px solid #dcdcdc}.pageMenuDrawerItem-module_appMenuHeaderLink__-Znm8{color:var(--echoText);display:inline-block;font-size:16px;font-weight:500;line-height:24px;padding:8px 0;width:100%}.pageMenuDrawerItem-module_appMenuHeaderLink__-Znm8:hover{text-decoration:none}";
11240
11318
  var style$9 = {"accordionLogoHeader":"pageMenuDrawerItem-module_accordionLogoHeader__eXZNU","accordionExtraHeight":"pageMenuDrawerItem-module_accordionExtraHeight__nhMz-","accordionLogoText":"pageMenuDrawerItem-module_accordionLogoText__TTxo5","accordionLogo":"pageMenuDrawerItem-module_accordionLogo__30Gy-","accordionExternalLink":"pageMenuDrawerItem-module_accordionExternalLink__cBgXQ","borderBottom":"pageMenuDrawerItem-module_borderBottom__tMskx","appMenuHeaderLink":"pageMenuDrawerItem-module_appMenuHeaderLink__-Znm8"};
11319
+ styleInject(css_248z$I);
11241
11320
 
11242
11321
  const PageMenuDrawerItem = ({
11243
11322
  iconName,
@@ -11405,7 +11484,9 @@ const PlantSelector = ({
11405
11484
  });
11406
11485
  };
11407
11486
 
11487
+ var css_248z$H = ".settings-module_assetLabel__2whL4{font-size:12px;font-weight:400;margin-bottom:0;margin-left:var(--small)}.settings-module_container__-QVxU{color:var(--echoText);position:relative}.settings-module_accountContainer__bLUZI{display:flex}.settings-module_accountIcon__A-l-Z,.settings-module_accountImage__RggiK{height:80px;margin-right:var(--medium);width:80px}.settings-module_accountImage__RggiK{border:1px solid var(--equiGray4);border-radius:50%}.settings-module_accountName__qy7Z-{font-size:18px;font-weight:500;line-height:24px}.settings-module_accountJobTitle__WapT2{font-size:16px;line-height:24px}.settings-module_accountEmail__cMoPL{color:#007079;font-size:16px;line-height:20px;text-decoration-line:underline}.settings-module_accountText__tFYwo{margin:auto 0}.settings-module_subMenu__tRk0B{margin-bottom:var(--medium)}.settings-module_subHeader__5vLyu{font-size:18px;line-height:24px;margin-bottom:var(--medium)}.settings-module_subContainer__qKSxR{margin-bottom:0}";
11408
11488
  var styles$x = {"assetLabel":"settings-module_assetLabel__2whL4","container":"settings-module_container__-QVxU","accountContainer":"settings-module_accountContainer__bLUZI","accountIcon":"settings-module_accountIcon__A-l-Z","accountImage":"settings-module_accountImage__RggiK","accountName":"settings-module_accountName__qy7Z-","accountJobTitle":"settings-module_accountJobTitle__WapT2","accountEmail":"settings-module_accountEmail__cMoPL","accountText":"settings-module_accountText__tFYwo","subMenu":"settings-module_subMenu__tRk0B","subHeader":"settings-module_subHeader__5vLyu","subContainer":"settings-module_subContainer__qKSxR"};
11489
+ styleInject(css_248z$H);
11409
11490
 
11410
11491
  const Asset = ({
11411
11492
  isDisabled
@@ -11521,7 +11602,9 @@ function getAppVersion() {
11521
11602
  });
11522
11603
  }
11523
11604
 
11605
+ var css_248z$G = ".version-module_versionContainer__DZ8JR{color:var(--echoText);min-height:50px;text-align:center}@media only screen and (max-width:1367px){.version-module_versionContainer__DZ8JR{margin-bottom:15px}}";
11524
11606
  var style$8 = {"versionContainer":"version-module_versionContainer__DZ8JR"};
11607
+ styleInject(css_248z$G);
11525
11608
 
11526
11609
  const Version = () => {
11527
11610
  React.useEffect(() => {
@@ -11651,7 +11734,9 @@ function edsIcons() {
11651
11734
  edsCoreReact.Icon.add(Object.assign({}, Icons__namespace));
11652
11735
  }
11653
11736
 
11737
+ var css_248z$F = ".searchItemDetailsContainer-module_headerWrapper__2Upo6{align-items:center;display:flex;justify-content:flex-start}.searchItemDetailsContainer-module_headerContainer__L-BqK{flex-grow:1}.searchItemDetailsContainer-module_contentContainer__Sa4Gs{border-top:1px solid var(--default);flex-grow:1;overflow-x:hidden;overflow-y:auto}.searchItemDetailsContainer-module_searchItemDetailsContainer__AcyDx{background:var(--white);display:flex;flex-direction:column;height:calc(100% - 56px);position:absolute;top:0;width:100%;z-index:10}@media screen and (max-width:927px) and (orientation:landscape){.searchItemDetailsContainer-module_searchItemDetailsContainer__AcyDx{height:100%}}@media screen and (max-width:767px) and (orientation:portrait){.searchItemDetailsContainer-module_searchItemDetailsContainer__AcyDx{height:100%}}.searchItemDetailsContainer-module_containerWithActiveLegend__F4Rea{height:calc(100% - 60px)}@media screen and (max-width:927px) and (orientation:landscape){.searchItemDetailsContainer-module_containerWithActiveLegend__F4Rea{height:calc(100% - 45px)!important}}@media screen and (max-width:767px) and (orientation:portrait){.searchItemDetailsContainer-module_containerWithActiveLegend__F4Rea{height:calc(100% - 52px)!important}}@media (display-mode:standalone){@media screen and (max-width:767px) and (orientation:portrait){.searchItemDetailsContainer-module_containerWithActiveLegend__F4Rea{height:calc(100% - 72px)!important}}}.searchItemDetailsContainer-module_closeButton__m5C9A{margin-right:var(--medium)}";
11654
11738
  var styles$w = {"headerWrapper":"searchItemDetailsContainer-module_headerWrapper__2Upo6","headerContainer":"searchItemDetailsContainer-module_headerContainer__L-BqK","contentContainer":"searchItemDetailsContainer-module_contentContainer__Sa4Gs","searchItemDetailsContainer":"searchItemDetailsContainer-module_searchItemDetailsContainer__AcyDx","containerWithActiveLegend":"searchItemDetailsContainer-module_containerWithActiveLegend__F4Rea","closeButton":"searchItemDetailsContainer-module_closeButton__m5C9A"};
11739
+ styleInject(css_248z$F);
11655
11740
 
11656
11741
  const SearchItemDetailsContainer = ({
11657
11742
  onSearchDetailsClose
@@ -11720,7 +11805,9 @@ const SearchItemDetailsContainer = ({
11720
11805
  })) : null;
11721
11806
  };
11722
11807
 
11808
+ var css_248z$E = ".corePanelLeft-module_wrapper__7rR84{height:100%;left:-550px;max-width:550px;position:fixed;top:0;transition:all .4s ease-out;width:550px;z-index:2}@media screen and (max-width:550px){.corePanelLeft-module_wrapperClosed__D5H3B{left:-75vw;max-width:75vw;padding:env(safe-area-inset-top,56px) env(safe-area-inset-right,56px) env(safe-area-inset-bottom,56px) env(safe-area-inset-left,56px);width:75vw}.corePanelLeft-module_active__0B7aF{width:100%}}.corePanelLeft-module_active__0B7aF{left:0;z-index:var(--echo-framework-z-level-panel-left)}.corePanelLeft-module_drawer__TfzGI{background-color:#fff;border-left:2px solid #f7f7f7;box-shadow:0 6px 4px #00000040;display:flex;flex-direction:column;height:100%;opacity:0;overflow-x:hidden;overflow-y:hidden;position:relative;transition:all .4s ease-out;width:auto}.corePanelLeft-module_active__0B7aF .corePanelLeft-module_drawer__TfzGI{opacity:1}.corePanelLeft-module_buttonContainer__EPyvd{display:flex;flex-direction:column;position:absolute;right:-62px;top:0}.corePanelLeft-module_button__pJXdM{margin-left:var(--medium);margin-top:var(--small)}@media screen and (max-width:767px) and (orientation:portrait){.corePanelLeft-module_wrapper__7rR84{height:calc(100% - 48px)}.corePanelLeft-module_drawer__TfzGI{left:0;top:100vh}.corePanelLeft-module_active__0B7aF .corePanelLeft-module_drawer__TfzGI{left:0;top:0}}@media screen and (max-width:927px) and (orientation:landscape){.corePanelLeft-module_active__0B7aF{left:calc(53px + env(safe-area-inset-left))}.corePanelLeft-module_buttonContainerActive__6pGzM{right:calc(-58px + env(safe-area-inset-right))}.corePanelLeft-module_buttonContainerClosed__vhAnI{right:calc(-118px - env(safe-area-inset-right))}}@media screen and (min-width:928px) and (orientation:landscape){.corePanelLeft-module_wrapper__7rR84{top:64px}.corePanelLeft-module_wrapper__7rR84.corePanelLeft-module_active__0B7aF{left:64px}}@media screen and (min-width:768px) and (orientation:portrait){.corePanelLeft-module_wrapper__7rR84{top:64px}.corePanelLeft-module_wrapper__7rR84.corePanelLeft-module_active__0B7aF{left:64px}}";
11723
11809
  var style$7 = {"wrapper":"corePanelLeft-module_wrapper__7rR84","wrapperClosed":"corePanelLeft-module_wrapperClosed__D5H3B","active":"corePanelLeft-module_active__0B7aF","drawer":"corePanelLeft-module_drawer__TfzGI","buttonContainer":"corePanelLeft-module_buttonContainer__EPyvd","button":"corePanelLeft-module_button__pJXdM","buttonContainerActive":"corePanelLeft-module_buttonContainerActive__6pGzM","buttonContainerClosed":"corePanelLeft-module_buttonContainerClosed__vhAnI"};
11810
+ styleInject(css_248z$E);
11724
11811
 
11725
11812
  edsIcons();
11726
11813
  const CorePanelLeft = () => {
@@ -11756,7 +11843,9 @@ const CorePanelLeft = () => {
11756
11843
  }));
11757
11844
  };
11758
11845
 
11846
+ var css_248z$D = ".corePanelRight-module_wrapper__6hUmM{height:100%;max-width:550px;position:fixed;right:-352px;top:0;transition:right .4s ease-in-out,width .4s ease-in-out;width:352px;z-index:2}.corePanelRight-module_active__Wuvv-{right:0;z-index:var(--echo-framework-z-level-panel-main)}.corePanelRight-module_drawer__Q5mok{background-color:#fff;border-left:2px solid #f7f7f7;box-shadow:0 6px 4px #00000040;display:flex;flex-direction:column;height:100%;opacity:0;overflow-y:auto;position:relative;transition:opacity .4s ease-in-out;width:auto}.corePanelRight-module_buttonContainer__it2ZH{display:flex;flex-direction:column;left:-80px;position:absolute;top:0}.corePanelRight-module_button__x9SCR{margin-left:var(--medium);margin-top:var(--small)}@media screen and (max-width:550px){.corePanelRight-module_active__Wuvv-{width:100%}}@media screen and (max-width:767px) and (orientation:portrait){.corePanelRight-module_wrapper__6hUmM{height:calc(100% - 48px)}.corePanelRight-module_drawer__Q5mok{transition:all .4s ease-out}}@media screen and (max-width:927px) and (orientation:landscape){.corePanelRight-module_wrapper__6hUmM .corePanelRight-module_buttonContainer__it2ZH{left:calc(-82px - env(safe-area-inset-right))}.corePanelRight-module_appWrapper__v4ckB{right:-352px}.corePanelRight-module_appWrapper__v4ckB .corePanelRight-module_buttonContainer__it2ZH{left:calc(273px - env(safe-area-inset-right))}.corePanelRight-module_appDrawer__awaaJ{box-shadow:none;left:calc(-100vw + 398px + env(safe-area-inset-left))}.corePanelRight-module_appWrapper__v4ckB .corePanelRight-module_appDrawer__awaaJ{left:calc(-100vw + 50px + env(safe-area-inset-left))}.corePanelRight-module_drawer__Q5mok{box-shadow:none;transition:all .4s ease-out}.corePanelRight-module_active__Wuvv-{padding-bottom:env(safe-area-inset-bottom);padding-top:env(safe-area-inset-top);right:-352px;z-index:var(--echo-framework-z-level-panel-main)}.corePanelRight-module_active__Wuvv- .corePanelRight-module_drawer__Q5mok{right:calc(352px + env(safe-area-inset-right))}.corePanelRight-module_wrapper__6hUmM.corePanelRight-module_active__Wuvv- .corePanelRight-module_buttonContainer__it2ZH{left:calc(-432px - env(safe-area-inset-right))}.corePanelRight-module_wrapper__6hUmM.corePanelRight-module_appWrapper__v4ckB.corePanelRight-module_active__Wuvv- .corePanelRight-module_buttonContainer__it2ZH{left:calc(-82px - env(safe-area-inset-right))}}@media screen and (min-width:928px){.corePanelRight-module_wrapper__6hUmM{top:64px}}.corePanelRight-module_active__Wuvv- .corePanelRight-module_drawer__Q5mok{opacity:1}";
11759
11847
  var style$6 = {"wrapper":"corePanelRight-module_wrapper__6hUmM","active":"corePanelRight-module_active__Wuvv-","drawer":"corePanelRight-module_drawer__Q5mok","buttonContainer":"corePanelRight-module_buttonContainer__it2ZH","button":"corePanelRight-module_button__x9SCR","appWrapper":"corePanelRight-module_appWrapper__v4ckB","appDrawer":"corePanelRight-module_appDrawer__awaaJ"};
11848
+ styleInject(css_248z$D);
11760
11849
 
11761
11850
  edsIcons();
11762
11851
  const CorePanelRight = () => {
@@ -11787,6 +11876,9 @@ const CorePanelRight = () => {
11787
11876
  };
11788
11877
  var CorePanelRight$1 = /*#__PURE__*/React.memo(CorePanelRight);
11789
11878
 
11879
+ var css_248z$C = ".panelButton-module_toolContainer__Ka6p- .panelButton-module_buttonContainer__24DO3{width:88px}.panelButton-module_toolContainer__Ka6p- .panelButton-module_buttonContainer__24DO3 button{margin:0 16px}.panelButton-module_buttonContainer__24DO3>span{display:inline-block;margin-top:8px;text-align:center;width:100%}.panelButton-module_pageMenuButton__m1PYp{align-items:center;background:#fff;border:1px solid var(--equiGreen1);border-radius:50%;box-shadow:0 4px 4px rgba(0,0,0,.25);box-sizing:border-box;display:flex;height:48px;justify-content:center;width:48px}.panelButton-module_pageMenuButton__m1PYp:hover{background-color:var(--equiGreen2);color:var(--hoverIcon)}.panelButton-module_pageMenuButton__m1PYp:hover svg{fill:var(--hoverIcon)}.panelButton-module_pageMenu__fdBrm .panelButton-module_buttonContainer__24DO3{margin-right:var(--medium);margin-top:var(--large)}.panelButton-module_toggleButton__PP53M{background:var(--toggleInactive);border:1px solid var(--toggleInactive)}.panelButton-module_toggleButton__PP53M:hover{background:rgba(179,13,47,.5);border:1px solid var(--toggleInactive)}.panelButton-module_activeButton__OnWaw{background:var(--equiGreen1);border:2px solid var(--equiGreen1)}.panelButton-module_activeButton__OnWaw.panelButton-module_toggleButton__PP53M{background:var(--toggleActive);border:1px solid var(--toggleActive)}.panelButton-module_activeButton__OnWaw.panelButton-module_toggleButton__PP53M:hover{background:rgba(75,183,72,.5);border:1px solid var(--toggleActive)}.panelButton-module_pageMenu__fdBrm{background-color:#fff;border-left:2px solid var(--searchBarBackground);height:100vh;overflow:auto;position:fixed;top:0;transition:width .4s ease-in-out;width:352px}.panelButton-module_menuTitle__hXO0Z{color:#000;display:inline-block;font-size:16px;letter-spacing:.2px;line-height:16px;margin-bottom:23px;margin-left:var(--small);margin-top:18px;width:100%}@keyframes panelButton-module_spinAnimation__5oV3g{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.panelButton-module_spinningIcon__YEhBd{animation:panelButton-module_spinAnimation__5oV3g 1.5s linear infinite reverse}@media only screen and (max-width:415px){.panelButton-module_pageMenu__fdBrm{right:-345px;width:335px}}@media only screen and (max-width:375px){.panelButton-module_pageMenu__fdBrm{width:305px}.panelButton-module_pageMenu__fdBrm .panelButton-module_buttonContainer__24DO3{margin-top:var(--xLarge)}}@media only screen and (max-width:360px){.panelButton-module_pageMenu__fdBrm{width:285px}.panelButton-module_pageMenu__fdBrm .panelButton-module_buttonContainer__24DO3{margin-top:var(--xLarge)}}.panelButton-module_toolContainer__Ka6p-{padding:16px 32px}.panelButton-module_versionInformation__pTM9U{display:flex;flex:1 0 auto;flex-direction:column;font-size:12px;height:fit-content;justify-content:flex-end;margin:20px 0}.panelButton-module_appMenuHeaderLink__ZNp4I{color:var(--echoText);display:inline-block;font-size:16px;font-weight:500;line-height:24px;padding:8px 0;width:100%}.panelButton-module_appMenuHeaderLink__ZNp4I:hover{text-decoration:none}.panelButton-module_appMenuContainer__bwAQ6{display:flex;flex-flow:column;height:100%}";
11880
+ styleInject(css_248z$C);
11881
+
11790
11882
  exports.Variants = void 0;
11791
11883
  (function (Variants) {
11792
11884
  Variants["OpenCloseButton"] = "openCloseButton";
@@ -12013,7 +12105,9 @@ function getWorkType(instCode, workOrderId) {
12013
12105
  });
12014
12106
  }
12015
12107
 
12108
+ var css_248z$B = ".RequestAccess-module_container__miz0D{padding:unset}.RequestAccess-module_paddedContainer__JkfYy{padding:24px}.RequestAccess-module_title__jaq4R{font-weight:500}.RequestAccess-module_typeDescription__MIi9k{margin-top:20px}.RequestAccess-module_list__cSrm8{margin-top:16px}.RequestAccess-module_list__cSrm8>:not(:first-child){margin-top:8px}.RequestAccess-module_button__TrkLk{margin-top:26px}";
12016
12109
  var styles$v = {"container":"RequestAccess-module_container__miz0D","paddedContainer":"RequestAccess-module_paddedContainer__JkfYy","title":"RequestAccess-module_title__jaq4R","typeDescription":"RequestAccess-module_typeDescription__MIi9k","list":"RequestAccess-module_list__cSrm8","button":"RequestAccess-module_button__TrkLk"};
12110
+ styleInject(css_248z$B);
12017
12111
 
12018
12112
  const RequestAccess = ({
12019
12113
  padding
@@ -12088,7 +12182,9 @@ function DetailsAccordion({
12088
12182
  }));
12089
12183
  }
12090
12184
 
12185
+ var css_248z$A = ".DetailsLoader-module_container__lJGsE{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;margin-top:20px}";
12091
12186
  var styles$u = {"container":"DetailsLoader-module_container__lJGsE"};
12187
+ styleInject(css_248z$A);
12092
12188
 
12093
12189
  function Loader() {
12094
12190
  return jsxRuntime.jsxs("div", Object.assign({
@@ -12123,7 +12219,9 @@ function EmptyDetailsPanel({
12123
12219
  }));
12124
12220
  }
12125
12221
 
12222
+ var css_248z$z = ".ContentPicker-module_leftPanel__MIMRa{border-right:1px solid var(--default)}.ContentPicker-module_activeGroup__MP52b{font-weight:700}.ContentPicker-module_description__7KIj8{font-size:.6rem;font-weight:500;margin-left:15px;margin-top:16px;text-overflow:ellipsis}.ContentPicker-module_section__-akry{margin:16px 0}.ContentPicker-module_notFoundPanel__2Tvxn{padding:16px 24px}.ContentPicker-module_splitViewLeft__nbbhg{grid-template-columns:350px!important;grid-template-rows:min-content min-content!important}";
12126
12223
  var styles$t = {"leftPanel":"ContentPicker-module_leftPanel__MIMRa","activeGroup":"ContentPicker-module_activeGroup__MP52b","description":"ContentPicker-module_description__7KIj8","section":"ContentPicker-module_section__-akry","notFoundPanel":"ContentPicker-module_notFoundPanel__2Tvxn","splitViewLeft":"ContentPicker-module_splitViewLeft__nbbhg"};
12224
+ styleInject(css_248z$z);
12127
12225
 
12128
12226
  function ContentPicker({
12129
12227
  groups,
@@ -12722,7 +12820,9 @@ function useSetActivePackageItemInState() {
12722
12820
  return setActivePackageSearch;
12723
12821
  }
12724
12822
 
12823
+ var css_248z$y = ".InfoBlock-module_container__ysAHg{padding:.5rem;width:210px;word-break:break-all}.InfoBlock-module_stretchedContainer__g5ff7{width:100%}.InfoBlock-module_fitContainer__DkMzF{width:260px}.InfoBlock-module_headerLabel__YWbN0{font-size:10px;font-weight:500;line-height:16px;text-transform:uppercase}";
12725
12824
  var styles$s = {"container":"InfoBlock-module_container__ysAHg","stretchedContainer":"InfoBlock-module_stretchedContainer__g5ff7 InfoBlock-module_container__ysAHg","fitContainer":"InfoBlock-module_fitContainer__DkMzF InfoBlock-module_container__ysAHg","headerLabel":"InfoBlock-module_headerLabel__YWbN0"};
12825
+ styleInject(css_248z$y);
12726
12826
 
12727
12827
  function InfoBlock({
12728
12828
  label,
@@ -12747,7 +12847,9 @@ function InfoBlock({
12747
12847
  }));
12748
12848
  }
12749
12849
 
12850
+ var css_248z$x = ".InfoSection-module_container__xp9xb{display:flex;flex-direction:column;flex-flow:wrap;width:100%}.InfoSection-module_container__xp9xb>div{margin-bottom:8px}";
12750
12851
  var styles$r = {"container":"InfoSection-module_container__xp9xb"};
12852
+ styleInject(css_248z$x);
12751
12853
 
12752
12854
  function InfoSection({
12753
12855
  children
@@ -12916,7 +13018,9 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
12916
13018
  ];
12917
13019
  }, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
12918
13020
 
13021
+ var css_248z$w = ".LongTextSection-module_content__T03aB{padding:24px}.LongTextSection-module_longText__drnhg{display:flex;flex-direction:column;gap:4px;margin-top:20px;overflow:hidden}.LongTextSection-module_link__0UC80{color:var(--asBuilt);cursor:pointer;display:flex;padding:0!important;text-decoration:underline}.LongTextSection-module_backButton__-Utsh>span{grid-gap:4px}";
12919
13022
  var styles$q = {"content":"LongTextSection-module_content__T03aB","longText":"LongTextSection-module_longText__drnhg","link":"LongTextSection-module_link__0UC80","backButton":"LongTextSection-module_backButton__-Utsh"};
13023
+ styleInject(css_248z$w);
12920
13024
 
12921
13025
  /**
12922
13026
  * Returns a date as a friendly readable string. If the date is undefined, it returns empty string.
@@ -13185,7 +13289,9 @@ function InfoBlockList({
13185
13289
  });
13186
13290
  }
13187
13291
 
13292
+ var css_248z$v = ".Link-module_linkElement__hWEBk{align-items:center;color:var(--echoText);display:flex;font-size:1rem;gap:.5rem;text-decoration:none}.Link-module_linkElement__hWEBk:hover{text-decoration:underline}.Link-module_linkElement__hWEBk:focus{outline:1px dashed #007079;text-decoration:underline}.Link-module_linkElement__hWEBk>span{line-height:0}";
13188
13293
  var styles$p = {"linkElement":"Link-module_linkElement__hWEBk"};
13294
+ styleInject(css_248z$v);
13189
13295
 
13190
13296
  const Link = ({
13191
13297
  href,
@@ -13207,7 +13313,9 @@ const Link = ({
13207
13313
  const PrepviewContext = /*#__PURE__*/React__default["default"].createContext({});
13208
13314
  const usePrepviewContext = () => React__default["default"].useContext(PrepviewContext);
13209
13315
 
13316
+ var css_248z$u = ".DetailsNotification-module_link__agciP{color:var(--asBuilt);cursor:pointer;padding:0!important;text-decoration:underline}.DetailsNotification-module_longTextLink__Ppv7M{align-items:center;display:flex}.DetailsNotification-module_content__-iEqZ{padding:24px}.DetailsNotification-module_mobileContent__HgTsI{height:calc(100vh - 263px)!important}.DetailsNotification-module_topRow__uDCVs{display:flex}.DetailsNotification-module_verticalTopRow__TTpMH{justify-content:space-between}.DetailsNotification-module_longTextButtonVertical__F98HY>span{grid-gap:4px;min-width:128px}.DetailsNotification-module_longTextButtonStretched__OwrIk{margin-left:80px}";
13210
13317
  var styles$o = {"link":"DetailsNotification-module_link__agciP","longTextLink":"DetailsNotification-module_longTextLink__Ppv7M DetailsNotification-module_link__agciP","content":"DetailsNotification-module_content__-iEqZ","mobileContent":"DetailsNotification-module_mobileContent__HgTsI DetailsNotification-module_content__-iEqZ","topRow":"DetailsNotification-module_topRow__uDCVs","verticalTopRow":"DetailsNotification-module_verticalTopRow__TTpMH DetailsNotification-module_topRow__uDCVs","longTextButtonVertical":"DetailsNotification-module_longTextButtonVertical__F98HY","longTextButtonStretched":"DetailsNotification-module_longTextButtonStretched__OwrIk"};
13318
+ styleInject(css_248z$u);
13211
13319
 
13212
13320
  function DetailsNotification({
13213
13321
  details,
@@ -13420,7 +13528,9 @@ function DetailsNotification({
13420
13528
  });
13421
13529
  }
13422
13530
 
13531
+ var css_248z$t = ".Attachments-module_container__ciN2D{align-items:center;border-bottom:1px solid var(--default);border-top:1px solid var(--default);display:grid;gap:1rem;grid-template-columns:1fr auto;padding:14px}.Attachments-module_actions__7-bCE{align-items:center;display:flex;flex-flow:row nowrap;gap:1rem}.Attachments-module_title__toBVk{color:initial;font-size:1rem;pointer-events:none;text-decoration-line:unset}.Attachments-module_link__tuD2O{color:var(--asBuilt);pointer-events:auto;text-decoration-line:underline}.Attachments-module_notFoundPanel__ZpNH7{padding:24px}.Attachments-module_content__gB-pG{padding-top:20px}.Attachments-module_flex__-JRov{display:flex;font-size:12px}.Attachments-module_spaceLeft__dUeqf{margin-left:24px}.Attachments-module_listItem__ia4L8{padding:16px!important}.Attachments-module_listItem__ia4L8>div{gap:.5rem}.Attachments-module_table__rThZw{padding-left:20px;width:100%}.Attachments-module_pointer__KgeoQ{cursor:pointer}";
13423
13532
  var styles$n = {"container":"Attachments-module_container__ciN2D","actions":"Attachments-module_actions__7-bCE","title":"Attachments-module_title__toBVk","link":"Attachments-module_link__tuD2O Attachments-module_title__toBVk","notFoundPanel":"Attachments-module_notFoundPanel__ZpNH7","content":"Attachments-module_content__gB-pG","flex":"Attachments-module_flex__-JRov","spaceLeft":"Attachments-module_spaceLeft__dUeqf","listItem":"Attachments-module_listItem__ia4L8","table":"Attachments-module_table__rThZw","pointer":"Attachments-module_pointer__KgeoQ"};
13533
+ styleInject(css_248z$t);
13424
13534
 
13425
13535
  function getExtension(filename) {
13426
13536
  return filename.split('.').pop();
@@ -13585,7 +13695,9 @@ function AttachmentRow({
13585
13695
  }));
13586
13696
  }
13587
13697
 
13698
+ var css_248z$s = ".Operations-module_notFoundPanel__PuZSF{padding:24px}.Operations-module_content__Yd1m1{padding-top:20px}.Operations-module_table__ZItO0{padding-left:20px;width:100%}.Operations-module_panel__N0Ayf{background:var(--searchBarBackground)!important}.Operations-module_title__ZpDj2{color:var(--echoText)}.Operations-module_title__ZpDj2 button[aria-expanded=true] span{color:var(--echoText);font-weight:700}";
13588
13699
  var styles$m = {"notFoundPanel":"Operations-module_notFoundPanel__PuZSF","content":"Operations-module_content__Yd1m1","table":"Operations-module_table__ZItO0","panel":"Operations-module_panel__N0Ayf","title":"Operations-module_title__ZpDj2"};
13700
+ styleInject(css_248z$s);
13589
13701
 
13590
13702
  function OperationsPanel({
13591
13703
  operations
@@ -13743,7 +13855,9 @@ function OperationRow({
13743
13855
  });
13744
13856
  }
13745
13857
 
13858
+ var css_248z$r = ".TagDocuments-module_notFoundPanel__LpLtZ{padding:24px}.TagDocuments-module_container__WX1Rt{border-bottom:1px solid var(--default);display:flex;flex-direction:column;gap:6px;padding:16px}.TagDocuments-module_link__h-2Tm{color:var(--asBuilt)}.TagDocuments-module_meta__STgGG{align-items:center;display:grid;font-size:12px;gap:1rem;grid-template-columns:auto auto auto;justify-items:start}.TagDocuments-module_revision__RHdi4{background-color:var(--lowSeverity);padding:0 8px}.TagDocuments-module_of3Revision__oD7wg{background-color:var(--mediumSeverity)}.TagDocuments-module_tertiarySpace__NizCk{margin-left:20px}.TagDocuments-module_panel__XyzBf{background:var(--searchBarBackground)!important;overflow-y:auto;padding:0!important}.TagDocuments-module_panelContent__8mPOc{background:#fff;margin:16px;min-width:350px}.TagDocuments-module_content__KcpgY{padding-top:20px}.TagDocuments-module_primary__-zjEy{font-size:var(--medium)}.TagDocuments-module_secondary__q3u1w{font-size:14px}.TagDocuments-module_tertiary__URg3n{align-items:center;display:flex;font-size:12px}.TagDocuments-module_tertiaryRight__iqa-u{margin-left:10px}.TagDocuments-module_header__aCj4g{color:var(--echoText)}.TagDocuments-module_header__aCj4g button[aria-expanded=true] span{color:var(--echoText);font-weight:700}";
13746
13859
  var styles$l = {"notFoundPanel":"TagDocuments-module_notFoundPanel__LpLtZ","container":"TagDocuments-module_container__WX1Rt","link":"TagDocuments-module_link__h-2Tm","meta":"TagDocuments-module_meta__STgGG","revision":"TagDocuments-module_revision__RHdi4","of3Revision":"TagDocuments-module_of3Revision__oD7wg TagDocuments-module_revision__RHdi4","tertiarySpace":"TagDocuments-module_tertiarySpace__NizCk","panel":"TagDocuments-module_panel__XyzBf","panelContent":"TagDocuments-module_panelContent__8mPOc","content":"TagDocuments-module_content__KcpgY","primary":"TagDocuments-module_primary__-zjEy","secondary":"TagDocuments-module_secondary__q3u1w","tertiary":"TagDocuments-module_tertiary__URg3n","tertiaryRight":"TagDocuments-module_tertiaryRight__iqa-u","header":"TagDocuments-module_header__aCj4g"};
13860
+ styleInject(css_248z$r);
13747
13861
 
13748
13862
  function TagDocumentItem({
13749
13863
  document,
@@ -13915,7 +14029,9 @@ function TagDocumentRefsPanel({
13915
14029
  });
13916
14030
  }
13917
14031
 
14032
+ var css_248z$q = ".TagInformation-module_content__4rYcP{padding:24px}";
13918
14033
  var styles$k = {"content":"TagInformation-module_content__4rYcP"};
14034
+ styleInject(css_248z$q);
13919
14035
 
13920
14036
  /**
13921
14037
  * TagInformationPanel
@@ -13990,7 +14106,9 @@ function TagInformationPanel({
13990
14106
  }));
13991
14107
  }
13992
14108
 
14109
+ var css_248z$p = ".Objects-module_notFoundPanel__uWQ0l{padding:24px}.Objects-module_content__rnhVG{padding-top:20px}.Objects-module_table__73Sl8{padding-left:20px;width:100%}.Objects-module_panel__PH8iJ{background:var(--searchBarBackground)!important}.Objects-module_title__rwXyY{color:var(--echoText)}.Objects-module_title__rwXyY button[aria-expanded=true] span{color:var(--echoText);font-weight:700}";
13993
14110
  var styles$j = {"notFoundPanel":"Objects-module_notFoundPanel__uWQ0l","content":"Objects-module_content__rnhVG","table":"Objects-module_table__73Sl8","panel":"Objects-module_panel__PH8iJ","title":"Objects-module_title__rwXyY"};
14111
+ styleInject(css_248z$p);
13994
14112
 
13995
14113
  function ObjectsPanel({
13996
14114
  relatedTags
@@ -14096,7 +14214,9 @@ function RelatedTagRow({
14096
14214
  });
14097
14215
  }
14098
14216
 
14217
+ var css_248z$o = ".TrafficLight-module_trafficLight__29Dvq{align-items:center;border-radius:50%;color:#fff;display:flex;font-size:12px;height:22px;justify-content:center;margin:6px;width:22px}.TrafficLight-module_defaultSeverity__qEvFS{background-color:var(--equiGray1)}.TrafficLight-module_severity1__jXWiO{background-color:var(--highSeverityText)}.TrafficLight-module_severity3__6LZPo{background-color:var(--warningIcon)}.TrafficLight-module_severity4__O4j-F{background-color:var(--lowSeverityText)}";
14099
14218
  var styles$i = {"trafficLight":"TrafficLight-module_trafficLight__29Dvq","defaultSeverity":"TrafficLight-module_defaultSeverity__qEvFS","severity1":"TrafficLight-module_severity1__jXWiO","severity2":"TrafficLight-module_severity2__wW0ya TrafficLight-module_severity1__jXWiO","severity3":"TrafficLight-module_severity3__6LZPo","severity4":"TrafficLight-module_severity4__O4j-F","severity5":"TrafficLight-module_severity5__Yqt-- TrafficLight-module_severity4__O4j-F"};
14219
+ styleInject(css_248z$o);
14100
14220
 
14101
14221
  function TrafficLight({
14102
14222
  severity,
@@ -14122,7 +14242,9 @@ function getSeverityColor(severity) {
14122
14242
  }
14123
14243
  }
14124
14244
 
14245
+ var css_248z$n = ".Risk-module_number__mQdq9{margin-top:2px}.Risk-module_small__tB2P8{display:flex;font-size:12px}.Risk-module_large__eMxhM{font-size:1rem;font-weight:500}.Risk-module_medium__KdGMA{font-size:14px}.Risk-module_itemAction__NojsC{align-items:center;display:flex;gap:16px}.Risk-module_safexButton__wOLTj{margin:8px 14px;padding:0 10px}.Risk-module_top__ffYep{display:flex;justify-content:end}.Risk-module_itemList__5puMd>div:first-of-type{border-top:1px solid}.Risk-module_table__vqfJl{padding-left:20px;padding-top:20px;width:100%}.Risk-module_pointer__o8bRc{cursor:pointer}.Risk-module_notFoundPanel__EiTvq{padding:24px}";
14125
14246
  var styles$h = {"number":"Risk-module_number__mQdq9","small":"Risk-module_small__tB2P8","large":"Risk-module_large__eMxhM","medium":"Risk-module_medium__KdGMA","itemAction":"Risk-module_itemAction__NojsC","safexButton":"Risk-module_safexButton__wOLTj","top":"Risk-module_top__ffYep","itemList":"Risk-module_itemList__5puMd","table":"Risk-module_table__vqfJl","pointer":"Risk-module_pointer__o8bRc","notFoundPanel":"Risk-module_notFoundPanel__EiTvq"};
14247
+ styleInject(css_248z$n);
14126
14248
 
14127
14249
  function RiskPanel({
14128
14250
  safetyCards
@@ -14270,7 +14392,9 @@ function RiskRow({
14270
14392
  }));
14271
14393
  }
14272
14394
 
14395
+ var css_248z$m = ".Items-module_itemsHeader__HkvwX{border-bottom:1px solid #dadada;color:var(--echoText)!important}.Items-module_itemsHeader__HkvwX button[aria-expanded=true] span{color:var(--echoText)!important;font-weight:700!important}.Items-module_itemsHeader__HkvwX>span{margin-left:28px}.Items-module_punchItemsHeader__tyheL>span{margin-left:0}.Items-module_itemsPanel__lsGeU{background:var(--searchBarBackground)!important;border-top:0!important;line-height:normal!important;min-height:auto!important}.Items-module_header__jMq6D{display:block}.Items-module_smallText__4zs6g{color:var(--tertiaryText);font-size:12px}.Items-module_largeText__tJ0wT{font-size:1rem}.Items-module_accordionHeader__I-p-i{border:0;border-bottom:none;border-top:1px solid #dadada;height:auto;justify-content:space-between;padding:16px}.Items-module_accordionHeader__I-p-i>svg{align-self:start}.Items-module_accordionHeader__I-p-i>button{justify-content:space-between}.Items-module_expandedAccordionHeader__-R-nm{border-bottom:1px solid #dadada}.Items-module_panel__YrGHs{border:0;border-bottom:1px solid #dadada;padding:24px}.Items-module_time__AtrTf{color:var(--echoText)}.Items-module_details__EKsPR{display:flex;flex-flow:wrap;width:100%}.Items-module_details__EKsPR>div{margin-bottom:8px}.Items-module_listItemContainer__eY9wp>div:not(:first-of-type){gap:8px}.Items-module_listItemContainer__eY9wp{padding:16px 12px!important}.Items-module_flex__Gc6u2{align-items:center;display:flex}.Items-module_title__ZoWnu{font-weight:500}.Items-module_status__ORuK9{display:flex;margin-left:8px}.Items-module_statusCircle__juY02{border-radius:160px;height:12px;width:12px}.Items-module_statusText__Xf3WX{font-size:12px;font-weight:500;margin-left:4px}.Items-module_small__YE-Vv{font-size:12px;margin-right:16px}.Items-module_medium__nXnEv{font-size:14px}.Items-module_tertiary__uvHal{display:flex;font-size:12px}.Items-module_reqDate__GOWum{margin-left:16px}.Items-module_visual__FvvLj{align-items:center;background-color:var(--echoText);border-radius:50%;color:#fff;display:flex;flex-direction:column;font-size:12px;font-weight:500;height:40px;justify-content:center;margin:.5rem;padding:.5rem;width:40px}.Items-module_panel__YrGHs{background:var(--searchBarBackground)!important;padding:0!important}.Items-module_panelContent__VnPX6{background:#fff}";
14273
14396
  var styles$g = {"itemsHeader":"Items-module_itemsHeader__HkvwX","punchItemsHeader":"Items-module_punchItemsHeader__tyheL","itemsPanel":"Items-module_itemsPanel__lsGeU","header":"Items-module_header__jMq6D","smallText":"Items-module_smallText__4zs6g","largeText":"Items-module_largeText__tJ0wT","accordionHeader":"Items-module_accordionHeader__I-p-i","expandedAccordionHeader":"Items-module_expandedAccordionHeader__-R-nm Items-module_accordionHeader__I-p-i","panel":"Items-module_panel__YrGHs","time":"Items-module_time__AtrTf","details":"Items-module_details__EKsPR","listItemContainer":"Items-module_listItemContainer__eY9wp","flex":"Items-module_flex__Gc6u2","title":"Items-module_title__ZoWnu","status":"Items-module_status__ORuK9","small":"Items-module_small__YE-Vv","statusCircle":"Items-module_statusCircle__juY02","statusText":"Items-module_statusText__Xf3WX","medium":"Items-module_medium__nXnEv","tertiary":"Items-module_tertiary__uvHal","reqDate":"Items-module_reqDate__GOWum","visual":"Items-module_visual__FvvLj","panelContent":"Items-module_panelContent__VnPX6"};
14397
+ styleInject(css_248z$m);
14274
14398
 
14275
14399
  const NotificationItem = ({
14276
14400
  notification
@@ -14492,7 +14616,9 @@ const Items = ({
14492
14616
  }));
14493
14617
  };
14494
14618
 
14619
+ var css_248z$l = ".TagHistoryGroup-module_content__qikfB{margin-left:24px}";
14495
14620
  var styles$f = {"content":"TagHistoryGroup-module_content__qikfB"};
14621
+ styleInject(css_248z$l);
14496
14622
 
14497
14623
  function TagHistoryGroup({
14498
14624
  groups,
@@ -14517,7 +14643,9 @@ function TagHistoryGroup({
14517
14643
  });
14518
14644
  }
14519
14645
 
14646
+ var css_248z$k = ".HorizontalTagHistory-module_itemsContainer__sp0ar{background:var(--searchBarBackground);border-top:0;line-height:normal;min-height:auto;overflow-y:auto}.HorizontalTagHistory-module_panel__WBI-M{background:#fff;margin:16px;min-width:350px}";
14520
14647
  var styles$e = {"itemsContainer":"HorizontalTagHistory-module_itemsContainer__sp0ar","panel":"HorizontalTagHistory-module_panel__WBI-M"};
14648
+ styleInject(css_248z$k);
14521
14649
 
14522
14650
  const notificationContent = notifications => {
14523
14651
  return jsxRuntime.jsx("div", Object.assign({
@@ -14642,7 +14770,9 @@ const HorizontalTagHistory = ({
14642
14770
  });
14643
14771
  };
14644
14772
 
14773
+ var css_248z$j = ".TagHistory-module_description__mGXNh{font-size:.6rem;font-weight:500;margin-left:15px;margin-top:16px;text-overflow:ellipsis}.TagHistory-module_section__SwPqb{margin:16px 0}.TagHistory-module_section__SwPqb>:not(:first-child)>div>h4{border-top:0}.TagHistory-module_content__IgxEq{margin-left:24px}.TagHistory-module_container__PVXmS{overflow:hidden}";
14645
14774
  var styles$d = {"description":"TagHistory-module_description__mGXNh","section":"TagHistory-module_section__SwPqb","content":"TagHistory-module_content__IgxEq","container":"TagHistory-module_container__PVXmS"};
14775
+ styleInject(css_248z$j);
14646
14776
 
14647
14777
  function TagHistoryPanel({
14648
14778
  notificationGroups,
@@ -14701,7 +14831,9 @@ function TagHistoryPanel({
14701
14831
  });
14702
14832
  }
14703
14833
 
14834
+ var css_248z$i = ".DetailsWorkOrder-module_link__muu7Y{color:var(--asBuilt);cursor:pointer;padding:0!important;text-decoration:underline}.DetailsWorkOrder-module_longTextLink__nFJfD{align-items:center;display:flex}.DetailsWorkOrder-module_content__NYIfs{padding:24px}.DetailsWorkOrder-module_mobileContent__fVCD6{height:calc(100vh - 263px)!important}.DetailsWorkOrder-module_topRow__x5sNx{display:flex}.DetailsWorkOrder-module_verticalTopRow__fkFZw{display:flex;justify-content:space-between}.DetailsWorkOrder-module_longTextButton__WWwvY>span{min-width:128px}.DetailsWorkOrder-module_longTextButtonVertical__bCeTa>span{grid-gap:4px;min-width:128px}.DetailsWorkOrder-module_longTextButtonStretched__mZ-6S{margin-left:80px}";
14704
14835
  var styles$c = {"link":"DetailsWorkOrder-module_link__muu7Y","longTextLink":"DetailsWorkOrder-module_longTextLink__nFJfD DetailsWorkOrder-module_link__muu7Y","content":"DetailsWorkOrder-module_content__NYIfs","mobileContent":"DetailsWorkOrder-module_mobileContent__fVCD6 DetailsWorkOrder-module_content__NYIfs","topRow":"DetailsWorkOrder-module_topRow__x5sNx","verticalTopRow":"DetailsWorkOrder-module_verticalTopRow__fkFZw","longTextButton":"DetailsWorkOrder-module_longTextButton__WWwvY","longTextButtonVertical":"DetailsWorkOrder-module_longTextButtonVertical__bCeTa DetailsWorkOrder-module_longTextButton__WWwvY","longTextButtonStretched":"DetailsWorkOrder-module_longTextButtonStretched__mZ-6S DetailsWorkOrder-module_longTextButton__WWwvY"};
14836
+ styleInject(css_248z$i);
14705
14837
 
14706
14838
  function DetailsWorkOrder({
14707
14839
  details,
@@ -14856,7 +14988,9 @@ function DetailsWorkOrder({
14856
14988
  });
14857
14989
  }
14858
14990
 
14991
+ var css_248z$h = ".TabsPanels-module_tabList__gfsJh{overflow-x:hidden;overscroll-behavior-x:contain;scroll-behavior:smooth;scroll-snap-type:x mandatory}.TabsPanels-module_tabList__gfsJh::-webkit-scrollbar{-ms-overflow-style:unset;display:unset;scrollbar-width:unset}.TabsPanels-module_mobileTabList__nB88J{overflow-x:scroll}.TabsPanels-module_mobileTabList__nB88J::-webkit-scrollbar{-ms-overflow-style:none;display:none;scrollbar-width:none}.TabsPanels-module_panels__PhgDX{height:100%;overflow-y:auto}.TabsPanels-module_panelsHorizontal__Yj8zi{overflow-y:hidden}.TabsPanels-module_tabsPanel__LhDnK{height:100%;padding:0!important}";
14859
14992
  var styles$b = {"tabList":"TabsPanels-module_tabList__gfsJh","mobileTabList":"TabsPanels-module_mobileTabList__nB88J TabsPanels-module_tabList__gfsJh","panels":"TabsPanels-module_panels__PhgDX","panelsHorizontal":"TabsPanels-module_panelsHorizontal__Yj8zi TabsPanels-module_panels__PhgDX","tabsPanel":"TabsPanels-module_tabsPanel__LhDnK"};
14993
+ styleInject(css_248z$h);
14860
14994
 
14861
14995
  function TabsPanels({
14862
14996
  workOrderDetails,
@@ -15146,7 +15280,9 @@ function NotificationPanels({
15146
15280
  }));
15147
15281
  }
15148
15282
 
15283
+ var css_248z$g = ".AdditionalDetails-module_tabs__RL7ro{display:flex;flex-direction:column;overflow:hidden}.AdditionalDetails-module_horizontalTabs__-iqdf{display:flex;flex-direction:column}.AdditionalDetails-module_tabsContainer__xPg15{display:grid;grid-template-columns:auto 80% auto}.AdditionalDetails-module_fullScreenTabsContainer__2cK-v{grid-template-columns:auto;margin-left:unset;margin-right:unset}.AdditionalDetails-module_mobileTabsContainer__--b6U{margin-left:-8px;margin-right:-8px}.AdditionalDetails-module_tabsRow__IBr5a{display:grid;grid-template-columns:unset}.AdditionalDetails-module_tabsRowHorizontal__-EKE6{display:grid;grid-template-columns:min-content auto;min-width:750px}.AdditionalDetails-module_extendedBorder__xRNlr{border-bottom:2px solid var(--default)}.AdditionalDetails-module_scrollButtonContainer__DCxlD{border-bottom:2px solid var(--eds_ui_background__medium,#dcdcdc)}";
15149
15284
  var styles$a = {"tabs":"AdditionalDetails-module_tabs__RL7ro","horizontalTabs":"AdditionalDetails-module_horizontalTabs__-iqdf","tabsContainer":"AdditionalDetails-module_tabsContainer__xPg15","fullScreenTabsContainer":"AdditionalDetails-module_fullScreenTabsContainer__2cK-v AdditionalDetails-module_tabsContainer__xPg15","mobileTabsContainer":"AdditionalDetails-module_mobileTabsContainer__--b6U AdditionalDetails-module_fullScreenTabsContainer__2cK-v AdditionalDetails-module_tabsContainer__xPg15","tabsRow":"AdditionalDetails-module_tabsRow__IBr5a","tabsRowHorizontal":"AdditionalDetails-module_tabsRowHorizontal__-EKE6","extendedBorder":"AdditionalDetails-module_extendedBorder__xRNlr","scrollButtonContainer":"AdditionalDetails-module_scrollButtonContainer__DCxlD"};
15285
+ styleInject(css_248z$g);
15150
15286
 
15151
15287
  function AdditionalDetails({
15152
15288
  workOrderDetails,
@@ -15254,7 +15390,9 @@ function AdditionalDetails({
15254
15390
  }));
15255
15391
  }
15256
15392
 
15393
+ var css_248z$f = ".Header-module_verticalContainer__Pjddz{padding-top:16px}.Header-module_verticalContainer__Pjddz>div{border-bottom:0}.Header-module_container__ib77z{padding-top:16px}.Header-module_container__ib77z>div{border-bottom:0}.Header-module_title__cSj5p{font-weight:500}.Header-module_tertiary__os0Fy{display:flex;font-size:12px;font-weight:500}.Header-module_tertiaryMobile__-fwXK{display:block}.Header-module_small__0NwqQ{font-size:12px;margin-right:16px}.Header-module_medium__BjbSH{font-size:14px;font-weight:500}.Header-module_gap__nzGXk>div:not(:first-of-type){gap:8px}.Header-module_buttonBar__TjL7P{align-items:center;display:flex;justify-content:end;margin-top:18px}.Header-module_buttonContainer__NSmLF{align-items:inherit;display:inherit}.Header-module_button__u4PAz{color:var(--echoText)}.Header-module_icon__sFaMB{margin-right:10px}.Header-module_lastIcon__kxics{margin-right:18px}.Header-module_divider__lMHWf{margin-top:2px!important}.Header-module_status__XYA30{display:flex;margin-left:8px}.Header-module_statusCircle__8GQxa{border-radius:160px;height:12px;width:12px}.Header-module_statusText__BAm2T{font-size:12px;font-weight:500;margin-left:4px}.Header-module_topRow__lN6Nk{align-items:center;display:flex}.Header-module_reqDate__QrEyW{margin-left:16px}.Header-module_reqDateMobile__nuWh8{margin-left:0;margin-top:5px}.Header-module_visual__8yFpI{align-items:center;background-color:var(--echoText);border-radius:50%;color:#fff;display:flex;flex-direction:column;font-size:12px;font-weight:500;height:40px;justify-content:center;margin:.5rem;padding:.5rem;width:40px}";
15257
15394
  var styles$9 = {"verticalContainer":"Header-module_verticalContainer__Pjddz","container":"Header-module_container__ib77z","title":"Header-module_title__cSj5p","tertiary":"Header-module_tertiary__os0Fy","tertiaryMobile":"Header-module_tertiaryMobile__-fwXK Header-module_tertiary__os0Fy","small":"Header-module_small__0NwqQ","medium":"Header-module_medium__BjbSH","gap":"Header-module_gap__nzGXk","buttonBar":"Header-module_buttonBar__TjL7P","buttonContainer":"Header-module_buttonContainer__NSmLF","button":"Header-module_button__u4PAz","icon":"Header-module_icon__sFaMB","lastIcon":"Header-module_lastIcon__kxics","divider":"Header-module_divider__lMHWf","status":"Header-module_status__XYA30","statusCircle":"Header-module_statusCircle__8GQxa","statusText":"Header-module_statusText__BAm2T","topRow":"Header-module_topRow__lN6Nk","reqDate":"Header-module_reqDate__QrEyW","reqDateMobile":"Header-module_reqDateMobile__nuWh8","visual":"Header-module_visual__8yFpI"};
15395
+ styleInject(css_248z$f);
15258
15396
 
15259
15397
  function Header$1(props) {
15260
15398
  const {
@@ -15410,7 +15548,9 @@ function Header$1(props) {
15410
15548
  }));
15411
15549
  }
15412
15550
 
15551
+ var css_248z$e = ".index-module_lonelyDetails__PbGVE{overflow-y:auto}.index-module_verticalContainer__IEZ6q{display:flex;flex-direction:column;overflow:hidden;width:inherit}.index-module_splitView__x6wsh{height:100%!important}.index-module_splitHorizontal__Kantp{overflow:auto!important}";
15413
15552
  var styles$8 = {"lonelyDetails":"index-module_lonelyDetails__PbGVE","verticalContainer":"index-module_verticalContainer__IEZ6q","splitView":"index-module_splitView__x6wsh","splitHorizontal":"index-module_splitHorizontal__Kantp"};
15553
+ styleInject(css_248z$e);
15414
15554
 
15415
15555
  function Notification(props) {
15416
15556
  const {
@@ -15467,7 +15607,9 @@ function Notification(props) {
15467
15607
  }
15468
15608
  }
15469
15609
 
15610
+ var css_248z$d = ".Details-module_container__ArXPj{overflow-y:auto}.Details-module_content__MoYok{padding:8px 24px 24px}.Details-module_link__iNkPZ{color:var(--asBuilt);cursor:pointer;padding:0!important;text-decoration:underline}.Details-module_longTextLink__5hzXU{align-items:center;display:flex}.Details-module_topRow__-nADf{display:flex}.Details-module_descriptionButton__1q3Hy>span{grid-gap:4px}";
15470
15611
  var styles$7 = {"container":"Details-module_container__ArXPj","content":"Details-module_content__MoYok","link":"Details-module_link__iNkPZ","longTextLink":"Details-module_longTextLink__5hzXU Details-module_link__iNkPZ","topRow":"Details-module_topRow__-nADf","descriptionButton":"Details-module_descriptionButton__1q3Hy"};
15612
+ styleInject(css_248z$d);
15471
15613
 
15472
15614
  function Details({
15473
15615
  details,
@@ -15611,7 +15753,9 @@ function setPunchIconName(type) {
15611
15753
  }
15612
15754
  }
15613
15755
 
15756
+ var css_248z$c = ".Header-module_verticalContainer__mtDxH{padding-top:16px}.Header-module_verticalContainer__mtDxH>div{border-bottom:0}.Header-module_container__dm5Nc{padding-top:16px}.Header-module_container__dm5Nc>div{border-bottom:0}.Header-module_gap__utLJl>div:not(:first-of-type){gap:8px}.Header-module_flex__ACyWw{align-items:center;display:flex}.Header-module_title__FtoTW{font-weight:500}.Header-module_visual__VvbQf{align-items:center;background-color:var(--echoText);border-radius:50%;color:#fff;display:flex;flex-direction:column;font-size:12px;font-weight:500;height:40px;justify-content:center;margin:.5rem;padding:.5rem;width:40px}";
15614
15757
  var styles$6 = {"verticalContainer":"Header-module_verticalContainer__mtDxH","container":"Header-module_container__dm5Nc","gap":"Header-module_gap__utLJl","flex":"Header-module_flex__ACyWw","title":"Header-module_title__FtoTW","visual":"Header-module_visual__VvbQf"};
15758
+ styleInject(css_248z$c);
15615
15759
 
15616
15760
  function Header(props) {
15617
15761
  const {
@@ -15652,7 +15796,9 @@ function Header(props) {
15652
15796
  }));
15653
15797
  }
15654
15798
 
15799
+ var css_248z$b = ".index-module_container__RBkmR{display:flex;flex-direction:column;overflow:hidden}.index-module_splitHorizontal__EPUtW{overflow:auto!important}";
15655
15800
  var styles$5 = {"container":"index-module_container__RBkmR","splitHorizontal":"index-module_splitHorizontal__EPUtW"};
15801
+ styleInject(css_248z$b);
15656
15802
 
15657
15803
  function Punch(props) {
15658
15804
  const {
@@ -15691,7 +15837,9 @@ function Punch(props) {
15691
15837
  }
15692
15838
  }
15693
15839
 
15840
+ var css_248z$a = ".WorkOrderHeader-module_verticalContainer__WD6yw>div{border-bottom:0}.WorkOrderHeader-module_container__-9lif{padding-top:16px}.WorkOrderHeader-module_container__-9lif>div{border-bottom:0}.WorkOrderHeader-module_workOrderHeaderNav__8C59g{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end;margin:0 1.5rem}.WorkOrderHeader-module_icon__65bxT{margin-right:10px}.WorkOrderHeader-module_lastIcon__Ie0ip{margin-right:18px}.WorkOrderHeader-module_divider__Anu8E{background-color:var(--dividerColor);margin-top:2px!important}";
15694
15841
  var styles$4 = {"verticalContainer":"WorkOrderHeader-module_verticalContainer__WD6yw","container":"WorkOrderHeader-module_container__-9lif","workOrderHeaderNav":"WorkOrderHeader-module_workOrderHeaderNav__8C59g","icon":"WorkOrderHeader-module_icon__65bxT","lastIcon":"WorkOrderHeader-module_lastIcon__Ie0ip","divider":"WorkOrderHeader-module_divider__Anu8E"};
15842
+ styleInject(css_248z$a);
15695
15843
 
15696
15844
  function WorkOrderHeader(props) {
15697
15845
  const {
@@ -15738,7 +15886,9 @@ function WorkOrderHeader(props) {
15738
15886
  }));
15739
15887
  }
15740
15888
 
15889
+ var css_248z$9 = ".index-module_lonelyDetails__EjPix{overflow-y:auto}.index-module_verticalContainer__7ieKp{display:flex;flex-direction:column;overflow:hidden;width:inherit}.index-module_splitView__EbEk8{height:100%!important}.index-module_splitHorizontal__hWQe3{overflow:auto!important}";
15741
15890
  var styles$3 = {"lonelyDetails":"index-module_lonelyDetails__EjPix","verticalContainer":"index-module_verticalContainer__7ieKp","splitView":"index-module_splitView__EbEk8","splitHorizontal":"index-module_splitHorizontal__hWQe3"};
15891
+ styleInject(css_248z$9);
15742
15892
 
15743
15893
  function WorkOrder(props) {
15744
15894
  const isMobile = echoComponents.useIsMobile();
@@ -15913,7 +16063,9 @@ function filterProjectsStartsWithFirst(data, filter) {
15913
16063
  return startsWithData.concat(includesData);
15914
16064
  }
15915
16065
 
16066
+ var css_248z$8 = ".ProcosysProjectSelector-module_spinner__qS6wk{padding-left:.5em}";
15916
16067
  var styles$2 = {"spinner":"ProcosysProjectSelector-module_spinner__qS6wk"};
16068
+ styleInject(css_248z$8);
15917
16069
 
15918
16070
  const ALL_PROJECTS = 'All projects';
15919
16071
  /**
@@ -16014,7 +16166,9 @@ fixRegExpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCal
16014
16166
  ];
16015
16167
  });
16016
16168
 
16169
+ var css_248z$7 = ".IMSConnector-module_wrapper__ogTbZ{align-items:center;display:grid;gap:1rem;grid-row:1fr;grid-template-columns:1fr 1fr;justify-items:center;margin-top:1rem}.IMSConnector-module_experimentalWarning__XcIXh{grid-template-columns:auto 1fr;margin-top:0}.IMSConnector-module_message__1U-KH{margin-top:1rem;width:100%}.IMSConnector-module_requestAccess__WaWbI{margin-bottom:1rem}";
16017
16170
  var style$5 = {"wrapper":"IMSConnector-module_wrapper__ogTbZ","experimentalWarning":"IMSConnector-module_experimentalWarning__XcIXh IMSConnector-module_wrapper__ogTbZ","message":"IMSConnector-module_message__1U-KH","requestAccess":"IMSConnector-module_requestAccess__WaWbI"};
16171
+ styleInject(css_248z$7);
16018
16172
 
16019
16173
  function useSignalRListener(hubConnection, target, method) {
16020
16174
  React.useEffect(() => {
@@ -16274,7 +16428,9 @@ function RequestAccessMessage({
16274
16428
  });
16275
16429
  }
16276
16430
 
16431
+ var css_248z$6 = ".Popover-module_wrapper__bp2D1{display:flex;flex-direction:column;left:0;position:absolute;right:0;z-index:10}.Popover-module_optionsPopover__THa5w{display:flex}@media screen and (max-width:440px){.Popover-module_optionsPopover__THa5w{max-width:270px}.Popover-module_wrapper__bp2D1{left:0}.Popover-module_optionsPopover__THa5w{align-self:flex-start}}";
16277
16432
  var styles$1 = {"wrapper":"Popover-module_wrapper__bp2D1","optionsPopover":"Popover-module_optionsPopover__THa5w"};
16433
+ styleInject(css_248z$6);
16278
16434
 
16279
16435
  /**
16280
16436
  * Generic Popover placement component that can take in optional background color
@@ -16294,7 +16450,9 @@ const ContextPopover = ({
16294
16450
  }));
16295
16451
  };
16296
16452
 
16453
+ var css_248z$5 = ".RealTimeContextButton-module_wrapper__YxXsd{margin-left:4px}.RealTimeContextButton-module_button__3CZB-{background-color:var(--white)!important;border:3px solid var(--white)!important;border-radius:10rem;box-shadow:0 4px 4px rgba(0,0,0,.25);box-sizing:border-box;height:46px!important;width:46px!important}.RealTimeContextButton-module_button__3CZB-:hover{background:#deedee!important}";
16297
16454
  var style$4 = {"wrapper":"RealTimeContextButton-module_wrapper__YxXsd","button":"RealTimeContextButton-module_button__3CZB-"};
16455
+ styleInject(css_248z$5);
16298
16456
 
16299
16457
  const RealTimeContextButton = ({
16300
16458
  onOpen,
@@ -16331,7 +16489,9 @@ const RealTimeContextButton = ({
16331
16489
  }));
16332
16490
  };
16333
16491
 
16492
+ var css_248z$4 = ".RealTimeIMSDropdown-module_popoverContent__8L19L{align-items:center;background-color:#fff;border-color:grey;border-radius:4px;box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);display:flex;flex-direction:column;margin-top:1rem;padding:1rem;width:100%}.RealTimeIMSDropdown-module_select__Bnhdb{width:100%}";
16334
16493
  var style$3 = {"popoverContent":"RealTimeIMSDropdown-module_popoverContent__8L19L","select":"RealTimeIMSDropdown-module_select__Bnhdb"};
16494
+ styleInject(css_248z$4);
16335
16495
 
16336
16496
  function RealTimeIMSDropdown({
16337
16497
  imsFields,
@@ -16504,7 +16664,9 @@ const EchoRoutes = ({
16504
16664
  });
16505
16665
  };
16506
16666
 
16667
+ var css_248z$3 = ".searchMenu-module_panel__Yu-T9{padding:var(--small)}.searchMenu-module_wrapper__qjLIJ{display:flex;flex-direction:column;margin:10px}.searchMenu-module_close__TqvNf{align-self:end}";
16507
16668
  var style$2 = {"panel":"searchMenu-module_panel__Yu-T9","wrapper":"searchMenu-module_wrapper__qjLIJ","close":"searchMenu-module_close__TqvNf"};
16669
+ styleInject(css_248z$3);
16508
16670
 
16509
16671
  const SearchMenu = () => {
16510
16672
  var _a;
@@ -16545,7 +16707,9 @@ const SearchMenu = () => {
16545
16707
  }));
16546
16708
  };
16547
16709
 
16710
+ var css_248z$2 = ".tagNo-module_tagNo__5ADD6{color:var(--asBuilt);cursor:pointer;text-decoration:underline}";
16548
16711
  var styles = {"tagNo":"tagNo-module_tagNo__5ADD6"};
16712
+ styleInject(css_248z$2);
16549
16713
 
16550
16714
  const TagNumber = ({
16551
16715
  tagNo,
@@ -16568,7 +16732,9 @@ const TagNumber = ({
16568
16732
  }));
16569
16733
  };
16570
16734
 
16735
+ var css_248z$1 = "@media screen and (max-width:927px) and (orientation:landscape){.toaster-module_toaster__fYuyY{left:64px!important}}@media screen and (max-width:767px) and (orientation:portrait){.toaster-module_toaster__fYuyY{bottom:64px!important}}.toaster-module_chip__-w1z2{padding:5px!important;position:absolute;right:-5px;top:-5px}.toaster-module_toastersSection__ypjaz{grid-gap:24px;align-items:start;bottom:8px;display:grid;grid-auto-rows:32px;height:auto;left:8px;position:absolute}.toaster-module_toastersSection__ypjaz>div{height:32px;position:relative;width:fit-content}";
16571
16736
  var style$1 = {"toaster":"toaster-module_toaster__fYuyY","chip":"toaster-module_chip__-w1z2","toastersSection":"toaster-module_toastersSection__ypjaz"};
16737
+ styleInject(css_248z$1);
16572
16738
 
16573
16739
  const Toaster = ({
16574
16740
  toast,
@@ -16747,7 +16913,9 @@ function getTextContentBySubTree(element) {
16747
16913
  return texts.join('');
16748
16914
  }
16749
16915
 
16916
+ var css_248z = ".EchoEventHandler-module_echoEventContainer__h6p5a{height:100%}";
16750
16917
  var style = {"echoEventContainer":"EchoEventHandler-module_echoEventContainer__h6p5a"};
16918
+ styleInject(css_248z);
16751
16919
 
16752
16920
  /**
16753
16921
  * Wrapper component for listening to events.