Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@esri/cedar

Package Overview
Dependencies
Maintainers
14
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@esri/cedar - npm Package Compare versions

Comparing version 1.0.0-alpha.5 to 1.0.0-alpha.6

11

CHANGELOG.md

@@ -6,2 +6,8 @@ # Change Log

## [1.0.0-alpha.6]
### Fixed
- dateTime field parse error resolved by not coercing all values to strings
### Changed
- Font color for axis and legend updated to match old cedar
## [1.0.0-alpha.5]

@@ -175,3 +181,4 @@ ### Fixed

[Unreleased]: https://github.com/Esri/cedar/compare/v1.0.0-alpha.5...master
[Unreleased]: https://github.com/Esri/cedar/compare/v1.0.0-alpha.6...master
[1.0.0-alpha.6]: https://github.com/Esri/cedar/compare/v1.0.0-alpha.5...v1.0.0-alpha.6
[1.0.0-alpha.5]: https://github.com/Esri/cedar/compare/v1.0.0-alpha.4...v1.0.0-alpha.5

@@ -200,2 +207,2 @@ [1.0.0-alpha.4]: https://github.com/Esri/cedar/compare/v1.0.0-alpha.3...v1.0.0-alpha.4

[0.2]: https://github.com/Esri/cedar/compare/v0.1...v0.2
[0.1]: https://github.com/Esri/cedar/releases/tag/v0.1
[0.1]: https://github.com/Esri/cedar/releases/tag/v0.1

4

dist/esm/flatten/flatten.js

@@ -6,3 +6,3 @@ function flattenFeature(feature, categoryField) {

// TODO: what if attributes already has a 'categoryField' property
attributes['categoryField'] = attributes[categoryField] + '';
attributes['categoryField'] = attributes[categoryField] || '';
}

@@ -48,3 +48,3 @@ return feature.attributes;

var features = index[uniqueValue];
var row = { categoryField: features[0].attributes[key] + '' };
var row = { categoryField: features[0].attributes[key] || '' };
features.forEach(function (feature, i) {

@@ -51,0 +51,0 @@ var attributes = feature.attributes;

@@ -6,3 +6,3 @@ AmCharts.themes.calcite = {

AmChart: {
color: '#000000', backgroundColor: '#FFFFFF'
color: '#999999', backgroundColor: '#FFFFFF'
},

@@ -66,3 +66,3 @@

AmLegend: {
color: '#000000',
color: '#999999',
},

@@ -69,0 +69,0 @@

/**
* @esri/cedar - v1.0.0-alpha.5 - Fri Dec 01 2017 10:54:50 GMT-0800 (PST)
* @esri/cedar - v1.0.0-alpha.6 - Mon Dec 11 2017 09:45:21 GMT-0800 (PST)
* Copyright (c) 2017 Environmental Systems Research Institute, Inc.

@@ -488,3 +488,3 @@ * Apache-2.0

// TODO: what if attributes already has a 'categoryField' property
attributes['categoryField'] = attributes[categoryField] + '';
attributes['categoryField'] = attributes[categoryField] || '';
}

@@ -530,3 +530,3 @@ return feature.attributes;

var features = index[uniqueValue];
var row = { categoryField: features[0].attributes[key] + '' };
var row = { categoryField: features[0].attributes[key] || '' };
features.forEach(function (feature, i) {

@@ -533,0 +533,0 @@ var attributes = feature.attributes;

@@ -6,3 +6,3 @@ AmCharts.themes.calcite = {

AmChart: {
color: '#000000', backgroundColor: '#FFFFFF'
color: '#999999', backgroundColor: '#FFFFFF'
},

@@ -66,3 +66,3 @@

AmLegend: {
color: '#000000',
color: '#999999',
},

@@ -69,0 +69,0 @@

{
"name": "@esri/cedar",
"version": "1.0.0-alpha.5",
"version": "1.0.0-alpha.6",
"description": "Visualization framework for the ArcGIS Platform",

@@ -65,3 +65,3 @@ "files": [

"amcharts3": "amcharts/amcharts3",
"@esri/cedar-amcharts": "^1.0.0-alpha.4"
"@esri/cedar-amcharts": "^1.0.0-alpha.6"
},

@@ -68,0 +68,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc