Skip to content

Commit 2894079

Browse files
committed
Fix overscroll util [publish]
1 parent 246a104 commit 2894079

File tree

7 files changed

+18
-14
lines changed

7 files changed

+18
-14
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## 0.7.7
6+
7+
- Fix overscroll util
8+
59
## 0.7.6
610

711
- Align with Tailwind 3.4.6

bun.lockb

0 Bytes
Binary file not shown.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A bundler-first & PostCSS-independent implementation of Tailwind",
44
"private": true,
55
"type": "module",
6-
"version": "0.7.6",
6+
"version": "0.7.7",
77
"author": "Arnaud Barré (https://github.com/ArnaudBarre)",
88
"license": "MIT",
99
"scripts": {

playground/vite/bun.lockb

0 Bytes
Binary file not shown.

src/coreRules.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -618,9 +618,9 @@ export const getCoreRules = ({
618618
...enumRule("overflow-y-", "overflow-y", overflows),
619619
],
620620
overscrollBehavior: [
621-
...enumRule("overscroll-", "overscroll", overscrolls),
622-
...enumRule("overscroll-x-", "overscroll-x", overscrolls),
623-
...enumRule("overscroll-y-", "overscroll-y", overscrolls),
621+
...enumRule("overscroll-", "overscroll-behavior", overscrolls),
622+
...enumRule("overscroll-x-", "overscroll-behavior-x", overscrolls),
623+
...enumRule("overscroll-y-", "overscroll-behavior-y", overscrolls),
624624
],
625625
scrollBehavior: enumRule("scroll-", "scroll-behavior", ["auto", "smooth"]),
626626
textOverflow: [

tests/snapshots/codegen.css

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yarn.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
22
# yarn lockfile v1
3-
# bun ./bun.lockb --hash: C3DDB688ED781FF9-b2708783d851c315-28F2BE440DD291DC-1a0e093fa729a167
3+
# bun ./bun.lockb --hash: DDE6EE646BC7CF76-c5e0c617e97004d0-B505E4F9B5F15F14-5ec6092e3a8bee92
44

55

66
"@aashutoshrathi/word-wrap@^1.2.3":

0 commit comments

Comments
 (0)