-
Notifications
You must be signed in to change notification settings - Fork 33
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
release of v10.63.0 #4450
Merged
release of v10.63.0 #4450
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…rties tabs (#4442) Co-authored-by: -l <anderslangseth@gmail.com>
This PR aims to make InputMasked work without providing any props. Reason why it should work without providing any props, is because all its props is optional. Defaults to using number mask, as a mask is required. fixes #3134 --------- Co-authored-by: Tobias Høegh <tobias@tujo.no>
Fixes a few warnings reported here, not all I believe: #4145 --------- Co-authored-by: Tobias Høegh <tobias@tujo.no>
…ing` and `error` props to all `Field.*` components (#4421) The PR updates the `info`, `warning`, and `error` props to accept functions. This makes it easier to create conditional messages without relying on making a field "controlled." Additionally, it ensures the same user experience for displaying these messages (by using the `conditionally` function), consistent with how error messages are handled by default today. ```tsx <Field.Number info={(value, { conditionally, getValueByPath }) => { return conditionally(() => 'Show this message, with this value ' + getValueByPath('/otherField')) }} /> ``` Here's an [example](https://eufemia-git-feat-forms-conditional-infos-eufemia.vercel.app/uilib/extensions/forms/base-fields/Number/#displaying-messages---conditional-info-message). --------- Co-authored-by: Anders <anderslangseth@gmail.com>
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
This was referenced Jan 15, 2025
…#4463) This PR changes basically all margin resets with a better check. More info [here](https://dnb-it.slack.com/archives/CMXABCHEY/p1736775869816959). So this reset: ```scss &:not([class*='dnb-space']) { margin: 0; } ``` Is now like this: ```scss @include spaceReset(); ``` Which again checks for all directions: ```scss &:not([class*='space__top']) { margin-top: 0; } etc... ```
…allback function’s children in `Iterate.Array` (#4466)
tujoworker
approved these changes
Jan 28, 2025
…y` (relative paths) (#4502)
…ed inside `Field.Selection` (#4515)
…r` and `onBlurValidator` (#4511) To be used in #4469 and requested [here](https://dnb-it.slack.com/archives/C04NL73S2Q5/p1737652409110949). --------- Co-authored-by: Anders <anderslangseth@gmail.com>
I don't see that the `Field.Option` code is actually used at all 🤔
…angeValidator` to be used within Iterate (#4518) - Reprod: https://codesandbox.io/p/sandbox/connectwithpath-mgyq8m - Reprod with fix: https://codesandbox.io/p/sandbox/connectwithpath-forked-wwmkn6 - More [info](https://dnb-it.slack.com/archives/CMXABCHEY/p1738065508295549?thread_ts=1737987113.910259&cid=CMXABCHEY).
changelog for #4450
🎉 This PR is included in version 10.63.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.