Skip to content

Commit

Permalink
Fix overscroll util [publish]
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Nov 27, 2024
1 parent 246a104 commit 2894079
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 0.7.7

- Fix overscroll util

## 0.7.6

- Align with Tailwind 3.4.6
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A bundler-first & PostCSS-independent implementation of Tailwind",
"private": true,
"type": "module",
"version": "0.7.6",
"version": "0.7.7",
"author": "Arnaud Barré (https://github.com/ArnaudBarre)",
"license": "MIT",
"scripts": {
Expand Down
Binary file modified playground/vite/bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions src/coreRules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,9 @@ export const getCoreRules = ({
...enumRule("overflow-y-", "overflow-y", overflows),
],
overscrollBehavior: [
...enumRule("overscroll-", "overscroll", overscrolls),
...enumRule("overscroll-x-", "overscroll-x", overscrolls),
...enumRule("overscroll-y-", "overscroll-y", overscrolls),
...enumRule("overscroll-", "overscroll-behavior", overscrolls),
...enumRule("overscroll-x-", "overscroll-behavior-x", overscrolls),
...enumRule("overscroll-y-", "overscroll-behavior-y", overscrolls),
],
scrollBehavior: enumRule("scroll-", "scroll-behavior", ["auto", "smooth"]),
textOverflow: [
Expand Down
18 changes: 9 additions & 9 deletions tests/snapshots/codegen.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
# bun ./bun.lockb --hash: C3DDB688ED781FF9-b2708783d851c315-28F2BE440DD291DC-1a0e093fa729a167
# bun ./bun.lockb --hash: DDE6EE646BC7CF76-c5e0c617e97004d0-B505E4F9B5F15F14-5ec6092e3a8bee92


"@aashutoshrathi/word-wrap@^1.2.3":
Expand Down

0 comments on commit 2894079

Please sign in to comment.