esri-leaflet
Advanced tools
Comparing version 2.3.1 to 2.3.2
@@ -8,2 +8,8 @@ # Change Log | ||
## [2.3.2] - 2019-11-13 | ||
### Fixed | ||
* Time filtering fix which adds a case for when a feature's time range contains the time range given in the to and from options for the layer. (🙏pjbiogit🙏 [#1174](https://github.com/Esri/esri-leaflet/pull/1174)) | ||
## [2.3.1] - 2019-10-10 | ||
@@ -682,3 +688,4 @@ | ||
[unreleased]: https://github.com/esri/esri-leaflet/compare/v2.3.1...HEAD | ||
[unreleased]: https://github.com/esri/esri-leaflet/compare/v2.3.2...HEAD | ||
[2.3.2]: https://github.com/esri/esri-leaflet/compare/v2.3.1...v2.3.2 | ||
[2.3.1]: https://github.com/esri/esri-leaflet/compare/v2.3.0...v2.3.1 | ||
@@ -685,0 +692,0 @@ [2.3.0]: https://github.com/esri/esri-leaflet/compare/v2.2.4...v2.3.0 |
{ | ||
"name": "esri-leaflet", | ||
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"author": "Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)", | ||
@@ -6,0 +6,0 @@ "bugs": { |
@@ -427,3 +427,3 @@ import { Util } from 'leaflet'; | ||
var endDate = +feature.properties[this.options.timeField.end]; | ||
return ((startDate >= from) && (startDate <= to)) || ((endDate >= from) && (endDate <= to)); | ||
return ((startDate >= from) && (startDate <= to)) || ((endDate >= from) && (endDate <= to)) || ((startDate <= from) && (endDate >= to)); | ||
} | ||
@@ -430,0 +430,0 @@ }, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
877243
0