diff --git a/.yarn/versions/7c8a7cf4.yml b/.yarn/versions/7c8a7cf4.yml new file mode 100644 index 0000000000..da7e3b7c78 --- /dev/null +++ b/.yarn/versions/7c8a7cf4.yml @@ -0,0 +1,5 @@ +releases: + "@radix-ui/react-checkbox": patch + +declined: + - primitives diff --git a/packages/react/checkbox/src/Checkbox.tsx b/packages/react/checkbox/src/Checkbox.tsx index 3f463691a9..a01325edd0 100644 --- a/packages/react/checkbox/src/Checkbox.tsx +++ b/packages/react/checkbox/src/Checkbox.tsx @@ -227,4 +227,4 @@ export { Root, Indicator, }; -export type { CheckboxProps, CheckboxIndicatorProps }; +export type { CheckboxProps, CheckboxIndicatorProps, CheckedState }; diff --git a/packages/react/checkbox/src/index.ts b/packages/react/checkbox/src/index.ts index 28294e0635..17263d5cff 100644 --- a/packages/react/checkbox/src/index.ts +++ b/packages/react/checkbox/src/index.ts @@ -8,4 +8,4 @@ export { Root, Indicator, } from './Checkbox'; -export type { CheckboxProps, CheckboxIndicatorProps } from './Checkbox'; +export type { CheckboxProps, CheckboxIndicatorProps, CheckedState } from './Checkbox';