@truedat/core 5.14.0 → 5.15.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "5.14.0",
3
+ "version": "5.15.0",
4
4
  "description": "Truedat Web Core",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -117,5 +117,5 @@
117
117
  "react-dom": ">= 16.8.6 < 17",
118
118
  "semantic-ui-react": ">= 2.0.3 < 2.2"
119
119
  },
120
- "gitHead": "f1e5448ad078ffe2eece70dabf785f2dc295f0e9"
120
+ "gitHead": "93bcd66804df32821aa0d563b863774554a39047"
121
121
  }
@@ -1,10 +1,10 @@
1
1
  import React from "react";
2
2
  import { useAuthorized } from "../hooks";
3
- import { DATA_SETS, FUNCTIONS } from "../routes";
3
+ import { DATA_VIEWS, FUNCTIONS } from "../routes";
4
4
  import Submenu from "./Submenu";
5
5
 
6
6
  export const ITEMS = [
7
- { name: "data_sets", routes: [DATA_SETS] },
7
+ { name: "dataViews", routes: [DATA_VIEWS] },
8
8
  { name: "functions", routes: [FUNCTIONS] },
9
9
  ];
10
10
 
package/src/routes.js CHANGED
@@ -39,7 +39,7 @@ export const CONFIGURATIONS = "/configurations";
39
39
  export const CONFIGURATION_CREATE = "/configurations/new";
40
40
  export const CONFIGURATION_EDIT = "/configurations/:external_id/edit";
41
41
  export const DASHBOARD = "/dashboard";
42
- export const DATA_SETS = "/data_sets";
42
+ export const DATA_VIEWS = "/dataViews";
43
43
  export const DOMAIN = "/domains/:id";
44
44
  export const DOMAINS = "/domains";
45
45
  export const DOMAINS_ACTIONS = "/domains/:action";
@@ -244,6 +244,7 @@ const routes = {
244
244
  CONCEPTS_NEW,
245
245
  CONCEPTS_PENDING,
246
246
  CONCEPTS_SUBSCOPED,
247
+ CONCEPTS_DEPRECATED,
247
248
  CONCEPT_ARCHIVE,
248
249
  CONCEPT_EDIT,
249
250
  CONCEPT_EVENTS,