@react-aria/select 3.14.6-nightly.4683 → 3.14.6-nightly.4684
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/dist/types.d.ts +59 -59
- package/package.json +15 -15
package/dist/types.d.ts
CHANGED
|
@@ -64,67 +64,67 @@ export function useHiddenSelect<T>(props: AriaHiddenSelectOptions, state: Select
|
|
|
64
64
|
'aria-hidden': boolean;
|
|
65
65
|
"data-react-aria-prevent-focus": boolean;
|
|
66
66
|
"data-a11y-ignore": string;
|
|
67
|
-
id?: string;
|
|
68
|
-
role?: React.AriaRole;
|
|
69
|
-
tabIndex?: number;
|
|
70
|
-
style?: React.CSSProperties;
|
|
71
|
-
className?: string;
|
|
72
|
-
"aria-activedescendant"?: string;
|
|
73
|
-
"aria-atomic"?: boolean | "false" | "true";
|
|
74
|
-
"aria-autocomplete"?: "
|
|
75
|
-
"aria-braillelabel"?: string;
|
|
76
|
-
"aria-brailleroledescription"?: string;
|
|
77
|
-
"aria-busy"?: boolean | "false" | "true";
|
|
78
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true";
|
|
79
|
-
"aria-colcount"?: number;
|
|
80
|
-
"aria-colindex"?: number;
|
|
81
|
-
"aria-colindextext"?: string;
|
|
82
|
-
"aria-colspan"?: number;
|
|
83
|
-
"aria-controls"?: string;
|
|
84
|
-
"aria-current"?: boolean | "false" | "
|
|
85
|
-
"aria-describedby"?: string;
|
|
86
|
-
"aria-description"?: string;
|
|
87
|
-
"aria-details"?: string;
|
|
88
|
-
"aria-disabled"?: boolean | "false" | "true";
|
|
89
|
-
"aria-dropeffect"?: "
|
|
90
|
-
"aria-errormessage"?: string;
|
|
91
|
-
"aria-expanded"?: boolean | "false" | "true";
|
|
92
|
-
"aria-flowto"?: string;
|
|
93
|
-
"aria-grabbed"?: boolean | "false" | "true";
|
|
94
|
-
"aria-haspopup"?: boolean | "false" | "
|
|
95
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling";
|
|
96
|
-
"aria-keyshortcuts"?: string;
|
|
97
|
-
"aria-label"?: string;
|
|
98
|
-
"aria-labelledby"?: string;
|
|
99
|
-
"aria-level"?: number;
|
|
100
|
-
"aria-live"?: "off" | "assertive" | "polite";
|
|
101
|
-
"aria-modal"?: boolean | "false" | "true";
|
|
102
|
-
"aria-multiline"?: boolean | "false" | "true";
|
|
103
|
-
"aria-multiselectable"?: boolean | "false" | "true";
|
|
104
|
-
"aria-orientation"?: "horizontal" | "vertical";
|
|
105
|
-
"aria-owns"?: string;
|
|
106
|
-
"aria-placeholder"?: string;
|
|
107
|
-
"aria-posinset"?: number;
|
|
108
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true";
|
|
109
|
-
"aria-readonly"?: boolean | "false" | "true";
|
|
110
|
-
"aria-relevant"?: "
|
|
111
|
-
"aria-required"?: boolean | "false" | "true";
|
|
112
|
-
"aria-roledescription"?: string;
|
|
113
|
-
"aria-rowcount"?: number;
|
|
114
|
-
"aria-rowindex"?: number;
|
|
115
|
-
"aria-rowindextext"?: string;
|
|
116
|
-
"aria-rowspan"?: number;
|
|
117
|
-
"aria-selected"?: boolean | "false" | "true";
|
|
118
|
-
"aria-setsize"?: number;
|
|
119
|
-
"aria-sort"?: "none" | "
|
|
120
|
-
"aria-valuemax"?: number;
|
|
121
|
-
"aria-valuemin"?: number;
|
|
122
|
-
"aria-valuenow"?: number;
|
|
123
|
-
"aria-valuetext"?: string;
|
|
124
|
-
children?:
|
|
67
|
+
id?: string | undefined;
|
|
68
|
+
role?: React.AriaRole | undefined;
|
|
69
|
+
tabIndex?: number | undefined;
|
|
70
|
+
style?: React.CSSProperties | undefined;
|
|
71
|
+
className?: string | undefined;
|
|
72
|
+
"aria-activedescendant"?: string | undefined;
|
|
73
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
74
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
75
|
+
"aria-braillelabel"?: string | undefined;
|
|
76
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
77
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
78
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
79
|
+
"aria-colcount"?: number | undefined;
|
|
80
|
+
"aria-colindex"?: number | undefined;
|
|
81
|
+
"aria-colindextext"?: string | undefined;
|
|
82
|
+
"aria-colspan"?: number | undefined;
|
|
83
|
+
"aria-controls"?: string | undefined;
|
|
84
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
85
|
+
"aria-describedby"?: string | undefined;
|
|
86
|
+
"aria-description"?: string | undefined;
|
|
87
|
+
"aria-details"?: string | undefined;
|
|
88
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
89
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
90
|
+
"aria-errormessage"?: string | undefined;
|
|
91
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
92
|
+
"aria-flowto"?: string | undefined;
|
|
93
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
94
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
95
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
96
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
97
|
+
"aria-label"?: string | undefined;
|
|
98
|
+
"aria-labelledby"?: string | undefined;
|
|
99
|
+
"aria-level"?: number | undefined;
|
|
100
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
101
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
102
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
103
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
104
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
105
|
+
"aria-owns"?: string | undefined;
|
|
106
|
+
"aria-placeholder"?: string | undefined;
|
|
107
|
+
"aria-posinset"?: number | undefined;
|
|
108
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
109
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
110
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
111
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
112
|
+
"aria-roledescription"?: string | undefined;
|
|
113
|
+
"aria-rowcount"?: number | undefined;
|
|
114
|
+
"aria-rowindex"?: number | undefined;
|
|
115
|
+
"aria-rowindextext"?: string | undefined;
|
|
116
|
+
"aria-rowspan"?: number | undefined;
|
|
117
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
118
|
+
"aria-setsize"?: number | undefined;
|
|
119
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
120
|
+
"aria-valuemax"?: number | undefined;
|
|
121
|
+
"aria-valuemin"?: number | undefined;
|
|
122
|
+
"aria-valuenow"?: number | undefined;
|
|
123
|
+
"aria-valuetext"?: string | undefined;
|
|
124
|
+
children?: ReactNode | undefined;
|
|
125
125
|
dangerouslySetInnerHTML?: {
|
|
126
126
|
__html: string | TrustedHTML;
|
|
127
|
-
};
|
|
127
|
+
} | undefined;
|
|
128
128
|
onCopy?: React.ClipboardEventHandler<FocusableElement>;
|
|
129
129
|
onCopyCapture?: React.ClipboardEventHandler<FocusableElement>;
|
|
130
130
|
onCut?: React.ClipboardEventHandler<FocusableElement>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-aria/select",
|
|
3
|
-
"version": "3.14.6-nightly.
|
|
3
|
+
"version": "3.14.6-nightly.4684+2cd8f0b50",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"url": "https://github.com/adobe/react-spectrum"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@react-aria/form": "3.0.6-nightly.
|
|
26
|
-
"@react-aria/i18n": "3.0.0-nightly.
|
|
27
|
-
"@react-aria/interactions": "3.0.0-nightly.
|
|
28
|
-
"@react-aria/label": "3.0.0-nightly.
|
|
29
|
-
"@react-aria/listbox": "3.12.2-nightly.
|
|
30
|
-
"@react-aria/menu": "3.14.2-nightly.
|
|
31
|
-
"@react-aria/selection": "3.0.0-nightly.
|
|
32
|
-
"@react-aria/utils": "3.0.0-nightly.
|
|
33
|
-
"@react-aria/visually-hidden": "3.0.0-nightly.
|
|
34
|
-
"@react-stately/select": "3.6.5-nightly.
|
|
35
|
-
"@react-types/button": "3.9.5-nightly.
|
|
36
|
-
"@react-types/select": "3.9.5-nightly.
|
|
37
|
-
"@react-types/shared": "3.0.0-nightly.
|
|
25
|
+
"@react-aria/form": "3.0.6-nightly.4684+2cd8f0b50",
|
|
26
|
+
"@react-aria/i18n": "3.0.0-nightly.2972+2cd8f0b50",
|
|
27
|
+
"@react-aria/interactions": "3.0.0-nightly.2972+2cd8f0b50",
|
|
28
|
+
"@react-aria/label": "3.0.0-nightly.2972+2cd8f0b50",
|
|
29
|
+
"@react-aria/listbox": "3.12.2-nightly.4684+2cd8f0b50",
|
|
30
|
+
"@react-aria/menu": "3.14.2-nightly.4684+2cd8f0b50",
|
|
31
|
+
"@react-aria/selection": "3.0.0-nightly.2972+2cd8f0b50",
|
|
32
|
+
"@react-aria/utils": "3.0.0-nightly.2972+2cd8f0b50",
|
|
33
|
+
"@react-aria/visually-hidden": "3.0.0-nightly.2972+2cd8f0b50",
|
|
34
|
+
"@react-stately/select": "3.6.5-nightly.4684+2cd8f0b50",
|
|
35
|
+
"@react-types/button": "3.9.5-nightly.4684+2cd8f0b50",
|
|
36
|
+
"@react-types/select": "3.9.5-nightly.4684+2cd8f0b50",
|
|
37
|
+
"@react-types/shared": "3.0.0-nightly.2972+2cd8f0b50",
|
|
38
38
|
"@swc/helpers": "^0.5.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "2cd8f0b509cd9a1d93322dd75fc1306e5f0e217f"
|
|
48
48
|
}
|