@react-aria/select 3.10.2-nightly.3943 → 3.10.2-nightly.3960

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 CHANGED
@@ -112,7 +112,7 @@ export function useHiddenSelect<T>(props: AriaHiddenSelectProps, state: SelectSt
112
112
  'aria-valuetext'?: string;
113
113
  children?: React.ReactNode;
114
114
  dangerouslySetInnerHTML?: {
115
- __html: string;
115
+ __html: string | TrustedHTML;
116
116
  };
117
117
  onCopy?: React.ClipboardEventHandler<FocusableElement>;
118
118
  onCopyCapture?: React.ClipboardEventHandler<FocusableElement>;
@@ -182,6 +182,8 @@ export function useHiddenSelect<T>(props: AriaHiddenSelectProps, state: SelectSt
182
182
  onProgressCapture?: React.ReactEventHandler<FocusableElement>;
183
183
  onRateChange?: React.ReactEventHandler<FocusableElement>;
184
184
  onRateChangeCapture?: React.ReactEventHandler<FocusableElement>;
185
+ onResize?: React.ReactEventHandler<FocusableElement>;
186
+ onResizeCapture?: React.ReactEventHandler<FocusableElement>;
185
187
  onSeeked?: React.ReactEventHandler<FocusableElement>;
186
188
  onSeekedCapture?: React.ReactEventHandler<FocusableElement>;
187
189
  onSeeking?: React.ReactEventHandler<FocusableElement>;
@@ -298,7 +300,7 @@ export function useHiddenSelect<T>(props: AriaHiddenSelectProps, state: SelectSt
298
300
  * Renders a hidden native `<select>` element, which can be used to support browser
299
301
  * form autofill, mobile form navigation, and native form submission.
300
302
  */
301
- export function HiddenSelect<T>(props: HiddenSelectProps<T>): JSX.Element;
303
+ export function HiddenSelect<T>(props: HiddenSelectProps<T>): React.JSX.Element;
302
304
  export type { AriaSelectProps } from '@react-types/select';
303
305
 
304
306
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"mappings":";;;;;;AAyBA,mCAAmC,CAAC,CAAE,SAAQ,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,UAAU,CAAC;IAChF;;;OAGG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;CACpC;AAED,4BAA4B,CAAC;IAC3B,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,CAAA;CACjC;AAED;;;;;GAKG;AACH,0BAA0B,CAAC,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,gBAAgB,CAAC,GAAG,WAAW,CAAC,CAAC,CAuJhI;AChMD;IACE;;OAEG;IACF,YAAY,CAAC,EAAE,MAAM,CAAC;IAEvB,qCAAqC;IACrC,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB,4BAA4B;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,uDAAuD;IACvD,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,mCAAmC,CAAC,CAAE,SAAQ,qBAAqB;IACjE,4BAA4B;IAC5B,KAAK,EAAE,YAAY,CAAC,CAAC,CAAC;IAEtB,oCAAoC;IACpC,UAAU,EAAE,UAAU,gBAAgB,CAAC,CAAA;CACxC;AAED;;;;GAIG;AACH,gCAAgC,CAAC,EAAE,KAAK,EAAE,qBAAqB,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,UAAU,EAAE,UAAU,gBAAgB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA0C3G,MAAM,WAAW,CAAC,iBAAiB,CAAC;;EAGvD;AAED;;;GAGG;AACH,6BAA6B,CAAC,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC,eA2C1D;AC9HD,YAAY,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC","sources":["packages/@react-aria/select/src/packages/@react-aria/select/src/useSelect.ts","packages/@react-aria/select/src/packages/@react-aria/select/src/HiddenSelect.tsx","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
+ {"mappings":";;;;;;AAyBA,mCAAmC,CAAC,CAAE,SAAQ,IAAI,CAAC,gBAAgB,CAAC,CAAC,EAAE,UAAU,CAAC;IAChF;;;OAGG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;CACpC;AAED,4BAA4B,CAAC;IAC3B,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,CAAA;CACjC;AAED;;;;;GAKG;AACH,0BAA0B,CAAC,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,gBAAgB,CAAC,GAAG,WAAW,CAAC,CAAC,CAuJhI;AChMD;IACE;;OAEG;IACF,YAAY,CAAC,EAAE,MAAM,CAAC;IAEvB,qCAAqC;IACrC,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB,4BAA4B;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,uDAAuD;IACvD,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,mCAAmC,CAAC,CAAE,SAAQ,qBAAqB;IACjE,4BAA4B;IAC5B,KAAK,EAAE,YAAY,CAAC,CAAC,CAAC;IAEtB,oCAAoC;IACpC,UAAU,EAAE,UAAU,gBAAgB,CAAC,CAAA;CACxC;AAED;;;;GAIG;AACH,gCAAgC,CAAC,EAAE,KAAK,EAAE,qBAAqB,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,UAAU,EAAE,UAAU,gBAAgB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA0C3G,MAAM,WAAW,CAAC,iBAAiB,CAAC;;EAGvD;AAED;;;GAGG;AACH,6BAA6B,CAAC,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC,qBA2C1D;AC9HD,YAAY,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC","sources":["packages/@react-aria/select/src/packages/@react-aria/select/src/useSelect.ts","packages/@react-aria/select/src/packages/@react-aria/select/src/HiddenSelect.tsx","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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-aria/select",
3
- "version": "3.10.2-nightly.3943+06e63d3ae",
3
+ "version": "3.10.2-nightly.3960+16f72e9fb",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -22,18 +22,18 @@
22
22
  "url": "https://github.com/adobe/react-spectrum"
23
23
  },
24
24
  "dependencies": {
25
- "@react-aria/i18n": "3.0.0-nightly.2241+06e63d3ae",
26
- "@react-aria/interactions": "3.0.0-nightly.2241+06e63d3ae",
27
- "@react-aria/label": "3.0.0-nightly.2241+06e63d3ae",
28
- "@react-aria/listbox": "3.9.2-nightly.3943+06e63d3ae",
29
- "@react-aria/menu": "3.9.2-nightly.3943+06e63d3ae",
30
- "@react-aria/selection": "3.0.0-nightly.2241+06e63d3ae",
31
- "@react-aria/utils": "3.0.0-nightly.2241+06e63d3ae",
32
- "@react-aria/visually-hidden": "3.0.0-nightly.2241+06e63d3ae",
33
- "@react-stately/select": "3.5.2-nightly.3943+06e63d3ae",
34
- "@react-types/button": "3.7.4-nightly.3943+06e63d3ae",
35
- "@react-types/select": "3.8.2-nightly.3943+06e63d3ae",
36
- "@react-types/shared": "3.0.0-nightly.2241+06e63d3ae",
25
+ "@react-aria/i18n": "3.0.0-nightly.2258+16f72e9fb",
26
+ "@react-aria/interactions": "3.0.0-nightly.2258+16f72e9fb",
27
+ "@react-aria/label": "3.0.0-nightly.2258+16f72e9fb",
28
+ "@react-aria/listbox": "3.9.2-nightly.3960+16f72e9fb",
29
+ "@react-aria/menu": "3.9.2-nightly.3960+16f72e9fb",
30
+ "@react-aria/selection": "3.0.0-nightly.2258+16f72e9fb",
31
+ "@react-aria/utils": "3.0.0-nightly.2258+16f72e9fb",
32
+ "@react-aria/visually-hidden": "3.0.0-nightly.2258+16f72e9fb",
33
+ "@react-stately/select": "3.5.2-nightly.3960+16f72e9fb",
34
+ "@react-types/button": "3.7.4-nightly.3960+16f72e9fb",
35
+ "@react-types/select": "3.8.2-nightly.3960+16f72e9fb",
36
+ "@react-types/shared": "3.0.0-nightly.2258+16f72e9fb",
37
37
  "@swc/helpers": "^0.4.14"
38
38
  },
39
39
  "peerDependencies": {
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "06e63d3ae7898b8cd81fdb6fa87b763faf2054bf"
46
+ "gitHead": "16f72e9fbfc28adf104c3cb7557f1d3cab617960"
47
47
  }