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

react-big-calendar

Package Overview
Dependencies
Maintainers
3
Versions
181
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-big-calendar - npm Package Compare versions

Comparing version 1.10.1 to 1.10.2

7

CHANGELOG.md

@@ -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 @@

2

lib/utils/layout-algorithms/no-overlap.js

@@ -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

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