Skip to content

Commit

Permalink
fix: missing top-level re-exports (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamKelley authored Mar 21, 2023
1 parent 31cf4d3 commit a9c0310
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1 deletion.
9 changes: 8 additions & 1 deletion libs/spark/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@

## [vNext](https://github.com/prenda-school/prenda-spark/compare/v2.0.0-alpha.12...vNext) (YYYY-MM-DD)

No changes.
API surface:

- **createSvgIcon_unstable**
- [fix] missing top-level re-export
- **useMediaQuery_unstable**
- [fix] missing top-level re-export
- **useTheme_unstable**
- [fix] missing top-level re-export

## [v2.0.0-alpha.12](https://github.com/prenda-school/prenda-spark/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2023-03-21)

Expand Down
6 changes: 6 additions & 0 deletions libs/spark/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ export * from './Unstable_TextField';
export { default as Unstable_Typography } from './Unstable_Typography';
export * from './Unstable_Typography';

export { default as createSvgIcon_unstable } from './createSvgIcon_unstable';

export { default as makeStyles } from './makeStyles';

export { default as styled } from './styled';
Expand All @@ -412,12 +414,16 @@ export { default as useFormControl } from './useFormControl';

export { default as useMediaQuery } from './useMediaQuery';

export { default as useMediaQuery_unstable } from './useMediaQuery_unstable';

export { default as useRadioGroupExtra_unstable } from './useRadioGroupExtra_unstable';

export { default as useTabs_unstable } from './useTabs_unstable';

export { default as useTheme } from './useTheme';

export { default as useTheme_unstable } from './useTheme_unstable';

export { default as useToasts_unstable } from './useToasts_unstable';

export { default as withStyles } from './withStyles';
Expand Down
1 change: 1 addition & 0 deletions libs/spark/src/useMediaQuery/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './useMediaQuery';
File renamed without changes.
1 change: 1 addition & 0 deletions libs/spark/src/useTheme/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './useTheme';
File renamed without changes.

0 comments on commit a9c0310

Please sign in to comment.