@copart/ops-tool-kit 1.7.0 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ops-tool-kit.js +172 -54
- package/dist/ops-tool-kit.js.map +1 -1
- package/package.json +1 -1
package/dist/ops-tool-kit.js
CHANGED
|
@@ -33,7 +33,7 @@ var ReactDOM__default = /*#__PURE__*/_interopDefaultLegacy(ReactDOM);
|
|
|
33
33
|
var ReactDOM__namespace = /*#__PURE__*/_interopNamespace(ReactDOM);
|
|
34
34
|
|
|
35
35
|
const name$e = "@copart/ops-tool-kit";
|
|
36
|
-
const version$3 = "1.7.
|
|
36
|
+
const version$3 = "1.7.3";
|
|
37
37
|
const main = "dist/ops-tool-kit.js";
|
|
38
38
|
const style = "dist/ops-tool-kit.css";
|
|
39
39
|
const files = [
|
|
@@ -2584,11 +2584,13 @@ function set$1(target, path, value, options) {
|
|
|
2584
2584
|
|
|
2585
2585
|
let opts = options || {};
|
|
2586
2586
|
const isArray = Array.isArray(path);
|
|
2587
|
+
|
|
2587
2588
|
if (!isArray && typeof path !== 'string') {
|
|
2588
2589
|
return target;
|
|
2589
2590
|
}
|
|
2590
2591
|
|
|
2591
2592
|
let merge = opts.merge;
|
|
2593
|
+
|
|
2592
2594
|
if (merge && typeof merge !== 'function') {
|
|
2593
2595
|
merge = Object.assign;
|
|
2594
2596
|
}
|
|
@@ -2631,8 +2633,7 @@ function result(target, path, value, merge) {
|
|
|
2631
2633
|
function split(path, options) {
|
|
2632
2634
|
const id = createKey(path, options);
|
|
2633
2635
|
if (set$1.memo[id]) return set$1.memo[id];
|
|
2634
|
-
|
|
2635
|
-
const char = (options && options.separator) ? options.separator : '.';
|
|
2636
|
+
const char = options && options.separator ? options.separator : '.';
|
|
2636
2637
|
let keys = [];
|
|
2637
2638
|
let res = [];
|
|
2638
2639
|
|
|
@@ -2644,25 +2645,32 @@ function split(path, options) {
|
|
|
2644
2645
|
|
|
2645
2646
|
for (let i = 0; i < keys.length; i++) {
|
|
2646
2647
|
let prop = keys[i];
|
|
2648
|
+
|
|
2647
2649
|
while (prop && prop.slice(-1) === '\\' && keys[i + 1]) {
|
|
2648
2650
|
prop = prop.slice(0, -1) + char + keys[++i];
|
|
2649
2651
|
}
|
|
2652
|
+
|
|
2650
2653
|
res.push(prop);
|
|
2651
2654
|
}
|
|
2655
|
+
|
|
2652
2656
|
set$1.memo[id] = res;
|
|
2653
2657
|
return res;
|
|
2654
2658
|
}
|
|
2655
2659
|
|
|
2656
2660
|
function createKey(pattern, options) {
|
|
2657
2661
|
let id = pattern;
|
|
2662
|
+
|
|
2658
2663
|
if (typeof options === 'undefined') {
|
|
2659
2664
|
return id + '';
|
|
2660
2665
|
}
|
|
2666
|
+
|
|
2661
2667
|
const keys = Object.keys(options);
|
|
2668
|
+
|
|
2662
2669
|
for (let i = 0; i < keys.length; i++) {
|
|
2663
2670
|
const key = keys[i];
|
|
2664
2671
|
id += ';' + key + '=' + String(options[key]);
|
|
2665
2672
|
}
|
|
2673
|
+
|
|
2666
2674
|
return id;
|
|
2667
2675
|
}
|
|
2668
2676
|
|
|
@@ -6333,6 +6341,7 @@ function () {
|
|
|
6333
6341
|
return refreshToken();
|
|
6334
6342
|
|
|
6335
6343
|
case 9:
|
|
6344
|
+
_context.sent;
|
|
6336
6345
|
_context.next = 12;
|
|
6337
6346
|
return fetcher.request(error.response.config);
|
|
6338
6347
|
|
|
@@ -11130,6 +11139,42 @@ function () {
|
|
|
11130
11139
|
};
|
|
11131
11140
|
}();
|
|
11132
11141
|
|
|
11142
|
+
var getInnovationHubToken =
|
|
11143
|
+
/*#__PURE__*/
|
|
11144
|
+
function () {
|
|
11145
|
+
var _ref = _asyncToGenerator(
|
|
11146
|
+
/*#__PURE__*/
|
|
11147
|
+
regenerator.mark(function _callee() {
|
|
11148
|
+
var response;
|
|
11149
|
+
return regenerator.wrap(function _callee$(_context) {
|
|
11150
|
+
while (1) {
|
|
11151
|
+
switch (_context.prev = _context.next) {
|
|
11152
|
+
case 0:
|
|
11153
|
+
_context.next = 2;
|
|
11154
|
+
return fetcher.get('/api/v0/auth/innovationHubtoken', {
|
|
11155
|
+
headers: {
|
|
11156
|
+
'Content-Type': 'application/json; charset=UTF-8'
|
|
11157
|
+
},
|
|
11158
|
+
responseType: 'json'
|
|
11159
|
+
});
|
|
11160
|
+
|
|
11161
|
+
case 2:
|
|
11162
|
+
response = _context.sent;
|
|
11163
|
+
return _context.abrupt("return", response.data.token);
|
|
11164
|
+
|
|
11165
|
+
case 4:
|
|
11166
|
+
case "end":
|
|
11167
|
+
return _context.stop();
|
|
11168
|
+
}
|
|
11169
|
+
}
|
|
11170
|
+
}, _callee);
|
|
11171
|
+
}));
|
|
11172
|
+
|
|
11173
|
+
return function getInnovationHubToken() {
|
|
11174
|
+
return _ref.apply(this, arguments);
|
|
11175
|
+
};
|
|
11176
|
+
}();
|
|
11177
|
+
|
|
11133
11178
|
fetcher.login = login;
|
|
11134
11179
|
fetcher.oktaLogin = oktaLogin;
|
|
11135
11180
|
fetcher.getConfig = getConfig;
|
|
@@ -11144,6 +11189,7 @@ fetcher.getHierarchyOptions = getHierarchyOptions;
|
|
|
11144
11189
|
fetcher.getPrintersForYard = getPrintersForYard;
|
|
11145
11190
|
fetcher.getPermissions = getPermissions;
|
|
11146
11191
|
fetcher.getCoreAppPermissions = getCoreAppPermissions;
|
|
11192
|
+
fetcher.getInnovationHubToken = getInnovationHubToken;
|
|
11147
11193
|
|
|
11148
11194
|
var getRouteName = function getRouteName() {
|
|
11149
11195
|
return window.location.pathname.split('/').splice(1)[0];
|
|
@@ -22150,7 +22196,7 @@ FeedbackDialog.defaultProps = {
|
|
|
22150
22196
|
}
|
|
22151
22197
|
};
|
|
22152
22198
|
|
|
22153
|
-
var css_248z$b = ".utilities_ops-app-frame_AppBarComponent_AppBar--root {\n background-color: var(--blue);\n background-color: var(--blue);\n height: 64px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n white-space: nowrap;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--leftItems {\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--copartLogo {\n display: flex;\n align-items: center;\n flex-direction: column;\n margin-left: 5px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--copartLogoNew {\n display: flex;\n flex-direction: column;\n margin-left: 5px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--moduleName {\n color: white;\n font-size: 11px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid-items {\n display: flex;\n justify-content: flex-start;\n align-items: center;\n font-size: 13px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid .utilities_ops-app-frame_AppBarComponent_AppBar--col {\n display: flex;\n color: white;\n font-size: 13px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid .utilities_ops-app-frame_AppBarComponent_AppBar--col svg {\n color: white;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--logo {\n width: 6rem;\n margin-top: 0rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--text {\n margin-top: 0.6rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--iconText {\n margin-top: 0.4rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--searchBar,\n.utilities_ops-app-frame_AppBarComponent_AppBar--placeholderDiv {\n margin-top: -0.2rem;\n margin-left: 2rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--appBarLeft > img.utilities_ops-app-frame_AppBarComponent_AppBar--logo {\n display: inline;\n display: initial;\n}\n\n@font-face {\n font-family: 'Open Sans';\n font-style: italic;\n font-weight: 600;\n src: url(https://fonts.gstatic.com/s/opensans/v18/memnYaGs126MiZpBA-UFUKXGUdhmIqOjjg.woff2)\n format('woff2');\n unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--appTitle {\n color: #fff;\n font-family: 'Open Sans', sans-serif;\n font-weight: 600;\n font-style: italic;\n font-size: 14px;\n position: relative;\n left: 16px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--item {\n display: flex;\n color: white;\n font-size: 13px;\n cursor: pointer;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber {\n margin-left: 10px;\n margin-right: 7px;\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber > div {\n margin-left: 7px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault {\n color: white;\n cursor: default;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable,\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable {\n background-color: white;\n border-radius: 20px;\n margin: 5px;\n padding: 0px 10px;\n height: 25px;\n font-weight: bold;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--light {\n border: 1px solid #1d5ab9;\n justify-content: flex-start;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightDefault {\n color: black;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneOffline,\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightAvailable {\n background-color: white;\n border-radius: 20px;\n display: flex;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightAvailable {\n color: green;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightAvailable i {\n color: green;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneOffline {\n color: red;\n margin: 5px 0px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneOffline svg {\n margin-right: 5px;\n margin-left: 5px;\n width: 24px;\n height: 24px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--SpinnerWrapper {\n margin-left: 5px;\n display: inline-flex;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault i {\n font-size: 16px;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable i {\n line-height: unset;\n font-size: 16px;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable {\n color: green;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault i,\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable i,\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable svg {\n margin-right: 5px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable {\n color: red;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--userMenu {\n margin-left: 10px !important;\n margin-right: 5px !important;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag {\n margin-left: 10px !important;\n margin-right: 10px !important;\n display: flex;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag > div {\n margin-left: 7px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--feedback {\n margin: 0 !important;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--overflowItems {\n width: 100%;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--mihelp_button {\n cursor: pointer;\n position: relative;\n top: 2px;\n margin-left: 10px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--mihelp_button i {\n color: #fff;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetContainer {\n position: absolute;\n display: flex;\n height: 100vh;\n width: 100vw;\n bottom: 0;\n z-index: 10000;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHide {\n background-color: rgba(0,0,0,.5);\n width: 100%;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--st0{fill:#0075E6;}\n.utilities_ops-app-frame_AppBarComponent_AppBar--st1{fill:#6A819C;}\n.utilities_ops-app-frame_AppBarComponent_AppBar--st2{fill:#FFFFFF;}\n\n@media only screen and (max-width: 1024px) {\n .utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault i,\n .utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable i,\n .utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable svg {\n margin-right: 2px;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber {\n margin-left: 5px;\n margin-right: 2px;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber > div {\n margin-left: 2px;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--userMenu {\n margin-left: 3px !important;\n margin-right: 3px !important;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag {\n margin-left: 3px !important;\n margin-right: 3px !important;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag > div {\n margin-left: 2px;\n }\n}\n";
|
|
22199
|
+
var css_248z$b = ".utilities_ops-app-frame_AppBarComponent_AppBar--root {\n background-color: var(--blue);\n background-color: var(--blue);\n height: 64px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n white-space: nowrap;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--leftItems {\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--copartLogo {\n display: flex;\n align-items: center;\n flex-direction: column;\n margin-left: 5px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--copartLogoNew {\n display: flex;\n flex-direction: column;\n margin-left: 5px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--moduleName {\n color: white;\n font-size: 11px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid-items {\n display: flex;\n justify-content: flex-start;\n align-items: center;\n font-size: 13px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid .utilities_ops-app-frame_AppBarComponent_AppBar--col {\n display: flex;\n color: white;\n font-size: 13px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--flex-grid .utilities_ops-app-frame_AppBarComponent_AppBar--col svg {\n color: white;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--logo {\n width: 6rem;\n margin-top: 0rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--text {\n margin-top: 0.6rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--iconText {\n margin-top: 0.4rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--searchBar,\n.utilities_ops-app-frame_AppBarComponent_AppBar--placeholderDiv {\n margin-top: -0.2rem;\n margin-left: 2rem;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--appBarLeft > img.utilities_ops-app-frame_AppBarComponent_AppBar--logo {\n display: inline;\n display: initial;\n}\n\n@font-face {\n font-family: 'Open Sans';\n font-style: italic;\n font-weight: 600;\n src: url(https://fonts.gstatic.com/s/opensans/v18/memnYaGs126MiZpBA-UFUKXGUdhmIqOjjg.woff2)\n format('woff2');\n unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--appTitle {\n color: #fff;\n font-family: 'Open Sans', sans-serif;\n font-weight: 600;\n font-style: italic;\n font-size: 14px;\n position: relative;\n left: 16px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--item {\n display: flex;\n color: white;\n font-size: 13px;\n cursor: pointer;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber {\n margin-left: 10px;\n margin-right: 7px;\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber > div {\n margin-left: 7px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault {\n color: white;\n cursor: default;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable,\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable {\n background-color: white;\n border-radius: 20px;\n margin: 5px;\n padding: 0px 10px;\n height: 25px;\n font-weight: bold;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--light {\n border: 1px solid #1d5ab9;\n justify-content: flex-start;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightDefault {\n color: black;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneOffline,\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightAvailable {\n background-color: white;\n border-radius: 20px;\n display: flex;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightAvailable {\n color: green;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--lightAvailable i {\n color: green;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneOffline {\n color: red;\n margin: 5px 0px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneOffline svg {\n margin-right: 5px;\n margin-left: 5px;\n width: 24px;\n height: 24px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--SpinnerWrapper {\n margin-left: 5px;\n display: inline-flex;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault i {\n font-size: 16px;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable i {\n line-height: unset;\n font-size: 16px;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable {\n color: green;\n}\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault i,\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable i,\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable svg {\n margin-right: 5px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable {\n color: red;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--userMenu {\n margin-left: 10px !important;\n margin-right: 5px !important;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag {\n margin-left: 10px !important;\n margin-right: 10px !important;\n display: flex;\n align-items: center;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag > div {\n margin-left: 7px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--feedback {\n margin: 0 !important;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--overflowItems {\n width: 100%;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--mihelp_button {\n cursor: pointer;\n position: relative;\n top: 2px;\n margin-left: 10px;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--mihelp_button i {\n color: #fff;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetContainer {\n position: absolute;\n display: flex;\n height: 100vh;\n width: 100vw;\n bottom: 0;\n z-index: 10000;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHide {\n background-color: rgba(0,0,0,.5);\n width: 100%;\n}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--st0{fill:#0075E6;}\n.utilities_ops-app-frame_AppBarComponent_AppBar--st1{fill:#6A819C;}\n.utilities_ops-app-frame_AppBarComponent_AppBar--st2{fill:#FFFFFF;}\n\n.utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHideButton {\n display: flex;\n align-items: center;\n justify-content: center;\n position: absolute;\n top: 2px;\n right: 402px;\n height: 38px;\n width: 38px;\n background-color: white;\n z-index: 11000;\n cursor: pointer;\n}\n\n@media only screen and (max-width: 1024px) {\n .utilities_ops-app-frame_AppBarComponent_AppBar--phoneDefault i,\n .utilities_ops-app-frame_AppBarComponent_AppBar--phoneAvailable i,\n .utilities_ops-app-frame_AppBarComponent_AppBar--phoneUnvailable svg {\n margin-right: 2px;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber {\n margin-left: 5px;\n margin-right: 2px;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--yardNumber > div {\n margin-left: 2px;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--userMenu {\n margin-left: 3px !important;\n margin-right: 3px !important;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag {\n margin-left: 3px !important;\n margin-right: 3px !important;\n }\n\n .utilities_ops-app-frame_AppBarComponent_AppBar--roleAndFlag > div {\n margin-left: 2px;\n }\n}\n";
|
|
22154
22200
|
styleInject(css_248z$b);
|
|
22155
22201
|
|
|
22156
22202
|
var LogOutMenu = function LogOutMenu(_ref) {
|
|
@@ -22264,7 +22310,8 @@ var _styleModuleImportMap$5 = {
|
|
|
22264
22310
|
"ideaWidgetHide": "utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHide",
|
|
22265
22311
|
"st0": "utilities_ops-app-frame_AppBarComponent_AppBar--st0",
|
|
22266
22312
|
"st1": "utilities_ops-app-frame_AppBarComponent_AppBar--st1",
|
|
22267
|
-
"st2": "utilities_ops-app-frame_AppBarComponent_AppBar--st2"
|
|
22313
|
+
"st2": "utilities_ops-app-frame_AppBarComponent_AppBar--st2",
|
|
22314
|
+
"ideaWidgetHideButton": "utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHideButton"
|
|
22268
22315
|
}
|
|
22269
22316
|
};
|
|
22270
22317
|
|
|
@@ -23484,7 +23531,7 @@ var saveSettings$1 = function saveSettings(self) {
|
|
|
23484
23531
|
}
|
|
23485
23532
|
}
|
|
23486
23533
|
});
|
|
23487
|
-
_self$state = self.state, selectedYard = _self$state.selectedYardNumber, selectedRole = _self$state.selectedRole, selectedLanguage = _self$state.selectedLanguage, selectedCurrency = _self$state.selectedCurrency, roles = _self$state.roles;
|
|
23534
|
+
_self$state = self.state, selectedYard = _self$state.selectedYardNumber, selectedRole = _self$state.selectedRole, selectedLanguage = _self$state.selectedLanguage, selectedCurrency = _self$state.selectedCurrency, roles = _self$state.roles, _self$state.selectedRoleOption;
|
|
23488
23535
|
roleOptionFromState = roles.find(function (roleOption) {
|
|
23489
23536
|
return frontEndUtils.regex.beautifyRoleText(roleOption.roleName) === selectedRole;
|
|
23490
23537
|
}) || head$1(roles);
|
|
@@ -24838,7 +24885,8 @@ var _styleModuleImportMap$4 = {
|
|
|
24838
24885
|
"ideaWidgetHide": "utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHide",
|
|
24839
24886
|
"st0": "utilities_ops-app-frame_AppBarComponent_AppBar--st0",
|
|
24840
24887
|
"st1": "utilities_ops-app-frame_AppBarComponent_AppBar--st1",
|
|
24841
|
-
"st2": "utilities_ops-app-frame_AppBarComponent_AppBar--st2"
|
|
24888
|
+
"st2": "utilities_ops-app-frame_AppBarComponent_AppBar--st2",
|
|
24889
|
+
"ideaWidgetHideButton": "utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHideButton"
|
|
24842
24890
|
}
|
|
24843
24891
|
};
|
|
24844
24892
|
|
|
@@ -25184,7 +25232,8 @@ var generateAppBarElements = function generateAppBarElements(props, showCallout)
|
|
|
25184
25232
|
|
|
25185
25233
|
var AppBar$1 = function AppBar(props) {
|
|
25186
25234
|
var coreAppConfig = storage.getLocalItem('opsportal-core:config');
|
|
25187
|
-
var enableNewToolkitFeatures = coreAppConfig.enableNewToolkitFeatures
|
|
25235
|
+
var enableNewToolkitFeatures = coreAppConfig.enableNewToolkitFeatures,
|
|
25236
|
+
ideaNoteUri = coreAppConfig.ideaNoteUri;
|
|
25188
25237
|
|
|
25189
25238
|
var _useState = React.useState(false),
|
|
25190
25239
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -25206,24 +25255,77 @@ var AppBar$1 = function AppBar(props) {
|
|
|
25206
25255
|
ideaNoteVisible = _useState8[0],
|
|
25207
25256
|
setIdeaNoteVisible = _useState8[1];
|
|
25208
25257
|
|
|
25258
|
+
var _useState9 = React.useState(null),
|
|
25259
|
+
_useState10 = _slicedToArray(_useState9, 2),
|
|
25260
|
+
ideaNoteToken = _useState10[0],
|
|
25261
|
+
setIdeaNoteToken = _useState10[1];
|
|
25262
|
+
|
|
25209
25263
|
var isLoggedOn = props.isLoggedOn,
|
|
25210
25264
|
moduleName = props.moduleName,
|
|
25211
25265
|
forceUpdate = props.forceUpdate,
|
|
25212
25266
|
onSettingsSaved = props.onSettingsSaved,
|
|
25213
25267
|
showTitle = props.showTitle,
|
|
25214
|
-
title = props.title
|
|
25268
|
+
title = props.title,
|
|
25269
|
+
getInnovationHubToken = props.getInnovationHubToken;
|
|
25215
25270
|
|
|
25216
25271
|
var _useWindowSize = useWindowSize(),
|
|
25217
25272
|
width = _useWindowSize.width;
|
|
25218
25273
|
|
|
25219
|
-
var
|
|
25220
|
-
|
|
25221
|
-
count =
|
|
25222
|
-
setCount =
|
|
25274
|
+
var _useState11 = React.useState(0),
|
|
25275
|
+
_useState12 = _slicedToArray(_useState11, 2),
|
|
25276
|
+
count = _useState12[0],
|
|
25277
|
+
setCount = _useState12[1];
|
|
25223
25278
|
|
|
25224
25279
|
React.useLayoutEffect(function () {
|
|
25225
25280
|
setCount(count + 1);
|
|
25226
25281
|
}, [width]);
|
|
25282
|
+
React.useEffect(function () {
|
|
25283
|
+
var getToken =
|
|
25284
|
+
/*#__PURE__*/
|
|
25285
|
+
function () {
|
|
25286
|
+
var _ref3 = _asyncToGenerator(
|
|
25287
|
+
/*#__PURE__*/
|
|
25288
|
+
regenerator.mark(function _callee() {
|
|
25289
|
+
var token;
|
|
25290
|
+
return regenerator.wrap(function _callee$(_context) {
|
|
25291
|
+
while (1) {
|
|
25292
|
+
switch (_context.prev = _context.next) {
|
|
25293
|
+
case 0:
|
|
25294
|
+
_context.prev = 0;
|
|
25295
|
+
_context.next = 3;
|
|
25296
|
+
return getInnovationHubToken();
|
|
25297
|
+
|
|
25298
|
+
case 3:
|
|
25299
|
+
token = _context.sent;
|
|
25300
|
+
setIdeaNoteToken(token);
|
|
25301
|
+
_context.next = 11;
|
|
25302
|
+
break;
|
|
25303
|
+
|
|
25304
|
+
case 7:
|
|
25305
|
+
_context.prev = 7;
|
|
25306
|
+
_context.t0 = _context["catch"](0);
|
|
25307
|
+
setIdeaNoteToken("TOKEN_ERROR");
|
|
25308
|
+
console.log(_context.t0);
|
|
25309
|
+
|
|
25310
|
+
case 11:
|
|
25311
|
+
case "end":
|
|
25312
|
+
return _context.stop();
|
|
25313
|
+
}
|
|
25314
|
+
}
|
|
25315
|
+
}, _callee, null, [[0, 7]]);
|
|
25316
|
+
}));
|
|
25317
|
+
|
|
25318
|
+
return function getToken() {
|
|
25319
|
+
return _ref3.apply(this, arguments);
|
|
25320
|
+
};
|
|
25321
|
+
}();
|
|
25322
|
+
|
|
25323
|
+
if (ideaNoteVisible) {
|
|
25324
|
+
getToken();
|
|
25325
|
+
} else {
|
|
25326
|
+
setIdeaNoteToken(null);
|
|
25327
|
+
}
|
|
25328
|
+
}, [ideaNoteVisible]);
|
|
25227
25329
|
|
|
25228
25330
|
var onSave = function onSave(oldSettings, newSettings) {
|
|
25229
25331
|
setCalloutTarget(null);
|
|
@@ -25317,7 +25419,15 @@ var AppBar$1 = function AppBar(props) {
|
|
|
25317
25419
|
onClick: function onClick() {
|
|
25318
25420
|
return setIdeaNoteVisible(false);
|
|
25319
25421
|
}
|
|
25320
|
-
}
|
|
25422
|
+
}, React__default["default"].createElement("div", {
|
|
25423
|
+
className: "utilities_ops-app-frame_AppBarComponent_AppBar--ideaWidgetHideButton"
|
|
25424
|
+
}, React__default["default"].createElement(coreComponents.Icon, {
|
|
25425
|
+
name: "close",
|
|
25426
|
+
variant: "material",
|
|
25427
|
+
style: {
|
|
25428
|
+
fontSize: '30px'
|
|
25429
|
+
}
|
|
25430
|
+
}))), ideaNoteToken ? React__default["default"].createElement("iframe", {
|
|
25321
25431
|
allowfullscreen: true,
|
|
25322
25432
|
name: "idea-widget-frame",
|
|
25323
25433
|
title: "Idea Collection Widget",
|
|
@@ -25330,7 +25440,17 @@ var AppBar$1 = function AppBar(props) {
|
|
|
25330
25440
|
maxWidth: '443px',
|
|
25331
25441
|
backgroundColor: 'white'
|
|
25332
25442
|
},
|
|
25333
|
-
src: "
|
|
25443
|
+
src: ideaNoteToken === "TOKEN_ERROR" ? ideaNoteUri : "".concat(ideaNoteUri, "&auth.jwt=").concat(ideaNoteToken)
|
|
25444
|
+
}) : React__default["default"].createElement("div", {
|
|
25445
|
+
style: {
|
|
25446
|
+
position: 'absolute',
|
|
25447
|
+
bottom: '0',
|
|
25448
|
+
right: '0',
|
|
25449
|
+
height: '100vh',
|
|
25450
|
+
width: '90vw',
|
|
25451
|
+
maxWidth: '443px',
|
|
25452
|
+
backgroundColor: 'white'
|
|
25453
|
+
}
|
|
25334
25454
|
})));
|
|
25335
25455
|
};
|
|
25336
25456
|
AppBar$1.defaultProps = {
|
|
@@ -30490,10 +30610,7 @@ var AppBar = function AppBar(_ref) {
|
|
|
30490
30610
|
|
|
30491
30611
|
var handleHelpClick = function handleHelpClick() {
|
|
30492
30612
|
var country = storage$1.getSessionItem('dashboard', 'selectedCountryA3code');
|
|
30493
|
-
|
|
30494
|
-
domain: '.copart.com'
|
|
30495
|
-
});
|
|
30496
|
-
var uri = mihelpAppPath ? "".concat(coreAppConfig.mihelpUri, "/applications/").concat(mihelpAppPath) : coreAppConfig.mihelpUri;
|
|
30613
|
+
var uri = mihelpAppPath ? "".concat(coreAppConfig.mihelpUri, "/applications/").concat(mihelpAppPath, "?re=").concat(country.toLowerCase()) : "".concat(coreAppConfig.mihelpUri, "?re=").concat(country.toLowerCase());
|
|
30497
30614
|
window.open(uri, "_blank");
|
|
30498
30615
|
};
|
|
30499
30616
|
|
|
@@ -30554,6 +30671,7 @@ var AppBar = function AppBar(_ref) {
|
|
|
30554
30671
|
isMihelpEnabled: isMihelpEnabled,
|
|
30555
30672
|
isIdeaNoteEnabled: isIdeaNoteEnabled,
|
|
30556
30673
|
sendFeedback: fetcher.sendFeedback,
|
|
30674
|
+
getInnovationHubToken: fetcher.getInnovationHubToken,
|
|
30557
30675
|
feedbackConfig: feedbackConfig(),
|
|
30558
30676
|
stack: process.env.STACK,
|
|
30559
30677
|
phoneStatusObject: ringcentral,
|
|
@@ -34514,7 +34632,7 @@ var core = createCommonjsModule(function (module, exports) {
|
|
|
34514
34632
|
(function (root, factory) {
|
|
34515
34633
|
{
|
|
34516
34634
|
// CommonJS
|
|
34517
|
-
module.exports =
|
|
34635
|
+
module.exports = factory();
|
|
34518
34636
|
}
|
|
34519
34637
|
})(commonjsGlobal, function () {
|
|
34520
34638
|
/*globals window, global, require*/
|
|
@@ -35292,7 +35410,7 @@ var x64Core = createCommonjsModule(function (module, exports) {
|
|
|
35292
35410
|
(function (root, factory) {
|
|
35293
35411
|
{
|
|
35294
35412
|
// CommonJS
|
|
35295
|
-
module.exports =
|
|
35413
|
+
module.exports = factory(core);
|
|
35296
35414
|
}
|
|
35297
35415
|
})(commonjsGlobal, function (CryptoJS) {
|
|
35298
35416
|
(function (undefined$1) {
|
|
@@ -35581,7 +35699,7 @@ var libTypedarrays = createCommonjsModule(function (module, exports) {
|
|
|
35581
35699
|
(function (root, factory) {
|
|
35582
35700
|
{
|
|
35583
35701
|
// CommonJS
|
|
35584
|
-
module.exports =
|
|
35702
|
+
module.exports = factory(core);
|
|
35585
35703
|
}
|
|
35586
35704
|
})(commonjsGlobal, function (CryptoJS) {
|
|
35587
35705
|
(function () {
|
|
@@ -35639,7 +35757,7 @@ var encUtf16 = createCommonjsModule(function (module, exports) {
|
|
|
35639
35757
|
(function (root, factory) {
|
|
35640
35758
|
{
|
|
35641
35759
|
// CommonJS
|
|
35642
|
-
module.exports =
|
|
35760
|
+
module.exports = factory(core);
|
|
35643
35761
|
}
|
|
35644
35762
|
})(commonjsGlobal, function (CryptoJS) {
|
|
35645
35763
|
(function () {
|
|
@@ -35781,7 +35899,7 @@ var encBase64 = createCommonjsModule(function (module, exports) {
|
|
|
35781
35899
|
(function (root, factory) {
|
|
35782
35900
|
{
|
|
35783
35901
|
// CommonJS
|
|
35784
|
-
module.exports =
|
|
35902
|
+
module.exports = factory(core);
|
|
35785
35903
|
}
|
|
35786
35904
|
})(commonjsGlobal, function (CryptoJS) {
|
|
35787
35905
|
(function () {
|
|
@@ -35912,7 +36030,7 @@ var encBase64url = createCommonjsModule(function (module, exports) {
|
|
|
35912
36030
|
(function (root, factory) {
|
|
35913
36031
|
{
|
|
35914
36032
|
// CommonJS
|
|
35915
|
-
module.exports =
|
|
36033
|
+
module.exports = factory(core);
|
|
35916
36034
|
}
|
|
35917
36035
|
})(commonjsGlobal, function (CryptoJS) {
|
|
35918
36036
|
(function () {
|
|
@@ -36048,7 +36166,7 @@ var md5 = createCommonjsModule(function (module, exports) {
|
|
|
36048
36166
|
(function (root, factory) {
|
|
36049
36167
|
{
|
|
36050
36168
|
// CommonJS
|
|
36051
|
-
module.exports =
|
|
36169
|
+
module.exports = factory(core);
|
|
36052
36170
|
}
|
|
36053
36171
|
})(commonjsGlobal, function (CryptoJS) {
|
|
36054
36172
|
(function (Math) {
|
|
@@ -36277,7 +36395,7 @@ var sha1$1 = createCommonjsModule(function (module, exports) {
|
|
|
36277
36395
|
(function (root, factory) {
|
|
36278
36396
|
{
|
|
36279
36397
|
// CommonJS
|
|
36280
|
-
module.exports =
|
|
36398
|
+
module.exports = factory(core);
|
|
36281
36399
|
}
|
|
36282
36400
|
})(commonjsGlobal, function (CryptoJS) {
|
|
36283
36401
|
(function () {
|
|
@@ -36409,7 +36527,7 @@ var sha256 = createCommonjsModule(function (module, exports) {
|
|
|
36409
36527
|
(function (root, factory) {
|
|
36410
36528
|
{
|
|
36411
36529
|
// CommonJS
|
|
36412
|
-
module.exports =
|
|
36530
|
+
module.exports = factory(core);
|
|
36413
36531
|
}
|
|
36414
36532
|
})(commonjsGlobal, function (CryptoJS) {
|
|
36415
36533
|
(function (Math) {
|
|
@@ -36583,7 +36701,7 @@ var sha224 = createCommonjsModule(function (module, exports) {
|
|
|
36583
36701
|
(function (root, factory, undef) {
|
|
36584
36702
|
{
|
|
36585
36703
|
// CommonJS
|
|
36586
|
-
module.exports =
|
|
36704
|
+
module.exports = factory(core, sha256);
|
|
36587
36705
|
}
|
|
36588
36706
|
})(commonjsGlobal, function (CryptoJS) {
|
|
36589
36707
|
(function () {
|
|
@@ -36651,7 +36769,7 @@ var sha512 = createCommonjsModule(function (module, exports) {
|
|
|
36651
36769
|
(function (root, factory, undef) {
|
|
36652
36770
|
{
|
|
36653
36771
|
// CommonJS
|
|
36654
|
-
module.exports =
|
|
36772
|
+
module.exports = factory(core, x64Core);
|
|
36655
36773
|
}
|
|
36656
36774
|
})(commonjsGlobal, function (CryptoJS) {
|
|
36657
36775
|
(function () {
|
|
@@ -36901,7 +37019,7 @@ var sha384 = createCommonjsModule(function (module, exports) {
|
|
|
36901
37019
|
(function (root, factory, undef) {
|
|
36902
37020
|
{
|
|
36903
37021
|
// CommonJS
|
|
36904
|
-
module.exports =
|
|
37022
|
+
module.exports = factory(core, x64Core, sha512);
|
|
36905
37023
|
}
|
|
36906
37024
|
})(commonjsGlobal, function (CryptoJS) {
|
|
36907
37025
|
(function () {
|
|
@@ -36970,7 +37088,7 @@ var sha3 = createCommonjsModule(function (module, exports) {
|
|
|
36970
37088
|
(function (root, factory, undef) {
|
|
36971
37089
|
{
|
|
36972
37090
|
// CommonJS
|
|
36973
|
-
module.exports =
|
|
37091
|
+
module.exports = factory(core, x64Core);
|
|
36974
37092
|
}
|
|
36975
37093
|
})(commonjsGlobal, function (CryptoJS) {
|
|
36976
37094
|
(function (Math) {
|
|
@@ -37274,7 +37392,7 @@ var ripemd160 = createCommonjsModule(function (module, exports) {
|
|
|
37274
37392
|
(function (root, factory) {
|
|
37275
37393
|
{
|
|
37276
37394
|
// CommonJS
|
|
37277
|
-
module.exports =
|
|
37395
|
+
module.exports = factory(core);
|
|
37278
37396
|
}
|
|
37279
37397
|
})(commonjsGlobal, function (CryptoJS) {
|
|
37280
37398
|
/** @preserve
|
|
@@ -37499,7 +37617,7 @@ var hmac = createCommonjsModule(function (module, exports) {
|
|
|
37499
37617
|
(function (root, factory) {
|
|
37500
37618
|
{
|
|
37501
37619
|
// CommonJS
|
|
37502
|
-
module.exports =
|
|
37620
|
+
module.exports = factory(core);
|
|
37503
37621
|
}
|
|
37504
37622
|
})(commonjsGlobal, function (CryptoJS) {
|
|
37505
37623
|
(function () {
|
|
@@ -37627,7 +37745,7 @@ var pbkdf2 = createCommonjsModule(function (module, exports) {
|
|
|
37627
37745
|
(function (root, factory, undef) {
|
|
37628
37746
|
{
|
|
37629
37747
|
// CommonJS
|
|
37630
|
-
module.exports =
|
|
37748
|
+
module.exports = factory(core, sha1$1, hmac);
|
|
37631
37749
|
}
|
|
37632
37750
|
})(commonjsGlobal, function (CryptoJS) {
|
|
37633
37751
|
(function () {
|
|
@@ -37758,7 +37876,7 @@ var evpkdf = createCommonjsModule(function (module, exports) {
|
|
|
37758
37876
|
(function (root, factory, undef) {
|
|
37759
37877
|
{
|
|
37760
37878
|
// CommonJS
|
|
37761
|
-
module.exports =
|
|
37879
|
+
module.exports = factory(core, sha1$1, hmac);
|
|
37762
37880
|
}
|
|
37763
37881
|
})(commonjsGlobal, function (CryptoJS) {
|
|
37764
37882
|
(function () {
|
|
@@ -37880,7 +37998,7 @@ var cipherCore = createCommonjsModule(function (module, exports) {
|
|
|
37880
37998
|
(function (root, factory, undef) {
|
|
37881
37999
|
{
|
|
37882
38000
|
// CommonJS
|
|
37883
|
-
module.exports =
|
|
38001
|
+
module.exports = factory(core, evpkdf);
|
|
37884
38002
|
}
|
|
37885
38003
|
})(commonjsGlobal, function (CryptoJS) {
|
|
37886
38004
|
/**
|
|
@@ -38722,7 +38840,7 @@ var modeCfb = createCommonjsModule(function (module, exports) {
|
|
|
38722
38840
|
(function (root, factory, undef) {
|
|
38723
38841
|
{
|
|
38724
38842
|
// CommonJS
|
|
38725
|
-
module.exports =
|
|
38843
|
+
module.exports = factory(core, cipherCore);
|
|
38726
38844
|
}
|
|
38727
38845
|
})(commonjsGlobal, function (CryptoJS) {
|
|
38728
38846
|
/**
|
|
@@ -38785,7 +38903,7 @@ var modeCtr = createCommonjsModule(function (module, exports) {
|
|
|
38785
38903
|
(function (root, factory, undef) {
|
|
38786
38904
|
{
|
|
38787
38905
|
// CommonJS
|
|
38788
|
-
module.exports =
|
|
38906
|
+
module.exports = factory(core, cipherCore);
|
|
38789
38907
|
}
|
|
38790
38908
|
})(commonjsGlobal, function (CryptoJS) {
|
|
38791
38909
|
/**
|
|
@@ -38830,7 +38948,7 @@ var modeCtrGladman = createCommonjsModule(function (module, exports) {
|
|
|
38830
38948
|
(function (root, factory, undef) {
|
|
38831
38949
|
{
|
|
38832
38950
|
// CommonJS
|
|
38833
|
-
module.exports =
|
|
38951
|
+
module.exports = factory(core, cipherCore);
|
|
38834
38952
|
}
|
|
38835
38953
|
})(commonjsGlobal, function (CryptoJS) {
|
|
38836
38954
|
/** @preserve
|
|
@@ -38923,7 +39041,7 @@ var modeOfb = createCommonjsModule(function (module, exports) {
|
|
|
38923
39041
|
(function (root, factory, undef) {
|
|
38924
39042
|
{
|
|
38925
39043
|
// CommonJS
|
|
38926
|
-
module.exports =
|
|
39044
|
+
module.exports = factory(core, cipherCore);
|
|
38927
39045
|
}
|
|
38928
39046
|
})(commonjsGlobal, function (CryptoJS) {
|
|
38929
39047
|
/**
|
|
@@ -38965,7 +39083,7 @@ var modeEcb = createCommonjsModule(function (module, exports) {
|
|
|
38965
39083
|
(function (root, factory, undef) {
|
|
38966
39084
|
{
|
|
38967
39085
|
// CommonJS
|
|
38968
|
-
module.exports =
|
|
39086
|
+
module.exports = factory(core, cipherCore);
|
|
38969
39087
|
}
|
|
38970
39088
|
})(commonjsGlobal, function (CryptoJS) {
|
|
38971
39089
|
/**
|
|
@@ -38995,7 +39113,7 @@ var padAnsix923 = createCommonjsModule(function (module, exports) {
|
|
|
38995
39113
|
(function (root, factory, undef) {
|
|
38996
39114
|
{
|
|
38997
39115
|
// CommonJS
|
|
38998
|
-
module.exports =
|
|
39116
|
+
module.exports = factory(core, cipherCore);
|
|
38999
39117
|
}
|
|
39000
39118
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39001
39119
|
/**
|
|
@@ -39031,7 +39149,7 @@ var padIso10126 = createCommonjsModule(function (module, exports) {
|
|
|
39031
39149
|
(function (root, factory, undef) {
|
|
39032
39150
|
{
|
|
39033
39151
|
// CommonJS
|
|
39034
|
-
module.exports =
|
|
39152
|
+
module.exports = factory(core, cipherCore);
|
|
39035
39153
|
}
|
|
39036
39154
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39037
39155
|
/**
|
|
@@ -39062,7 +39180,7 @@ var padIso97971 = createCommonjsModule(function (module, exports) {
|
|
|
39062
39180
|
(function (root, factory, undef) {
|
|
39063
39181
|
{
|
|
39064
39182
|
// CommonJS
|
|
39065
|
-
module.exports =
|
|
39183
|
+
module.exports = factory(core, cipherCore);
|
|
39066
39184
|
}
|
|
39067
39185
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39068
39186
|
/**
|
|
@@ -39091,7 +39209,7 @@ var padZeropadding = createCommonjsModule(function (module, exports) {
|
|
|
39091
39209
|
(function (root, factory, undef) {
|
|
39092
39210
|
{
|
|
39093
39211
|
// CommonJS
|
|
39094
|
-
module.exports =
|
|
39212
|
+
module.exports = factory(core, cipherCore);
|
|
39095
39213
|
}
|
|
39096
39214
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39097
39215
|
/**
|
|
@@ -39128,7 +39246,7 @@ var padNopadding = createCommonjsModule(function (module, exports) {
|
|
|
39128
39246
|
(function (root, factory, undef) {
|
|
39129
39247
|
{
|
|
39130
39248
|
// CommonJS
|
|
39131
|
-
module.exports =
|
|
39249
|
+
module.exports = factory(core, cipherCore);
|
|
39132
39250
|
}
|
|
39133
39251
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39134
39252
|
/**
|
|
@@ -39147,7 +39265,7 @@ var formatHex = createCommonjsModule(function (module, exports) {
|
|
|
39147
39265
|
(function (root, factory, undef) {
|
|
39148
39266
|
{
|
|
39149
39267
|
// CommonJS
|
|
39150
|
-
module.exports =
|
|
39268
|
+
module.exports = factory(core, cipherCore);
|
|
39151
39269
|
}
|
|
39152
39270
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39153
39271
|
(function (undefined$1) {
|
|
@@ -39207,7 +39325,7 @@ var aes = createCommonjsModule(function (module, exports) {
|
|
|
39207
39325
|
(function (root, factory, undef) {
|
|
39208
39326
|
{
|
|
39209
39327
|
// CommonJS
|
|
39210
|
-
module.exports =
|
|
39328
|
+
module.exports = factory(core, encBase64, md5, evpkdf, cipherCore);
|
|
39211
39329
|
}
|
|
39212
39330
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39213
39331
|
(function () {
|
|
@@ -39416,7 +39534,7 @@ var tripledes = createCommonjsModule(function (module, exports) {
|
|
|
39416
39534
|
(function (root, factory, undef) {
|
|
39417
39535
|
{
|
|
39418
39536
|
// CommonJS
|
|
39419
|
-
module.exports =
|
|
39537
|
+
module.exports = factory(core, encBase64, md5, evpkdf, cipherCore);
|
|
39420
39538
|
}
|
|
39421
39539
|
})(commonjsGlobal, function (CryptoJS) {
|
|
39422
39540
|
(function () {
|
|
@@ -40144,7 +40262,7 @@ var rc4 = createCommonjsModule(function (module, exports) {
|
|
|
40144
40262
|
(function (root, factory, undef) {
|
|
40145
40263
|
{
|
|
40146
40264
|
// CommonJS
|
|
40147
|
-
module.exports =
|
|
40265
|
+
module.exports = factory(core, encBase64, md5, evpkdf, cipherCore);
|
|
40148
40266
|
}
|
|
40149
40267
|
})(commonjsGlobal, function (CryptoJS) {
|
|
40150
40268
|
(function () {
|
|
@@ -40268,7 +40386,7 @@ var rabbit = createCommonjsModule(function (module, exports) {
|
|
|
40268
40386
|
(function (root, factory, undef) {
|
|
40269
40387
|
{
|
|
40270
40388
|
// CommonJS
|
|
40271
|
-
module.exports =
|
|
40389
|
+
module.exports = factory(core, encBase64, md5, evpkdf, cipherCore);
|
|
40272
40390
|
}
|
|
40273
40391
|
})(commonjsGlobal, function (CryptoJS) {
|
|
40274
40392
|
(function () {
|
|
@@ -40423,7 +40541,7 @@ var rabbitLegacy = createCommonjsModule(function (module, exports) {
|
|
|
40423
40541
|
(function (root, factory, undef) {
|
|
40424
40542
|
{
|
|
40425
40543
|
// CommonJS
|
|
40426
|
-
module.exports =
|
|
40544
|
+
module.exports = factory(core, encBase64, md5, evpkdf, cipherCore);
|
|
40427
40545
|
}
|
|
40428
40546
|
})(commonjsGlobal, function (CryptoJS) {
|
|
40429
40547
|
(function () {
|
|
@@ -40577,7 +40695,7 @@ var cryptoJs = createCommonjsModule(function (module, exports) {
|
|
|
40577
40695
|
(function (root, factory, undef) {
|
|
40578
40696
|
{
|
|
40579
40697
|
// CommonJS
|
|
40580
|
-
module.exports =
|
|
40698
|
+
module.exports = factory(core, x64Core, libTypedarrays, encUtf16, encBase64, encBase64url, md5, sha1$1, sha256, sha224, sha512, sha384, sha3, ripemd160, hmac, pbkdf2, evpkdf, cipherCore, modeCfb, modeCtr, modeCtrGladman, modeOfb, modeEcb, padAnsix923, padIso10126, padIso97971, padZeropadding, padNopadding, formatHex, aes, tripledes, rc4, rabbit, rabbitLegacy);
|
|
40581
40699
|
}
|
|
40582
40700
|
})(commonjsGlobal, function (CryptoJS) {
|
|
40583
40701
|
return CryptoJS;
|