@truedat/core 4.53.10 → 4.54.0
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 +7 -0
- package/package.json +3 -3
- package/src/routes.js +2 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.54.0",
|
|
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.4",
|
|
36
36
|
"@testing-library/react": "^12.0.0",
|
|
37
37
|
"@testing-library/user-event": "^13.2.1",
|
|
38
|
-
"@truedat/test": "4.
|
|
38
|
+
"@truedat/test": "4.54.0",
|
|
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",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"react-dom": ">= 16.8.6 < 17",
|
|
113
113
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
114
114
|
},
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "c8daf877b5343b9efed863043efb86f1f3e19dd6"
|
|
116
116
|
}
|
package/src/routes.js
CHANGED
|
@@ -168,8 +168,7 @@ export const STRUCTURE_NOTES = "/structures/:id/notes";
|
|
|
168
168
|
export const STRUCTURE_NOTES_EDIT = "/structures/:id/notes/edit";
|
|
169
169
|
export const STRUCTURE_PARENTS = "/structures/:id/parents";
|
|
170
170
|
export const STRUCTURE_PROFILE = "/structures/:id/profile";
|
|
171
|
-
export const
|
|
172
|
-
"/structures/:id/rules_implementations";
|
|
171
|
+
export const STRUCTURE_RULES = "/structures/:id/rules";
|
|
173
172
|
export const STRUCTURE_TAGS = "/structureTags";
|
|
174
173
|
export const STRUCTURE_TAGS_NEW = "/structureTags/new";
|
|
175
174
|
export const STRUCTURE_TAG_EDIT = "/structureTags/:id/edit";
|
|
@@ -337,7 +336,7 @@ const routes = {
|
|
|
337
336
|
STRUCTURE_NOTES_EDIT,
|
|
338
337
|
STRUCTURE_PARENTS,
|
|
339
338
|
STRUCTURE_PROFILE,
|
|
340
|
-
|
|
339
|
+
STRUCTURE_RULES,
|
|
341
340
|
STRUCTURE_TAGS,
|
|
342
341
|
STRUCTURE_TAGS_NEW,
|
|
343
342
|
STRUCTURE_TAG_EDIT,
|