@react-types/well 3.3.22 → 3.4.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.
- package/package.json +6 -4
- package/src/index.d.ts +1 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-types/well",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -9,13 +9,15 @@
|
|
|
9
9
|
"url": "https://github.com/adobe/react-spectrum"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@react-
|
|
12
|
+
"@react-spectrum/well": "^3.5.0"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"react": "^
|
|
15
|
+
"@react-spectrum/provider": "^3.0.0",
|
|
16
|
+
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
17
|
+
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
16
18
|
},
|
|
17
19
|
"publishConfig": {
|
|
18
20
|
"access": "public"
|
|
19
21
|
},
|
|
20
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "a6999bdf494a2e9c0381a5881908328bdd22ddae"
|
|
21
23
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -10,18 +10,4 @@
|
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
import {ReactNode} from 'react';
|
|
15
|
-
|
|
16
|
-
export interface SpectrumWellProps extends DOMProps, AriaLabelingProps, StyleProps {
|
|
17
|
-
/**
|
|
18
|
-
* The contents of the Well.
|
|
19
|
-
*/
|
|
20
|
-
children: ReactNode,
|
|
21
|
-
/**
|
|
22
|
-
* An accessibility role for the well. Use `'region'` when the contents of the well
|
|
23
|
-
* is important enough to be included in the page table of contents, and `'group'` otherwise.
|
|
24
|
-
* If a role is provided, then an aria-label or aria-labelledby must also be provided.
|
|
25
|
-
*/
|
|
26
|
-
role?: 'region' | 'group'
|
|
27
|
-
}
|
|
13
|
+
export {SpectrumWellProps} from '@react-spectrum/well';
|