@copart/ops-tool-kit 1.8.1-alpha.7 → 1.8.1-alpha.8
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/changelog.md +40 -0
- package/dist/ops-tool-kit.js +3 -2
- package/dist/ops-tool-kit.js.map +1 -1
- package/package.json +1 -1
package/changelog.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
### 0.5.44
|
|
2
|
+
|
|
3
|
+
- Fixed missing yardNumber in AppBar.
|
|
4
|
+
|
|
5
|
+
### 0.5.43
|
|
6
|
+
|
|
7
|
+
- Added support for Seller tile.
|
|
8
|
+
|
|
9
|
+
### 0.5.42
|
|
10
|
+
|
|
11
|
+
- Fixed issues with "Home" breadcrumb rendering when logged out.
|
|
12
|
+
- Removed unused files and functions, cleaned storage utility.
|
|
13
|
+
|
|
14
|
+
### 0.5.1
|
|
15
|
+
|
|
16
|
+
- Changes to fetcher.extend to unblock ProQuote.
|
|
17
|
+
|
|
18
|
+
### 0.5.0
|
|
19
|
+
|
|
20
|
+
- Added feedback logic to fetcher.
|
|
21
|
+
|
|
22
|
+
### 0.4.0
|
|
23
|
+
|
|
24
|
+
- Added fetcher handling for `invalid
|
|
25
|
+
|
|
26
|
+
### 0.3.16
|
|
27
|
+
|
|
28
|
+
- Updated solr handling in fetcher.
|
|
29
|
+
|
|
30
|
+
### 0.3.15
|
|
31
|
+
|
|
32
|
+
- Fixed breadcrumb styling.
|
|
33
|
+
|
|
34
|
+
### 0.3.12
|
|
35
|
+
|
|
36
|
+
- Fixed Home breadcrumb.
|
|
37
|
+
|
|
38
|
+
### 0.0.53
|
|
39
|
+
|
|
40
|
+
- Added getters for convenience.
|
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$f = "@copart/ops-tool-kit";
|
|
36
|
-
const version$5 = "1.8.1-alpha.
|
|
36
|
+
const version$5 = "1.8.1-alpha.8";
|
|
37
37
|
const main$1 = "dist/ops-tool-kit.js";
|
|
38
38
|
const style = "dist/ops-tool-kit.css";
|
|
39
39
|
const files = [
|
|
@@ -35511,6 +35511,7 @@ function filterOutExpiredNotifications(notifications) {
|
|
|
35511
35511
|
function filterOutNotificationForOtherAppsFirebase(notifications) {
|
|
35512
35512
|
var currentApp = window.location.pathname === '/' ? 'opsportal-core' : window.location.pathname.split('/')[1];
|
|
35513
35513
|
return filter$1(function (notification) {
|
|
35514
|
+
if (!notification.apps || !notification.apps.length) return true;
|
|
35514
35515
|
return includes$1(currentApp, propOr$1([], 'apps', notification));
|
|
35515
35516
|
})(notifications);
|
|
35516
35517
|
}
|
|
@@ -35585,7 +35586,7 @@ function filterOutNotificationByAudience(notifications) {
|
|
|
35585
35586
|
return usersList.includes(userEmail);
|
|
35586
35587
|
|
|
35587
35588
|
case 'groups':
|
|
35588
|
-
var groups = pathOr$1([], ['groups'])(
|
|
35589
|
+
var groups = pathOr$1([], ['groups'])(target);
|
|
35589
35590
|
return groups.some(function (group) {
|
|
35590
35591
|
var users = pathOr$1([], ['users'])(group);
|
|
35591
35592
|
return users.includes(userEmail) || users.includes('*');
|