mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
chore: add missing RadioTile export
This commit is contained in:
parent
6a5e421b8d
commit
b8275f50b1
3 changed files with 7 additions and 0 deletions
|
@ -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
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue