Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use inline and block for x/y utilities #14805

Merged
merged 4 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Support calling `config()` with no arguments in plugin API ([#14799](https://github.com/tailwindlabs/tailwindcss/pull/14799))

### Changed

- Use logical `*-inline` and `*-block` properties for all x/y utilities like `px-*`, `my-*`, `scroll-px-*`, and `inset-y-*` ([#14805](https://github.com/tailwindlabs/tailwindcss/pull/14805))

## [4.0.0-alpha.30] - 2024-10-24

### Added
Expand Down
192 changes: 64 additions & 128 deletions packages/tailwindcss/src/__snapshots__/utilities.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -856,133 +856,101 @@ exports[`border-x-* 1`] = `
}

.border-x {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: 1px;
border-right-width: 1px;
border-inline-style: var(--tw-border-style);
border-inline-width: 1px;
}

.border-x-0 {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: 0;
border-right-width: 0;
border-inline-style: var(--tw-border-style);
border-inline-width: 0;
}

.border-x-2 {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: 2px;
border-right-width: 2px;
border-inline-style: var(--tw-border-style);
border-inline-width: 2px;
}

.border-x-4 {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: 4px;
border-right-width: 4px;
border-inline-style: var(--tw-border-style);
border-inline-width: 4px;
}

.border-x-123 {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: 123px;
border-right-width: 123px;
border-inline-style: var(--tw-border-style);
border-inline-width: 123px;
}

.border-x-\\[12px\\] {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: 12px;
border-right-width: 12px;
border-inline-style: var(--tw-border-style);
border-inline-width: 12px;
}

.border-x-\\[length\\:var\\(--my-width\\)\\], .border-x-\\[line-width\\:var\\(--my-width\\)\\] {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: var(--my-width);
border-right-width: var(--my-width);
border-inline-style: var(--tw-border-style);
border-inline-width: var(--my-width);
}

.border-x-\\[medium\\] {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: medium;
border-right-width: medium;
border-inline-style: var(--tw-border-style);
border-inline-width: medium;
}

.border-x-\\[thick\\] {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: thick;
border-right-width: thick;
border-inline-style: var(--tw-border-style);
border-inline-width: thick;
}

.border-x-\\[thin\\] {
border-left-style: var(--tw-border-style);
border-right-style: var(--tw-border-style);
border-left-width: thin;
border-right-width: thin;
border-inline-style: var(--tw-border-style);
border-inline-width: thin;
}

.border-x-\\[\\#0088cc\\] {
border-left-color: #08c;
border-right-color: #08c;
border-inline-color: #08c;
}

.border-x-\\[\\#0088cc\\]\\/50 {
border-left-color: oklch(59.9824% .14119 241.555 / .5);
border-right-color: oklch(59.9824% .14119 241.555 / .5);
border-inline-color: oklch(59.9824% .14119 241.555 / .5);
}

.border-x-\\[color\\:var\\(--my-color\\)\\] {
border-left-color: var(--my-color);
border-right-color: var(--my-color);
border-inline-color: var(--my-color);
}

.border-x-\\[color\\:var\\(--my-color\\)\\]\\/50 {
border-left-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-right-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-inline-color: color-mix(in oklch, var(--my-color) 50%, transparent);
}

.border-x-\\[var\\(--my-color\\)\\] {
border-left-color: var(--my-color);
border-right-color: var(--my-color);
border-inline-color: var(--my-color);
}

.border-x-\\[var\\(--my-color\\)\\]\\/50 {
border-left-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-right-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-inline-color: color-mix(in oklch, var(--my-color) 50%, transparent);
}

.border-x-current {
border-left-color: currentColor;
border-right-color: currentColor;
border-inline-color: currentColor;
}

.border-x-current\\/50 {
border-left-color: color-mix(in oklch, currentColor 50%, transparent);
border-right-color: color-mix(in oklch, currentColor 50%, transparent);
border-inline-color: color-mix(in oklch, currentColor 50%, transparent);
}

.border-x-inherit {
border-left-color: inherit;
border-right-color: inherit;
border-inline-color: inherit;
}

.border-x-red-500 {
border-left-color: var(--color-red-500, #ef4444);
border-right-color: var(--color-red-500, #ef4444);
border-inline-color: var(--color-red-500, #ef4444);
}

.border-x-red-500\\/50 {
border-left-color: color-mix(in oklch, var(--color-red-500, #ef4444) 50%, transparent);
border-right-color: color-mix(in oklch, var(--color-red-500, #ef4444) 50%, transparent);
border-inline-color: color-mix(in oklch, var(--color-red-500, #ef4444) 50%, transparent);
}

.border-x-transparent {
border-left-color: #0000;
border-right-color: #0000;
border-inline-color: #0000;
}

@supports (-moz-orient: inline) {
Expand All @@ -1009,133 +977,101 @@ exports[`border-y-* 1`] = `
}

.border-y {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: 1px;
border-bottom-width: 1px;
border-block-style: var(--tw-border-style);
border-block-width: 1px;
}

.border-y-0 {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: 0;
border-bottom-width: 0;
border-block-style: var(--tw-border-style);
border-block-width: 0;
}

.border-y-2 {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: 2px;
border-bottom-width: 2px;
border-block-style: var(--tw-border-style);
border-block-width: 2px;
}

.border-y-4 {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: 4px;
border-bottom-width: 4px;
border-block-style: var(--tw-border-style);
border-block-width: 4px;
}

.border-y-123 {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: 123px;
border-bottom-width: 123px;
border-block-style: var(--tw-border-style);
border-block-width: 123px;
}

.border-y-\\[12px\\] {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: 12px;
border-bottom-width: 12px;
border-block-style: var(--tw-border-style);
border-block-width: 12px;
}

.border-y-\\[length\\:var\\(--my-width\\)\\], .border-y-\\[line-width\\:var\\(--my-width\\)\\] {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: var(--my-width);
border-bottom-width: var(--my-width);
border-block-style: var(--tw-border-style);
border-block-width: var(--my-width);
}

.border-y-\\[medium\\] {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: medium;
border-bottom-width: medium;
border-block-style: var(--tw-border-style);
border-block-width: medium;
}

.border-y-\\[thick\\] {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: thick;
border-bottom-width: thick;
border-block-style: var(--tw-border-style);
border-block-width: thick;
}

.border-y-\\[thin\\] {
border-top-style: var(--tw-border-style);
border-bottom-style: var(--tw-border-style);
border-top-width: thin;
border-bottom-width: thin;
border-block-style: var(--tw-border-style);
border-block-width: thin;
}

.border-y-\\[\\#0088cc\\] {
border-top-color: #08c;
border-bottom-color: #08c;
border-block-color: #08c;
}

.border-y-\\[\\#0088cc\\]\\/50 {
border-top-color: oklch(59.9824% .14119 241.555 / .5);
border-bottom-color: oklch(59.9824% .14119 241.555 / .5);
border-block-color: oklch(59.9824% .14119 241.555 / .5);
}

.border-y-\\[color\\:var\\(--my-color\\)\\] {
border-top-color: var(--my-color);
border-bottom-color: var(--my-color);
border-block-color: var(--my-color);
}

.border-y-\\[color\\:var\\(--my-color\\)\\]\\/50 {
border-top-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-bottom-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-block-color: color-mix(in oklch, var(--my-color) 50%, transparent);
}

.border-y-\\[var\\(--my-color\\)\\] {
border-top-color: var(--my-color);
border-bottom-color: var(--my-color);
border-block-color: var(--my-color);
}

.border-y-\\[var\\(--my-color\\)\\]\\/50 {
border-top-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-bottom-color: color-mix(in oklch, var(--my-color) 50%, transparent);
border-block-color: color-mix(in oklch, var(--my-color) 50%, transparent);
}

.border-y-current {
border-top-color: currentColor;
border-bottom-color: currentColor;
border-block-color: currentColor;
}

.border-y-current\\/50 {
border-top-color: color-mix(in oklch, currentColor 50%, transparent);
border-bottom-color: color-mix(in oklch, currentColor 50%, transparent);
border-block-color: color-mix(in oklch, currentColor 50%, transparent);
}

.border-y-inherit {
border-top-color: inherit;
border-bottom-color: inherit;
border-block-color: inherit;
}

.border-y-red-500 {
border-top-color: var(--color-red-500, #ef4444);
border-bottom-color: var(--color-red-500, #ef4444);
border-block-color: var(--color-red-500, #ef4444);
}

.border-y-red-500\\/50 {
border-top-color: color-mix(in oklch, var(--color-red-500, #ef4444) 50%, transparent);
border-bottom-color: color-mix(in oklch, var(--color-red-500, #ef4444) 50%, transparent);
border-block-color: color-mix(in oklch, var(--color-red-500, #ef4444) 50%, transparent);
}

.border-y-transparent {
border-top-color: #0000;
border-bottom-color: #0000;
border-block-color: #0000;
}

@supports (-moz-orient: inline) {
Expand Down
Loading