@fluentui/react-components 9.56.8 → 9.57.0
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 +36 -2
- package/dist/index.d.ts +48 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib-commonjs/index.js +31 -0
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +53 -52
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,46 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-components
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 08 Jan 2025 18:29:11 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.57.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.57.0)
|
|
8
|
+
|
|
9
|
+
Wed, 08 Jan 2025 18:29:11 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.56.8..@fluentui/react-components_v9.57.0)
|
|
11
|
+
|
|
12
|
+
### Minor changes
|
|
13
|
+
|
|
14
|
+
- `@fluentui/react-components`
|
|
15
|
+
- feat: add @fluentui/react-list to suite ([PR #33378](https://github.com/microsoft/fluentui/pull/33378) by jirivyhnalek@microsoft.com)
|
|
16
|
+
- `@fluentui/react-list`
|
|
17
|
+
- feat: release stable ([PR #33378](https://github.com/microsoft/fluentui/pull/33378) by jirivyhnalek@microsoft.com)
|
|
18
|
+
- `@fluentui/react-message-bar`
|
|
19
|
+
- refactor(MessageBar): migrate slide & fade to motion components ([PR #33465](https://github.com/microsoft/fluentui/pull/33465) by robertpenner@microsoft.com)
|
|
20
|
+
- `@fluentui/react-teaching-popover`
|
|
21
|
+
- fix: accName updates and semantic fixes ([PR #33194](https://github.com/microsoft/fluentui/pull/33194) by sarah.higley@microsoft.com)
|
|
22
|
+
|
|
23
|
+
### Patches
|
|
24
|
+
|
|
25
|
+
- `@fluentui/eslint-plugin-react-components`
|
|
26
|
+
- feat: add prefer-fluentui-v9 rule ([PR #33449](https://github.com/microsoft/fluentui/pull/33449) by dmytrokirpa@microsoft.com)
|
|
27
|
+
- `@fluentui/react-color-picker-preview`
|
|
28
|
+
- fix: contrast border of thumb ([PR #33526](https://github.com/microsoft/fluentui/pull/33526) by vkozlova@microsoft.com)
|
|
29
|
+
- feat: added aria-attributes to the ColorPicker ([PR #33543](https://github.com/microsoft/fluentui/pull/33543) by vkozlova@microsoft.com)
|
|
30
|
+
- `@fluentui/react-conformance`
|
|
31
|
+
- chore: remove usage of "export *" ([PR #33448](https://github.com/microsoft/fluentui/pull/33448) by olfedias@microsoft.com)
|
|
32
|
+
- `@fluentui/react-motion`
|
|
33
|
+
- fix: handle case when Animation.persist() does not exist ([PR #33282](https://github.com/microsoft/fluentui/pull/33282) by seanmonahan@microsoft.com)
|
|
34
|
+
- `@fluentui/react-positioning`
|
|
35
|
+
- chore: bump @floating-ui/dom ([PR #33458](https://github.com/microsoft/fluentui/pull/33458) by 863023+radium-v@users.noreply.github.com)
|
|
36
|
+
- `@fluentui/react-tabs`
|
|
37
|
+
- fix: update tab border color for better visibility in high contrast mode ([PR #33573](https://github.com/microsoft/fluentui/pull/33573) by dmytrokirpa@microsoft.com)
|
|
38
|
+
- `@fluentui/react-toast`
|
|
39
|
+
- feat: Add intent property to Toast state and useToast hook. Correct media className assignment in useToastTitleStyles. ([PR #33550](https://github.com/microsoft/fluentui/pull/33550) by soumya_tripathy@outlook.com)
|
|
40
|
+
|
|
7
41
|
## [9.56.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.56.8)
|
|
8
42
|
|
|
9
|
-
Thu, 19 Dec 2024 14:30:
|
|
43
|
+
Thu, 19 Dec 2024 14:30:56 GMT
|
|
10
44
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.56.7..@fluentui/react-components_v9.56.8)
|
|
11
45
|
|
|
12
46
|
### Patches
|
package/dist/index.d.ts
CHANGED
|
@@ -490,6 +490,7 @@ import { linkClassNames } from '@fluentui/react-link';
|
|
|
490
490
|
import { LinkProps } from '@fluentui/react-link';
|
|
491
491
|
import { LinkSlots } from '@fluentui/react-link';
|
|
492
492
|
import { LinkState } from '@fluentui/react-link';
|
|
493
|
+
import { List } from '@fluentui/react-list';
|
|
493
494
|
import { Listbox } from '@fluentui/react-combobox';
|
|
494
495
|
import { listboxClassNames } from '@fluentui/react-combobox';
|
|
495
496
|
import { ListboxContextValue } from '@fluentui/react-combobox';
|
|
@@ -498,6 +499,15 @@ import { ListboxProps } from '@fluentui/react-combobox';
|
|
|
498
499
|
import { ListboxProvider } from '@fluentui/react-combobox';
|
|
499
500
|
import { ListboxSlots } from '@fluentui/react-combobox';
|
|
500
501
|
import { ListboxState } from '@fluentui/react-combobox';
|
|
502
|
+
import { listClassNames } from '@fluentui/react-list';
|
|
503
|
+
import { ListItem } from '@fluentui/react-list';
|
|
504
|
+
import { listItemClassNames } from '@fluentui/react-list';
|
|
505
|
+
import { ListItemProps } from '@fluentui/react-list';
|
|
506
|
+
import { ListItemSlots } from '@fluentui/react-list';
|
|
507
|
+
import { ListItemState } from '@fluentui/react-list';
|
|
508
|
+
import { ListProps } from '@fluentui/react-list';
|
|
509
|
+
import { ListSlots } from '@fluentui/react-list';
|
|
510
|
+
import { ListState } from '@fluentui/react-list';
|
|
501
511
|
import { makeResetStyles } from '@griffel/react';
|
|
502
512
|
import { makeStaticStyles } from '@griffel/react';
|
|
503
513
|
import { makeStyles } from '@griffel/react';
|
|
@@ -810,7 +820,9 @@ import { renderInteractionTagPrimary_unstable } from '@fluentui/react-tags';
|
|
|
810
820
|
import { renderInteractionTagSecondary_unstable } from '@fluentui/react-tags';
|
|
811
821
|
import { renderLabel_unstable } from '@fluentui/react-label';
|
|
812
822
|
import { renderLink_unstable } from '@fluentui/react-link';
|
|
823
|
+
import { renderList_unstable } from '@fluentui/react-list';
|
|
813
824
|
import { renderListbox_unstable } from '@fluentui/react-combobox';
|
|
825
|
+
import { renderListItem_unstable } from '@fluentui/react-list';
|
|
814
826
|
import { renderMenu_unstable } from '@fluentui/react-menu';
|
|
815
827
|
import { renderMenuButton_unstable } from '@fluentui/react-button';
|
|
816
828
|
import { renderMenuDivider_unstable } from '@fluentui/react-menu';
|
|
@@ -1546,10 +1558,14 @@ import { useLabelStyles_unstable } from '@fluentui/react-label';
|
|
|
1546
1558
|
import { useLink_unstable } from '@fluentui/react-link';
|
|
1547
1559
|
import { useLinkState_unstable } from '@fluentui/react-link';
|
|
1548
1560
|
import { useLinkStyles_unstable } from '@fluentui/react-link';
|
|
1561
|
+
import { useList_unstable } from '@fluentui/react-list';
|
|
1549
1562
|
import { useListbox_unstable } from '@fluentui/react-combobox';
|
|
1550
1563
|
import { useListboxContext_unstable } from '@fluentui/react-combobox';
|
|
1551
1564
|
import { useListboxContextValues } from '@fluentui/react-combobox';
|
|
1552
1565
|
import { useListboxStyles_unstable } from '@fluentui/react-combobox';
|
|
1566
|
+
import { useListItem_unstable } from '@fluentui/react-list';
|
|
1567
|
+
import { useListItemStyles_unstable } from '@fluentui/react-list';
|
|
1568
|
+
import { useListStyles_unstable } from '@fluentui/react-list';
|
|
1553
1569
|
import { useMenu_unstable } from '@fluentui/react-menu';
|
|
1554
1570
|
import { useMenuButton_unstable } from '@fluentui/react-button';
|
|
1555
1571
|
import { useMenuButtonStyles_unstable } from '@fluentui/react-button';
|
|
@@ -2786,6 +2802,8 @@ export { LinkSlots }
|
|
|
2786
2802
|
|
|
2787
2803
|
export { LinkState }
|
|
2788
2804
|
|
|
2805
|
+
export { List }
|
|
2806
|
+
|
|
2789
2807
|
export { Listbox }
|
|
2790
2808
|
|
|
2791
2809
|
export { listboxClassNames }
|
|
@@ -2802,6 +2820,24 @@ export { ListboxSlots }
|
|
|
2802
2820
|
|
|
2803
2821
|
export { ListboxState }
|
|
2804
2822
|
|
|
2823
|
+
export { listClassNames }
|
|
2824
|
+
|
|
2825
|
+
export { ListItem }
|
|
2826
|
+
|
|
2827
|
+
export { listItemClassNames }
|
|
2828
|
+
|
|
2829
|
+
export { ListItemProps }
|
|
2830
|
+
|
|
2831
|
+
export { ListItemSlots }
|
|
2832
|
+
|
|
2833
|
+
export { ListItemState }
|
|
2834
|
+
|
|
2835
|
+
export { ListProps }
|
|
2836
|
+
|
|
2837
|
+
export { ListSlots }
|
|
2838
|
+
|
|
2839
|
+
export { ListState }
|
|
2840
|
+
|
|
2805
2841
|
export { makeResetStyles }
|
|
2806
2842
|
|
|
2807
2843
|
export { makeStaticStyles }
|
|
@@ -3426,8 +3462,12 @@ export { renderLabel_unstable }
|
|
|
3426
3462
|
|
|
3427
3463
|
export { renderLink_unstable }
|
|
3428
3464
|
|
|
3465
|
+
export { renderList_unstable }
|
|
3466
|
+
|
|
3429
3467
|
export { renderListbox_unstable }
|
|
3430
3468
|
|
|
3469
|
+
export { renderListItem_unstable }
|
|
3470
|
+
|
|
3431
3471
|
export { renderMenu_unstable }
|
|
3432
3472
|
|
|
3433
3473
|
export { renderMenuButton_unstable }
|
|
@@ -4898,6 +4938,8 @@ export { useLinkState_unstable }
|
|
|
4898
4938
|
|
|
4899
4939
|
export { useLinkStyles_unstable }
|
|
4900
4940
|
|
|
4941
|
+
export { useList_unstable }
|
|
4942
|
+
|
|
4901
4943
|
export { useListbox_unstable }
|
|
4902
4944
|
|
|
4903
4945
|
export { useListboxContext_unstable }
|
|
@@ -4906,6 +4948,12 @@ export { useListboxContextValues }
|
|
|
4906
4948
|
|
|
4907
4949
|
export { useListboxStyles_unstable }
|
|
4908
4950
|
|
|
4951
|
+
export { useListItem_unstable }
|
|
4952
|
+
|
|
4953
|
+
export { useListItemStyles_unstable }
|
|
4954
|
+
|
|
4955
|
+
export { useListStyles_unstable }
|
|
4956
|
+
|
|
4909
4957
|
export { useMenu_unstable }
|
|
4910
4958
|
|
|
4911
4959
|
export { useMenuButton_unstable }
|
package/lib/index.js
CHANGED
|
@@ -62,3 +62,4 @@ export { TagPicker, renderTagPicker_unstable, useTagPicker_unstable, TagPickerIn
|
|
|
62
62
|
export { SwatchPicker, renderSwatchPicker_unstable, useSwatchPickerStyles_unstable, useSwatchPicker_unstable, swatchPickerClassNames, SwatchPickerProvider, swatchPickerContextDefaultValue, useSwatchPickerContextValue_unstable, useSwatchPickerContextValues, ColorSwatch, renderColorSwatch_unstable, useColorSwatchStyles_unstable, useColorSwatch_unstable, colorSwatchClassNames, swatchCSSVars, ImageSwatch, renderImageSwatch_unstable, useImageSwatchStyles_unstable, useImageSwatch_unstable, imageSwatchClassNames, SwatchPickerRow, renderSwatchPickerRow_unstable, useSwatchPickerRowStyles_unstable, useSwatchPickerRow_unstable, swatchPickerRowClassNames, renderSwatchPickerGrid, EmptySwatch, renderEmptySwatch_unstable, useEmptySwatchStyles_unstable, useEmptySwatch_unstable, emptySwatchClassNames } from '@fluentui/react-swatch-picker';
|
|
63
63
|
export { motionTokens, createMotionComponent, createPresenceComponent, createPresenceComponentVariant, PresenceGroup } from '@fluentui/react-motion';
|
|
64
64
|
export { CarouselButton, carouselButtonClassNames, renderCarouselButton_unstable, useCarouselButtonStyles_unstable, useCarouselButton_unstable, CarouselNav, carouselNavClassNames, renderCarouselNav_unstable, useCarouselNavStyles_unstable, useCarouselNav_unstable, CarouselNavButton, carouselNavButtonClassNames, renderCarouselNavButton_unstable, useCarouselNavButtonStyles_unstable, useCarouselNavButton_unstable, Carousel, carouselClassNames, renderCarousel_unstable, useCarouselStyles_unstable, useCarousel_unstable, CarouselCard, carouselCardClassNames, renderCarouselCard_unstable, useCarouselCardStyles_unstable, useCarouselCard_unstable, CarouselAutoplayButton, carouselAutoplayButtonClassNames, renderCarouselAutoplayButton_unstable, useCarouselAutoplayButtonStyles_unstable, useCarouselAutoplayButton_unstable, CarouselNavImageButton, carouselNavImageButtonClassNames, renderCarouselNavImageButton_unstable, useCarouselNavImageButtonStyles_unstable, useCarouselNavImageButton_unstable, CarouselSlider, carouselSliderClassNames, renderCarouselSlider_unstable, useCarouselSliderStyles_unstable, useCarouselSlider_unstable, CarouselNavContainer, carouselNavContainerClassNames, renderCarouselNavContainer_unstable, useCarouselNavContainerStyles_unstable, useCarouselNavContainer_unstable, carouselContextDefaultValue, CarouselProvider, useCarouselContext_unstable, CarouselViewport, carouselViewportClassNames, renderCarouselViewport_unstable, useCarouselViewportStyles_unstable, useCarouselViewport_unstable } from '@fluentui/react-carousel';
|
|
65
|
+
export { List, listClassNames, renderList_unstable, useListStyles_unstable, useList_unstable, ListItem, listItemClassNames, renderListItem_unstable, useListItemStyles_unstable, useListItem_unstable } from '@fluentui/react-list';
|