Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@obosbbl/grunnmuren-react@3.0.0
Major Changes
fd89afd: Changes background colors on buttons. The
greencolor prop value is now replaced byblue. So upgrading to this version means you have to migrate any<Button color="green">to<Button color="blue">. You also have to make sure the new colors have sufficent contranst against your backgrounds.Buttons like these will need a visual check against their backgrounds:
<Button><Button variant="primary"><Button color="blue"><Button color="blue" variant="primary" ><Button variant="secondary"><Button color="blue" variant="secondary">Since
blueis the new default forcolor, you probably only have or and maybe in your code base. As the rest of the combinations would be verbose considering the the defaults.90cfb8e: Removes the deprecated
isLoadingprop from<Button>and<Combobox>, it is now fully replaced by theisPendingprop.Patch Changes
@obosbbl/grunnmuren-tailwind@2.2.1
Patch Changes
d611103: add
prose-whiteto overrideproseto use white text, suitable for use on dark blue backgrounds.eg:
<div class="bg-blue-dark prose prose-white">...</div>