@truedat/core 4.58.0 → 4.58.2
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 +8 -2
- package/package.json +4 -4
- package/src/components/GenericCrumbs.js +1 -0
- package/src/components/__tests__/{GenericCrums.spec.js → GenericCrumbs.spec.js} +0 -0
- package/src/components/__tests__/__snapshots__/{GenericCrums.spec.js.snap → GenericCrumbs.spec.js.snap} +0 -0
- package/src/routes.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [4.58.
|
|
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-
|
|
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.
|
|
3
|
+
"version": "4.58.2",
|
|
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.
|
|
38
|
+
"@truedat/test": "4.58.2",
|
|
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": "^
|
|
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": "
|
|
118
|
+
"gitHead": "2e7042f380612d48784dc5641085fbe6dba7c7d1"
|
|
119
119
|
}
|
|
File without changes
|
|
File without changes
|
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,
|