react-big-calendar
Advanced tools
Comparing version 1.10.1 to 1.10.2
@@ -0,1 +1,8 @@ | ||
## [1.10.2](https://github.com/jquense/react-big-calendar/compare/v1.10.1...v1.10.2) (2024-02-19) | ||
### Bug Fixes | ||
* day events sort fixed ([#2512](https://github.com/jquense/react-big-calendar/issues/2512)) ([ac1ff00](https://github.com/jquense/react-big-calendar/commit/ac1ff004a2f6384a1540e66ed47f219e1f9101c5)) | ||
## [1.10.1](https://github.com/jquense/react-big-calendar/compare/v1.10.0...v1.10.1) (2024-02-14) | ||
@@ -2,0 +9,0 @@ |
@@ -34,3 +34,3 @@ "use strict"; | ||
b = b.style; | ||
if (a.top !== b.top) return a.top > b.top ? 1 : -1;else return a.top + a.height < b.top + b.height ? 1 : -1; | ||
if (a.top !== b.top) return a.top > b.top ? 1 : -1;else if (a.height !== b.height) return a.top + a.height < b.top + b.height ? 1 : -1;else return 0; | ||
}); | ||
@@ -37,0 +37,0 @@ for (var i = 0; i < styledEvents.length; ++i) { |
{ | ||
"name": "react-big-calendar", | ||
"version": "1.10.1", | ||
"version": "1.10.2", | ||
"description": "Calendar! with events", | ||
@@ -5,0 +5,0 @@ "author": { |
# react-big-calendar | ||
An events calendar component built for React and made for modern browsers (read: not IE) and uses flexbox over the classic tables-caption approach. | ||
An events calendar component built for React and designed for modern browsers (read: not IE) and uses flexbox over the classic tables-caption approach. | ||
@@ -5,0 +5,0 @@ <p align="center"> |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
2543748