Skip to content

Commit 27ea95f

Browse files
Add TagGroup to monopackage (#4487)
* Add TagGroup to monorepo * adding tag aria hooks to monopackage * using rc version, will bump during release process --------- Co-authored-by: Robert Snow <[email protected]>
1 parent 3f91517 commit 27ea95f

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
"@react-spectrum/switch": "^3.4.1",
6565
"@react-spectrum/table": "^3.8.0",
6666
"@react-spectrum/tabs": "^3.5.2",
67+
"@react-spectrum/tag": "^3.0.0-rc.0",
6768
"@react-spectrum/text": "^3.4.1",
6869
"@react-spectrum/textfield": "^3.10.1",
6970
"@react-spectrum/theme-dark": "^3.5.1",

packages/@adobe/react-spectrum/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export {Switch} from '@react-spectrum/switch';
4646
export {Heading, Keyboard, Text} from '@react-spectrum/text';
4747
export {TableView, TableHeader, TableBody, Column, Row, Cell} from '@react-spectrum/table';
4848
export {Tabs, TabList, TabPanels} from '@react-spectrum/tabs';
49+
export {TagGroup} from '@react-spectrum/tag';
4950
export {TextArea, TextField} from '@react-spectrum/textfield';
5051
export {theme as darkTheme} from '@react-spectrum/theme-dark';
5152
export {theme as defaultTheme} from '@react-spectrum/theme-default';
@@ -96,6 +97,7 @@ export type {SpectrumSwitchProps} from '@react-spectrum/switch';
9697
export type {HeadingProps, KeyboardProps, TextProps} from '@react-spectrum/text';
9798
export type {SpectrumTableProps, SpectrumColumnProps, TableHeaderProps, TableBodyProps, RowProps, CellProps} from '@react-spectrum/table';
9899
export type {SpectrumTabListProps, SpectrumTabPanelsProps, SpectrumTabsProps} from '@react-spectrum/tabs';
100+
export type {SpectrumTagGroupProps} from '@react-spectrum/tag';
99101
export type {SpectrumTextFieldProps} from '@react-spectrum/textfield';
100102
export type {SpectrumTooltipProps, SpectrumTooltipTriggerProps} from '@react-spectrum/tooltip';
101103
export type {ContentProps, FooterProps, HeaderProps, ViewProps} from '@react-spectrum/view';

packages/react-aria/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"@react-aria/switch": "^3.5.0",
5555
"@react-aria/table": "^3.9.0",
5656
"@react-aria/tabs": "^3.5.0",
57+
"@react-aria/tag": "^3.0.0-rc.0",
5758
"@react-aria/textfield": "^3.9.1",
5859
"@react-aria/tooltip": "^3.5.0",
5960
"@react-aria/utils": "^3.16.0",

packages/react-aria/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export {useSlider, useSliderThumb} from '@react-aria/slider';
4040
export {useSwitch} from '@react-aria/switch';
4141
export {useTable, useTableCell, useTableColumnHeader, useTableHeaderRow, useTableRow, useTableRowGroup, useTableSelectAllCheckbox, useTableSelectionCheckbox} from '@react-aria/table';
4242
export {useTab, useTabList, useTabPanel} from '@react-aria/tabs';
43+
export {useTag, useTagGroup} from '@react-aria/tag';
4344
export {useTextField} from '@react-aria/textfield';
4445
export {useTooltip, useTooltipTrigger} from '@react-aria/tooltip';
4546
export {chain, mergeProps, useId} from '@react-aria/utils';
@@ -74,6 +75,7 @@ export type {AriaSliderProps, AriaSliderThumbProps, AriaSliderThumbOptions, Slid
7475
export type {AriaSwitchProps, SwitchAria} from '@react-aria/switch';
7576
export type {AriaTableCellProps, AriaTableColumnHeaderProps, AriaTableProps, AriaTableSelectionCheckboxProps, GridAria, GridRowAria, GridRowProps, TableCellAria, TableColumnHeaderAria, TableHeaderRowAria, TableSelectAllCheckboxAria, TableSelectionCheckboxAria} from '@react-aria/table';
7677
export type {AriaTabListProps, AriaTabListOptions, AriaTabPanelProps, AriaTabProps, TabAria, TabListAria, TabPanelAria} from '@react-aria/tabs';
78+
export type {AriaTagGroupProps, AriaTagProps, TagAria, TagGroupAria} from '@react-aria/tag';
7779
export type {AriaTextFieldOptions, AriaTextFieldProps, TextFieldAria} from '@react-aria/textfield';
7880
export type {AriaTooltipProps, TooltipAria, TooltipTriggerAria, TooltipTriggerProps} from '@react-aria/tooltip';
7981
export type {VisuallyHiddenAria, VisuallyHiddenProps} from '@react-aria/visually-hidden';

0 commit comments

Comments
 (0)