Skip to content

Commit c3ddce4

Browse files
committed
feat(react-tags): export TagContextValues type from package entry
1 parent 44baa27 commit c3ddce4

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

packages/react-components/react-tags/library/etc/react-tags.api.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ export type TagBaseState = DistributiveOmit<TagState, 'appearance' | 'size' | 's
150150
// @public (undocumented)
151151
export const tagClassNames: SlotClassNames<TagSlots>;
152152

153+
// @public (undocumented)
154+
export type TagContextValues = TagAvatarContextValues;
155+
153156
// @public (undocumented)
154157
export type TagDismissData<Value = TagValue> = {
155158
value: Value;

packages/react-components/react-tags/library/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export {
66
useTagBase_unstable,
77
useTag_unstable,
88
} from './Tag';
9-
export type { TagBaseProps, TagBaseState, TagProps, TagSlots, TagState } from './Tag';
9+
export type { TagBaseProps, TagBaseState, TagContextValues, TagProps, TagSlots, TagState } from './Tag';
1010

1111
export {
1212
InteractionTag,

0 commit comments

Comments
 (0)