packages/web-components/src/select/select.spec.md
The browser-native select control component allows users to choose one option from a list of options. It is commonly used in forms for selecting values from a predefined set of options. This component is a wrapper for the browser-native select control and largely exists to provide a consistent API across browsers, especially on mobile devices.
None
select has been changedselectoption and optgroup elements. As these are the only elements supported in the native select control, we will filter out any other elements that are slotted.<fluent-select>
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
<optgroup label="Group 1">
<option value="option3">Option 3</option>
<option value="option4">Option 4</option>
</optgroup>
</fluent-select>
None
size attribute renamed to component-size to not conflict with the HTML size attributedisallowedChangeTypes to "major", "prerelease"