You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@react-types/grid

Package Overview
Dependencies
Maintainers
2
Versions
985
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-b45f39a14-250727

7

package.json
{
"name": "@react-types/grid",
"version": "3.0.0-nightly-b3a4d6c11-241119",
"version": "3.0.0-nightly-b45f39a14-250727",
"description": "Spectrum UI components in React",

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

"dependencies": {
"@react-types/shared": "^3.0.0-nightly-b3a4d6c11-241119"
"@react-types/shared": "3.0.0-nightly-b45f39a14-250727"
},

@@ -20,4 +20,3 @@ "peerDependencies": {

"access": "public"
},
"stableVersion": "3.2.9"
}
}

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