@bento-core/about 1.0.1-CDS.0 → 1.0.1-CDS.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/dist/aboutHeaderView.js +1 -1
- package/package.json +5 -11
- package/src/aboutHeaderView.js +1 -1
package/dist/aboutHeaderView.js
CHANGED
|
@@ -38,7 +38,7 @@ const styles = () => ({
|
|
|
38
38
|
background: props.background
|
|
39
39
|
}, props.container),
|
|
40
40
|
whitePadding: props => _objectSpread({
|
|
41
|
-
height: props.
|
|
41
|
+
height: props.whitePadding ? props.whitePadding.height : 0,
|
|
42
42
|
background: props.background
|
|
43
43
|
}, props.whitePadding),
|
|
44
44
|
titleBody: {
|
package/package.json
CHANGED
|
@@ -1,21 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bento-core/about",
|
|
3
|
-
"version": "1.0.1-CDS.
|
|
3
|
+
"version": "1.0.1-CDS.2",
|
|
4
|
+
"description": "",
|
|
4
5
|
"main": "dist/index.js",
|
|
5
6
|
"scripts": {
|
|
6
7
|
"build": "npm run lint && cross-env-shell rm -rf dist && NODE_ENV=production BABEL_ENV=es babel src --out-dir dist --copy-files",
|
|
7
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
9
|
"lint": "eslint src"
|
|
9
10
|
},
|
|
10
|
-
"repository":
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/CBIIT/bento-frontend.git"
|
|
13
|
-
},
|
|
11
|
+
"repository": "https://github.com/CBIIT/bento-frontend",
|
|
14
12
|
"publishConfig": {
|
|
15
13
|
"access": "public"
|
|
16
14
|
},
|
|
17
15
|
"dependencies": {
|
|
18
|
-
"@bento-core/facet-filter": "^1.0.0",
|
|
16
|
+
"@bento-core/facet-filter": "^1.0.1-CDS.0",
|
|
19
17
|
"lodash": "^4.17.20",
|
|
20
18
|
"react-zoom-pan-pinch": "*"
|
|
21
19
|
},
|
|
@@ -28,9 +26,5 @@
|
|
|
28
26
|
},
|
|
29
27
|
"author": "CTOS Bento Team",
|
|
30
28
|
"license": "ISC",
|
|
31
|
-
"
|
|
32
|
-
"url": "https://github.com/CBIIT/bento-frontend/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/CBIIT/bento-frontend#readme",
|
|
35
|
-
"description": ""
|
|
29
|
+
"gitHead": "4a7e8f3a0eaf09a10dbb1a0ef54218cd84a377f1"
|
|
36
30
|
}
|
package/src/aboutHeaderView.js
CHANGED