Skip to content

Commit

Permalink
chore: prepare release 0.13.4 (#448)
Browse files Browse the repository at this point in the history
* ci: update action versions
  • Loading branch information
jer3m01 authored Jul 22, 2024
1 parent 4cf47c8 commit 1b888fa
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 12 deletions.
17 changes: 17 additions & 0 deletions .changeset/good-sheep-attend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
"@kobalte/core": patch
---

## v0.13.4 (June 22, 2024)

**New features**

- Add source exports ([#408](https://github.com/kobaltedev/kobalte/pull/408))
- Support string style prop ([#432](https://github.com/kobaltedev/kobalte/pull/432))

**Bug fixes**

- Combobox: convert textValue with optionTextValue ([#436](https://github.com/kobaltedev/kobalte/pull/436))
- Polymorphic: override the `component` prop of `<Dynamic />` ([#437](https://github.com/kobaltedev/kobalte/pull/437))
- Slider: inverted slider thumb in the wrong position ([#441](https://github.com/kobaltedev/kobalte/pull/441))
- Wait for presence to finish before enabling scroll ([#447](https://github.com/kobaltedev/kobalte/pull/447))
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
with:
fetch-depth: 2

- uses: pnpm/action-setup@v2.4.0
- uses: pnpm/action-setup@v4

- name: Setup Node.js 21.6.1
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 21.6.1
cache: pnpm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
with:
fetch-depth: 0

- uses: pnpm/action-setup@v2.4.0
- uses: pnpm/action-setup@v4

- name: Setup Node.js 21.6.1
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 21.6.1
cache: pnpm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
with:
fetch-depth: 2

- uses: pnpm/action-setup@v2.4.0
- uses: pnpm/action-setup@v4

- name: Setup Node.js 21.6.1
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 21.6.1
cache: pnpm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
with:
fetch-depth: 0

- uses: pnpm/action-setup@v2.4.0
- uses: pnpm/action-setup@v4

- name: Setup Node.js 21.6.1
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 21.6.1
cache: pnpm
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/VERSIONS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ export const LATEST_CORE_CHANGELOG_URL = `/docs/changelog/${CORE_VERSIONS[0].rep
"-",
)}`;

export const LATEST_CORE_VERSION_NAME = "v0.13.3";
export const LATEST_CORE_VERSION_NAME = "v0.13.4";
14 changes: 14 additions & 0 deletions apps/docs/src/routes/docs/changelog/0-13-x.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# v0.13.x

## v0.13.4 (June 22, 2024)

**New features**

- Add source exports ([#408](https://github.com/kobaltedev/kobalte/pull/408))
- Support string style prop ([#432](https://github.com/kobaltedev/kobalte/pull/432))

**Bug fixes**

- Combobox: convert textValue with optionTextValue ([#436](https://github.com/kobaltedev/kobalte/pull/436))
- Polymorphic: override the `component` prop of `<Dynamic />` ([#437](https://github.com/kobaltedev/kobalte/pull/437))
- Slider: inverted slider thumb in the wrong position ([#441](https://github.com/kobaltedev/kobalte/pull/441))
- Wait for presence to finish before enabling scroll ([#447](https://github.com/kobaltedev/kobalte/pull/447))

## v0.13.3 (June 3, 2024)

**New features**
Expand Down
6 changes: 3 additions & 3 deletions packages/core/src/slider/slider-thumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ export function SliderThumb<T extends ValidComponent = "span">(
return isVertical ? `translate(-50%, ${value}%)` : `translate(${value}%, -50%)`;
*/

if (context.state.orientation() === 'vertical') {
return context.inverted() ? 'translateY(-50%)' :'translateY(50%)';
if (context.state.orientation() === "vertical") {
return context.inverted() ? "translateY(-50%)" : "translateY(50%)";
}

return context.inverted() ? 'translateX(50%)' : 'translateX(-50%)';
return context.inverted() ? "translateX(50%)" : "translateX(-50%)";
};

let startPosition = 0;
Expand Down

0 comments on commit 1b888fa

Please sign in to comment.