Skip to content

V9: Is there an ETA on the Field Component? #27299

Answered by behowell
blendsdk asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @blendsdk, the Field component should be stable in early to mid-April.

If you want to start with the unstable Field in the meantime, there is one breaking change coming, but it will only affect cases where Field is used with a control that's not part of the FluentUI library (like a third-party input control).

<>
// ✅ All controls in the library will continue to work
<Field label="Example">
  <Input id="example" />
</Field>

// ⚠️ This will no longer work after the breaking change: controls that are not from the fluentui library
<Field label="Example">
  <ThirdPartyInputControl id="example" />
</Field>

// 💡 You'll need to pass a render function for non-fluentui controls after the break…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@blendsdk
Comment options

@behowell
Comment options

@blendsdk
Comment options

Answer selected by behowell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants