@copart/ops-tool-kit 1.12.0-alpha.3 → 1.12.0-alpha.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.
- package/dist/ops-tool-kit.js +104 -75
- package/dist/ops-tool-kit.js.map +1 -1
- package/package.json +3 -2
package/dist/ops-tool-kit.js
CHANGED
|
@@ -32,7 +32,7 @@ var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
|
32
32
|
var ReactDOM__default = /*#__PURE__*/_interopDefaultLegacy(ReactDOM);
|
|
33
33
|
|
|
34
34
|
const name$r = "@copart/ops-tool-kit";
|
|
35
|
-
const version$7 = "1.12.0-alpha.
|
|
35
|
+
const version$7 = "1.12.0-alpha.5";
|
|
36
36
|
const main$1 = "dist/ops-tool-kit.js";
|
|
37
37
|
const style = "dist/ops-tool-kit.css";
|
|
38
38
|
const files = [
|
|
@@ -86,7 +86,8 @@ const devDependencies$1 = {
|
|
|
86
86
|
rollup: "^2.22.1",
|
|
87
87
|
"rollup-plugin-analyzer": "^3.3.0",
|
|
88
88
|
"rollup-plugin-filesize": "9.0.2",
|
|
89
|
-
"rollup-plugin-postcss": "^3.1.3"
|
|
89
|
+
"rollup-plugin-postcss": "^3.1.3",
|
|
90
|
+
"@rollup/plugin-replace": "5.0.5"
|
|
90
91
|
};
|
|
91
92
|
const peerDependencies = {
|
|
92
93
|
"@copart/core-components": "2.3.0-alpha.filters.6",
|
|
@@ -852,7 +853,7 @@ var b$1 = "function" === typeof Symbol && Symbol.for,
|
|
|
852
853
|
d = b$1 ? Symbol.for("react.portal") : 60106,
|
|
853
854
|
e = b$1 ? Symbol.for("react.fragment") : 60107,
|
|
854
855
|
f = b$1 ? Symbol.for("react.strict_mode") : 60108,
|
|
855
|
-
g
|
|
856
|
+
g = b$1 ? Symbol.for("react.profiler") : 60114,
|
|
856
857
|
h$1 = b$1 ? Symbol.for("react.provider") : 60109,
|
|
857
858
|
k$1 = b$1 ? Symbol.for("react.context") : 60110,
|
|
858
859
|
l = b$1 ? Symbol.for("react.async_mode") : 60111,
|
|
@@ -875,7 +876,7 @@ function z$1(a) {
|
|
|
875
876
|
case l:
|
|
876
877
|
case m:
|
|
877
878
|
case e:
|
|
878
|
-
case g
|
|
879
|
+
case g:
|
|
879
880
|
case f:
|
|
880
881
|
case p:
|
|
881
882
|
return a;
|
|
@@ -909,7 +910,7 @@ var Fragment = e;
|
|
|
909
910
|
var Lazy = t;
|
|
910
911
|
var Memo = r;
|
|
911
912
|
var Portal = d;
|
|
912
|
-
var Profiler = g
|
|
913
|
+
var Profiler = g;
|
|
913
914
|
var StrictMode = f;
|
|
914
915
|
var Suspense = p;
|
|
915
916
|
var isAsyncMode = function (a) {
|
|
@@ -941,7 +942,7 @@ var isPortal = function (a) {
|
|
|
941
942
|
return z$1(a) === d;
|
|
942
943
|
};
|
|
943
944
|
var isProfiler = function (a) {
|
|
944
|
-
return z$1(a) === g
|
|
945
|
+
return z$1(a) === g;
|
|
945
946
|
};
|
|
946
947
|
var isStrictMode = function (a) {
|
|
947
948
|
return z$1(a) === f;
|
|
@@ -950,7 +951,7 @@ var isSuspense = function (a) {
|
|
|
950
951
|
return z$1(a) === p;
|
|
951
952
|
};
|
|
952
953
|
var isValidElementType = function (a) {
|
|
953
|
-
return "string" === typeof a || "function" === typeof a || a === e || a === m || a === g
|
|
954
|
+
return "string" === typeof a || "function" === typeof a || a === e || a === m || a === g || a === f || a === p || a === q$1 || "object" === typeof a && null !== a && (a.$$typeof === t || a.$$typeof === r || a.$$typeof === h$1 || a.$$typeof === k$1 || a.$$typeof === n || a.$$typeof === w$1 || a.$$typeof === x$1 || a.$$typeof === y || a.$$typeof === v);
|
|
954
955
|
};
|
|
955
956
|
var typeOf = z$1;
|
|
956
957
|
|
|
@@ -3666,12 +3667,12 @@ function nonStandardBrowserEnv() {
|
|
|
3666
3667
|
|
|
3667
3668
|
// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js
|
|
3668
3669
|
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
|
3669
|
-
function E() {
|
|
3670
|
+
function E$1() {
|
|
3670
3671
|
this.message = 'String contains an invalid character';
|
|
3671
3672
|
}
|
|
3672
|
-
E.prototype = new Error();
|
|
3673
|
-
E.prototype.code = 5;
|
|
3674
|
-
E.prototype.name = 'InvalidCharacterError';
|
|
3673
|
+
E$1.prototype = new Error();
|
|
3674
|
+
E$1.prototype.code = 5;
|
|
3675
|
+
E$1.prototype.name = 'InvalidCharacterError';
|
|
3675
3676
|
function btoa$2(input) {
|
|
3676
3677
|
var str = String(input);
|
|
3677
3678
|
var output = '';
|
|
@@ -3686,7 +3687,7 @@ function btoa$2(input) {
|
|
|
3686
3687
|
output += map.charAt(63 & block >> 8 - idx % 1 * 8)) {
|
|
3687
3688
|
charCode = str.charCodeAt(idx += 3 / 4);
|
|
3688
3689
|
if (charCode > 0xFF) {
|
|
3689
|
-
throw new E();
|
|
3690
|
+
throw new E$1();
|
|
3690
3691
|
}
|
|
3691
3692
|
block = block << 8 | charCode;
|
|
3692
3693
|
}
|
|
@@ -21308,7 +21309,7 @@ var LogOutMenu = function LogOutMenu(_ref) {
|
|
|
21308
21309
|
}));
|
|
21309
21310
|
};
|
|
21310
21311
|
|
|
21311
|
-
var css_248z$j = ".utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails {\r\n width: 100%;\r\n display: flex;\r\n padding:
|
|
21312
|
+
var css_248z$j = ".utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails {\r\n width: 100%;\r\n display: flex;\r\n padding: 24px 48px;\r\n border-bottom: 1px solid #EDEBE9;\r\n grid-gap: 24px;\r\n gap: 24px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--details {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n justify-content: center;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--details h3 {\r\n font-size: 16px;\r\n font-style: normal;\r\n font-weight: 600;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--details p {\r\n font-size: 12px;\r\n font-style: normal;\r\n font-weight: 350;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--logoutButton {\r\n display: flex;\r\n align-items: center;\r\n padding: 7px 20px;\r\n grid-gap: 6px;\r\n grid-gap: 6px;\r\n gap: 6px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--logoutButton i {\r\n color: #FFF;\r\n font-size: 20px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--logoutButton span button {\r\n padding: 7px 25px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--logoutButton span button span {\r\n grid-gap: 6px;\r\n gap: 6px;\r\n}\r\n\r\n@media (max-width: 768px) {\r\n .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails {\r\n padding: 24px 36px;\r\n flex-direction: column;\r\n }\r\n .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--logoutButton {\r\n padding: 0;\r\n }\r\n .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--logoutButton > span {\r\n width: 100%;\r\n }\r\n .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--profileDetails .utilities_ops-app-frame_AppBarComponent_Settings_ProfileDetails_ProfileDetails--logoutButton > span > button {\r\n width: 100%;\r\n }\r\n}";
|
|
21312
21313
|
styleInject(css_248z$j);
|
|
21313
21314
|
|
|
21314
21315
|
var ProfileDetails = function ProfileDetails(_ref) {
|
|
@@ -23040,7 +23041,7 @@ var printerFields = [_objectSpread2(_objectSpread2({}, defaultAutoSelectProps),
|
|
|
23040
23041
|
label: 'Bar Code Printer'
|
|
23041
23042
|
})];
|
|
23042
23043
|
|
|
23043
|
-
var css_248z$a = ".utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--PrinterSettings {\r\n margin: 0 9px !important;\r\n padding-right: 0;\r\n width: 100% !important;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--col-1-5 {\r\n width: 20%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--col-1-2 {\r\n width: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--col-1-1 {\r\n width: 100%;\r\n margin:
|
|
23044
|
+
var css_248z$a = ".utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--PrinterSettings {\r\n margin: 0 9px !important;\r\n padding-right: 0;\r\n width: 100% !important;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--col-1-5 {\r\n width: 20%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--col-1-2 {\r\n width: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_PrinterSettings_PrinterSettings--col-1-1 {\r\n width: 100%;\r\n margin: 6px 0;\r\n}\r\n";
|
|
23044
23045
|
styleInject(css_248z$a);
|
|
23045
23046
|
|
|
23046
23047
|
// Properly populate printer options before feeding to autoselect
|
|
@@ -23176,7 +23177,7 @@ var getLanguages = function getLanguages() {
|
|
|
23176
23177
|
}[selectedCountry];
|
|
23177
23178
|
};
|
|
23178
23179
|
|
|
23179
|
-
var css_248z$9 = "/* Simple Grid */\r\n[class*='col-'] {\r\n float: left;\r\n min-height: 1px;\r\n /* padding-right: 10px; */\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid {\r\n width: 100%;\r\n max-width: 1300px;\r\n min-width: 748px; /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */\r\n margin: 0 auto;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid:after {\r\n content: '';\r\n display: table;\r\n clear: both;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid-pad {\r\n padding-top: 20px;\r\n padding-left: 20px; /* grid-space to left */\r\n padding-right: 0; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-right {\r\n float: right;\r\n}\r\n\r\n/* Content Columns */\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-1 {\r\n width: 100%;\r\n margin: 8px 0;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-2-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-8-12 {\r\n width: 66.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-2,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-6-12 {\r\n width: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-4-12 {\r\n width: 33.33%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-4,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-12 {\r\n width: 25%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-5 {\r\n width: 20%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-6,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-2-12 {\r\n width: 16.667%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-7 {\r\n width: 14.28%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-2-7 {\r\n width: 28.56%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-4 {\r\n width: 75%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-7 {\r\n width: 42.84%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-4-7 {\r\n width: 57.12%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-8 {\r\n width: 12.5%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-9 {\r\n width: 11.1%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-10 {\r\n width: 10%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-10 {\r\n width: 30%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-11 {\r\n width: 9.09%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-12 {\r\n width: 8.33%;\r\n}\r\n\r\n/* Layout Columns */\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-11-12 {\r\n width: 91.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-10-12 {\r\n width: 83.333%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-9-12 {\r\n width: 75%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-5-12 {\r\n width: 41.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-7-12 {\r\n width: 58.33%;\r\n}\r\n\r\n/* Pushing blocks */\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-2-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-8-12 {\r\n margin-left: 66.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-2,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-6-12 {\r\n margin-left: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-4-12 {\r\n margin-left: 33.33%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-4,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-3-12 {\r\n margin-left: 25%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-5 {\r\n margin-left: 20%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-6,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-2-12 {\r\n margin-left: 16.667%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-7 {\r\n margin-left: 14.28%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-8 {\r\n margin-left: 12.5%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-9 {\r\n margin-left: 11.1%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-10 {\r\n margin-left: 10%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-11 {\r\n margin-left: 9.09%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-12 {\r\n margin-left: 8.33%;\r\n}\r\n\r\n@media handheld, only screen and (max-width: 767px) {\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid {\r\n width: 100%;\r\n min-width: 0;\r\n margin-left: 0;\r\n margin-right: 0;\r\n padding-left: 20px; /* grid-space to left */\r\n padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */\r\n }\r\n\r\n [class*='col-'] {\r\n width: auto;\r\n float: none;\r\n margin: 0;\r\n padding-left: 0;\r\n /* padding-right: 10px; */\r\n }\r\n\r\n /* Mobile Layout */\r\n\r\n [class*='mobile-col-'] {\r\n float: left;\r\n margin: 0 0 10px;\r\n padding-left: 0;\r\n padding-right: 10px; /* column-space */\r\n padding-bottom: 0;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-1 {\r\n width: 100%;\r\n margin: 8px 0;\r\n }\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-2-3,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-8-12 {\r\n width: 66.66%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-2,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-6-12 {\r\n width: 50%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-3,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-4-12 {\r\n width: 33.33%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-4,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-3-12 {\r\n width: 25%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-5 {\r\n width: 20%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-6,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-2-12 {\r\n width: 16.667%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-7 {\r\n width: 14.28%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-8 {\r\n width: 12.5%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-9 {\r\n width: 11.1%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-10 {\r\n width: 10%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-11 {\r\n width: 9.09%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-12 {\r\n width: 8.33%;\r\n }\r\n\r\n /* Layout Columns */\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-11-12 {\r\n width: 91.66%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-10-12 {\r\n width: 83.333%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-9-12 {\r\n width: 75%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-5-12 {\r\n width: 41.66%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-7-12 {\r\n width: 58.33%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--hide-on-mobile {\r\n display: none !important;\r\n width: 0;\r\n height: 0;\r\n }\r\n}\r\n\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--SettingsView {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n padding: 0 20px 20px;\r\n margin-top: 65px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm {\r\n width: 100%;\r\n max-width: 1300px;\r\n /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; */\r\n max-width: 800px;\r\n margin: 0 auto;\r\n height: 100%;\r\n position: relative;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm form {\r\n margin: 0 15px;\r\n height: 70%;\r\n overflow-y: auto;\r\n scrollbar-width: none;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsHeader {\r\n display: flex;\r\n align-items: end;\r\n margin: 16px 0 8px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsHeader i{\r\n font-size: 20px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsHeader p {\r\n font-size: 18px;\r\n font-weight: 400;\r\n margin-left: 15px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--header {\r\n width: 100%;\r\n height: 40px;\r\n padding: 0 15px;\r\n display: flex;\r\n flex-direction: row;\r\n justify-content: flex-start;\r\n align-items: center;\r\n background: var(--primaryBlue);\r\n background: var(--primaryBlue);\r\n outline: 1px solid var(--primaryBlue);\r\n outline: 1px solid var(--primaryBlue);\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--title {\r\n font-size: 15.9px;\r\n font-weight: 500;\r\n color: var(--white);\r\n color: var(--white);\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--sectionTitle {\r\n font-weight: 500;\r\n margin-top: 8px;\r\n margin-bottom: 8px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--body {\r\n padding: 16px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox {\r\n display: flex;\r\n width: 100%;\r\n justify-content: center;\r\n position: absolute;\r\n bottom: 25px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span {\r\n width: 80%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button {\r\n width: 100%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button span {\r\n grid-gap: 6px;\r\n gap: 6px;\r\n width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button span i {\r\n color: #fff;\r\n font-size: 18px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button span .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--saveTxt {\r\n font-size: 16px;\r\n font-weight: 600;\r\n width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--inputRow {\r\n padding-right: 0px;\r\n width: 100%;\r\n margin: 0 9px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--labeledGhost {\r\n display: flex;\r\n flex-direction: column;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings {\r\n padding-right: 0px;\r\n width: 100%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--title {\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: center;\r\n font-weight: 500;\r\n color: black;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--smallInfo {\r\n margin-top: 2px;\r\n margin-bottom: 12px;\r\n font-size: 14px;\r\n opacity: 0.5;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--inputRow {\r\n display: flex;\r\n width: 100%;\r\n justify-content: flex-start;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--inputRow .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--textField {\r\n position: relative;\r\n width: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--backdrop{\r\n width: 100%;\r\n height: 100%;\r\n position: fixed;\r\n z-index: 100;\r\n left:0;\r\n top:0;\r\n background-color: rgba(0,0,0,0.1);\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--spinner{\r\n position: fixed;\r\n z-index: 500;\r\n left: calc(50% - 30px);\r\n top: calc(50% - 30px);\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settings-hr{\r\n padding: 10px;\r\n margin-bottom: 5px;\r\n width: 100%;\r\n outline: none;\r\n border: none;\r\n border-bottom: 1px solid #ddd;\r\n overflow: auto;\r\n}";
|
|
23180
|
+
var css_248z$9 = "/* Simple Grid */\r\n[class*='col-'] {\r\n float: left;\r\n min-height: 1px;\r\n /* padding-right: 10px; */\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid {\r\n width: 100%;\r\n max-width: 1300px;\r\n min-width: 748px; /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */\r\n margin: 0 auto;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid:after {\r\n content: '';\r\n display: table;\r\n clear: both;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid-pad {\r\n padding-top: 20px;\r\n padding-left: 20px; /* grid-space to left */\r\n padding-right: 0; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-right {\r\n float: right;\r\n}\r\n\r\n/* Content Columns */\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-1 {\r\n width: 100%;\r\n margin: 6px 0;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-2-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-8-12 {\r\n width: 66.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-2,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-6-12 {\r\n width: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-4-12 {\r\n width: 33.33%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-4,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-12 {\r\n width: 25%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-5 {\r\n width: 20%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-6,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-2-12 {\r\n width: 16.667%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-7 {\r\n width: 14.28%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-2-7 {\r\n width: 28.56%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-4 {\r\n width: 75%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-7 {\r\n width: 42.84%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-4-7 {\r\n width: 57.12%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-8 {\r\n width: 12.5%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-9 {\r\n width: 11.1%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-10 {\r\n width: 10%;\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-3-10 {\r\n width: 30%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-11 {\r\n width: 9.09%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-1-12 {\r\n width: 8.33%;\r\n}\r\n\r\n/* Layout Columns */\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-11-12 {\r\n width: 91.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-10-12 {\r\n width: 83.333%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-9-12 {\r\n width: 75%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-5-12 {\r\n width: 41.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--col-7-12 {\r\n width: 58.33%;\r\n}\r\n\r\n/* Pushing blocks */\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-2-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-8-12 {\r\n margin-left: 66.66%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-2,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-6-12 {\r\n margin-left: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-3,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-4-12 {\r\n margin-left: 33.33%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-4,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-3-12 {\r\n margin-left: 25%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-5 {\r\n margin-left: 20%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-6,\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-2-12 {\r\n margin-left: 16.667%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-7 {\r\n margin-left: 14.28%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-8 {\r\n margin-left: 12.5%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-9 {\r\n margin-left: 11.1%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-10 {\r\n margin-left: 10%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-11 {\r\n margin-left: 9.09%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--push-1-12 {\r\n margin-left: 8.33%;\r\n}\r\n\r\n@media handheld, only screen and (max-width: 767px) {\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--grid {\r\n width: 100%;\r\n min-width: 0;\r\n margin-left: 0;\r\n margin-right: 0;\r\n padding-left: 20px; /* grid-space to left */\r\n padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */\r\n }\r\n\r\n [class*='col-'] {\r\n width: auto;\r\n float: none;\r\n margin: 0;\r\n padding-left: 0;\r\n /* padding-right: 10px; */\r\n }\r\n\r\n /* Mobile Layout */\r\n\r\n [class*='mobile-col-'] {\r\n float: left;\r\n margin: 0 0 10px;\r\n padding-left: 0;\r\n padding-right: 10px; /* column-space */\r\n padding-bottom: 0;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-1 {\r\n width: 100%;\r\n margin: 8px 0;\r\n }\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-2-3,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-8-12 {\r\n width: 66.66%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-2,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-6-12 {\r\n width: 50%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-3,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-4-12 {\r\n width: 33.33%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-4,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-3-12 {\r\n width: 25%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-5 {\r\n width: 20%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-6,\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-2-12 {\r\n width: 16.667%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-7 {\r\n width: 14.28%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-8 {\r\n width: 12.5%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-9 {\r\n width: 11.1%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-10 {\r\n width: 10%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-11 {\r\n width: 9.09%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-1-12 {\r\n width: 8.33%;\r\n }\r\n\r\n /* Layout Columns */\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-11-12 {\r\n width: 91.66%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-10-12 {\r\n width: 83.333%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-9-12 {\r\n width: 75%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-5-12 {\r\n width: 41.66%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--mobile-col-7-12 {\r\n width: 58.33%;\r\n }\r\n\r\n .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--hide-on-mobile {\r\n display: none !important;\r\n width: 0;\r\n height: 0;\r\n }\r\n}\r\n\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--SettingsView {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n padding: 0 20px 20px;\r\n margin-top: 65px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm {\r\n width: 100%;\r\n max-width: 1300px;\r\n /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; */\r\n max-width: 800px;\r\n margin: 0 auto;\r\n height: 100%;\r\n position: relative;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm form {\r\n margin: 0 15px;\r\n height: 80%;\r\n overflow-y: auto;\r\n scrollbar-width: none;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsHeader {\r\n display: flex;\r\n align-items: end;\r\n margin: 12px 0 6px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsHeader i{\r\n font-size: 20px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsForm .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settingsHeader p {\r\n font-size: 18px;\r\n font-weight: 400;\r\n margin-left: 15px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--header {\r\n width: 100%;\r\n height: 40px;\r\n padding: 0 15px;\r\n display: flex;\r\n flex-direction: row;\r\n justify-content: flex-start;\r\n align-items: center;\r\n background: var(--primaryBlue);\r\n background: var(--primaryBlue);\r\n outline: 1px solid var(--primaryBlue);\r\n outline: 1px solid var(--primaryBlue);\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--title {\r\n font-size: 15.9px;\r\n font-weight: 500;\r\n color: var(--white);\r\n color: var(--white);\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--sectionTitle {\r\n font-weight: 500;\r\n margin-top: 8px;\r\n margin-bottom: 8px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--body {\r\n padding: 16px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox {\r\n display: flex;\r\n width: 100%;\r\n justify-content: center;\r\n position: absolute;\r\n bottom: 25px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span {\r\n width: 80%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button {\r\n width: 100%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button span {\r\n grid-gap: 6px;\r\n gap: 6px;\r\n width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button span i {\r\n color: #fff;\r\n font-size: 18px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox span button span .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--saveTxt {\r\n font-size: 16px;\r\n font-weight: 600;\r\n width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--inputRow {\r\n padding-right: 0px;\r\n width: 100%;\r\n margin: 0 9px;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--labeledGhost {\r\n display: flex;\r\n flex-direction: column;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings {\r\n padding-right: 0px;\r\n width: 100%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--title {\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: center;\r\n font-weight: 500;\r\n color: black;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--smallInfo {\r\n margin-top: 2px;\r\n margin-bottom: 12px;\r\n font-size: 14px;\r\n opacity: 0.5;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--inputRow {\r\n display: flex;\r\n width: 100%;\r\n justify-content: flex-start;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--RCPhoneNumberSettings .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--inputRow .utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--textField {\r\n position: relative;\r\n width: 50%;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--backdrop{\r\n width: 100%;\r\n height: 100%;\r\n position: fixed;\r\n z-index: 100;\r\n left:0;\r\n top:0;\r\n background-color: rgba(0,0,0,0.1);\r\n}\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--spinner{\r\n position: absolute;\r\n background: rgba(0, 0, 0, 0.5);\r\n top: 0;\r\n bottom: 0;\r\n left: 0;\r\n right: 0;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n}\r\n\r\n.utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settings-hr{\r\n padding: 0 !important;\r\n width: 100%;\r\n outline: none;\r\n border: none;\r\n border-bottom: 1px solid #EDEBE9;\r\n overflow: auto;\r\n}";
|
|
23180
23181
|
styleInject(css_248z$9);
|
|
23181
23182
|
|
|
23182
23183
|
var getDescription$1 = function getDescription(languageOptions) {
|
|
@@ -23929,7 +23930,9 @@ var SettingsView$1 = /*#__PURE__*/function (_React$Component) {
|
|
|
23929
23930
|
selectedYard: this.state.selectedYardNumber,
|
|
23930
23931
|
selectedPrinterData: this.selectedPrinterData,
|
|
23931
23932
|
printersData: this.state.printersData
|
|
23932
|
-
})), /*#__PURE__*/React__default["default"].createElement("
|
|
23933
|
+
})), /*#__PURE__*/React__default["default"].createElement("hr", {
|
|
23934
|
+
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settings-hr"
|
|
23935
|
+
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23933
23936
|
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox",
|
|
23934
23937
|
"data-e2e": "saveButton"
|
|
23935
23938
|
}, /*#__PURE__*/React__default["default"].createElement(coreComponents.Button, {
|
|
@@ -23942,12 +23945,10 @@ var SettingsView$1 = /*#__PURE__*/function (_React$Component) {
|
|
|
23942
23945
|
}), /*#__PURE__*/React__default["default"].createElement("span", {
|
|
23943
23946
|
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--saveTxt"
|
|
23944
23947
|
}, "Save"))), this.state.showLoading && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23945
|
-
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--backdrop"
|
|
23946
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23947
23948
|
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--spinner"
|
|
23948
23949
|
}, /*#__PURE__*/React__default["default"].createElement(coreComponents.Spinner, {
|
|
23949
23950
|
size: "60px"
|
|
23950
|
-
})))
|
|
23951
|
+
})));
|
|
23951
23952
|
}
|
|
23952
23953
|
}]);
|
|
23953
23954
|
return SettingsView;
|
|
@@ -24648,7 +24649,9 @@ var SettingsView = /*#__PURE__*/function (_React$Component) {
|
|
|
24648
24649
|
selectedYard: this.state.selectedYardNumber,
|
|
24649
24650
|
selectedPrinterData: this.selectedPrinterData,
|
|
24650
24651
|
printersData: this.state.printersData
|
|
24651
|
-
})), /*#__PURE__*/React__default["default"].createElement("
|
|
24652
|
+
})), /*#__PURE__*/React__default["default"].createElement("hr", {
|
|
24653
|
+
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--settings-hr"
|
|
24654
|
+
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
24652
24655
|
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--buttonBox",
|
|
24653
24656
|
"data-e2e": "saveButton"
|
|
24654
24657
|
}, /*#__PURE__*/React__default["default"].createElement(coreComponents.Button, {
|
|
@@ -24656,12 +24659,10 @@ var SettingsView = /*#__PURE__*/function (_React$Component) {
|
|
|
24656
24659
|
type: "submit",
|
|
24657
24660
|
onClick: this.saveSettings
|
|
24658
24661
|
}, "Save")), this.state.showLoading && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
24659
|
-
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--backdrop"
|
|
24660
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
24661
24662
|
className: "utilities_ops-app-frame_AppBarComponent_Settings_SettingsView--spinner"
|
|
24662
24663
|
}, /*#__PURE__*/React__default["default"].createElement(coreComponents.Spinner, {
|
|
24663
24664
|
size: "60px"
|
|
24664
|
-
})))
|
|
24665
|
+
})));
|
|
24665
24666
|
}
|
|
24666
24667
|
}]);
|
|
24667
24668
|
return SettingsView;
|
|
@@ -31523,10 +31524,10 @@ var generateAppBarElements = function generateAppBarElements(props, showCallout)
|
|
|
31523
31524
|
props.type;
|
|
31524
31525
|
var config = props.config,
|
|
31525
31526
|
_props$navigateTo = props.navigateTo,
|
|
31526
|
-
navigateTo = _props$navigateTo === void 0 ? function (url) {} : _props$navigateTo
|
|
31527
|
-
|
|
31528
|
-
|
|
31529
|
-
_props$notifications = props.notifications,
|
|
31527
|
+
navigateTo = _props$navigateTo === void 0 ? function (url) {} : _props$navigateTo;
|
|
31528
|
+
props.isMihelpEnabled;
|
|
31529
|
+
props.isIdeaNoteEnabled;
|
|
31530
|
+
var _props$notifications = props.notifications,
|
|
31530
31531
|
notifications = _props$notifications === void 0 ? [] : _props$notifications;
|
|
31531
31532
|
props.width;
|
|
31532
31533
|
var setNotificationsVisible = props.setNotificationsVisible,
|
|
@@ -31547,7 +31548,9 @@ var generateAppBarElements = function generateAppBarElements(props, showCallout)
|
|
|
31547
31548
|
mobileMenuVisible = props.mobileMenuVisible;
|
|
31548
31549
|
var coreAppConfig = storage$1.getLocalItem('opsportal-core:config');
|
|
31549
31550
|
var enableNewToolkitFeatures = coreAppConfig.enableNewToolkitFeatures,
|
|
31550
|
-
showSettingsMenuByTileConfig = coreAppConfig.showSettingsMenuByTileConfig
|
|
31551
|
+
showSettingsMenuByTileConfig = coreAppConfig.showSettingsMenuByTileConfig,
|
|
31552
|
+
enableIdeaNote = coreAppConfig.enableIdeaNote,
|
|
31553
|
+
enableMiHelp = coreAppConfig.enableMiHelp;
|
|
31551
31554
|
var showSettingsInAppbar = false;
|
|
31552
31555
|
if (isCoreRoute) {
|
|
31553
31556
|
showSettingsInAppbar = enableNewToolkitFeatures;
|
|
@@ -31635,7 +31638,7 @@ var generateAppBarElements = function generateAppBarElements(props, showCallout)
|
|
|
31635
31638
|
text: "Feedback"
|
|
31636
31639
|
}));
|
|
31637
31640
|
},
|
|
31638
|
-
renderIf: !
|
|
31641
|
+
renderIf: !enableMiHelp,
|
|
31639
31642
|
onClick: function onClick() {
|
|
31640
31643
|
return props.toggleFeedbackDialog(true);
|
|
31641
31644
|
},
|
|
@@ -31664,7 +31667,7 @@ var generateAppBarElements = function generateAppBarElements(props, showCallout)
|
|
|
31664
31667
|
text: "MiHelp"
|
|
31665
31668
|
}));
|
|
31666
31669
|
},
|
|
31667
|
-
renderIf:
|
|
31670
|
+
renderIf: enableMiHelp,
|
|
31668
31671
|
render: function render() {
|
|
31669
31672
|
return /*#__PURE__*/React__default["default"].createElement("span", {
|
|
31670
31673
|
className: "utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid-items"
|
|
@@ -31695,7 +31698,7 @@ var generateAppBarElements = function generateAppBarElements(props, showCallout)
|
|
|
31695
31698
|
text: "Innov8Hub"
|
|
31696
31699
|
}));
|
|
31697
31700
|
},
|
|
31698
|
-
renderIf:
|
|
31701
|
+
renderIf: enableIdeaNote,
|
|
31699
31702
|
render: function render() {
|
|
31700
31703
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
31701
31704
|
className: "utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid-items utilities_ops-app-frame_AppBarComponent_AppBar--lightBulbIcon",
|
|
@@ -32288,7 +32291,7 @@ var AppBar$1 = function AppBar(props) {
|
|
|
32288
32291
|
position: 'absolute',
|
|
32289
32292
|
bottom: '0',
|
|
32290
32293
|
right: '0',
|
|
32291
|
-
height: '
|
|
32294
|
+
height: '100%',
|
|
32292
32295
|
width: '400px',
|
|
32293
32296
|
backgroundColor: 'white'
|
|
32294
32297
|
}
|
|
@@ -45458,7 +45461,7 @@ var formatNumber = function formatNumber(number) {
|
|
|
45458
45461
|
return sign * Math.abs(number) + unitlist[unit];
|
|
45459
45462
|
};
|
|
45460
45463
|
|
|
45461
|
-
var css_248z$2 = ".utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer {\r\n display: flex;\r\n flex-direction: column;\r\n position: absolute;\r\n background: #3A4454;\r\n min-width: 50px;\r\n max-width: 50px;\r\n height: 100%;\r\n color: #ffffff;\r\n font-size: 14px;\r\n z-index: 101;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer.utilities_ops-app-frame_NavigationBar_NavigationBar--withCounts {\r\n min-width: 100px;\r\n max-width: 100px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover {\r\n max-width: 500px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton {\r\n min-width: none;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton.utilities_ops-app-frame_NavigationBar_NavigationBar--showExpandIcons{\r\n min-width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton{\r\n min-width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenu {\r\n flex: 1;\r\n overflow-y: auto;\r\n -ms-overflow-style: none;\r\n scrollbar-width: none;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenu::-webkit-scrollbar { \r\n display: none;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem {\r\n display: flex;\r\n width: 100%;\r\n padding: 6px 12px 6px 12px;\r\n border-radius: 5px;\r\n cursor: pointer;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled {\r\n cursor: default;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemSelected {\r\n color: #323130;\r\n background-color: #fff;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton {\r\n margin-left: auto;\r\n margin-right: 10px;\r\n min-width: none;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer.utilities_ops-app-frame_NavigationBar_NavigationBar--withCounts:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton {\r\n min-width: 70px;\r\n text-align: right;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--expandedMenu {\r\n background-color: #73A6FF;\r\n transition: background-color 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i {\r\n margin-left: auto;\r\n font-size: 12px;\r\n color: #fff;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--selected .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n color: #323130;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemCount {\r\n flex: 1;\r\n margin: 0 10px 0;\r\n text-align: right;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon {\r\n min-width: 20px;\r\n display: flex;\r\n justify-content: center;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon i {\r\n font-size: 14px;\r\n /* width: 20px; */\r\n color: #fff;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon i {\r\n color: #A19F9D;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemSelected .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon i{\r\n color: #323130;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemSelected .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n color: #323130;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i {\r\n color: #A19F9D;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n font-size: 0px;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton.utilities_ops-app-frame_NavigationBar_NavigationBar--showExpandIcons i{\r\n font-size: 12px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n font-size: 12px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n max-width: 0;\r\n overflow: hidden;\r\n white-space: nowrap;\r\n margin-top: 2px;\r\n font-weight: 100;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n max-width: 100%;\r\n margin: 2px 10px 0 10px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n color: #A19F9D;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n max-width: 100%;\r\n margin: 0 5px 0 0;\r\n font-weight: 600;\r\n margin-left: 0px;\r\n cursor: auto;\r\n cursor: initial;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n margin: 0;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon {\r\n margin-right: 0px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem {\r\n padding-left: 12px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName > span {\r\n display: inline;\r\n display: initial;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel2 {\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel3 {\r\n display: flex;\r\n position: relative;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel3 .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem {\r\n padding: 6px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--statusColor {\r\n position: absolute;\r\n width: 10px;\r\n height: 95%;\r\n left: -13px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--level1NavItem {\r\n width: 13px;\r\n margin-left: 1px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--level1NavItem {\r\n width: 100%;\r\n margin-left: 1px;\r\n}";
|
|
45464
|
+
var css_248z$2 = ".utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer {\r\n display: flex;\r\n flex-direction: column;\r\n position: absolute;\r\n background: #3A4454;\r\n min-width: 50px;\r\n max-width: 50px;\r\n height: 100%;\r\n color: #ffffff;\r\n font-size: 14px;\r\n z-index: 101;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer.utilities_ops-app-frame_NavigationBar_NavigationBar--withCounts {\r\n min-width: 100px;\r\n max-width: 100px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover {\r\n max-width: 500px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton {\r\n min-width: none;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton.utilities_ops-app-frame_NavigationBar_NavigationBar--showExpandIcons{\r\n min-width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton{\r\n min-width: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenu {\r\n flex: 1;\r\n overflow-y: auto;\r\n -ms-overflow-style: none;\r\n scrollbar-width: none;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenu::-webkit-scrollbar { \r\n display: none;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem {\r\n display: flex;\r\n width: 100%;\r\n padding: 6px 12px 6px 12px;\r\n border-radius: 5px;\r\n cursor: pointer;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled {\r\n cursor: default;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemSelected {\r\n color: #323130;\r\n background-color: #fff;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton {\r\n margin-left: auto;\r\n margin-right: 10px;\r\n min-width: none;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer.utilities_ops-app-frame_NavigationBar_NavigationBar--withCounts:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton, .utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer.utilities_ops-app-frame_NavigationBar_NavigationBar--countsAvailable .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton {\r\n min-width: 70px;\r\n text-align: right;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer.utilities_ops-app-frame_NavigationBar_NavigationBar--countsAvailable:not(:hover) .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton {\r\n min-width: auto;\r\n text-align: auto;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--expandedMenu {\r\n background-color: #73A6FF;\r\n transition: background-color 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i {\r\n margin-left: auto;\r\n font-size: 12px;\r\n color: #fff;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--selected .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n color: #323130;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemCount {\r\n flex: 1;\r\n margin: 0 10px 0;\r\n text-align: right;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon {\r\n min-width: 20px;\r\n display: flex;\r\n justify-content: center;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon i {\r\n font-size: 14px;\r\n /* width: 20px; */\r\n color: #fff;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon i {\r\n color: #A19F9D;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemSelected .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon i{\r\n color: #323130;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemSelected .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n color: #323130;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i {\r\n color: #A19F9D;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n font-size: 0px;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton.utilities_ops-app-frame_NavigationBar_NavigationBar--showExpandIcons i{\r\n font-size: 12px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--expandButton i{\r\n font-size: 12px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n max-width: 0;\r\n overflow: hidden;\r\n white-space: nowrap;\r\n margin-top: 2px;\r\n font-weight: 100;\r\n transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n max-width: 100%;\r\n margin: 2px 10px 0 10px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem.utilities_ops-app-frame_NavigationBar_NavigationBar--disabled .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n color: #A19F9D;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n max-width: 100%;\r\n margin: 0 5px 0 0;\r\n font-weight: 600;\r\n margin-left: 0px;\r\n cursor: auto;\r\n cursor: initial;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName {\r\n margin: 0;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemIcon {\r\n margin-right: 0px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem {\r\n padding-left: 12px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 > .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemName > span {\r\n display: inline;\r\n display: initial;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel2 {\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel3 {\r\n display: flex;\r\n position: relative;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel3 .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem {\r\n padding: 6px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--statusColor {\r\n position: absolute;\r\n width: 10px;\r\n height: 95%;\r\n left: -13px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer .utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--level1NavItem {\r\n width: 13px;\r\n margin-left: 1px;\r\n}\r\n\r\n.utilities_ops-app-frame_NavigationBar_NavigationBar--NavBarContainer:hover .utilities_ops-app-frame_NavigationBar_NavigationBar--NavMenuLevel1 .utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem .utilities_ops-app-frame_NavigationBar_NavigationBar--level1NavItem {\r\n width: 100%;\r\n margin-left: 1px;\r\n}";
|
|
45462
45465
|
styleInject(css_248z$2);
|
|
45463
45466
|
|
|
45464
45467
|
var _styleModuleImportMap$1 = {
|
|
@@ -45471,6 +45474,7 @@ var _styleModuleImportMap$1 = {
|
|
|
45471
45474
|
"NavItem": "utilities_ops-app-frame_NavigationBar_NavigationBar--NavItem",
|
|
45472
45475
|
"disabled": "utilities_ops-app-frame_NavigationBar_NavigationBar--disabled",
|
|
45473
45476
|
"NavItemSelected": "utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemSelected",
|
|
45477
|
+
"countsAvailable": "utilities_ops-app-frame_NavigationBar_NavigationBar--countsAvailable",
|
|
45474
45478
|
"expandedMenu": "utilities_ops-app-frame_NavigationBar_NavigationBar--expandedMenu",
|
|
45475
45479
|
"selected": "utilities_ops-app-frame_NavigationBar_NavigationBar--selected",
|
|
45476
45480
|
"NavItemCount": "utilities_ops-app-frame_NavigationBar_NavigationBar--NavItemCount",
|
|
@@ -45625,7 +45629,7 @@ var NavigationBar = function NavigationBar(_ref2) {
|
|
|
45625
45629
|
onMouseLeave: function onMouseLeave() {
|
|
45626
45630
|
return setHover(false);
|
|
45627
45631
|
},
|
|
45628
|
-
className: _getClassName("NavBarContainer ".concat(activeSubmenu && withCounts ? 'withCounts' : ''), _styleModuleImportMap$1, {
|
|
45632
|
+
className: _getClassName("NavBarContainer ".concat(activeSubmenu && withCounts ? 'withCounts' : '', " ").concat(getCounts && typeof getCounts === 'function' ? 'countsAvailable' : ''), _styleModuleImportMap$1, {
|
|
45629
45633
|
"handleMissingStyleName": "warn"
|
|
45630
45634
|
})
|
|
45631
45635
|
}, isConfigValid ? /*#__PURE__*/React__default["default"].createElement(NavigationMenu, {
|
|
@@ -45984,7 +45988,8 @@ var AppFrame = function AppFrame(props) {
|
|
|
45984
45988
|
}) : null, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
45985
45989
|
style: {
|
|
45986
45990
|
marginLeft: props.showNavigation ? navigationWidth : '0px',
|
|
45987
|
-
height: '100%'
|
|
45991
|
+
height: '100%',
|
|
45992
|
+
transition: 'all 0.5s ease-in-out'
|
|
45988
45993
|
}
|
|
45989
45994
|
}, props.children))))));
|
|
45990
45995
|
};
|
|
@@ -46373,12 +46378,21 @@ function getPaddingObject(padding) {
|
|
|
46373
46378
|
};
|
|
46374
46379
|
}
|
|
46375
46380
|
function rectToClientRect(rect) {
|
|
46381
|
+
const {
|
|
46382
|
+
x,
|
|
46383
|
+
y,
|
|
46384
|
+
width,
|
|
46385
|
+
height
|
|
46386
|
+
} = rect;
|
|
46376
46387
|
return {
|
|
46377
|
-
|
|
46378
|
-
|
|
46379
|
-
|
|
46380
|
-
|
|
46381
|
-
|
|
46388
|
+
width,
|
|
46389
|
+
height,
|
|
46390
|
+
top: y,
|
|
46391
|
+
left: x,
|
|
46392
|
+
right: x + width,
|
|
46393
|
+
bottom: y + height,
|
|
46394
|
+
x,
|
|
46395
|
+
y
|
|
46382
46396
|
};
|
|
46383
46397
|
}
|
|
46384
46398
|
|
|
@@ -46567,9 +46581,10 @@ async function detectOverflow(state, options) {
|
|
|
46567
46581
|
strategy
|
|
46568
46582
|
}));
|
|
46569
46583
|
const rect = elementContext === 'floating' ? {
|
|
46570
|
-
...rects.floating,
|
|
46571
46584
|
x,
|
|
46572
|
-
y
|
|
46585
|
+
y,
|
|
46586
|
+
width: rects.floating.width,
|
|
46587
|
+
height: rects.floating.height
|
|
46573
46588
|
} : rects.reference;
|
|
46574
46589
|
const offsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(elements.floating));
|
|
46575
46590
|
const offsetScale = (await (platform.isElement == null ? void 0 : platform.isElement(offsetParent))) ? (await (platform.getScale == null ? void 0 : platform.getScale(offsetParent))) || {
|
|
@@ -47106,6 +47121,8 @@ async function convertValueToCoords(state, options) {
|
|
|
47106
47121
|
const mainAxisMulti = ['left', 'top'].includes(side) ? -1 : 1;
|
|
47107
47122
|
const crossAxisMulti = rtl && isVertical ? -1 : 1;
|
|
47108
47123
|
const rawValue = evaluate(options, state);
|
|
47124
|
+
|
|
47125
|
+
// eslint-disable-next-line prefer-const
|
|
47109
47126
|
let {
|
|
47110
47127
|
mainAxis,
|
|
47111
47128
|
crossAxis,
|
|
@@ -47139,7 +47156,7 @@ async function convertValueToCoords(state, options) {
|
|
|
47139
47156
|
* object may be passed.
|
|
47140
47157
|
* @see https://floating-ui.com/docs/offset
|
|
47141
47158
|
*/
|
|
47142
|
-
const offset = function (options) {
|
|
47159
|
+
const offset$1 = function (options) {
|
|
47143
47160
|
if (options === void 0) {
|
|
47144
47161
|
options = 0;
|
|
47145
47162
|
}
|
|
@@ -47454,9 +47471,8 @@ function getContainingBlock(element) {
|
|
|
47454
47471
|
while (isHTMLElement(currentNode) && !isLastTraversableNode(currentNode)) {
|
|
47455
47472
|
if (isContainingBlock(currentNode)) {
|
|
47456
47473
|
return currentNode;
|
|
47457
|
-
} else {
|
|
47458
|
-
currentNode = getParentNode(currentNode);
|
|
47459
47474
|
}
|
|
47475
|
+
currentNode = getParentNode(currentNode);
|
|
47460
47476
|
}
|
|
47461
47477
|
return null;
|
|
47462
47478
|
}
|
|
@@ -47922,12 +47938,14 @@ function getOffsetParent(element, polyfill) {
|
|
|
47922
47938
|
const getElementRects = async function (data) {
|
|
47923
47939
|
const getOffsetParentFn = this.getOffsetParent || getOffsetParent;
|
|
47924
47940
|
const getDimensionsFn = this.getDimensions;
|
|
47941
|
+
const floatingDimensions = await getDimensionsFn(data.floating);
|
|
47925
47942
|
return {
|
|
47926
47943
|
reference: getRectRelativeToOffsetParent(data.reference, await getOffsetParentFn(data.floating), data.strategy),
|
|
47927
47944
|
floating: {
|
|
47928
47945
|
x: 0,
|
|
47929
47946
|
y: 0,
|
|
47930
|
-
|
|
47947
|
+
width: floatingDimensions.width,
|
|
47948
|
+
height: floatingDimensions.height
|
|
47931
47949
|
}
|
|
47932
47950
|
};
|
|
47933
47951
|
};
|
|
@@ -47995,9 +48013,11 @@ function observeMove(element, onMove) {
|
|
|
47995
48013
|
return refresh();
|
|
47996
48014
|
}
|
|
47997
48015
|
if (!ratio) {
|
|
48016
|
+
// If the reference is clipped, the ratio is 0. Throttle the refresh
|
|
48017
|
+
// to prevent an infinite loop of updates.
|
|
47998
48018
|
timeoutId = setTimeout(() => {
|
|
47999
48019
|
refresh(false, 1e-7);
|
|
48000
|
-
},
|
|
48020
|
+
}, 1000);
|
|
48001
48021
|
} else {
|
|
48002
48022
|
refresh(false, ratio);
|
|
48003
48023
|
}
|
|
@@ -48101,6 +48121,15 @@ function autoUpdate(reference, floating, update, options) {
|
|
|
48101
48121
|
};
|
|
48102
48122
|
}
|
|
48103
48123
|
|
|
48124
|
+
/**
|
|
48125
|
+
* Modifies the placement by translating the floating element along the
|
|
48126
|
+
* specified axes.
|
|
48127
|
+
* A number (shorthand for `mainAxis` or distance), or an axes configuration
|
|
48128
|
+
* object may be passed.
|
|
48129
|
+
* @see https://floating-ui.com/docs/offset
|
|
48130
|
+
*/
|
|
48131
|
+
const offset = offset$1;
|
|
48132
|
+
|
|
48104
48133
|
/**
|
|
48105
48134
|
* Optimizes the visibility of the floating element by choosing the placement
|
|
48106
48135
|
* that has the most space available automatically, without needing to specify a
|
|
@@ -48272,7 +48301,7 @@ function S({
|
|
|
48272
48301
|
s = document.createElement("style");
|
|
48273
48302
|
s.id = t, s.type = "text/css", "top" === c && i.firstChild ? i.insertBefore(s, i.firstChild) : i.appendChild(s), s.styleSheet ? s.styleSheet.cssText = e : s.appendChild(document.createTextNode(e)), b[o] = !0;
|
|
48274
48303
|
}
|
|
48275
|
-
const
|
|
48304
|
+
const E = async ({
|
|
48276
48305
|
elementReference: e = null,
|
|
48277
48306
|
tooltipReference: t = null,
|
|
48278
48307
|
tooltipArrowReference: o = null,
|
|
@@ -48457,7 +48486,7 @@ const D = ({
|
|
|
48457
48486
|
openOnClick: w = !1,
|
|
48458
48487
|
positionStrategy: b = "absolute",
|
|
48459
48488
|
middlewares: S,
|
|
48460
|
-
wrapper:
|
|
48489
|
+
wrapper: g,
|
|
48461
48490
|
delayShow: A = 0,
|
|
48462
48491
|
delayHide: O = 0,
|
|
48463
48492
|
float: k = !1,
|
|
@@ -48505,9 +48534,9 @@ const D = ({
|
|
|
48505
48534
|
be = React.useRef(null),
|
|
48506
48535
|
{
|
|
48507
48536
|
anchorRefs: Se,
|
|
48508
|
-
setActiveAnchor:
|
|
48537
|
+
setActiveAnchor: ge
|
|
48509
48538
|
} = I(r),
|
|
48510
|
-
|
|
48539
|
+
Ee = React.useRef(!1),
|
|
48511
48540
|
[Ae, _e] = React.useState([]),
|
|
48512
48541
|
Oe = React.useRef(!1),
|
|
48513
48542
|
Te = w || h.includes("click"),
|
|
@@ -48604,17 +48633,17 @@ const D = ({
|
|
|
48604
48633
|
},
|
|
48605
48634
|
Ie = (e = O) => {
|
|
48606
48635
|
se.current && clearTimeout(se.current), se.current = setTimeout(() => {
|
|
48607
|
-
|
|
48636
|
+
Ee.current || xe(!1);
|
|
48608
48637
|
}, e);
|
|
48609
48638
|
},
|
|
48610
48639
|
je = e => {
|
|
48611
48640
|
var t;
|
|
48612
48641
|
if (!e) return;
|
|
48613
48642
|
const o = null !== (t = e.currentTarget) && void 0 !== t ? t : e.target;
|
|
48614
|
-
if (!(null == o ? void 0 : o.isConnected)) return Q(null), void
|
|
48643
|
+
if (!(null == o ? void 0 : o.isConnected)) return Q(null), void ge({
|
|
48615
48644
|
current: null
|
|
48616
48645
|
});
|
|
48617
|
-
A ? $e() : xe(!0), Q(o),
|
|
48646
|
+
A ? $e() : xe(!0), Q(o), ge({
|
|
48618
48647
|
current: o
|
|
48619
48648
|
}), se.current && clearTimeout(se.current);
|
|
48620
48649
|
},
|
|
@@ -48638,7 +48667,7 @@ const D = ({
|
|
|
48638
48667
|
bottom: t
|
|
48639
48668
|
})
|
|
48640
48669
|
};
|
|
48641
|
-
|
|
48670
|
+
E({
|
|
48642
48671
|
place: null !== (o = null == ye ? void 0 : ye.place) && void 0 !== o ? o : v,
|
|
48643
48672
|
offset: m,
|
|
48644
48673
|
elementReference: r,
|
|
@@ -48679,7 +48708,7 @@ const D = ({
|
|
|
48679
48708
|
Ve = React.useCallback(() => {
|
|
48680
48709
|
var e, t;
|
|
48681
48710
|
const o = null !== (e = null == ye ? void 0 : ye.position) && void 0 !== e ? e : V;
|
|
48682
|
-
o ? ze(o) : k ? be.current && ze(be.current) : (null == J ? void 0 : J.isConnected) &&
|
|
48711
|
+
o ? ze(o) : k ? be.current && ze(be.current) : (null == J ? void 0 : J.isConnected) && E({
|
|
48683
48712
|
place: null !== (t = null == ye ? void 0 : ye.place) && void 0 !== t ? t : v,
|
|
48684
48713
|
offset: m,
|
|
48685
48714
|
elementReference: J,
|
|
@@ -48750,10 +48779,10 @@ const D = ({
|
|
|
48750
48779
|
listener: De
|
|
48751
48780
|
});
|
|
48752
48781
|
const y = () => {
|
|
48753
|
-
|
|
48782
|
+
Ee.current = !0;
|
|
48754
48783
|
},
|
|
48755
48784
|
h = () => {
|
|
48756
|
-
|
|
48785
|
+
Ee.current = !1, Be();
|
|
48757
48786
|
};
|
|
48758
48787
|
return N && !ke && (null === (e = ne.current) || void 0 === e || e.addEventListener("mouseenter", y), null === (t = ne.current) || void 0 === t || t.addEventListener("mouseleave", h)), a.forEach(({
|
|
48759
48788
|
event: e,
|
|
@@ -48778,7 +48807,7 @@ const D = ({
|
|
|
48778
48807
|
}, [J, Ve, me, Se, Ae, q, H, M, Te, A, O]), React.useEffect(() => {
|
|
48779
48808
|
var e, t;
|
|
48780
48809
|
let o = null !== (t = null !== (e = null == ye ? void 0 : ye.anchorSelect) && void 0 !== e ? e : p) && void 0 !== t ? t : "";
|
|
48781
|
-
!o && r && (o = `[data-tooltip-id='${r}']`);
|
|
48810
|
+
!o && r && (o = `[data-tooltip-id='${r.replace(/'/g, "\\'")}']`);
|
|
48782
48811
|
const l = new MutationObserver(e => {
|
|
48783
48812
|
const t = [],
|
|
48784
48813
|
l = [];
|
|
@@ -48833,7 +48862,7 @@ const D = ({
|
|
|
48833
48862
|
}), []), React.useEffect(() => {
|
|
48834
48863
|
var e;
|
|
48835
48864
|
let t = null !== (e = null == ye ? void 0 : ye.anchorSelect) && void 0 !== e ? e : p;
|
|
48836
|
-
if (!t && r && (t = `[data-tooltip-id='${r}']`), t) try {
|
|
48865
|
+
if (!t && r && (t = `[data-tooltip-id='${r.replace(/'/g, "\\'")}']`), t) try {
|
|
48837
48866
|
const e = Array.from(document.querySelectorAll(t));
|
|
48838
48867
|
_e(e);
|
|
48839
48868
|
} catch (e) {
|
|
@@ -48859,7 +48888,7 @@ const D = ({
|
|
|
48859
48888
|
activeAnchor: J,
|
|
48860
48889
|
place: ue.place,
|
|
48861
48890
|
isOpen: Boolean(me && !R && Fe && Ke)
|
|
48862
|
-
})), me && !R && Fe ? React__default["default"].createElement(
|
|
48891
|
+
})), me && !R && Fe ? React__default["default"].createElement(g, {
|
|
48863
48892
|
id: r,
|
|
48864
48893
|
role: re,
|
|
48865
48894
|
className: classnames("react-tooltip", B.tooltip, z.tooltip, z[u], c, `react-tooltip__place-${ue.place}`, B[Ke ? "show" : "closing"], Ke ? "react-tooltip__show" : "react-tooltip__closing", "fixed" === b && B.fixed, N && B.clickable),
|
|
@@ -48872,7 +48901,7 @@ const D = ({
|
|
|
48872
48901
|
opacity: void 0 !== te && Ke ? te : void 0
|
|
48873
48902
|
},
|
|
48874
48903
|
ref: ne
|
|
48875
|
-
}, Fe, React__default["default"].createElement(
|
|
48904
|
+
}, Fe, React__default["default"].createElement(g, {
|
|
48876
48905
|
className: classnames("react-tooltip-arrow", B.arrow, z.arrow, i, x && B.noArrow),
|
|
48877
48906
|
style: {
|
|
48878
48907
|
...ue.tooltipArrowStyles,
|
|
@@ -48905,8 +48934,8 @@ const D = ({
|
|
|
48905
48934
|
events: w = ["hover"],
|
|
48906
48935
|
openOnClick: b = !1,
|
|
48907
48936
|
positionStrategy: S = "absolute",
|
|
48908
|
-
middlewares:
|
|
48909
|
-
delayShow:
|
|
48937
|
+
middlewares: g,
|
|
48938
|
+
delayShow: E = 0,
|
|
48910
48939
|
delayHide: _ = 0,
|
|
48911
48940
|
float: O = !1,
|
|
48912
48941
|
hidden: T = !1,
|
|
@@ -48937,14 +48966,14 @@ const D = ({
|
|
|
48937
48966
|
[oe, re] = React.useState(v),
|
|
48938
48967
|
[le, ne] = React.useState(p),
|
|
48939
48968
|
[ce, ie] = React.useState(m),
|
|
48940
|
-
[se, ae] = React.useState(
|
|
48969
|
+
[se, ae] = React.useState(E),
|
|
48941
48970
|
[ue, de] = React.useState(_),
|
|
48942
48971
|
[pe, ve] = React.useState(O),
|
|
48943
48972
|
[me, fe] = React.useState(T),
|
|
48944
48973
|
[ye, he] = React.useState(f),
|
|
48945
48974
|
[we, be] = React.useState(w),
|
|
48946
|
-
[Se,
|
|
48947
|
-
[
|
|
48975
|
+
[Se, ge] = React.useState(S),
|
|
48976
|
+
[Ee, Ae] = React.useState(null),
|
|
48948
48977
|
[_e, Oe] = React.useState(null),
|
|
48949
48978
|
Te = React.useRef(P),
|
|
48950
48979
|
{
|
|
@@ -48987,10 +49016,10 @@ const D = ({
|
|
|
48987
49016
|
},
|
|
48988
49017
|
"position-strategy": e => {
|
|
48989
49018
|
var t;
|
|
48990
|
-
|
|
49019
|
+
ge(null !== (t = e) && void 0 !== t ? t : S);
|
|
48991
49020
|
},
|
|
48992
49021
|
"delay-show": e => {
|
|
48993
|
-
ae(null === e ?
|
|
49022
|
+
ae(null === e ? E : Number(e));
|
|
48994
49023
|
},
|
|
48995
49024
|
"delay-hide": e => {
|
|
48996
49025
|
de(null === e ? _ : Number(e));
|
|
@@ -49021,15 +49050,15 @@ const D = ({
|
|
|
49021
49050
|
}, [p]), React.useEffect(() => {
|
|
49022
49051
|
ie(m);
|
|
49023
49052
|
}, [m]), React.useEffect(() => {
|
|
49024
|
-
ae(
|
|
49025
|
-
}, [
|
|
49053
|
+
ae(E);
|
|
49054
|
+
}, [E]), React.useEffect(() => {
|
|
49026
49055
|
de(_);
|
|
49027
49056
|
}, [_]), React.useEffect(() => {
|
|
49028
49057
|
ve(O);
|
|
49029
49058
|
}, [O]), React.useEffect(() => {
|
|
49030
49059
|
fe(T);
|
|
49031
49060
|
}, [T]), React.useEffect(() => {
|
|
49032
|
-
|
|
49061
|
+
ge(S);
|
|
49033
49062
|
}, [S]), React.useEffect(() => {
|
|
49034
49063
|
Te.current !== P && console.warn("[react-tooltip] Do not change `disableStyleInjection` dynamically.");
|
|
49035
49064
|
}, [P]), React.useEffect(() => {
|
|
@@ -49043,7 +49072,7 @@ const D = ({
|
|
|
49043
49072
|
var e;
|
|
49044
49073
|
const o = new Set(ke);
|
|
49045
49074
|
let l = n;
|
|
49046
|
-
if (!l && t && (l = `[data-tooltip-id='${t}']`), l) try {
|
|
49075
|
+
if (!l && t && (l = `[data-tooltip-id='${t.replace(/'/g, "\\'")}']`), l) try {
|
|
49047
49076
|
document.querySelectorAll(l).forEach(e => {
|
|
49048
49077
|
o.add({
|
|
49049
49078
|
current: e
|
|
@@ -49100,7 +49129,7 @@ const D = ({
|
|
|
49100
49129
|
id: t,
|
|
49101
49130
|
anchorId: r,
|
|
49102
49131
|
anchorSelect: n,
|
|
49103
|
-
className: classnames(u,
|
|
49132
|
+
className: classnames(u, Ee),
|
|
49104
49133
|
classNameArrow: d,
|
|
49105
49134
|
content: xe,
|
|
49106
49135
|
contentWrapperRef: Ne,
|
|
@@ -49111,7 +49140,7 @@ const D = ({
|
|
|
49111
49140
|
events: we,
|
|
49112
49141
|
openOnClick: b,
|
|
49113
49142
|
positionStrategy: Se,
|
|
49114
|
-
middlewares:
|
|
49143
|
+
middlewares: g,
|
|
49115
49144
|
delayShow: se,
|
|
49116
49145
|
delayHide: ue,
|
|
49117
49146
|
float: pe,
|