chore: add missing RadioTile export

This commit is contained in:
Eric Liu 2020-06-03 12:44:44 -07:00
commit b8275f50b1
3 changed files with 7 additions and 0 deletions

View file

@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Selectable/expandable `DataTable` - Selectable/expandable `DataTable`
## [0.7.1](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.7.1) - 2020-06-03
- Add missing RadioTile export
## [0.7.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.7.0) - 2020-05-29 ## [0.7.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.7.0) - 2020-05-29
- Dispatch "update" event in `Pagination` for `pageSize`, `page` variables - Dispatch "update" event in `Pagination` for `pageSize`, `page` variables

View file

@ -4,4 +4,5 @@ export default Tile;
export { default as ClickableTile } from './ClickableTile.svelte'; export { default as ClickableTile } from './ClickableTile.svelte';
export { default as ExpandableTile } from './ExpandableTile.svelte'; export { default as ExpandableTile } from './ExpandableTile.svelte';
export { default as SelectableTile } from './SelectableTile.svelte'; export { default as SelectableTile } from './SelectableTile.svelte';
export { default as RadioTile } from './RadioTile.svelte';
export { default as TileGroup } from './TileGroup.svelte'; export { default as TileGroup } from './TileGroup.svelte';

View file

@ -100,6 +100,7 @@ import Tile, {
ClickableTile, ClickableTile,
ExpandableTile, ExpandableTile,
SelectableTile, SelectableTile,
RadioTile,
TileGroup, TileGroup,
} from "./components/Tile"; } from "./components/Tile";
import TimePicker, { TimePickerSelect } from "./components/TimePicker"; import TimePicker, { TimePickerSelect } from "./components/TimePicker";
@ -206,6 +207,7 @@ export {
RadioButton, RadioButton,
RadioButtonSkeleton, RadioButtonSkeleton,
RadioButtonGroup, RadioButtonGroup,
RadioTile,
Search, Search,
SearchSkeleton, SearchSkeleton,
SelectableTile, SelectableTile,