@react-types/shared 3.22.0 → 3.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/collections.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-types/shared",
|
|
3
|
-
"version": "3.22.
|
|
3
|
+
"version": "3.22.1",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "de9f84a22583fc741c29b341d14cd35ef4cca161"
|
|
18
18
|
}
|
package/src/collections.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ export interface Node<T> {
|
|
|
166
166
|
key: Key,
|
|
167
167
|
/** The object value the node was created from. */
|
|
168
168
|
value: T | null,
|
|
169
|
-
/** The level of depth this node is at in the
|
|
169
|
+
/** The level of depth this node is at in the hierarchy. */
|
|
170
170
|
level: number,
|
|
171
171
|
/** Whether this item has children, even if not loaded yet. */
|
|
172
172
|
hasChildNodes: boolean,
|