@truedat/core 4.58.0 → 4.58.1

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 CHANGED
@@ -1,12 +1,18 @@
1
1
  # Changelog
2
2
 
3
- ## [4.58.0] 2022-11-15
3
+ ## [4.58.1] 2022-12-19
4
+
5
+ ### Added
6
+
7
+ - [TD-5367] Route for grant detail
8
+
9
+ ## [4.58.0] 2022-12-15
4
10
 
5
11
  ### Added
6
12
 
7
13
  - [TD-3919] Add concept subscopes submenus
8
14
 
9
- ## [4.56.9] 2022-11-12
15
+ ## [4.56.9] 2022-12-12
10
16
 
11
17
  ### Added
12
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "4.58.0",
3
+ "version": "4.58.1",
4
4
  "description": "Truedat Web Core",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -35,7 +35,7 @@
35
35
  "@testing-library/jest-dom": "^5.16.5",
36
36
  "@testing-library/react": "^12.0.0",
37
37
  "@testing-library/user-event": "^13.2.1",
38
- "@truedat/test": "4.58.0",
38
+ "@truedat/test": "4.58.1",
39
39
  "babel-jest": "^28.1.0",
40
40
  "babel-plugin-dynamic-import-node": "^2.3.3",
41
41
  "babel-plugin-lodash": "^3.3.4",
@@ -107,7 +107,7 @@
107
107
  "semantic-ui-react": "^2.1.4",
108
108
  "slate": "^0.47.3",
109
109
  "slate-react": "^0.22.3",
110
- "swr": "^1.3.0",
110
+ "swr": "^2.0.0",
111
111
  "validator": "^13.6.0"
112
112
  },
113
113
  "peerDependencies": {
@@ -115,5 +115,5 @@
115
115
  "react-dom": ">= 16.8.6 < 17",
116
116
  "semantic-ui-react": ">= 2.0.3 < 2.2"
117
117
  },
118
- "gitHead": "3987557a127b4e999021e0d7179ad7a6375bfe01"
118
+ "gitHead": "f1d6fab3f573f3f3ee9e0e6060d2761d452ca804"
119
119
  }
@@ -7,6 +7,7 @@ import { FormattedMessage } from "react-intl";
7
7
  export const GenericCrumbs = ({ header, title }) => {
8
8
  const history = useHistory();
9
9
  const goBack = () => history.goBack();
10
+
10
11
  return (
11
12
  <Breadcrumb>
12
13
  <Breadcrumb.Section onClick={goBack} active={false}>
package/src/routes.js CHANGED
@@ -50,6 +50,7 @@ export const GRANT_APPROVAL_RULE = "/grantApproveRules/:id";
50
50
  export const GRANT_APPROVAL_RULE_NEW = "/grantApproveRules/new";
51
51
  export const GRANT_APPROVAL_RULE_EDIT = "/grantApproveRules/:id/edit";
52
52
  export const GRANT_APPROVAL_RULES = "/grantApprovalRules";
53
+ export const GRANT = "/grants/:id";
53
54
  export const GRANTS = "/grants";
54
55
  export const GRANTS_REQUESTS_CHECKOUT = "/grantsRequests/checkout";
55
56
  export const GRANT_REQUEST = "/grantRequests/:id";
@@ -240,6 +241,7 @@ const routes = {
240
241
  DOMAIN_STRUCTURES,
241
242
  EXECUTION_GROUP,
242
243
  EXECUTION_GROUPS,
244
+ GRANT,
243
245
  GRANT_APPROVAL_RULE,
244
246
  GRANT_APPROVAL_RULE_NEW,
245
247
  GRANT_APPROVAL_RULE_EDIT,