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: react-ui-org/react-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.54.0
Choose a base ref
...
head repository: react-ui-org/react-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.55.0
Choose a head ref
  • 13 commits
  • 154 files changed
  • 2 contributors

Commits on Dec 28, 2023

  1. Configuration menu
    Copy the full SHA
    a83edb5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    828688b View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Use development CSS and JS in docs to improve code readability

    Also, previously used production builds do not exist until `npm run build`
    is run for the first time.
    adamkudrna committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    ea1d903 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Use 4 spaces wide indent in *.md files for better compatibility wit…

    …h GitHub and Bitbucket
    mbohal committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    64694c0 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Configuration menu
    Copy the full SHA
    1800baa View commit details
    Browse the repository at this point in the history
  2. Do not set any dimensions of <html> and <body> elements (#523)

    Developers want to handle this themselves. Let us not be overly opinionated.
    adamkudrna committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    e6fdd20 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Prevent Tabs and ScrollView from unwanted cross-axis scrolling du…

    …ring keyboard navigation #499
    
    Use the `clip` value for `overflow` to prevent the content from unwanted
    scrolling on the cross axis during keyboard navigation.
    adamkudrna committed Mar 6, 2024
    Configuration menu
    Copy the full SHA
    3305eec View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Configuration menu
    Copy the full SHA
    5bdd983 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Update blacklisted props that can be passed to native HTML elements u…

    …sing the transferProps principle
    
    Update src/components/_helpers/transferProps.js
    
    Co-authored-by: Adam Kudrna <adam@adamkudrna.cz>
    
    Update src/components/_helpers/transferProps.js
    
    Co-authored-by: Adam Kudrna <adam@adamkudrna.cz>
    
    Update src/components/_helpers/transferProps.js
    
    Co-authored-by: Adam Kudrna <adam@adamkudrna.cz>
    mbohal and adamkudrna committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    41b876c View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Only process component styles as CSS Modules

    `css-loader` now only treats `*.module.*` files as CSS Modules.
    adamkudrna committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    973369f View commit details
    Browse the repository at this point in the history
  2. Fix Spacing documentation

    adamkudrna committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    efd3d3a View commit details
    Browse the repository at this point in the history
  3. Leverage CSS cascade layers to fix and user-proof styles order

    As long as `layers.scss` (layers order definition) is called first, our Sass
    styles can be imported in any order.
    
    It solves the incorrect (but unavoidable, due to the way we compile CSS) call
    order of styles in our `index.js`.
    
    Also, developers can now extend the CSS cascade instead of just prepending or
    appending their styles to ours.
    
    For example:
    
    ```css
    /* My custom app styles */
    @layer foundation.elements {
      code {
        background-color: silver;
      }
    }
    ```
    adamkudrna committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    2430fdf View commit details
    Browse the repository at this point in the history
  4. Bump version to v0.55.0

    adamkudrna committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    9014fb5 View commit details
    Browse the repository at this point in the history
Loading