fluentui-extended 2026.9.5 → 2026.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  > Version format: `YYYY.M.DD` (e.g., `2026.8.30` = August 30, 2026)
4
4
 
5
+ ## 2026.9.6
6
+
7
+ - ✨ **`size` on [OptionSetField](README.md#optionsetfield)**, forwarded to the underlying Combobox.
8
+ Without it the control could not be used in a dense grid: a default-height control inside a
9
+ virtualised row makes every row taller, so callers had to keep a hand-rolled Dropdown just to
10
+ pass `size="small"`.
11
+
5
12
  ## 2026.9.5
6
13
 
7
14
  - 🐛 Widened the `@fluentui/react-calendar-compat` peer range to `^0.3.0 || ^0.4.0`. It was pinned
package/dist/index.d.mts CHANGED
@@ -1337,6 +1337,12 @@ interface OptionSetFieldProps {
1337
1337
  * expanded control has to be rendered without driving a real pointer.
1338
1338
  */
1339
1339
  open?: boolean;
1340
+ /**
1341
+ * Control height, passed through to the underlying Combobox. `small` is what a
1342
+ * dense grid needs: a default-height control inside a virtualised row makes
1343
+ * every row taller, which is the opposite of what density is for.
1344
+ */
1345
+ size?: 'small' | 'medium' | 'large';
1340
1346
  /** Label rendered above the control */
1341
1347
  label?: string | React.ReactElement;
1342
1348
  /** Validation message rendered below the control */
package/dist/index.d.ts CHANGED
@@ -1337,6 +1337,12 @@ interface OptionSetFieldProps {
1337
1337
  * expanded control has to be rendered without driving a real pointer.
1338
1338
  */
1339
1339
  open?: boolean;
1340
+ /**
1341
+ * Control height, passed through to the underlying Combobox. `small` is what a
1342
+ * dense grid needs: a default-height control inside a virtualised row makes
1343
+ * every row taller, which is the opposite of what density is for.
1344
+ */
1345
+ size?: 'small' | 'medium' | 'large';
1340
1346
  /** Label rendered above the control */
1341
1347
  label?: string | React.ReactElement;
1342
1348
  /** Validation message rendered below the control */
package/dist/index.js CHANGED
@@ -6770,6 +6770,7 @@ var OptionSetField = ({
6770
6770
  asBadge = false,
6771
6771
  placeholder = "---",
6772
6772
  disabled,
6773
+ size,
6773
6774
  appearance = DEFAULT_FIELD_APPEARANCE,
6774
6775
  clearable = true,
6775
6776
  open,
@@ -6860,6 +6861,7 @@ var OptionSetField = ({
6860
6861
  multiselect,
6861
6862
  placeholder: loading ? "Loading..." : placeholder,
6862
6863
  disabled: disabled || loading,
6864
+ size,
6863
6865
  value: displayValue,
6864
6866
  selectedOptions: selectedValues.map(String),
6865
6867
  onOptionSelect: handleOptionSelect,