Skip to content

Commit

Permalink
Merge pull request #210 from warp-ds/next
Browse files Browse the repository at this point in the history
Release 1.4.2
  • Loading branch information
magnuh authored Feb 15, 2024
2 parents 5a91a63 + 9ef514a commit a6ba7fd
Show file tree
Hide file tree
Showing 4 changed files with 262 additions and 252 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [1.4.2-next.2](https://github.com/warp-ds/react/compare/v1.4.2-next.1...v1.4.2-next.2) (2024-02-15)


### Bug Fixes

* Update warp-ds/css dependency ([#211](https://github.com/warp-ds/react/issues/211)) ([18feabb](https://github.com/warp-ds/react/commit/18feabbb72897b5f604e986f5df297924c337e56))

## [1.4.2-next.1](https://github.com/warp-ds/react/compare/v1.4.1...v1.4.2-next.1) (2024-02-15)


### Bug Fixes

* Slider disabled state fix ([#209](https://github.com/warp-ds/react/issues/209)) ([f005e79](https://github.com/warp-ds/react/commit/f005e799f7e93a74cbf9779cf39ddb276f5c6894))

## [1.4.1](https://github.com/warp-ds/react/compare/v1.4.0...v1.4.1) (2024-02-15)


Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@warp-ds/react",
"version": "1.4.1",
"version": "1.4.2-next.2",
"type": "module",
"repository": "[email protected]:warp-ds/react.git",
"license": "Apache-2.0",
Expand Down Expand Up @@ -109,7 +109,7 @@
"@chbphone55/classnames": "2.0.0",
"@lingui/core": "4.7.0",
"@warp-ds/core": "1.0.2",
"@warp-ds/css": "1.8.2",
"@warp-ds/css": "1.8.3",
"@warp-ds/icons": "2.0.0",
"@warp-ds/uno": "1.8.1",
"react-focus-lock": "2.9.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/slider/src/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export function Slider({ min = 0, max = 100, ...rest }: SliderProps) {
/>
<div
className={classNames({
[ccSlider.activeTrack]: true,
[ccSlider.activeTrack]: !disabled,
[ccSlider.activeTrackDisabled]: disabled,
})}
style={sliderActiveStyle}
Expand Down
Loading

0 comments on commit a6ba7fd

Please sign in to comment.