Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/@react-aria/steplist/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@react-aria/steplist",
"version": "3.0.0-alpha.1",
"private": true,
"description": "Spectrum UI components in React",
"license": "Apache-2.0",
"main": "dist/main.js",
Expand Down
1 change: 0 additions & 1 deletion packages/@react-spectrum/steplist/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@react-spectrum/steplist",
"version": "3.0.0-alpha.1",
"private": true,
"description": "Spectrum UI components in React",
"license": "Apache-2.0",
"main": "dist/main.js",
Expand Down
1 change: 0 additions & 1 deletion packages/@react-stately/steplist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"version": "3.0.0-alpha.1",
"description": "Spectrum UI components in React",
"license": "Apache-2.0",
"private": true,
"main": "dist/main.js",
"module": "dist/module.js",
"exports": {
Expand Down
1 change: 0 additions & 1 deletion packages/@react-types/steplist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"version": "3.0.0-alpha.1",
"description": "Spectrum UI components in React",
"license": "Apache-2.0",
"private": true,
"types": "src/index.d.ts",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/dev/docs/pages/react-aria/forms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ let {isInvalid, validationErrors, validationDetails} = useTextField(props, ref);
Server errors can be provided using the `FormValidationContext` directly, or using the `Form` component from `react-aria-components` as described above.

```tsx
import {FormValidationContext} from 'react-aria';
import {FormValidationContext} from 'react-stately';

<FormValidationContext.Provider value={{username: 'This username is taken.'}}>
<MyTextField
Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Compared with the React Aria hooks, React Aria Components provides a default DOM

## Status

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).
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).

## Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Compared with the React Aria hooks, the components provide a default DOM structu

## Status

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).
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).

## Installation

Expand Down
1 change: 0 additions & 1 deletion packages/react-aria-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"@react-aria/interactions": "^3.19.1",
"@react-aria/toolbar": "3.0.0-alpha.1",
"@react-aria/utils": "^3.21.1",
"@react-stately/form": "3.0.0-alpha.1",
"@react-stately/table": "^3.11.2",
"@react-types/calendar": "^3.4.1",
"@react-types/form": "^3.5.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/src/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

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

Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export {DropZone, DropZoneContext} from './DropZone';
export {FieldError} from './FieldError';
export {FileTrigger} from './FileTrigger';
export {Form} from './Form';
export {FormValidationContext} from '@react-stately/form';
export {GridList, GridListItem, GridListContext} from './GridList';
export {Group, GroupContext} from './Group';
export {Header, HeaderContext} from './Header';
Expand Down Expand Up @@ -58,6 +57,7 @@ export {Toolbar, ToolbarContext} from './Toolbar';
export {TooltipTrigger, Tooltip, TooltipTriggerStateContext, TooltipContext} from './Tooltip';
export {useDragAndDrop, DropIndicator, DropIndicatorContext, DragAndDropContext} from './useDragAndDrop';
export {DIRECTORY_DRAG_TYPE, isDirectoryDropItem, isFileDropItem, isTextDropItem, SSRProvider, RouterProvider, I18nProvider} from 'react-aria';
export {FormValidationContext} from 'react-stately';

export type {BreadcrumbsProps, BreadcrumbProps} from './Breadcrumbs';
export type {ButtonProps, ButtonRenderProps} from './Button';
Expand Down
1 change: 1 addition & 0 deletions packages/react-stately/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@react-stately/data": "^3.10.3",
"@react-stately/datepicker": "^3.8.0",
"@react-stately/dnd": "^3.2.5",
"@react-stately/form": "3.0.0-alpha.1",
"@react-stately/list": "^3.10.0",
"@react-stately/menu": "^3.5.6",
"@react-stately/numberfield": "^3.6.2",
Expand Down
1 change: 1 addition & 0 deletions packages/react-stately/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ export {useTabListState} from '@react-stately/tabs';
export {useToggleState} from '@react-stately/toggle';
export {useTooltipTriggerState} from '@react-stately/tooltip';
export {useTreeState} from '@react-stately/tree';
export {FormValidationContext} from '@react-stately/form';
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we haven't added alpha versions to our mono packages, why is this one special?

i assume it's because we want to reduce chances of a duplicates of it and because it's supporting already released packages?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will be a full release once versions are bumped