crf-heat-map
Advanced tools
Comparing version 1.3.0 to 1.3.2
{ | ||
"name": "crf-heat-map", | ||
"description": "Heat Map showing database form status at different levels", | ||
"version": "1.3.0", | ||
"version": "1.3.2", | ||
"author": "Rho, Inc.", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -6,3 +6,3 @@ The most straightforward way to customize the CRF Heat Map is by using a configuration object whose properties describe the behavior and appearance of the table. Since the CRF Heat Map is a Webcharts `table` object, many default Webcharts settings are set in the [webchartsSettings.js file](https://github.com/RhoInc/crf-heat-map/blob/master/src/configuration/webchartsSettings.js) as [described below](#webcharts-settings). Refer to the [Webcharts documentation](https://github.com/RhoInc/Webcharts/wiki/Chart-Configuration) for more details on these settings. | ||
# Renderer-specific settings | ||
The sections below describe each crf-heat-map setting as of version 1.3.0. | ||
The sections below describe each crf-heat-map setting as of version 1.3.2. | ||
@@ -198,3 +198,3 @@ ## settings.nestings | ||
# Webcharts settings | ||
The object below contains each Webcharts setting as of version 1.3.0. | ||
The object below contains each Webcharts setting as of version 1.3.2. | ||
@@ -201,0 +201,0 @@ ``` |
@@ -5,3 +5,3 @@ { | ||
"overview": "The most straightforward way to customize the CRF Heat Map is by using a configuration object whose properties describe the behavior and appearance of the table. Since the CRF Heat Map is a Webcharts `table` object, many default Webcharts settings are set in the [webchartsSettings.js file](https://github.com/RhoInc/crf-heat-map/blob/master/src/configuration/webchartsSettings.js) as [described below](#webcharts-settings). Refer to the [Webcharts documentation](https://github.com/RhoInc/Webcharts/wiki/Chart-Configuration) for more details on these settings.\nIn addition to the standard Webcharts settings several custom settings not available in the base Webcharts library have been added to the CRF Heat Map to facilitate data mapping and other custom functionality. These custom settings are described in detail below and are set in the [rendererSettings.js file](https://github.com/RhoInc/crf-heat-map/blob/master/src/configuration/rendererSettings.js). All defaults can be overwritten by the passed configuration object.", | ||
"version": "1.3.0", | ||
"version": "1.3.2", | ||
"type": "object", | ||
@@ -8,0 +8,0 @@ "properties": { |
export default function customizeNestOptions(id_cols) { | ||
// disable third nest level when the second is not chosen | ||
this.containers.main | ||
.select('#chm-nest-control--3') | ||
.selectAll('#chm-nest-control--3') | ||
.property('disabled', id_cols.length === 1 ? true : false); | ||
@@ -18,3 +18,3 @@ | ||
this.containers.main | ||
.select('#chm-nest-control--2') | ||
.selectAll('#chm-nest-control--2') | ||
.selectAll('option') | ||
@@ -21,0 +21,0 @@ .filter(d => d.label === 'None') |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
254517
0