@fluentui/react-components 9.62.0 → 9.63.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 +25 -2
- package/dist/index.d.ts +27 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib-commonjs/index.js +16 -0
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +46 -46
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,35 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-components
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 24 Apr 2025 09:56:26 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.63.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.63.0)
|
|
8
|
+
|
|
9
|
+
Thu, 24 Apr 2025 09:56:26 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.62.0..@fluentui/react-components_v9.63.0)
|
|
11
|
+
|
|
12
|
+
### Minor changes
|
|
13
|
+
|
|
14
|
+
- `@fluentui/react-components`
|
|
15
|
+
- feat: Added InfoButton component to react-components package export ([PR #34255](https://github.com/microsoft/fluentui/pull/34255) by terynkum@microsoft.com)
|
|
16
|
+
- chore: Re-exporting CellRenderFunction from @fluentui/react-components. ([PR #34267](https://github.com/microsoft/fluentui/pull/34267) by Humberto.Morimoto@microsoft.com)
|
|
17
|
+
- `@fluentui/react-infolabel`
|
|
18
|
+
- Feat: Exported InfoButton types and component ([PR #34255](https://github.com/microsoft/fluentui/pull/34255) by terynkum@microsoft.com)
|
|
19
|
+
|
|
20
|
+
### Patches
|
|
21
|
+
|
|
22
|
+
- `@fluentui/chart-utilities`
|
|
23
|
+
- feat(chart-utilities): Add support for scatter polar chart ([PR #34278](https://github.com/microsoft/fluentui/pull/34278) by atisjai@microsoft.com)
|
|
24
|
+
- `@fluentui/react-charts`
|
|
25
|
+
- fix(react-charts): Stacked data not showing on callout for Vertical stacked bar chart ([PR #34288](https://github.com/microsoft/fluentui/pull/34288) by 120183316+srmukher@users.noreply.github.com)
|
|
26
|
+
- High contrast bug fixes ([PR #34284](https://github.com/microsoft/fluentui/pull/34284) by anushgupta@microsoft.com)
|
|
27
|
+
- `@fluentui/react-tabster`
|
|
28
|
+
- fix: use useLayoutEffect() for Tabster creation ([PR #34315](https://github.com/microsoft/fluentui/pull/34315) by olfedias@microsoft.com)
|
|
29
|
+
|
|
7
30
|
## [9.62.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.62.0)
|
|
8
31
|
|
|
9
|
-
Wed, 16 Apr 2025 19:
|
|
32
|
+
Wed, 16 Apr 2025 19:42:02 GMT
|
|
10
33
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.61.6..@fluentui/react-components_v9.62.0)
|
|
11
34
|
|
|
12
35
|
### Minor changes
|
package/dist/index.d.ts
CHANGED
|
@@ -207,6 +207,7 @@ import { carouselViewportClassNames } from '@fluentui/react-carousel';
|
|
|
207
207
|
import { CarouselViewportProps } from '@fluentui/react-carousel';
|
|
208
208
|
import { CarouselViewportSlots } from '@fluentui/react-carousel';
|
|
209
209
|
import { CarouselViewportState } from '@fluentui/react-carousel';
|
|
210
|
+
import { CellRenderFunction } from '@fluentui/react-table';
|
|
210
211
|
import { Checkbox } from '@fluentui/react-checkbox';
|
|
211
212
|
import { checkboxClassNames } from '@fluentui/react-checkbox';
|
|
212
213
|
import { CheckboxOnChangeData } from '@fluentui/react-checkbox';
|
|
@@ -465,6 +466,11 @@ import { imageSwatchClassNames } from '@fluentui/react-swatch-picker';
|
|
|
465
466
|
import { ImageSwatchProps } from '@fluentui/react-swatch-picker';
|
|
466
467
|
import { ImageSwatchSlots } from '@fluentui/react-swatch-picker';
|
|
467
468
|
import { ImageSwatchState } from '@fluentui/react-swatch-picker';
|
|
469
|
+
import { InfoButton } from '@fluentui/react-infobutton';
|
|
470
|
+
import { infoButtonClassNames } from '@fluentui/react-infobutton';
|
|
471
|
+
import { InfoButtonProps } from '@fluentui/react-infobutton';
|
|
472
|
+
import { InfoButtonSlots } from '@fluentui/react-infobutton';
|
|
473
|
+
import { InfoButtonState } from '@fluentui/react-infobutton';
|
|
468
474
|
import { InfoLabel } from '@fluentui/react-infolabel';
|
|
469
475
|
import { infoLabelClassNames } from '@fluentui/react-infolabel';
|
|
470
476
|
import { InfoLabelProps } from '@fluentui/react-infolabel';
|
|
@@ -840,6 +846,7 @@ import { renderFlatTree_unstable } from '@fluentui/react-tree';
|
|
|
840
846
|
import { renderFluentProvider_unstable } from '@fluentui/react-provider';
|
|
841
847
|
import { renderImage_unstable } from '@fluentui/react-image';
|
|
842
848
|
import { renderImageSwatch_unstable } from '@fluentui/react-swatch-picker';
|
|
849
|
+
import { renderInfoButton_unstable } from '@fluentui/react-infobutton';
|
|
843
850
|
import { renderInfoLabel_unstable } from '@fluentui/react-infolabel';
|
|
844
851
|
import { renderInlineDrawer_unstable } from '@fluentui/react-drawer';
|
|
845
852
|
import { renderInput_unstable } from '@fluentui/react-input';
|
|
@@ -1572,6 +1579,8 @@ import { useImage_unstable } from '@fluentui/react-image';
|
|
|
1572
1579
|
import { useImageStyles_unstable } from '@fluentui/react-image';
|
|
1573
1580
|
import { useImageSwatch_unstable } from '@fluentui/react-swatch-picker';
|
|
1574
1581
|
import { useImageSwatchStyles_unstable } from '@fluentui/react-swatch-picker';
|
|
1582
|
+
import { useInfoButton_unstable } from '@fluentui/react-infobutton';
|
|
1583
|
+
import { useInfoButtonStyles_unstable } from '@fluentui/react-infobutton';
|
|
1575
1584
|
import { useInfoLabel_unstable } from '@fluentui/react-infolabel';
|
|
1576
1585
|
import { useInfoLabelStyles_unstable } from '@fluentui/react-infolabel';
|
|
1577
1586
|
import { useInlineDrawer_unstable } from '@fluentui/react-drawer';
|
|
@@ -2275,6 +2284,8 @@ export { CarouselViewportSlots }
|
|
|
2275
2284
|
|
|
2276
2285
|
export { CarouselViewportState }
|
|
2277
2286
|
|
|
2287
|
+
export { CellRenderFunction }
|
|
2288
|
+
|
|
2278
2289
|
export { Checkbox }
|
|
2279
2290
|
|
|
2280
2291
|
export { checkboxClassNames }
|
|
@@ -2791,6 +2802,16 @@ export { ImageSwatchSlots }
|
|
|
2791
2802
|
|
|
2792
2803
|
export { ImageSwatchState }
|
|
2793
2804
|
|
|
2805
|
+
export { InfoButton }
|
|
2806
|
+
|
|
2807
|
+
export { infoButtonClassNames }
|
|
2808
|
+
|
|
2809
|
+
export { InfoButtonProps }
|
|
2810
|
+
|
|
2811
|
+
export { InfoButtonSlots }
|
|
2812
|
+
|
|
2813
|
+
export { InfoButtonState }
|
|
2814
|
+
|
|
2794
2815
|
export { InfoLabel }
|
|
2795
2816
|
|
|
2796
2817
|
export { infoLabelClassNames }
|
|
@@ -3541,6 +3562,8 @@ export { renderImage_unstable }
|
|
|
3541
3562
|
|
|
3542
3563
|
export { renderImageSwatch_unstable }
|
|
3543
3564
|
|
|
3565
|
+
export { renderInfoButton_unstable }
|
|
3566
|
+
|
|
3544
3567
|
export { renderInfoLabel_unstable }
|
|
3545
3568
|
|
|
3546
3569
|
export { renderInlineDrawer_unstable }
|
|
@@ -5005,6 +5028,10 @@ export { useImageSwatch_unstable }
|
|
|
5005
5028
|
|
|
5006
5029
|
export { useImageSwatchStyles_unstable }
|
|
5007
5030
|
|
|
5031
|
+
export { useInfoButton_unstable }
|
|
5032
|
+
|
|
5033
|
+
export { useInfoButtonStyles_unstable }
|
|
5034
|
+
|
|
5008
5035
|
export { useInfoLabel_unstable }
|
|
5009
5036
|
|
|
5010
5037
|
export { useInfoLabelStyles_unstable }
|
package/lib/index.js
CHANGED
|
@@ -52,6 +52,7 @@ export { FlatTree, FlatTreeItem, Tree, TreeItem, TreeItemLayout, TreeItemPersona
|
|
|
52
52
|
export { Tag, renderTag_unstable, tagClassNames, useTagStyles_unstable, useTag_unstable, InteractionTag, renderInteractionTag_unstable, interactionTagClassNames, useInteractionTagStyles_unstable, useInteractionTag_unstable, useInteractionTagContextValues_unstable, InteractionTagPrimary, interactionTagPrimaryClassNames, renderInteractionTagPrimary_unstable, useInteractionTagPrimaryStyles_unstable, useInteractionTagPrimary_unstable, InteractionTagSecondary, renderInteractionTagSecondary_unstable, interactionTagSecondaryClassNames, useInteractionTagSecondaryStyles_unstable, useInteractionTagSecondary_unstable, TagGroup, renderTagGroup_unstable, tagGroupClassNames, useTagGroupStyles_unstable, useTagGroup_unstable, useTagGroupContextValues_unstable, useTagAvatarContextValues_unstable } from '@fluentui/react-tags';
|
|
53
53
|
export { MessageBar, useMessageBarStyles_unstable, useMessageBar_unstable, renderMessageBar_unstable, messageBarClassNames, MessageBarTitle, useMessageBarTitleStyles_unstable, useMessageBarTitle_unstable, renderMessageBarTitle_unstable, messageBarTitleClassNames, MessageBarActions, useMessageBarActionsStyles_unstable, useMessageBarActions_unstable, renderMessageBarActions_unstable, messageBarActionsClassNames, MessageBarBody, useMessageBarBodyStyles_unstable, useMessageBarBody_unstable, renderMessageBarBody_unstable, messageBarBodyClassNames, MessageBarContextProvider, useMessageBarContext, MessageBarGroup, useMessageBarGroupStyles_unstable, useMessageBarGroup_unstable, renderMessageBarGroup_unstable, messageBarGroupClassNames, useMessageBarContextValue_unstable, useMessageBarActionsContextValue_unstable } from '@fluentui/react-message-bar';
|
|
54
54
|
export { InfoLabel, infoLabelClassNames, renderInfoLabel_unstable, useInfoLabelStyles_unstable, useInfoLabel_unstable } from '@fluentui/react-infolabel';
|
|
55
|
+
export { InfoButton, infoButtonClassNames, renderInfoButton_unstable, useInfoButtonStyles_unstable, useInfoButton_unstable } from '@fluentui/react-infobutton';
|
|
55
56
|
export { Drawer, renderDrawer_unstable, useDrawerStyles_unstable, useDrawer_unstable, OverlayDrawer, overlayDrawerClassNames, renderOverlayDrawer_unstable, useOverlayDrawerStyles_unstable, useOverlayDrawer_unstable, InlineDrawer, inlineDrawerClassNames, renderInlineDrawer_unstable, useInlineDrawerStyles_unstable, useInlineDrawer_unstable, DrawerBody, drawerBodyClassNames, renderDrawerBody_unstable, useDrawerBodyStyles_unstable, useDrawerBody_unstable, DrawerHeader, drawerHeaderClassNames, renderDrawerHeader_unstable, useDrawerHeaderStyles_unstable, useDrawerHeader_unstable, DrawerHeaderTitle, drawerHeaderTitleClassNames, renderDrawerHeaderTitle_unstable, useDrawerHeaderTitleStyles_unstable, useDrawerHeaderTitle_unstable, DrawerHeaderNavigation, drawerHeaderNavigationClassNames, renderDrawerHeaderNavigation_unstable, useDrawerHeaderNavigationStyles_unstable, useDrawerHeaderNavigation_unstable, DrawerFooter, drawerFooterClassNames, renderDrawerFooter_unstable, useDrawerFooterStyles_unstable, useDrawerFooter_unstable, DrawerProvider, useDrawerContextValue, useDrawerContext_unstable } from '@fluentui/react-drawer';
|
|
56
57
|
export { Breadcrumb, renderBreadcrumb_unstable, useBreadcrumb_unstable, useBreadcrumbStyles_unstable, breadcrumbClassNames, BreadcrumbDivider, breadcrumbDividerClassNames, renderBreadcrumbDivider_unstable, useBreadcrumbDividerStyles_unstable, useBreadcrumbDivider_unstable, BreadcrumbItem, breadcrumbItemClassNames, renderBreadcrumbItem_unstable, useBreadcrumbItemStyles_unstable, useBreadcrumbItem_unstable, partitionBreadcrumbItems, truncateBreadcrumbLongName, truncateBreadcrumLongTooltip, isTruncatableBreadcrumbContent, BreadcrumbButton, breadcrumbButtonClassNames, renderBreadcrumbButton_unstable, useBreadcrumbButtonStyles_unstable, useBreadcrumbButton_unstable, BreadcrumbProvider, useBreadcrumbContext_unstable } from '@fluentui/react-breadcrumb';
|
|
57
58
|
export { AriaLiveAnnouncer, renderAriaLiveAnnouncer_unstable, useAriaLiveAnnouncer_unstable, useAriaLiveAnnouncerContextValues_unstable } from '@fluentui/react-aria';
|