@react-types/shared 3.0.0-nightly.2285 → 3.0.0-nightly.2291
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/selection.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-types/shared",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.2291+bf8fac4cf",
|
|
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": "bf8fac4cf85da695bf3bcaa4fed721f398aa19ba"
|
|
18
18
|
}
|
package/src/selection.d.ts
CHANGED
|
@@ -31,8 +31,6 @@ export interface MultipleSelection {
|
|
|
31
31
|
selectionMode?: SelectionMode,
|
|
32
32
|
/** Whether the collection allows empty selection. */
|
|
33
33
|
disallowEmptySelection?: boolean,
|
|
34
|
-
/** Whether the collection allows the user to select all items via keyboard shortcut. */
|
|
35
|
-
disallowSelectAll?: boolean,
|
|
36
34
|
/** The currently selected keys in the collection (controlled). */
|
|
37
35
|
selectedKeys?: 'all' | Iterable<Key>,
|
|
38
36
|
/** The initial selected keys in the collection (uncontrolled). */
|