@teselagen/ui 0.3.83 → 0.3.85

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,13 +1,12 @@
1
1
  {
2
2
  "name": "@teselagen/ui",
3
- "version": "0.3.83",
3
+ "version": "0.3.85",
4
4
  "main": "./src/index.js",
5
5
  "exports": {
6
6
  ".": {
7
7
  "import": "./index.es.js",
8
8
  "require": "./index.cjs.js"
9
- },
10
- "./style.css": "./style.css"
9
+ }
11
10
  },
12
11
  "dependencies": {
13
12
  "@teselagen/file-utils": "0.3.16",
@@ -44,7 +43,7 @@
44
43
  "react-markdown": "8.0.7",
45
44
  "react-redux": "^8.0.5",
46
45
  "react-rnd": "^10.2.4",
47
- "react-router-dom": "^5.3.4",
46
+ "react-router-dom": "^4.3.1",
48
47
  "react-sortable-hoc": "^0.6.8",
49
48
  "react-transition-group": "^2.4.0",
50
49
  "recompose": "npm:react-recompose@0.31.1",
@@ -833,7 +833,7 @@ export function getQueryParams({
833
833
  console.error(
834
834
  "No schema for field found!",
835
835
  ccDisplayName,
836
- schema.fields
836
+ JSON.stringify(schema.fields, null, 2)
837
837
  );
838
838
  }
839
839
  });
@@ -0,0 +1,3 @@
1
+ import "@blueprintjs/core/lib/css/blueprint.css";
2
+ import "@blueprintjs/datetime/lib/css/blueprint-datetime.css";
3
+ import "@blueprintjs/icons/lib/css/blueprint-icons.css";
package/src/index.js CHANGED
@@ -1,6 +1,3 @@
1
- import "@blueprintjs/core/lib/css/blueprint.css";
2
- import "@blueprintjs/datetime/lib/css/blueprint-datetime.css";
3
- import "@blueprintjs/icons/lib/css/blueprint-icons.css";
4
1
  import "./style.css";
5
2
  import "./autoTooltip";
6
3
  export { LoadingDots } from "./FormComponents/LoadingDots";