Skip to content

Commit 80bbc87

Browse files
committed
fix: some types were not exported
1 parent 3f397bd commit 80bbc87

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

.changeset/rich-plants-clap.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@strapi/design-system': patch
3+
'@strapi/ui-primitives': patch
4+
---
5+
6+
fix: some types were not being exported

packages/primitives/src/components/Select/Select.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1922,6 +1922,7 @@ export type {
19221922
SelectIconProps,
19231923
SelectPortalProps,
19241924
SelectContentProps,
1925+
SelectContentImplProps,
19251926
SelectViewportProps,
19261927
SelectGroupProps,
19271928
SelectLabelProps,

packages/strapi-design-system/src/Popover/Popover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ const PopoverScrollable = styled(Box)`
213213
}
214214
`;
215215

216-
type PopoverProps = ScrollingProps &
216+
export type PopoverProps = ScrollingProps &
217217
Pick<
218218
ContentProps,
219219
| 'source'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export { Popover, POPOVER_PLACEMENTS } from './Popover';
2+
export type { PopoverProps } from './Popover';
23
export * as PopoverPrimitives from './primitives';

0 commit comments

Comments
 (0)