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

@react-types/grid

Package Overview
Dependencies
Maintainers
0
Versions
839
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 3.0.0-nightly-e37ad74f5-241101 to 3.0.0-nightly-e3b217ad5-250301

9

package.json
{
"name": "@react-types/grid",
"version": "3.0.0-nightly-e37ad74f5-241101",
"version": "3.0.0-nightly-e3b217ad5-250301",
"description": "Spectrum UI components in React",

@@ -12,11 +12,10 @@ "license": "Apache-2.0",

"dependencies": {
"@react-types/shared": "^3.0.0-nightly-e37ad74f5-241101"
"@react-types/shared": "3.0.0-nightly-e3b217ad5-250301"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
},
"publishConfig": {
"access": "public"
},
"stableVersion": "3.2.9"
}
}

@@ -22,3 +22,3 @@ /*

export interface GridRow<T> {
export interface GridRow<T> extends Partial<GridNode<T>> {
key?: Key,

@@ -31,8 +31,13 @@ type: string,

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