Skip to content

Commit

Permalink
Merge pull request #151 from RhoInc/dev-v3.4.0
Browse files Browse the repository at this point in the history
AE Explorer v3.4.0
  • Loading branch information
samussiah authored Apr 22, 2020
2 parents e6bcc8e + b4f0b28 commit 80b7a6e
Show file tree
Hide file tree
Showing 16 changed files with 645 additions and 635 deletions.
367 changes: 183 additions & 184 deletions build/aeTable.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/aeTable.min.js

Large diffs are not rendered by default.

27 changes: 11 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 52 additions & 52 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
{
"name": "aeexplorer",
"version": "3.3.5",
"description": "An interactive tool that allows users to dynamically query adverse event data in real time.",
"keywords": [
"adverse",
"events",
"interactive",
"aes",
"data",
"visualization"
],
"homepage": "https://github.com/rhoinc/aeexplorer#readme",
"license": "ISC",
"author": "Rho, Inc.",
"main": "build/aeTable.js",
"module": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rhoinc/aeexplorer.git"
},
"scripts": {
"build": "npm audit fix && npm run bundle && npm run format && npm run minify && npm run build-md",
"build-md": "node ./scripts/configuration-markdown.js",
"bundle": "rollup -c",
"format": "npm run format-src && npm run format-bundle && npm run format-examples",
"format-examples": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./test-page/**/*.js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./build/aeTable.js\"",
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"",
"minify": "npm run minifyjs && npm run minifycss",
"minifycss": "cleancss -o css/aeTable.min.css css/aeTable.css",
"minifyjs": "uglifyjs build/aeTable.js > build/aeTable.min.js",
"test-page": "start chrome ./test-page/index.html && start firefox ./test-page/index.html && start iexplore file://%CD%/test-page/index.html",
"watch": "rollup -c -w"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"clean-css-cli": "^4.2.1",
"prettier": "1.4.4",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^2.7.1",
"uglify-js": "^2.5.0"
},
"dependencies": {
"d3": "~3"
},
"optionalDependencies": {
"webcharts": ">1.9"
},
"bugs": {
"url": "https://github.com/rhoinc/aeexplorer/issues"
}
"name": "aeexplorer",
"version": "3.4.0",
"description": "An interactive tool that allows users to dynamically query adverse event data in real time.",
"keywords": [
"adverse",
"events",
"interactive",
"aes",
"data",
"visualization"
],
"homepage": "https://github.com/rhoinc/aeexplorer#readme",
"license": "ISC",
"author": "Rho, Inc.",
"main": "build/aeTable.js",
"module": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rhoinc/aeexplorer.git"
},
"scripts": {
"build": "npm audit fix && npm run bundle && npm run format && npm run minify && npm run build-md",
"build-md": "node ./scripts/configuration-markdown.js",
"bundle": "rollup -c",
"format": "npm run format-src && npm run format-bundle && npm run format-examples",
"format-examples": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./test-page/**/*.js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./build/aeTable.js\"",
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"",
"minify": "npm run minifyjs && npm run minifycss",
"minifycss": "cleancss -o css/aeTable.min.css css/aeTable.css",
"minifyjs": "uglifyjs build/aeTable.js > build/aeTable.min.js",
"test-page": "start chrome ./test-page/index.html && start firefox ./test-page/index.html && start iexplore file://%CD%/test-page/index.html",
"watch": "rollup -c -w"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"clean-css-cli": "^4.2.1",
"prettier": "1.4.4",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^2.7.1",
"uglify-js": "^2.5.0"
},
"dependencies": {
"d3": "~3"
},
"optionalDependencies": {
"webcharts": ">1.9"
},
"bugs": {
"url": "https://github.com/rhoinc/aeexplorer/issues"
}
}
22 changes: 21 additions & 1 deletion scripts/configuration.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Renderer-specific settings
The sections below describe each aeexplorer setting as of version 3.2.6.
The sections below describe each aeexplorer setting as of version 3.4.0.

## settings.variables
`object`
Expand Down Expand Up @@ -122,6 +122,26 @@ An array specifying which levels of settings.variables.groups will appear as col



## settings.colors
`array`

an array of colors that control the color of each group in the table

**default:**
```
[
"#377EB8",
"#4DAF4A",
"#984EA3",
"#FF7F00",
"#A65628",
"#F781BF",
"#E41A1C"
]
```



## settings.defaults
`object`

Expand Down
Loading

0 comments on commit 80b7a6e

Please sign in to comment.