@kaizen/components 1.70.22 → 1.70.23
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Key, type Node } from '@react-types/shared';
|
|
1
|
+
import { type Key, type Node, type Selection as ReactAriaSelection } from '@react-types/shared';
|
|
2
2
|
export type ItemType = {
|
|
3
3
|
label: string;
|
|
4
4
|
value: Key;
|
|
@@ -6,3 +6,4 @@ export type ItemType = {
|
|
|
6
6
|
isDisabled?: boolean;
|
|
7
7
|
};
|
|
8
8
|
export type MultiSelectItem = Node<ItemType>;
|
|
9
|
+
export type Selection = ReactAriaSelection;
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Key, type Node } from '@react-types/shared'
|
|
1
|
+
import { type Key, type Node, type Selection as ReactAriaSelection } from '@react-types/shared'
|
|
2
2
|
|
|
3
3
|
export type ItemType = {
|
|
4
4
|
label: string
|
|
@@ -8,3 +8,5 @@ export type ItemType = {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export type MultiSelectItem = Node<ItemType>
|
|
11
|
+
|
|
12
|
+
export type Selection = ReactAriaSelection
|