@react-types/form 3.4.3-nightly.3749 → 3.4.3-nightly.3757

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/index.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/form",
3
- "version": "3.4.3-nightly.3749+e044ef71a",
3
+ "version": "3.4.3-nightly.3757+574a27dba",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -9,7 +9,7 @@
9
9
  "url": "https://github.com/adobe/react-spectrum"
10
10
  },
11
11
  "dependencies": {
12
- "@react-types/shared": "3.0.0-nightly.2049+e044ef71a"
12
+ "@react-types/shared": "3.0.0-nightly.2057+574a27dba"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
@@ -17,5 +17,5 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "gitHead": "e044ef71a2c3fc0b1ba67dcb47fa581073cf07ad"
20
+ "gitHead": "574a27dbae4f758bc31c969f125eefa9f9ceaf73"
21
21
  }
package/src/index.d.ts CHANGED
@@ -13,7 +13,7 @@
13
13
  import {AriaLabelingProps, DOMProps, SpectrumLabelableProps, StyleProps, ValidationState} from '@react-types/shared';
14
14
  import {FormEventHandler, ReactElement} from 'react';
15
15
 
16
- export interface SpectrumFormProps extends DOMProps, AriaLabelingProps, StyleProps, Omit<SpectrumLabelableProps, 'contextualHelp'> {
16
+ export interface SpectrumFormProps extends DOMProps, AriaLabelingProps, StyleProps, Omit<SpectrumLabelableProps, 'contextualHelp' | 'label'> {
17
17
  /** The contents of the Form. */
18
18
  children: ReactElement<SpectrumLabelableProps> | ReactElement<SpectrumLabelableProps>[],
19
19
  /** Whether the Form elements are displayed with their quiet style. */