Skip to content

Commit

Permalink
chore: Merge support into master (#3060)
Browse files Browse the repository at this point in the history
Co-authored-by: @mannycarrera4 <[email protected]>
Co-authored-by: manuel.carrera <[email protected]>
  • Loading branch information
3 people authored Nov 25, 2024
2 parents 9a6f57a + d47337a commit 736975e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [v11.1.24](https://github.com/Workday/canvas-kit/releases/tag/v11.1.24) (2024-11-22)

### Components

- fix: Deconstruct typelevel from props and pass to stencil ([#3059](https://github.com/Workday/canvas-kit/pull/3059)) ([@mannycarrera4](https://github.com/mannycarrera4), manuel.carrera)
## [v12.1.5](https://github.com/Workday/canvas-kit/releases/tag/v12.1.5) (2024-11-19)

### Components
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const statusIndicatorLabelStencil = createStencil({

export const StatusIndicatorLabel = createComponent('span')({
displayName: 'StatusIndicator.Label',
Component: ({children, ...elemProps}: StatusIndicatorLabelProps, ref, Element) => {
Component: ({children, typeLevel, ...elemProps}: StatusIndicatorLabelProps, ref, Element) => {
return (
<Element ref={ref} {...mergeStyles(elemProps, statusIndicatorLabelStencil())}>
<Element ref={ref} {...mergeStyles(elemProps, statusIndicatorLabelStencil({typeLevel}))}>
{children}
</Element>
);
Expand Down

0 comments on commit 736975e

Please sign in to comment.