@react-aria/select 3.17.3 → 3.18.0

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,159 +0,0 @@
1
- import {selectData as $58aed456727eb0f3$export$703601b7e90536f8} from "./useSelect.module.js";
2
- import {useFormReset as $8BE50$useFormReset, getEventTarget as $8BE50$getEventTarget} from "@react-aria/utils";
3
- import $8BE50$react, {useCallback as $8BE50$useCallback, useRef as $8BE50$useRef} from "react";
4
- import {useFormValidation as $8BE50$useFormValidation} from "@react-aria/form";
5
- import {useVisuallyHidden as $8BE50$useVisuallyHidden} from "@react-aria/visually-hidden";
6
-
7
- /*
8
- * Copyright 2020 Adobe. All rights reserved.
9
- * This file is licensed to you under the Apache License, Version 2.0 (the "License");
10
- * you may not use this file except in compliance with the License. You may obtain a copy
11
- * of the License at http://www.apache.org/licenses/LICENSE-2.0
12
- *
13
- * Unless required by applicable law or agreed to in writing, software distributed under
14
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
15
- * OF ANY KIND, either express or implied. See the License for the specific language
16
- * governing permissions and limitations under the License.
17
- */
18
-
19
-
20
-
21
-
22
- function $bdd25dc72710631f$export$f809e80f58e251d1(props, state, triggerRef) {
23
- let data = (0, $58aed456727eb0f3$export$703601b7e90536f8).get(state) || {};
24
- let { autoComplete: autoComplete, name: name = data.name, form: form = data.form, isDisabled: isDisabled = data.isDisabled } = props;
25
- let { validationBehavior: validationBehavior, isRequired: isRequired } = data;
26
- let { visuallyHiddenProps: visuallyHiddenProps } = (0, $8BE50$useVisuallyHidden)({
27
- style: {
28
- // Prevent page scrolling.
29
- position: 'fixed',
30
- top: 0,
31
- left: 0
32
- }
33
- });
34
- (0, $8BE50$useFormReset)(props.selectRef, state.defaultValue, state.setValue);
35
- (0, $8BE50$useFormValidation)({
36
- validationBehavior: validationBehavior,
37
- focus: ()=>{
38
- var _triggerRef_current;
39
- return (_triggerRef_current = triggerRef.current) === null || _triggerRef_current === void 0 ? void 0 : _triggerRef_current.focus();
40
- }
41
- }, state, props.selectRef);
42
- let setValue = state.setValue;
43
- let onChange = (0, $8BE50$useCallback)((e)=>{
44
- let eventTarget = (0, $8BE50$getEventTarget)(e);
45
- if (eventTarget.multiple) setValue(Array.from(eventTarget.selectedOptions, (option)=>option.value));
46
- else setValue(e.currentTarget.value);
47
- }, [
48
- setValue
49
- ]);
50
- var _state_value;
51
- // In Safari, the <select> cannot have `display: none` or `hidden` for autofill to work.
52
- // In Firefox, there must be a <label> to identify the <select> whereas other browsers
53
- // seem to identify it just by surrounding text.
54
- // The solution is to use <VisuallyHidden> to hide the elements, which clips the elements to a
55
- // 1px rectangle. In addition, we hide from screen readers with aria-hidden, and make the <select>
56
- // non tabbable with tabIndex={-1}.
57
- return {
58
- containerProps: {
59
- ...visuallyHiddenProps,
60
- 'aria-hidden': true,
61
- // @ts-ignore
62
- ['data-react-aria-prevent-focus']: true,
63
- // @ts-ignore
64
- ['data-a11y-ignore']: 'aria-hidden-focus'
65
- },
66
- inputProps: {
67
- style: {
68
- display: 'none'
69
- }
70
- },
71
- selectProps: {
72
- tabIndex: -1,
73
- autoComplete: autoComplete,
74
- disabled: isDisabled,
75
- multiple: state.selectionManager.selectionMode === 'multiple',
76
- required: validationBehavior === 'native' && isRequired,
77
- name: name,
78
- form: form,
79
- value: (_state_value = state.value) !== null && _state_value !== void 0 ? _state_value : '',
80
- onChange: onChange,
81
- onInput: onChange
82
- }
83
- };
84
- }
85
- function $bdd25dc72710631f$export$cbd84cdb2e668835(props) {
86
- let { state: state, triggerRef: triggerRef, label: label, name: name, form: form, isDisabled: isDisabled } = props;
87
- let selectRef = (0, $8BE50$useRef)(null);
88
- let inputRef = (0, $8BE50$useRef)(null);
89
- let { containerProps: containerProps, selectProps: selectProps } = $bdd25dc72710631f$export$f809e80f58e251d1({
90
- ...props,
91
- selectRef: state.collection.size <= 300 ? selectRef : inputRef
92
- }, state, triggerRef);
93
- let values = Array.isArray(state.value) ? state.value : [
94
- state.value
95
- ];
96
- // If used in a <form>, use a hidden input so the value can be submitted to a server.
97
- // If the collection isn't too big, use a hidden <select> element for this so that browser
98
- // autofill will work. Otherwise, use an <input type="hidden">.
99
- if (state.collection.size <= 300) return /*#__PURE__*/ (0, $8BE50$react).createElement("div", {
100
- ...containerProps,
101
- "data-testid": "hidden-select-container"
102
- }, /*#__PURE__*/ (0, $8BE50$react).createElement("label", null, label, /*#__PURE__*/ (0, $8BE50$react).createElement("select", {
103
- ...selectProps,
104
- ref: selectRef
105
- }, /*#__PURE__*/ (0, $8BE50$react).createElement("option", null), [
106
- ...state.collection.getKeys()
107
- ].map((key)=>{
108
- let item = state.collection.getItem(key);
109
- if (item && item.type === 'item') return /*#__PURE__*/ (0, $8BE50$react).createElement("option", {
110
- key: item.key,
111
- value: item.key
112
- }, item.textValue);
113
- }), state.collection.size === 0 && name && values.map((value, i)=>/*#__PURE__*/ (0, $8BE50$react).createElement("option", {
114
- key: i,
115
- value: value !== null && value !== void 0 ? value : ''
116
- })))));
117
- else if (name) {
118
- let data = (0, $58aed456727eb0f3$export$703601b7e90536f8).get(state) || {};
119
- let { validationBehavior: validationBehavior } = data;
120
- // Always render at least one hidden input to ensure required form submission.
121
- if (values.length === 0) values = [
122
- null
123
- ];
124
- let res = values.map((value, i)=>{
125
- let inputProps = {
126
- type: 'hidden',
127
- autoComplete: selectProps.autoComplete,
128
- name: name,
129
- form: form,
130
- disabled: isDisabled,
131
- value: value !== null && value !== void 0 ? value : ''
132
- };
133
- if (validationBehavior === 'native') // Use a hidden <input type="text"> rather than <input type="hidden">
134
- // so that an empty value blocks HTML form submission when the field is required.
135
- return /*#__PURE__*/ (0, $8BE50$react).createElement("input", {
136
- key: i,
137
- ...inputProps,
138
- ref: i === 0 ? inputRef : null,
139
- style: {
140
- display: 'none'
141
- },
142
- type: "text",
143
- required: i === 0 ? selectProps.required : false,
144
- onChange: ()=>{}
145
- });
146
- return /*#__PURE__*/ (0, $8BE50$react).createElement("input", {
147
- key: i,
148
- ...inputProps,
149
- ref: i === 0 ? inputRef : null
150
- });
151
- });
152
- return /*#__PURE__*/ (0, $8BE50$react).createElement((0, $8BE50$react).Fragment, null, res);
153
- }
154
- return null;
155
- }
156
-
157
-
158
- export {$bdd25dc72710631f$export$f809e80f58e251d1 as useHiddenSelect, $bdd25dc72710631f$export$cbd84cdb2e668835 as HiddenSelect};
159
- //# sourceMappingURL=HiddenSelect.module.js.map
@@ -1 +0,0 @@
1
- {"mappings":"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","sources":["packages/@react-aria/select/src/HiddenSelect.tsx"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusableElement, Key, RefObject} from '@react-types/shared';\nimport {getEventTarget, useFormReset} from '@react-aria/utils';\nimport React, {InputHTMLAttributes, JSX, ReactNode, useCallback, useRef} from 'react';\nimport {selectData} from './useSelect';\nimport {SelectionMode} from '@react-types/select';\nimport {SelectState} from '@react-stately/select';\nimport {useFormValidation} from '@react-aria/form';\nimport {useVisuallyHidden} from '@react-aria/visually-hidden';\n\nexport interface AriaHiddenSelectProps {\n /**\n * Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).\n */\n autoComplete?: string,\n\n /** The text label for the select. */\n label?: ReactNode,\n\n /** HTML form input name. */\n name?: string,\n\n /**\n * The `<form>` element to associate the input with.\n * The value of this attribute must be the id of a `<form>` in the same document.\n * See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/input#form).\n */\n form?: string,\n\n /** Sets the disabled state of the select and input. */\n isDisabled?: boolean\n}\n\nexport interface HiddenSelectProps<T, M extends SelectionMode = 'single'> extends AriaHiddenSelectProps {\n /** State for the select. */\n state: SelectState<T, M>,\n\n /** A ref to the trigger element. */\n triggerRef: RefObject<FocusableElement | null>\n}\n\nexport interface AriaHiddenSelectOptions extends AriaHiddenSelectProps {\n /** A ref to the hidden `<select>` element. */\n selectRef?: RefObject<HTMLSelectElement | HTMLInputElement | null>\n}\n\nexport interface HiddenSelectAria {\n /** Props for the container element. */\n containerProps: React.HTMLAttributes<FocusableElement>,\n\n /** Props for the hidden input element. */\n inputProps: React.InputHTMLAttributes<HTMLInputElement>,\n\n /** Props for the hidden select element. */\n selectProps: React.SelectHTMLAttributes<HTMLSelectElement>\n}\n\n/**\n * Provides the behavior and accessibility implementation for a hidden `<select>` element, which\n * can be used in combination with `useSelect` to support browser form autofill, mobile form\n * navigation, and native HTML form submission.\n */\nexport function useHiddenSelect<T, M extends SelectionMode = 'single'>(props: AriaHiddenSelectOptions, state: SelectState<T, M>, triggerRef: RefObject<FocusableElement | null>): HiddenSelectAria {\n let data = selectData.get(state) || {};\n let {autoComplete, name = data.name, form = data.form, isDisabled = data.isDisabled} = props;\n let {validationBehavior, isRequired} = data;\n let {visuallyHiddenProps} = useVisuallyHidden({\n style: {\n // Prevent page scrolling.\n position: 'fixed',\n top: 0,\n left: 0\n }\n });\n\n useFormReset(props.selectRef, state.defaultValue, state.setValue);\n useFormValidation({\n validationBehavior,\n focus: () => triggerRef.current?.focus()\n }, state, props.selectRef);\n\n let setValue = state.setValue;\n let onChange = useCallback((e: React.ChangeEvent<HTMLSelectElement>) => {\n let eventTarget = getEventTarget(e);\n if (eventTarget.multiple) {\n setValue(Array.from(\n eventTarget.selectedOptions,\n (option) => option.value\n ) as any);\n } else {\n setValue(e.currentTarget.value as any);\n }\n }, [setValue]);\n\n // In Safari, the <select> cannot have `display: none` or `hidden` for autofill to work.\n // In Firefox, there must be a <label> to identify the <select> whereas other browsers\n // seem to identify it just by surrounding text.\n // The solution is to use <VisuallyHidden> to hide the elements, which clips the elements to a\n // 1px rectangle. In addition, we hide from screen readers with aria-hidden, and make the <select>\n // non tabbable with tabIndex={-1}.\n return {\n containerProps: {\n ...visuallyHiddenProps,\n 'aria-hidden': true,\n // @ts-ignore\n ['data-react-aria-prevent-focus']: true,\n // @ts-ignore\n ['data-a11y-ignore']: 'aria-hidden-focus'\n },\n inputProps: {\n style: {display: 'none'}\n },\n selectProps: {\n tabIndex: -1,\n autoComplete,\n disabled: isDisabled,\n multiple: state.selectionManager.selectionMode === 'multiple',\n required: validationBehavior === 'native' && isRequired,\n name,\n form,\n value: (state.value as string | string[]) ?? '',\n onChange,\n onInput: onChange\n }\n };\n}\n\n/**\n * Renders a hidden native `<select>` element, which can be used to support browser\n * form autofill, mobile form navigation, and native form submission.\n */\nexport function HiddenSelect<T, M extends SelectionMode = 'single'>(props: HiddenSelectProps<T, M>): JSX.Element | null {\n let {state, triggerRef, label, name, form, isDisabled} = props;\n let selectRef = useRef(null);\n let inputRef = useRef(null);\n let {containerProps, selectProps} = useHiddenSelect({...props, selectRef: state.collection.size <= 300 ? selectRef : inputRef}, state, triggerRef);\n\n let values: (Key | null)[] = Array.isArray(state.value) ? state.value : [state.value];\n\n // If used in a <form>, use a hidden input so the value can be submitted to a server.\n // If the collection isn't too big, use a hidden <select> element for this so that browser\n // autofill will work. Otherwise, use an <input type=\"hidden\">.\n if (state.collection.size <= 300) {\n return (\n <div {...containerProps} data-testid=\"hidden-select-container\">\n <label>\n {label}\n <select {...selectProps} ref={selectRef}>\n <option />\n {[...state.collection.getKeys()].map(key => {\n let item = state.collection.getItem(key);\n if (item && item.type === 'item') {\n return (\n <option\n key={item.key}\n value={item.key}>\n {item.textValue}\n </option>\n );\n }\n })}\n {/* The collection may be empty during the initial render. */}\n {/* Rendering options for the current values ensures the select has a value immediately, */}\n {/* making FormData reads consistent. */}\n {state.collection.size === 0 && name && values.map((value, i) => <option key={i} value={value ?? ''} />)}\n </select>\n </label>\n </div>\n );\n } else if (name) {\n let data = selectData.get(state) || {};\n let {validationBehavior} = data;\n\n // Always render at least one hidden input to ensure required form submission.\n if (values.length === 0) {\n values = [null];\n }\n\n let res = values.map((value, i) => {\n let inputProps: InputHTMLAttributes<HTMLInputElement> = {\n type: 'hidden',\n autoComplete: selectProps.autoComplete,\n name,\n form,\n disabled: isDisabled,\n value: value ?? ''\n };\n\n if (validationBehavior === 'native') {\n // Use a hidden <input type=\"text\"> rather than <input type=\"hidden\">\n // so that an empty value blocks HTML form submission when the field is required.\n return (\n <input\n key={i}\n {...inputProps}\n ref={i === 0 ? inputRef : null}\n style={{display: 'none'}}\n type=\"text\"\n required={i === 0 ? selectProps.required : false}\n onChange={() => {/** Ignore react warning. */}} />\n );\n }\n\n return (\n <input key={i} {...inputProps} ref={i === 0 ? inputRef : null} />\n );\n });\n\n return <>{res}</>;\n }\n\n return null;\n}\n"],"names":[],"version":3,"file":"HiddenSelect.module.js.map"}
package/dist/types.d.ts DELETED
@@ -1,86 +0,0 @@
1
- import { FocusableElement, RefObject, DOMAttributes, KeyboardDelegate, ValidationResult } from "@react-types/shared";
2
- import React, { JSX, ReactNode } from "react";
3
- import { SelectionMode, AriaSelectProps } from "@react-types/select";
4
- import { SelectState } from "@react-stately/select";
5
- import { AriaButtonProps } from "@react-types/button";
6
- import { AriaListBoxOptions } from "@react-aria/listbox";
7
- export interface AriaHiddenSelectProps {
8
- /**
9
- * Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).
10
- */
11
- autoComplete?: string;
12
- /** The text label for the select. */
13
- label?: ReactNode;
14
- /** HTML form input name. */
15
- name?: string;
16
- /**
17
- * The `<form>` element to associate the input with.
18
- * The value of this attribute must be the id of a `<form>` in the same document.
19
- * See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/input#form).
20
- */
21
- form?: string;
22
- /** Sets the disabled state of the select and input. */
23
- isDisabled?: boolean;
24
- }
25
- export interface HiddenSelectProps<T, M extends SelectionMode = 'single'> extends AriaHiddenSelectProps {
26
- /** State for the select. */
27
- state: SelectState<T, M>;
28
- /** A ref to the trigger element. */
29
- triggerRef: RefObject<FocusableElement | null>;
30
- }
31
- interface AriaHiddenSelectOptions extends AriaHiddenSelectProps {
32
- /** A ref to the hidden `<select>` element. */
33
- selectRef?: RefObject<HTMLSelectElement | HTMLInputElement | null>;
34
- }
35
- interface HiddenSelectAria {
36
- /** Props for the container element. */
37
- containerProps: React.HTMLAttributes<FocusableElement>;
38
- /** Props for the hidden input element. */
39
- inputProps: React.InputHTMLAttributes<HTMLInputElement>;
40
- /** Props for the hidden select element. */
41
- selectProps: React.SelectHTMLAttributes<HTMLSelectElement>;
42
- }
43
- /**
44
- * Provides the behavior and accessibility implementation for a hidden `<select>` element, which
45
- * can be used in combination with `useSelect` to support browser form autofill, mobile form
46
- * navigation, and native HTML form submission.
47
- */
48
- export function useHiddenSelect<T, M extends SelectionMode = 'single'>(props: AriaHiddenSelectOptions, state: SelectState<T, M>, triggerRef: RefObject<FocusableElement | null>): HiddenSelectAria;
49
- /**
50
- * Renders a hidden native `<select>` element, which can be used to support browser
51
- * form autofill, mobile form navigation, and native form submission.
52
- */
53
- export function HiddenSelect<T, M extends SelectionMode = 'single'>(props: HiddenSelectProps<T, M>): JSX.Element | null;
54
- export interface AriaSelectOptions<T, M extends SelectionMode = 'single'> extends Omit<AriaSelectProps<T, M>, 'children'> {
55
- /**
56
- * An optional keyboard delegate implementation for type to select,
57
- * to override the default.
58
- */
59
- keyboardDelegate?: KeyboardDelegate;
60
- }
61
- export interface SelectAria<T, M extends SelectionMode = 'single'> extends ValidationResult {
62
- /** Props for the label element. */
63
- labelProps: DOMAttributes;
64
- /** Props for the popup trigger element. */
65
- triggerProps: AriaButtonProps;
66
- /** Props for the element representing the selected value. */
67
- valueProps: DOMAttributes;
68
- /** Props for the popup. */
69
- menuProps: AriaListBoxOptions<T>;
70
- /** Props for the select's description element, if any. */
71
- descriptionProps: DOMAttributes;
72
- /** Props for the select's error message element, if any. */
73
- errorMessageProps: DOMAttributes;
74
- /** Props for the hidden select element. */
75
- hiddenSelectProps: HiddenSelectProps<T, M>;
76
- }
77
- /**
78
- * Provides the behavior and accessibility implementation for a select component.
79
- * A select displays a collapsible list of options and allows a user to select one of them.
80
- * @param props - Props for the select.
81
- * @param state - State for the select, as returned by `useListState`.
82
- */
83
- export function useSelect<T, M extends SelectionMode = 'single'>(props: AriaSelectOptions<T, M>, state: SelectState<T, M>, ref: RefObject<HTMLElement | null>): SelectAria<T, M>;
84
- export type { AriaSelectProps } from '@react-types/select';
85
-
86
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"mappings":";;;;;;AAqBA;IACE;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,qCAAqC;IACrC,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB,4BAA4B;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,uDAAuD;IACvD,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,mCAAmC,CAAC,EAAE,CAAC,SAAS,aAAa,GAAG,QAAQ,CAAE,SAAQ,qBAAqB;IACrG,4BAA4B;IAC5B,KAAK,EAAE,YAAY,CAAC,EAAE,CAAC,CAAC,CAAC;IAEzB,oCAAoC;IACpC,UAAU,EAAE,UAAU,gBAAgB,GAAG,IAAI,CAAC,CAAA;CAC/C;AAED,iCAAyC,SAAQ,qBAAqB;IACpE,8CAA8C;IAC9C,SAAS,CAAC,EAAE,UAAU,iBAAiB,GAAG,gBAAgB,GAAG,IAAI,CAAC,CAAA;CACnE;AAED;IACE,uCAAuC;IACvC,cAAc,EAAE,MAAM,cAAc,CAAC,gBAAgB,CAAC,CAAC;IAEvD,0CAA0C;IAC1C,UAAU,EAAE,MAAM,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;IAExD,2CAA2C;IAC3C,WAAW,EAAE,MAAM,oBAAoB,CAAC,iBAAiB,CAAC,CAAA;CAC3D;AAED;;;;GAIG;AACH,gCAAgC,CAAC,EAAE,CAAC,SAAS,aAAa,GAAG,QAAQ,EAAE,KAAK,EAAE,uBAAuB,EAAE,KAAK,EAAE,YAAY,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,UAAU,gBAAgB,GAAG,IAAI,CAAC,GAAG,gBAAgB,CA+DjM;AAED;;;GAGG;AACH,6BAA6B,CAAC,EAAE,CAAC,SAAS,aAAa,GAAG,QAAQ,EAAE,KAAK,EAAE,kBAAkB,CAAC,EAAE,CAAC,CAAC,GAAG,IAAI,OAAO,GAAG,IAAI,CAiFtH;ACrMD,mCAAmC,CAAC,EAAE,CAAC,SAAS,aAAa,GAAG,QAAQ,CAAE,SAAQ,IAAI,CAAC,gBAAgB,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,CAAC;IACvH;;;OAGG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;CACpC;AAED,4BAA4B,CAAC,EAAE,CAAC,SAAS,aAAa,GAAG,QAAQ,CAAE,SAAQ,gBAAgB;IACzF,mCAAmC;IACnC,UAAU,EAAE,aAAa,CAAC;IAE1B,2CAA2C;IAC3C,YAAY,EAAE,eAAe,CAAC;IAE9B,6DAA6D;IAC7D,UAAU,EAAE,aAAa,CAAC;IAE1B,2BAA2B;IAC3B,SAAS,EAAE,mBAAmB,CAAC,CAAC,CAAC;IAEjC,0DAA0D;IAC1D,gBAAgB,EAAE,aAAa,CAAC;IAEhC,4DAA4D;IAC5D,iBAAiB,EAAE,aAAa,CAAC;IAEjC,2CAA2C;IAC3C,iBAAiB,EAAE,kBAAkB,CAAC,EAAE,CAAC,CAAC,CAAA;CAC3C;AAYD;;;;;GAKG;AACH,0BAA0B,CAAC,EAAE,CAAC,SAAS,aAAa,GAAG,QAAQ,EAAE,KAAK,EAAE,kBAAkB,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,WAAW,GAAG,IAAI,CAAC,GAAG,WAAW,CAAC,EAAE,CAAC,CAAC,CAyL/K;ACnPD,YAAY,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC","sources":["packages/@react-aria/select/src/packages/@react-aria/select/src/HiddenSelect.tsx","packages/@react-aria/select/src/packages/@react-aria/select/src/useSelect.ts","packages/@react-aria/select/src/packages/@react-aria/select/src/index.ts","packages/@react-aria/select/src/index.ts"],"sourcesContent":[null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nexport {useSelect} from './useSelect';\nexport {useHiddenSelect, HiddenSelect} from './HiddenSelect';\nexport type {AriaSelectOptions, SelectAria} from './useSelect';\nexport type {AriaHiddenSelectProps, HiddenSelectProps} from './HiddenSelect';\nexport type {AriaSelectProps} from '@react-types/select';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
@@ -1,178 +0,0 @@
1
- var $63cuq$reactariautils = require("@react-aria/utils");
2
- var $63cuq$react = require("react");
3
- var $63cuq$reactariaselection = require("@react-aria/selection");
4
- var $63cuq$reactariainteractions = require("@react-aria/interactions");
5
- var $63cuq$reactariai18n = require("@react-aria/i18n");
6
- var $63cuq$reactarialabel = require("@react-aria/label");
7
- var $63cuq$reactariamenu = require("@react-aria/menu");
8
-
9
-
10
- function $parcel$export(e, n, v, s) {
11
- Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
12
- }
13
-
14
- $parcel$export(module.exports, "selectData", () => $23a1e93dc7fa8653$export$703601b7e90536f8);
15
- $parcel$export(module.exports, "useSelect", () => $23a1e93dc7fa8653$export$e64b2f635402ca43);
16
- /*
17
- * Copyright 2020 Adobe. All rights reserved.
18
- * This file is licensed to you under the Apache License, Version 2.0 (the "License");
19
- * you may not use this file except in compliance with the License. You may obtain a copy
20
- * of the License at http://www.apache.org/licenses/LICENSE-2.0
21
- *
22
- * Unless required by applicable law or agreed to in writing, software distributed under
23
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
24
- * OF ANY KIND, either express or implied. See the License for the specific language
25
- * governing permissions and limitations under the License.
26
- */
27
-
28
-
29
-
30
-
31
-
32
-
33
- const $23a1e93dc7fa8653$export$703601b7e90536f8 = new WeakMap();
34
- function $23a1e93dc7fa8653$export$e64b2f635402ca43(props, state, ref) {
35
- let { keyboardDelegate: keyboardDelegate, isDisabled: isDisabled, isRequired: isRequired, name: name, form: form, validationBehavior: validationBehavior = 'aria' } = props;
36
- // By default, a KeyboardDelegate is provided which uses the DOM to query layout information (e.g. for page up/page down).
37
- // When virtualized, the layout object will be passed in as a prop and override this.
38
- let collator = (0, $63cuq$reactariai18n.useCollator)({
39
- usage: 'search',
40
- sensitivity: 'base'
41
- });
42
- let delegate = (0, $63cuq$react.useMemo)(()=>keyboardDelegate || new (0, $63cuq$reactariaselection.ListKeyboardDelegate)(state.collection, state.disabledKeys, ref, collator), [
43
- keyboardDelegate,
44
- state.collection,
45
- state.disabledKeys,
46
- collator,
47
- ref
48
- ]);
49
- let { menuTriggerProps: menuTriggerProps, menuProps: menuProps } = (0, $63cuq$reactariamenu.useMenuTrigger)({
50
- isDisabled: isDisabled,
51
- type: 'listbox'
52
- }, state, ref);
53
- let onKeyDown = (e)=>{
54
- if (state.selectionManager.selectionMode === 'multiple') return;
55
- switch(e.key){
56
- case 'ArrowLeft':
57
- {
58
- var _delegate_getKeyAbove, _delegate_getFirstKey;
59
- // prevent scrolling containers
60
- e.preventDefault();
61
- let key = state.selectedKey != null ? (_delegate_getKeyAbove = delegate.getKeyAbove) === null || _delegate_getKeyAbove === void 0 ? void 0 : _delegate_getKeyAbove.call(delegate, state.selectedKey) : (_delegate_getFirstKey = delegate.getFirstKey) === null || _delegate_getFirstKey === void 0 ? void 0 : _delegate_getFirstKey.call(delegate);
62
- if (key) state.setSelectedKey(key);
63
- break;
64
- }
65
- case 'ArrowRight':
66
- {
67
- var _delegate_getKeyBelow, _delegate_getFirstKey1;
68
- // prevent scrolling containers
69
- e.preventDefault();
70
- let key = state.selectedKey != null ? (_delegate_getKeyBelow = delegate.getKeyBelow) === null || _delegate_getKeyBelow === void 0 ? void 0 : _delegate_getKeyBelow.call(delegate, state.selectedKey) : (_delegate_getFirstKey1 = delegate.getFirstKey) === null || _delegate_getFirstKey1 === void 0 ? void 0 : _delegate_getFirstKey1.call(delegate);
71
- if (key) state.setSelectedKey(key);
72
- break;
73
- }
74
- }
75
- };
76
- let { typeSelectProps: typeSelectProps } = (0, $63cuq$reactariaselection.useTypeSelect)({
77
- keyboardDelegate: delegate,
78
- selectionManager: state.selectionManager,
79
- onTypeSelect (key) {
80
- state.setSelectedKey(key);
81
- }
82
- });
83
- let { isInvalid: isInvalid, validationErrors: validationErrors, validationDetails: validationDetails } = state.displayValidation;
84
- let { labelProps: labelProps, fieldProps: fieldProps, descriptionProps: descriptionProps, errorMessageProps: errorMessageProps } = (0, $63cuq$reactarialabel.useField)({
85
- ...props,
86
- labelElementType: 'span',
87
- isInvalid: isInvalid,
88
- errorMessage: props.errorMessage || validationErrors
89
- });
90
- typeSelectProps.onKeyDown = typeSelectProps.onKeyDownCapture;
91
- delete typeSelectProps.onKeyDownCapture;
92
- if (state.selectionManager.selectionMode === 'multiple') typeSelectProps = {};
93
- let domProps = (0, $63cuq$reactariautils.filterDOMProps)(props, {
94
- labelable: true
95
- });
96
- let triggerProps = (0, $63cuq$reactariautils.mergeProps)(typeSelectProps, menuTriggerProps, fieldProps);
97
- let valueId = (0, $63cuq$reactariautils.useId)();
98
- $23a1e93dc7fa8653$export$703601b7e90536f8.set(state, {
99
- isDisabled: isDisabled,
100
- isRequired: isRequired,
101
- name: name,
102
- form: form,
103
- validationBehavior: validationBehavior
104
- });
105
- return {
106
- labelProps: {
107
- ...labelProps,
108
- onClick: ()=>{
109
- if (!props.isDisabled) {
110
- var _ref_current;
111
- (_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.focus();
112
- // Show the focus ring so the user knows where focus went
113
- (0, $63cuq$reactariainteractions.setInteractionModality)('keyboard');
114
- }
115
- }
116
- },
117
- triggerProps: (0, $63cuq$reactariautils.mergeProps)(domProps, {
118
- ...triggerProps,
119
- isDisabled: isDisabled,
120
- onKeyDown: (0, $63cuq$reactariautils.chain)(triggerProps.onKeyDown, onKeyDown, props.onKeyDown),
121
- onKeyUp: props.onKeyUp,
122
- 'aria-labelledby': [
123
- valueId,
124
- triggerProps['aria-labelledby'],
125
- triggerProps['aria-label'] && !triggerProps['aria-labelledby'] ? triggerProps.id : null
126
- ].filter(Boolean).join(' '),
127
- onFocus (e) {
128
- if (state.isFocused) return;
129
- if (props.onFocus) props.onFocus(e);
130
- if (props.onFocusChange) props.onFocusChange(true);
131
- state.setFocused(true);
132
- },
133
- onBlur (e) {
134
- if (state.isOpen) return;
135
- if (props.onBlur) props.onBlur(e);
136
- if (props.onFocusChange) props.onFocusChange(false);
137
- state.setFocused(false);
138
- }
139
- }),
140
- valueProps: {
141
- id: valueId
142
- },
143
- menuProps: {
144
- ...menuProps,
145
- autoFocus: state.focusStrategy || true,
146
- shouldSelectOnPressUp: true,
147
- shouldFocusOnHover: true,
148
- disallowEmptySelection: true,
149
- linkBehavior: 'selection',
150
- onBlur: (e)=>{
151
- if ((0, $63cuq$reactariautils.nodeContains)(e.currentTarget, e.relatedTarget)) return;
152
- if (props.onBlur) props.onBlur(e);
153
- if (props.onFocusChange) props.onFocusChange(false);
154
- state.setFocused(false);
155
- },
156
- 'aria-labelledby': [
157
- fieldProps['aria-labelledby'],
158
- triggerProps['aria-label'] && !fieldProps['aria-labelledby'] ? triggerProps.id : null
159
- ].filter(Boolean).join(' ')
160
- },
161
- descriptionProps: descriptionProps,
162
- errorMessageProps: errorMessageProps,
163
- isInvalid: isInvalid,
164
- validationErrors: validationErrors,
165
- validationDetails: validationDetails,
166
- hiddenSelectProps: {
167
- isDisabled: isDisabled,
168
- name: name,
169
- label: props.label,
170
- state: state,
171
- triggerRef: ref,
172
- form: form
173
- }
174
- };
175
- }
176
-
177
-
178
- //# sourceMappingURL=useSelect.main.js.map
@@ -1 +0,0 @@
1
- {"mappings":"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","sources":["packages/@react-aria/select/src/useSelect.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {AriaButtonProps} from '@react-types/button';\nimport {AriaListBoxOptions} from '@react-aria/listbox';\nimport {AriaSelectProps, SelectionMode} from '@react-types/select';\nimport {chain, filterDOMProps, mergeProps, nodeContains, useId} from '@react-aria/utils';\nimport {DOMAttributes, KeyboardDelegate, RefObject, ValidationResult} from '@react-types/shared';\nimport {FocusEvent, useMemo} from 'react';\nimport {HiddenSelectProps} from './HiddenSelect';\nimport {ListKeyboardDelegate, useTypeSelect} from '@react-aria/selection';\nimport {SelectState} from '@react-stately/select';\nimport {setInteractionModality} from '@react-aria/interactions';\nimport {useCollator} from '@react-aria/i18n';\nimport {useField} from '@react-aria/label';\nimport {useMenuTrigger} from '@react-aria/menu';\n\nexport interface AriaSelectOptions<T, M extends SelectionMode = 'single'> extends Omit<AriaSelectProps<T, M>, 'children'> {\n /**\n * An optional keyboard delegate implementation for type to select,\n * to override the default.\n */\n keyboardDelegate?: KeyboardDelegate\n}\n\nexport interface SelectAria<T, M extends SelectionMode = 'single'> extends ValidationResult {\n /** Props for the label element. */\n labelProps: DOMAttributes,\n\n /** Props for the popup trigger element. */\n triggerProps: AriaButtonProps,\n\n /** Props for the element representing the selected value. */\n valueProps: DOMAttributes,\n\n /** Props for the popup. */\n menuProps: AriaListBoxOptions<T>,\n\n /** Props for the select's description element, if any. */\n descriptionProps: DOMAttributes,\n\n /** Props for the select's error message element, if any. */\n errorMessageProps: DOMAttributes,\n\n /** Props for the hidden select element. */\n hiddenSelectProps: HiddenSelectProps<T, M>\n}\n\ninterface SelectData {\n isDisabled?: boolean,\n isRequired?: boolean,\n name?: string,\n form?: string,\n validationBehavior?: 'aria' | 'native'\n}\n\nexport const selectData: WeakMap<SelectState<any, any>, SelectData> = new WeakMap<SelectState<any>, SelectData>();\n\n/**\n * Provides the behavior and accessibility implementation for a select component.\n * A select displays a collapsible list of options and allows a user to select one of them.\n * @param props - Props for the select.\n * @param state - State for the select, as returned by `useListState`.\n */\nexport function useSelect<T, M extends SelectionMode = 'single'>(props: AriaSelectOptions<T, M>, state: SelectState<T, M>, ref: RefObject<HTMLElement | null>): SelectAria<T, M> {\n let {\n keyboardDelegate,\n isDisabled,\n isRequired,\n name,\n form,\n validationBehavior = 'aria'\n } = props;\n\n // By default, a KeyboardDelegate is provided which uses the DOM to query layout information (e.g. for page up/page down).\n // When virtualized, the layout object will be passed in as a prop and override this.\n let collator = useCollator({usage: 'search', sensitivity: 'base'});\n let delegate = useMemo(() => keyboardDelegate || new ListKeyboardDelegate(state.collection, state.disabledKeys, ref, collator), [keyboardDelegate, state.collection, state.disabledKeys, collator, ref]);\n\n let {menuTriggerProps, menuProps} = useMenuTrigger<T>(\n {\n isDisabled,\n type: 'listbox'\n },\n state,\n ref\n );\n\n let onKeyDown = (e: KeyboardEvent) => {\n if (state.selectionManager.selectionMode === 'multiple') {\n return;\n }\n \n switch (e.key) {\n case 'ArrowLeft': {\n // prevent scrolling containers\n e.preventDefault();\n\n let key = state.selectedKey != null ? delegate.getKeyAbove?.(state.selectedKey) : delegate.getFirstKey?.();\n if (key) {\n state.setSelectedKey(key);\n }\n break;\n }\n case 'ArrowRight': {\n // prevent scrolling containers\n e.preventDefault();\n\n let key = state.selectedKey != null ? delegate.getKeyBelow?.(state.selectedKey) : delegate.getFirstKey?.();\n if (key) {\n state.setSelectedKey(key);\n }\n break;\n }\n }\n };\n\n let {typeSelectProps} = useTypeSelect({\n keyboardDelegate: delegate,\n selectionManager: state.selectionManager,\n onTypeSelect(key) {\n state.setSelectedKey(key);\n }\n });\n\n let {isInvalid, validationErrors, validationDetails} = state.displayValidation;\n let {labelProps, fieldProps, descriptionProps, errorMessageProps} = useField({\n ...props,\n labelElementType: 'span',\n isInvalid,\n errorMessage: props.errorMessage || validationErrors\n });\n\n typeSelectProps.onKeyDown = typeSelectProps.onKeyDownCapture;\n delete typeSelectProps.onKeyDownCapture;\n if (state.selectionManager.selectionMode === 'multiple') {\n typeSelectProps = {};\n }\n\n let domProps = filterDOMProps(props, {labelable: true});\n let triggerProps = mergeProps(typeSelectProps, menuTriggerProps, fieldProps);\n\n let valueId = useId();\n\n selectData.set(state, {\n isDisabled,\n isRequired,\n name,\n form,\n validationBehavior\n });\n\n return {\n labelProps: {\n ...labelProps,\n onClick: () => {\n if (!props.isDisabled) {\n ref.current?.focus();\n\n // Show the focus ring so the user knows where focus went\n setInteractionModality('keyboard');\n }\n }\n },\n triggerProps: mergeProps(domProps, {\n ...triggerProps,\n isDisabled,\n onKeyDown: chain(triggerProps.onKeyDown, onKeyDown, props.onKeyDown),\n onKeyUp: props.onKeyUp,\n 'aria-labelledby': [\n valueId,\n triggerProps['aria-labelledby'],\n triggerProps['aria-label'] && !triggerProps['aria-labelledby'] ? triggerProps.id : null\n ].filter(Boolean).join(' '),\n onFocus(e: FocusEvent) {\n if (state.isFocused) {\n return;\n }\n\n if (props.onFocus) {\n props.onFocus(e);\n }\n\n if (props.onFocusChange) {\n props.onFocusChange(true);\n }\n\n state.setFocused(true);\n },\n onBlur(e: FocusEvent) {\n if (state.isOpen) {\n return;\n }\n\n if (props.onBlur) {\n props.onBlur(e);\n }\n\n if (props.onFocusChange) {\n props.onFocusChange(false);\n }\n\n state.setFocused(false);\n }\n }),\n valueProps: {\n id: valueId\n },\n menuProps: {\n ...menuProps,\n autoFocus: state.focusStrategy || true,\n shouldSelectOnPressUp: true,\n shouldFocusOnHover: true,\n disallowEmptySelection: true,\n linkBehavior: 'selection',\n onBlur: (e) => {\n if (nodeContains(e.currentTarget, e.relatedTarget as Node)) {\n return;\n }\n\n if (props.onBlur) {\n props.onBlur(e);\n }\n\n if (props.onFocusChange) {\n props.onFocusChange(false);\n }\n\n state.setFocused(false);\n },\n 'aria-labelledby': [\n fieldProps['aria-labelledby'],\n triggerProps['aria-label'] && !fieldProps['aria-labelledby'] ? triggerProps.id : null\n ].filter(Boolean).join(' ')\n },\n descriptionProps,\n errorMessageProps,\n isInvalid,\n validationErrors,\n validationDetails,\n hiddenSelectProps: {\n isDisabled,\n name,\n label: props.label,\n state,\n triggerRef: ref,\n form\n }\n };\n}\n"],"names":[],"version":3,"file":"useSelect.main.js.map"}