New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fullcalendar/scrollgrid

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fullcalendar/scrollgrid - npm Package Compare versions

Comparing version 5.0.0-beta.4 to 5.0.0-rc

19

main.js
/*!
FullCalendar v5.0.0-beta.4
FullCalendar v5.0.0-rc
Docs & License: https://fullcalendar.io/

@@ -702,7 +702,15 @@ (c) 2019 Adam Shaw

var rowInChunkCnt = rowHeightsByChunk[chunkI].length;
var rowInChunkHeight = (maxTotalSum - rowInChunkCnt) / rowInChunkCnt; // subtract border
var rowInChunkTotalHeight = maxTotalSum - rowInChunkCnt; // subtract border
var rowInChunkHeightOthers = Math.floor(rowInChunkTotalHeight / rowInChunkCnt); // height of non-first row. we do this to avoid rounding, because it's unreliable within a table
var rowInChunkHeightFirst = rowInChunkTotalHeight - rowInChunkHeightOthers * (rowInChunkCnt - 1); // whatever is leftover goes to the first row
var rowInChunkHeights = [];
for (var row = 0; row < rowInChunkCnt; row++) {
rowInChunkHeights.push(rowInChunkHeight);
var row = 0;
if (row < rowInChunkCnt) {
rowInChunkHeights.push(rowInChunkHeightFirst);
row++;
}
while (row < rowInChunkCnt) {
rowInChunkHeights.push(rowInChunkHeightOthers);
row++;
}
assignableHeights.push(rowInChunkHeights);

@@ -879,3 +887,4 @@ }

}
return (createElement("col", { style: { width: width } }));
return ( // eslint-disable-next-line react/jsx-key
createElement("col", { style: { width: width } }));
});

@@ -882,0 +891,0 @@ return createElement.apply(void 0, __spreadArrays(['colgroup', {}], children));

{
"name": "@fullcalendar/scrollgrid",
"version": "5.0.0-beta.4",
"version": "5.0.0-rc",
"title": "FullCalendar ScrollGrid Plugin",
"description": "internal package",
"dependencies": {
"@fullcalendar/common": "5.0.0-beta.4",
"@fullcalendar/premium-common": "5.0.0-beta.4",
"tslib": "^1.9.3"
"@fullcalendar/common": "5.0.0-rc",
"@fullcalendar/premium-common": "5.0.0-rc",
"tslib": "^2.0.0"
},
"module": "main.js",
"main": "main.js",
"types": "main.d.ts",

@@ -13,0 +13,0 @@ "homepage": "https://fullcalendar.io/scheduler",

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