Skip to content

Commit

Permalink
fix(tile): expose selected property (#9583)
Browse files Browse the repository at this point in the history
**Related Issue:** #9582

## Summary

This PR exposes `calcite-tile`'s `selected` property so that it won't
throw typescript errors when compiled. This was made internal
unintentionally as other components like `calcite-chip` expose this
property.
  • Loading branch information
eriklharper committed Jun 14, 2024
1 parent f603815 commit d15f667
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/calcite-components/src/components/tile/tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ export class Tile implements InteractiveComponent, SelectableComponent {

/**
* When `true` and the parent's `selectionMode` is `"single"`, `"single-persist"', or `"multiple"`, the component is selected.
*
* @internal
*/
@Prop({ reflect: true }) selected = false;

Expand Down

0 comments on commit d15f667

Please sign in to comment.