@react-types/grid
Advanced tools
Comparing version
{ | ||
"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 | ||
} |
2148
6.76%37
15.63%+ Added
- Removed