@copart/ops-tool-kit 1.12.13 → 1.12.14
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 +54 -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,54 @@
|
|
|
1
|
+
### 1.12.10
|
|
2
|
+
|
|
3
|
+
- Added support for user status visibility by app via `storage.coreConfig?.checkUserStatusByApp` flag and `showUserStatus` property in app tile configurations.
|
|
4
|
+
|
|
5
|
+
### 1.12.9
|
|
6
|
+
|
|
7
|
+
- Added support for hiding user status functionality via `storage.coreConfig?.hideUserStatus` config flag. When enabled, user status data is not loaded and status indicators are not displayed in LogOutMenu and ProfileDetails components.
|
|
8
|
+
|
|
9
|
+
### 1.12.8
|
|
10
|
+
|
|
11
|
+
- Added user availability status circle indicator to LogOutMenu component (similar to Teams availability status display).
|
|
12
|
+
- Enhanced ProfileDetails to automatically add missing currentUserStatus to availableStatuses with color #BC2F32 and disabled flag when status is not in the available list.
|
|
13
|
+
- Status circle indicator only displays when status system is active (availableStatuses has items).
|
|
14
|
+
|
|
15
|
+
### 0.5.44
|
|
16
|
+
|
|
17
|
+
- Fixed missing yardNumber in AppBar.
|
|
18
|
+
|
|
19
|
+
### 0.5.43
|
|
20
|
+
|
|
21
|
+
- Added support for Seller tile.
|
|
22
|
+
|
|
23
|
+
### 0.5.42
|
|
24
|
+
|
|
25
|
+
- Fixed issues with "Home" breadcrumb rendering when logged out.
|
|
26
|
+
- Removed unused files and functions, cleaned storage utility.
|
|
27
|
+
|
|
28
|
+
### 0.5.1
|
|
29
|
+
|
|
30
|
+
- Changes to fetcher.extend to unblock ProQuote.
|
|
31
|
+
|
|
32
|
+
### 0.5.0
|
|
33
|
+
|
|
34
|
+
- Added feedback logic to fetcher.
|
|
35
|
+
|
|
36
|
+
### 0.4.0
|
|
37
|
+
|
|
38
|
+
- Added fetcher handling for `invalid
|
|
39
|
+
|
|
40
|
+
### 0.3.16
|
|
41
|
+
|
|
42
|
+
- Updated solr handling in fetcher.
|
|
43
|
+
|
|
44
|
+
### 0.3.15
|
|
45
|
+
|
|
46
|
+
- Fixed breadcrumb styling.
|
|
47
|
+
|
|
48
|
+
### 0.3.12
|
|
49
|
+
|
|
50
|
+
- Fixed Home breadcrumb.
|
|
51
|
+
|
|
52
|
+
### 0.0.53
|
|
53
|
+
|
|
54
|
+
- Added getters for convenience.
|
package/dist/ops-tool-kit.js
CHANGED
|
@@ -47,7 +47,7 @@ var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
|
47
47
|
var ReactDOM__default = /*#__PURE__*/_interopDefaultLegacy(ReactDOM);
|
|
48
48
|
|
|
49
49
|
const name$1 = "@copart/ops-tool-kit";
|
|
50
|
-
const version$3 = "1.12.
|
|
50
|
+
const version$3 = "1.12.14";
|
|
51
51
|
const main$1 = "dist/ops-tool-kit.js";
|
|
52
52
|
const style = "dist/ops-tool-kit.css";
|
|
53
53
|
const files = [
|
|
@@ -30475,6 +30475,7 @@ var AppBar = function AppBar(_ref) {
|
|
|
30475
30475
|
document.removeEventListener('visibilitychange', handleVisibilityChange);
|
|
30476
30476
|
};
|
|
30477
30477
|
}, [socketClient]);
|
|
30478
|
+
var notificationsReloadPathKey = pathname === '/embedded' || pathname && pathname.startsWith('/embedded/') ? pathname : '__non_embedded__';
|
|
30478
30479
|
React.useEffect(function () {
|
|
30479
30480
|
setNotifications([]);
|
|
30480
30481
|
setListOfAllNotifications([]);
|
|
@@ -30619,7 +30620,7 @@ var AppBar = function AppBar(_ref) {
|
|
|
30619
30620
|
}
|
|
30620
30621
|
}
|
|
30621
30622
|
}
|
|
30622
|
-
}, [selectedYard,
|
|
30623
|
+
}, [selectedYard, notificationsReloadPathKey]);
|
|
30623
30624
|
React.useEffect(function () {
|
|
30624
30625
|
var interval = setInterval(function () {
|
|
30625
30626
|
var allNotifications = listOfAllNotificationsRef.current;
|