fluentui-extended 2026.9.4 → 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 +14 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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
|
+
|
|
12
|
+
## 2026.9.5
|
|
13
|
+
|
|
14
|
+
- 🐛 Widened the `@fluentui/react-calendar-compat` peer range to `^0.3.0 || ^0.4.0`. It was pinned
|
|
15
|
+
to `^0.3.0`, so any consumer already on 0.4.x — which current Fluent installs pull in — hit an
|
|
16
|
+
`ERESOLVE` failure and could not install this package at all. Only `Calendar` is imported from it
|
|
17
|
+
and that export is unchanged; the library typechecks, tests and builds against 0.4.6.
|
|
18
|
+
|
|
5
19
|
## 2026.9.4
|
|
6
20
|
|
|
7
21
|
> Published first as `2026.8.72`, which carried the wrong month. Same contents; use this one.
|
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,
|