@react-types/grid
Advanced tools
Comparing version 3.0.0-nightly-e37ad74f5-241101 to 3.0.0-nightly-e3b217ad5-250301
{ | ||
"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 | ||
} |
2148
37
+ Added@react-types/shared@3.0.0-nightly-e3b217ad5-250301(transitive)
- Removed@react-types/shared@3.28.0(transitive)