Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.3.2
Choose a base ref
...
head repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.3.3
Choose a head ref
  • 17 commits
  • 45 files changed
  • 7 contributors

Commits on Jul 13, 2023

  1. Fix issues with some pseudo-elements (#11111)

    * Fix issues with some pseudo-elements
    
    We’ve included pseudo elements for backdrop, marker, placeholder, and selection and they were all “jumpable” before we made changes in v3.3.2. Ideally they wouldn’t be because if they ever eventually have any interactivity that could become a problem.
    
    * Update changelog
    thecrypticace committed Jul 13, 2023
    1 Configuration menu
    Copy the full SHA
    7b4de46 View commit details
    Browse the repository at this point in the history
  2. Fix parsing of theme() inside calc() when there are no spaces aro…

    …und operators (#11157)
    
    * Refactor
    
    * Don’t resolve functions for anything not using theme or screen
    
    * Normalize math operators inside calc when handling functions
    
    * Inline postcss-value-parser
    
    * Treat all functions the same as calc
    
    * Remove workaround for calc + operators without spaces
    
    * Remove `postcss-value-parser` dependency
    
    * Update lockfile
    
    * Update sourcemaps
    
    * Update changelog
    
    * Update `value-parser` formatting
    
    * Stop prettier from complaining
    thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    79b5b12 View commit details
    Browse the repository at this point in the history
  3. Ensure repeating-conic-gradient is detected as an image (#11180)

    * ensure `repeating-conic-gradient` is detected as an image
    * update changelog
    RobinMalfait authored and thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    63403d8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    02147e3 View commit details
    Browse the repository at this point in the history
  5. Move unknown pseudo elements outside of :is (#11345)

    * More pseudo elements outside of `:is` by default
    
    * Update changelog
    thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    61cf624 View commit details
    Browse the repository at this point in the history
  6. Escape animation names when prefixes contain special characters (#11470)

    * Escape animation names when prefixes contain special characters
    
    * Update changelog
    thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    24c6a99 View commit details
    Browse the repository at this point in the history
  7. Ensure CI jobs don't run for longer than 15 minutes (#11496)

    * fix: prevent long unwanted runs!
    
    * add timeout-minutes to all the workflows
    
    ---------
    
    Co-authored-by: Robin Malfait <[email protected]>
    2 people authored and thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    ac43650 View commit details
    Browse the repository at this point in the history
  8. Make font settings propagate into buttons, inputs, etc. (#10940)

    * Make font settings propagate into buttons, inputs, etc.
    
    * update source-maps test due to preflight change
    
    * update changelog
    
    ---------
    
    Co-authored-by: Robin Malfait <[email protected]>
    2 people authored and thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    1fb7486 View commit details
    Browse the repository at this point in the history
  9. Add aria-busy utility (#10966)

    * Add aria-busy variant
    
    This is useful to show a spinner or dim a region that is updating.
    
    Very useful in conjunction with [Turbo](https://turbo.hotwired.dev/reference/attributes#automatically-added-attributes)
    
    * update changelog
    
    ---------
    
    Co-authored-by: Robin Malfait <[email protected]>
    2 people authored and thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    b885fff View commit details
    Browse the repository at this point in the history
  10. Reset dialog element styles (#11069)

    * disable useragent styling for dialog
    
    * nits
    
    * Update src/css/preflight.css
    
    * Simplify dialog reset
    
    We don’t want to reset everything here. Just the padding should be enough.
    
    * Update test
    
    ---------
    
    Co-authored-by: Robin Malfait <[email protected]>
    Co-authored-by: Jordan Pittman <[email protected]>
    3 people committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    2432268 View commit details
    Browse the repository at this point in the history
  11. Sort classes using position of first matching rule (#11504)

    * Refactor
    
    * Sort based on first occurence of a candidate
    
    This primarily affects components and utilities which contain multiple matched classes
    
    * Simplify
    
    * Update changelog
    
    * Update
    thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    80f3e85 View commit details
    Browse the repository at this point in the history
  12. Allow variant to be an at-rule without a prelude (#11589)

    * Allow variant to be an at-rule without a prelude
    
    * Update changelog
    thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    1c9bb38 View commit details
    Browse the repository at this point in the history
  13. Make PostCSS plugin async to improve performance (#11548)

    * make main plugin async
    
    This way we can improve the `fs.readFileSync` to a bunch of
    `fs.promises.readFile` in a `Promise.all` instead.
    
    * make CLI plugin async
    
    * update CHANGELOG
    RobinMalfait authored and thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    5b9cbb3 View commit details
    Browse the repository at this point in the history
  14. Don't prefix arbitrary classes in peer/group variants (#11454)

    * Refactor
    
    * Don’t prefix classes in arbitrary values for group and peer
    
    * use `foo` instead of `lol`
    
    * handle the prefix inside the group/peer variants
    
    Then add the `NoPrefix` feature to the variant itself, which will skip
    prefixing any other class in the generated selector (because we already
    took care of prefixing `.group` and `.peer`).
    
    We are using an internal symbol such that:
    
    - We can keep it as a private API
    - We don't introduce a breaking change
    
    * refactor to simple object instead
    
    We will still use a symbol as an internal/private marker, but the data
    itself will be a simple object for now.
    
    If we want to refactor this (and more) in the future using bitflags then
    we can refactor that in a separate PR.
    
    ---------
    
    Co-authored-by: Robin Malfait <[email protected]>
    thecrypticace and RobinMalfait committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    005c1be View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    f97759f View commit details
    Browse the repository at this point in the history
  16. Update changelog

    thecrypticace committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    6a6ceb5 View commit details
    Browse the repository at this point in the history
  17. 3.3.3

    RobinMalfait committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    0bd81a0 View commit details
    Browse the repository at this point in the history
Loading