Skip to content

Commit 3b4fb99

Browse files
authored
Release updates (#5385)
1 parent 3e277e7 commit 3b4fb99

File tree

12 files changed

+7
-10
lines changed

12 files changed

+7
-10
lines changed

packages/@react-aria/steplist/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@react-aria/steplist",
33
"version": "3.0.0-alpha.1",
4-
"private": true,
54
"description": "Spectrum UI components in React",
65
"license": "Apache-2.0",
76
"main": "dist/main.js",

packages/@react-spectrum/steplist/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@react-spectrum/steplist",
33
"version": "3.0.0-alpha.1",
4-
"private": true,
54
"description": "Spectrum UI components in React",
65
"license": "Apache-2.0",
76
"main": "dist/main.js",

packages/@react-stately/steplist/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"version": "3.0.0-alpha.1",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
6-
"private": true,
76
"main": "dist/main.js",
87
"module": "dist/module.js",
98
"exports": {

packages/@react-types/steplist/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"version": "3.0.0-alpha.1",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
6-
"private": true,
76
"types": "src/index.d.ts",
87
"repository": {
98
"type": "git",

packages/dev/docs/pages/react-aria/forms.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ let {isInvalid, validationErrors, validationDetails} = useTextField(props, ref);
519519
Server errors can be provided using the `FormValidationContext` directly, or using the `Form` component from `react-aria-components` as described above.
520520

521521
```tsx
522-
import {FormValidationContext} from 'react-aria';
522+
import {FormValidationContext} from 'react-stately';
523523

524524
<FormValidationContext.Provider value={{username: 'This username is taken.'}}>
525525
<MyTextField

packages/react-aria-components/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Compared with the React Aria hooks, React Aria Components provides a default DOM
1313

1414
## Status
1515

16-
React Aria Components is currently in **beta**. This means most APIs are stable but some changes may still occur, and there are some known bugs. That said, it is based on a solid and battle-tested foundation in React Aria, and we would love for you to try it out and give us feedback! Please report issues and feature requests [on GitHub](https://github.com/adobe/react-spectrum/issues).
16+
React Aria Components is currently in **RC**. This means APIs are unlikely to change, and we are in the final testing period before our stable release. Please report issues and feature requests [on GitHub](https://github.com/adobe/react-spectrum/issues).
1717

1818
## Documentation
1919

packages/react-aria-components/docs/react-aria-components.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Compared with the React Aria hooks, the components provide a default DOM structu
6969

7070
## Status
7171

72-
React Aria Components is currently in **beta**. This means most APIs are stable but some changes may still occur, and there are some known bugs. That said, it is based on a solid and battle-tested foundation in React Aria, and we would love for you to try it out and give us feedback! Please report issues and feature requests [on GitHub](https://github.com/adobe/react-spectrum/issues).
72+
React Aria Components is currently in **RC**. This means APIs are unlikely to change, and we are in the final testing period before our stable release. Please report issues and feature requests [on GitHub](https://github.com/adobe/react-spectrum/issues).
7373

7474
## Installation
7575

packages/react-aria-components/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"@react-aria/interactions": "^3.19.1",
3030
"@react-aria/toolbar": "3.0.0-alpha.1",
3131
"@react-aria/utils": "^3.21.1",
32-
"@react-stately/form": "3.0.0-alpha.1",
3332
"@react-stately/table": "^3.11.2",
3433
"@react-types/calendar": "^3.4.1",
3534
"@react-types/form": "^3.5.4",

packages/react-aria-components/src/Form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
import {DOMProps} from './utils';
14-
import {FormValidationContext} from '@react-stately/form';
14+
import {FormValidationContext} from 'react-stately';
1515
import React, {ForwardedRef, forwardRef} from 'react';
1616
import {FormProps as SharedFormProps} from '@react-types/form';
1717

packages/react-aria-components/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export {DropZone, DropZoneContext} from './DropZone';
2222
export {FieldError} from './FieldError';
2323
export {FileTrigger} from './FileTrigger';
2424
export {Form} from './Form';
25-
export {FormValidationContext} from '@react-stately/form';
2625
export {GridList, GridListItem, GridListContext} from './GridList';
2726
export {Group, GroupContext} from './Group';
2827
export {Header, HeaderContext} from './Header';
@@ -58,6 +57,7 @@ export {Toolbar, ToolbarContext} from './Toolbar';
5857
export {TooltipTrigger, Tooltip, TooltipTriggerStateContext, TooltipContext} from './Tooltip';
5958
export {useDragAndDrop, DropIndicator, DropIndicatorContext, DragAndDropContext} from './useDragAndDrop';
6059
export {DIRECTORY_DRAG_TYPE, isDirectoryDropItem, isFileDropItem, isTextDropItem, SSRProvider, RouterProvider, I18nProvider} from 'react-aria';
60+
export {FormValidationContext} from 'react-stately';
6161

6262
export type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';
6363
export type {ButtonProps, ButtonRenderProps} from './Button';

0 commit comments

Comments
 (0)