You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@react-types/grid

Package Overview
Dependencies
Maintainers
2
Versions
874
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-types/grid - npm Package Compare versions

Comparing version

to
3.0.0-nightly-27e5ef1b7-250319

4

package.json
{
"name": "@react-types/grid",
"version": "3.0.0-nightly-2788d8afd-250205",
"version": "3.0.0-nightly-27e5ef1b7-250319",
"description": "Spectrum UI components in React",

@@ -12,3 +12,3 @@ "license": "Apache-2.0",

"dependencies": {
"@react-types/shared": "3.0.0-nightly-2788d8afd-250205"
"@react-types/shared": "3.0.0-nightly-27e5ef1b7-250319"
},

@@ -15,0 +15,0 @@ "peerDependencies": {

@@ -30,8 +30,13 @@ /*

column?: GridNode<T>,
/** The number of columns spanned by this cell. */
/**
* The number of columns spanned by this cell. Use `colSpan` instead.
* @deprecated
*/
colspan?: number,
/** The column index of this cell, accounting for any colspans. */
colIndex?: number,
/** The number of columns spanned by this cell. */
colSpan?: number | null,
/** The column index of this cell, accounting for any colSpans. */
colIndex?: number | null,
/** The index of this node within its parent, ignoring sibling nodes that aren't of the same type. */
indexOfType?: number
}