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