@fluentui/react-components 9.49.2 → 9.50.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 +30 -2
- package/dist/index.d.ts +201 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib-commonjs/index.js +118 -0
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +35 -34
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,40 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-components
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 09 May 2024 19:31:55 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.50.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.50.0)
|
|
8
|
+
|
|
9
|
+
Thu, 09 May 2024 19:31:55 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.49.2..@fluentui/react-components_v9.50.0)
|
|
11
|
+
|
|
12
|
+
### Minor changes
|
|
13
|
+
|
|
14
|
+
- `@fluentui/react-components`
|
|
15
|
+
- feat: add @fluentui/react-tag-picker to suite ([PR #31321](https://github.com/microsoft/fluentui/pull/31321) by bernardo.sunderhus@gmail.com)
|
|
16
|
+
- `@fluentui/react-motions-preview`
|
|
17
|
+
- BREAKING: fix motion token values and adjust structure to match original source ([PR #31262](https://github.com/microsoft/fluentui/pull/31262) by robert@robertpenner.com)
|
|
18
|
+
- `@fluentui/react-positioning`
|
|
19
|
+
- fix overflowBoundaryPadding being ingored when autoSize was on ([PR #31277](https://github.com/microsoft/fluentui/pull/31277) by jirivyhnalek@microsoft.com)
|
|
20
|
+
- `@fluentui/react-tag-picker`
|
|
21
|
+
- feat: release stable ([PR #31321](https://github.com/microsoft/fluentui/pull/31321) by bernardo.sunderhus@gmail.com)
|
|
22
|
+
|
|
23
|
+
### Patches
|
|
24
|
+
|
|
25
|
+
- `@fluentui/react-combobox`
|
|
26
|
+
- fix combobox empty string and zero value ([PR #31170](https://github.com/microsoft/fluentui/pull/31170) by mingyuanyu@microsoft.com)
|
|
27
|
+
- fix: expand button should be disabled when Combobox is disabled ([PR #31300](https://github.com/microsoft/fluentui/pull/31300) by sarah.higley@microsoft.com)
|
|
28
|
+
- `@fluentui/react-dialog`
|
|
29
|
+
- fix: move styles declared in useDisableBodyScroll() to a separate file ([PR #31299](https://github.com/microsoft/fluentui/pull/31299) by olfedias@microsoft.com)
|
|
30
|
+
- `@fluentui/react-switch`
|
|
31
|
+
- fix: Add HC hover active styling to Switch. ([PR #31283](https://github.com/microsoft/fluentui/pull/31283) by ololubek@microsoft.com)
|
|
32
|
+
- `@fluentui/react-tabster`
|
|
33
|
+
- fix: replace internal useKeyborg() with useKeyborgRef() ([PR #31295](https://github.com/microsoft/fluentui/pull/31295) by olfedias@microsoft.com)
|
|
34
|
+
|
|
7
35
|
## [9.49.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.49.2)
|
|
8
36
|
|
|
9
|
-
Mon, 06 May 2024 12:
|
|
37
|
+
Mon, 06 May 2024 12:55:00 GMT
|
|
10
38
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.49.1..@fluentui/react-components_v9.49.2)
|
|
11
39
|
|
|
12
40
|
### Minor changes
|
package/dist/index.d.ts
CHANGED
|
@@ -763,6 +763,14 @@ import { renderTableSelectionCell_unstable } from '@fluentui/react-table';
|
|
|
763
763
|
import { renderTabList_unstable } from '@fluentui/react-tabs';
|
|
764
764
|
import { renderTag_unstable } from '@fluentui/react-tags';
|
|
765
765
|
import { renderTagGroup_unstable } from '@fluentui/react-tags';
|
|
766
|
+
import { renderTagPicker_unstable } from '@fluentui/react-tag-picker';
|
|
767
|
+
import { renderTagPickerButton_unstable } from '@fluentui/react-tag-picker';
|
|
768
|
+
import { renderTagPickerControl_unstable } from '@fluentui/react-tag-picker';
|
|
769
|
+
import { renderTagPickerGroup_unstable } from '@fluentui/react-tag-picker';
|
|
770
|
+
import { renderTagPickerInput_unstable } from '@fluentui/react-tag-picker';
|
|
771
|
+
import { renderTagPickerList_unstable } from '@fluentui/react-tag-picker';
|
|
772
|
+
import { renderTagPickerOption_unstable } from '@fluentui/react-tag-picker';
|
|
773
|
+
import { renderTagPickerOptionGroup } from '@fluentui/react-tag-picker';
|
|
766
774
|
import { renderTeachingPopover_unstable } from '@fluentui/react-teaching-popover';
|
|
767
775
|
import { renderTeachingPopoverBody_unstable } from '@fluentui/react-teaching-popover';
|
|
768
776
|
import { renderTeachingPopoverCarousel_unstable } from '@fluentui/react-teaching-popover';
|
|
@@ -977,6 +985,49 @@ import { tagGroupClassNames } from '@fluentui/react-tags';
|
|
|
977
985
|
import { TagGroupProps } from '@fluentui/react-tags';
|
|
978
986
|
import { TagGroupSlots } from '@fluentui/react-tags';
|
|
979
987
|
import { TagGroupState } from '@fluentui/react-tags';
|
|
988
|
+
import { TagPicker } from '@fluentui/react-tag-picker';
|
|
989
|
+
import { TagPickerButton } from '@fluentui/react-tag-picker';
|
|
990
|
+
import { tagPickerButtonClassNames } from '@fluentui/react-tag-picker';
|
|
991
|
+
import { TagPickerButtonProps } from '@fluentui/react-tag-picker';
|
|
992
|
+
import { TagPickerButtonSlots } from '@fluentui/react-tag-picker';
|
|
993
|
+
import { TagPickerButtonState } from '@fluentui/react-tag-picker';
|
|
994
|
+
import { TagPickerContextValues } from '@fluentui/react-tag-picker';
|
|
995
|
+
import { TagPickerControl } from '@fluentui/react-tag-picker';
|
|
996
|
+
import { tagPickerControlClassNames } from '@fluentui/react-tag-picker';
|
|
997
|
+
import { TagPickerControlProps } from '@fluentui/react-tag-picker';
|
|
998
|
+
import { TagPickerControlSlots } from '@fluentui/react-tag-picker';
|
|
999
|
+
import { TagPickerControlState } from '@fluentui/react-tag-picker';
|
|
1000
|
+
import { TagPickerGroup } from '@fluentui/react-tag-picker';
|
|
1001
|
+
import { tagPickerGroupClassNames } from '@fluentui/react-tag-picker';
|
|
1002
|
+
import { TagPickerGroupProps } from '@fluentui/react-tag-picker';
|
|
1003
|
+
import { TagPickerGroupSlots } from '@fluentui/react-tag-picker';
|
|
1004
|
+
import { TagPickerGroupState } from '@fluentui/react-tag-picker';
|
|
1005
|
+
import { TagPickerInput } from '@fluentui/react-tag-picker';
|
|
1006
|
+
import { tagPickerInputClassNames } from '@fluentui/react-tag-picker';
|
|
1007
|
+
import { TagPickerInputProps } from '@fluentui/react-tag-picker';
|
|
1008
|
+
import { TagPickerInputSlots } from '@fluentui/react-tag-picker';
|
|
1009
|
+
import { TagPickerInputState } from '@fluentui/react-tag-picker';
|
|
1010
|
+
import { TagPickerList } from '@fluentui/react-tag-picker';
|
|
1011
|
+
import { tagPickerListClassNames } from '@fluentui/react-tag-picker';
|
|
1012
|
+
import { TagPickerListProps } from '@fluentui/react-tag-picker';
|
|
1013
|
+
import { TagPickerListSlots } from '@fluentui/react-tag-picker';
|
|
1014
|
+
import { TagPickerListState } from '@fluentui/react-tag-picker';
|
|
1015
|
+
import { TagPickerOnOpenChangeData } from '@fluentui/react-tag-picker';
|
|
1016
|
+
import { TagPickerOnOptionSelectData } from '@fluentui/react-tag-picker';
|
|
1017
|
+
import { TagPickerOption } from '@fluentui/react-tag-picker';
|
|
1018
|
+
import { tagPickerOptionClassNames } from '@fluentui/react-tag-picker';
|
|
1019
|
+
import { TagPickerOptionGroup } from '@fluentui/react-tag-picker';
|
|
1020
|
+
import { tagPickerOptionGroupClassNames } from '@fluentui/react-tag-picker';
|
|
1021
|
+
import { TagPickerOptionGroupProps } from '@fluentui/react-tag-picker';
|
|
1022
|
+
import { TagPickerOptionGroupSlots } from '@fluentui/react-tag-picker';
|
|
1023
|
+
import { TagPickerOptionGroupState } from '@fluentui/react-tag-picker';
|
|
1024
|
+
import { TagPickerOptionProps } from '@fluentui/react-tag-picker';
|
|
1025
|
+
import { TagPickerOptionSlots } from '@fluentui/react-tag-picker';
|
|
1026
|
+
import { TagPickerOptionState } from '@fluentui/react-tag-picker';
|
|
1027
|
+
import { TagPickerProps } from '@fluentui/react-tag-picker';
|
|
1028
|
+
import { TagPickerSize } from '@fluentui/react-tag-picker';
|
|
1029
|
+
import { TagPickerSlots } from '@fluentui/react-tag-picker';
|
|
1030
|
+
import { TagPickerState } from '@fluentui/react-tag-picker';
|
|
980
1031
|
import { TagProps } from '@fluentui/react-tags';
|
|
981
1032
|
import { TagShape } from '@fluentui/react-tags';
|
|
982
1033
|
import { TagSize } from '@fluentui/react-tags';
|
|
@@ -1492,6 +1543,22 @@ import { useTagAvatarContextValues_unstable } from '@fluentui/react-tags';
|
|
|
1492
1543
|
import { useTagGroup_unstable } from '@fluentui/react-tags';
|
|
1493
1544
|
import { useTagGroupContextValues_unstable } from '@fluentui/react-tags';
|
|
1494
1545
|
import { useTagGroupStyles_unstable } from '@fluentui/react-tags';
|
|
1546
|
+
import { useTagPicker_unstable } from '@fluentui/react-tag-picker';
|
|
1547
|
+
import { useTagPickerButton_unstable } from '@fluentui/react-tag-picker';
|
|
1548
|
+
import { useTagPickerButtonStyles_unstable } from '@fluentui/react-tag-picker';
|
|
1549
|
+
import { useTagPickerControl_unstable } from '@fluentui/react-tag-picker';
|
|
1550
|
+
import { useTagPickerControlStyles_unstable } from '@fluentui/react-tag-picker';
|
|
1551
|
+
import { useTagPickerFilter } from '@fluentui/react-tag-picker';
|
|
1552
|
+
import { useTagPickerGroup_unstable } from '@fluentui/react-tag-picker';
|
|
1553
|
+
import { useTagPickerGroupStyles_unstable } from '@fluentui/react-tag-picker';
|
|
1554
|
+
import { useTagPickerInput_unstable } from '@fluentui/react-tag-picker';
|
|
1555
|
+
import { useTagPickerInputStyles_unstable } from '@fluentui/react-tag-picker';
|
|
1556
|
+
import { useTagPickerList_unstable } from '@fluentui/react-tag-picker';
|
|
1557
|
+
import { useTagPickerListStyles_unstable } from '@fluentui/react-tag-picker';
|
|
1558
|
+
import { useTagPickerOption_unstable } from '@fluentui/react-tag-picker';
|
|
1559
|
+
import { useTagPickerOptionGroup } from '@fluentui/react-tag-picker';
|
|
1560
|
+
import { useTagPickerOptionGroupStyles } from '@fluentui/react-tag-picker';
|
|
1561
|
+
import { useTagPickerOptionStyles_unstable } from '@fluentui/react-tag-picker';
|
|
1495
1562
|
import { useTagStyles_unstable } from '@fluentui/react-tags';
|
|
1496
1563
|
import { useTeachingPopover_unstable } from '@fluentui/react-teaching-popover';
|
|
1497
1564
|
import { useTeachingPopoverBody_unstable } from '@fluentui/react-teaching-popover';
|
|
@@ -3099,6 +3166,22 @@ export { renderTag_unstable }
|
|
|
3099
3166
|
|
|
3100
3167
|
export { renderTagGroup_unstable }
|
|
3101
3168
|
|
|
3169
|
+
export { renderTagPicker_unstable }
|
|
3170
|
+
|
|
3171
|
+
export { renderTagPickerButton_unstable }
|
|
3172
|
+
|
|
3173
|
+
export { renderTagPickerControl_unstable }
|
|
3174
|
+
|
|
3175
|
+
export { renderTagPickerGroup_unstable }
|
|
3176
|
+
|
|
3177
|
+
export { renderTagPickerInput_unstable }
|
|
3178
|
+
|
|
3179
|
+
export { renderTagPickerList_unstable }
|
|
3180
|
+
|
|
3181
|
+
export { renderTagPickerOption_unstable }
|
|
3182
|
+
|
|
3183
|
+
export { renderTagPickerOptionGroup }
|
|
3184
|
+
|
|
3102
3185
|
export { renderTeachingPopover_unstable }
|
|
3103
3186
|
|
|
3104
3187
|
export { renderTeachingPopoverBody_unstable }
|
|
@@ -3527,6 +3610,92 @@ export { TagGroupSlots }
|
|
|
3527
3610
|
|
|
3528
3611
|
export { TagGroupState }
|
|
3529
3612
|
|
|
3613
|
+
export { TagPicker }
|
|
3614
|
+
|
|
3615
|
+
export { TagPickerButton }
|
|
3616
|
+
|
|
3617
|
+
export { tagPickerButtonClassNames }
|
|
3618
|
+
|
|
3619
|
+
export { TagPickerButtonProps }
|
|
3620
|
+
|
|
3621
|
+
export { TagPickerButtonSlots }
|
|
3622
|
+
|
|
3623
|
+
export { TagPickerButtonState }
|
|
3624
|
+
|
|
3625
|
+
export { TagPickerContextValues }
|
|
3626
|
+
|
|
3627
|
+
export { TagPickerControl }
|
|
3628
|
+
|
|
3629
|
+
export { tagPickerControlClassNames }
|
|
3630
|
+
|
|
3631
|
+
export { TagPickerControlProps }
|
|
3632
|
+
|
|
3633
|
+
export { TagPickerControlSlots }
|
|
3634
|
+
|
|
3635
|
+
export { TagPickerControlState }
|
|
3636
|
+
|
|
3637
|
+
export { TagPickerGroup }
|
|
3638
|
+
|
|
3639
|
+
export { tagPickerGroupClassNames }
|
|
3640
|
+
|
|
3641
|
+
export { TagPickerGroupProps }
|
|
3642
|
+
|
|
3643
|
+
export { TagPickerGroupSlots }
|
|
3644
|
+
|
|
3645
|
+
export { TagPickerGroupState }
|
|
3646
|
+
|
|
3647
|
+
export { TagPickerInput }
|
|
3648
|
+
|
|
3649
|
+
export { tagPickerInputClassNames }
|
|
3650
|
+
|
|
3651
|
+
export { TagPickerInputProps }
|
|
3652
|
+
|
|
3653
|
+
export { TagPickerInputSlots }
|
|
3654
|
+
|
|
3655
|
+
export { TagPickerInputState }
|
|
3656
|
+
|
|
3657
|
+
export { TagPickerList }
|
|
3658
|
+
|
|
3659
|
+
export { tagPickerListClassNames }
|
|
3660
|
+
|
|
3661
|
+
export { TagPickerListProps }
|
|
3662
|
+
|
|
3663
|
+
export { TagPickerListSlots }
|
|
3664
|
+
|
|
3665
|
+
export { TagPickerListState }
|
|
3666
|
+
|
|
3667
|
+
export { TagPickerOnOpenChangeData }
|
|
3668
|
+
|
|
3669
|
+
export { TagPickerOnOptionSelectData }
|
|
3670
|
+
|
|
3671
|
+
export { TagPickerOption }
|
|
3672
|
+
|
|
3673
|
+
export { tagPickerOptionClassNames }
|
|
3674
|
+
|
|
3675
|
+
export { TagPickerOptionGroup }
|
|
3676
|
+
|
|
3677
|
+
export { tagPickerOptionGroupClassNames }
|
|
3678
|
+
|
|
3679
|
+
export { TagPickerOptionGroupProps }
|
|
3680
|
+
|
|
3681
|
+
export { TagPickerOptionGroupSlots }
|
|
3682
|
+
|
|
3683
|
+
export { TagPickerOptionGroupState }
|
|
3684
|
+
|
|
3685
|
+
export { TagPickerOptionProps }
|
|
3686
|
+
|
|
3687
|
+
export { TagPickerOptionSlots }
|
|
3688
|
+
|
|
3689
|
+
export { TagPickerOptionState }
|
|
3690
|
+
|
|
3691
|
+
export { TagPickerProps }
|
|
3692
|
+
|
|
3693
|
+
export { TagPickerSize }
|
|
3694
|
+
|
|
3695
|
+
export { TagPickerSlots }
|
|
3696
|
+
|
|
3697
|
+
export { TagPickerState }
|
|
3698
|
+
|
|
3530
3699
|
export { TagProps }
|
|
3531
3700
|
|
|
3532
3701
|
export { TagShape }
|
|
@@ -4557,6 +4726,38 @@ export { useTagGroupContextValues_unstable }
|
|
|
4557
4726
|
|
|
4558
4727
|
export { useTagGroupStyles_unstable }
|
|
4559
4728
|
|
|
4729
|
+
export { useTagPicker_unstable }
|
|
4730
|
+
|
|
4731
|
+
export { useTagPickerButton_unstable }
|
|
4732
|
+
|
|
4733
|
+
export { useTagPickerButtonStyles_unstable }
|
|
4734
|
+
|
|
4735
|
+
export { useTagPickerControl_unstable }
|
|
4736
|
+
|
|
4737
|
+
export { useTagPickerControlStyles_unstable }
|
|
4738
|
+
|
|
4739
|
+
export { useTagPickerFilter }
|
|
4740
|
+
|
|
4741
|
+
export { useTagPickerGroup_unstable }
|
|
4742
|
+
|
|
4743
|
+
export { useTagPickerGroupStyles_unstable }
|
|
4744
|
+
|
|
4745
|
+
export { useTagPickerInput_unstable }
|
|
4746
|
+
|
|
4747
|
+
export { useTagPickerInputStyles_unstable }
|
|
4748
|
+
|
|
4749
|
+
export { useTagPickerList_unstable }
|
|
4750
|
+
|
|
4751
|
+
export { useTagPickerListStyles_unstable }
|
|
4752
|
+
|
|
4753
|
+
export { useTagPickerOption_unstable }
|
|
4754
|
+
|
|
4755
|
+
export { useTagPickerOptionGroup }
|
|
4756
|
+
|
|
4757
|
+
export { useTagPickerOptionGroupStyles }
|
|
4758
|
+
|
|
4759
|
+
export { useTagPickerOptionStyles_unstable }
|
|
4760
|
+
|
|
4560
4761
|
export { useTagStyles_unstable }
|
|
4561
4762
|
|
|
4562
4763
|
export { useTeachingPopover_unstable }
|
package/lib/index.js
CHANGED
|
@@ -58,3 +58,4 @@ export { AriaLiveAnnouncer, renderAriaLiveAnnouncer_unstable, useAriaLiveAnnounc
|
|
|
58
58
|
export { Rating, ratingClassNames, renderRating_unstable, useRatingStyles_unstable, useRating_unstable, useRatingContextValues, RatingItem, ratingItemClassNames, renderRatingItem_unstable, useRatingItemStyles_unstable, useRatingItem_unstable, RatingItemProvider, useRatingItemContextValue_unstable, RatingDisplay, ratingDisplayClassNames, renderRatingDisplay_unstable, useRatingDisplayStyles_unstable, useRatingDisplay_unstable, useRatingDisplayContextValues } from '@fluentui/react-rating';
|
|
59
59
|
export { SearchBox, renderSearchBox_unstable, searchBoxClassNames, useSearchBoxStyles_unstable, useSearchBox_unstable } from '@fluentui/react-search';
|
|
60
60
|
export { TeachingPopoverHeader, teachingPopoverHeaderClassNames, renderTeachingPopoverHeader_unstable, useTeachingPopoverHeaderStyles_unstable, useTeachingPopoverHeader_unstable, TeachingPopoverBody, teachingPopoverBodyClassNames, renderTeachingPopoverBody_unstable, useTeachingPopoverBodyStyles_unstable, useTeachingPopoverBody_unstable, TeachingPopoverCarouselCard, teachingPopoverCarouselCardClassNames, renderTeachingPopoverCarouselCard_unstable, useTeachingPopoverCarouselCardStyles_unstable, useTeachingPopoverCarouselCard_unstable, TeachingPopoverCarousel, teachingPopoverCarouselClassNames, renderTeachingPopoverCarousel_unstable, useTeachingPopoverCarouselStyles_unstable, useTeachingPopoverCarousel_unstable, useTeachingPopoverCarouselContextValues_unstable, TeachingPopoverCarouselFooter, teachingPopoverCarouselFooterClassNames, renderTeachingPopoverCarouselFooter_unstable, useTeachingPopoverCarouselFooterStyles_unstable, useTeachingPopoverCarouselFooter_unstable, TeachingPopoverCarouselNav, teachingPopoverCarouselNavClassNames, renderTeachingPopoverCarouselNav_unstable, useTeachingPopoverCarouselNavStyles_unstable, useTeachingPopoverCarouselNav_unstable, TeachingPopoverCarouselNavButton, teachingPopoverCarouselNavButtonClassNames, renderTeachingPopoverCarouselNavButton_unstable, useTeachingPopoverCarouselNavButtonStyles_unstable, useTeachingPopoverCarouselNavButton_unstable, TeachingPopoverSurface, renderTeachingPopoverSurface_unstable, teachingPopoverSurfaceClassNames, useTeachingPopoverSurfaceStyles_unstable, useTeachingPopoverSurface_unstable, TeachingPopoverTitle, teachingPopoverTitleClassNames, renderTeachingPopoverTitle_unstable, useTeachingPopoverTitleStyles_unstable, useTeachingPopoverTitle_unstable, TeachingPopoverTrigger, renderTeachingPopoverTrigger_unstable, useTeachingPopoverTrigger_unstable, TeachingPopover, renderTeachingPopover_unstable, useTeachingPopover_unstable, TeachingPopoverFooter, teachingPopoverFooterClassNames, renderTeachingPopoverFooter_unstable, useTeachingPopoverFooter_unstable, TeachingPopoverCarouselPageCount, renderTeachingPopoverCarouselPageCount_unstable, teachingPopoverCarouselPageCountClassNames, useTeachingPopoverCarouselPageCountStyles_unstable, useTeachingPopoverCarouselPageCount_unstable } from '@fluentui/react-teaching-popover';
|
|
61
|
+
export { TagPicker, renderTagPicker_unstable, useTagPicker_unstable, TagPickerInput, tagPickerInputClassNames, renderTagPickerInput_unstable, useTagPickerInputStyles_unstable, useTagPickerInput_unstable, TagPickerList, tagPickerListClassNames, renderTagPickerList_unstable, useTagPickerListStyles_unstable, useTagPickerList_unstable, TagPickerButton, tagPickerButtonClassNames, renderTagPickerButton_unstable, useTagPickerButtonStyles_unstable, useTagPickerButton_unstable, TagPickerControl, tagPickerControlClassNames, renderTagPickerControl_unstable, useTagPickerControlStyles_unstable, useTagPickerControl_unstable, TagPickerOption, tagPickerOptionClassNames, renderTagPickerOption_unstable, useTagPickerOptionStyles_unstable, useTagPickerOption_unstable, TagPickerGroup, tagPickerGroupClassNames, renderTagPickerGroup_unstable, useTagPickerGroupStyles_unstable, useTagPickerGroup_unstable, TagPickerOptionGroup, tagPickerOptionGroupClassNames, renderTagPickerOptionGroup, useTagPickerOptionGroupStyles, useTagPickerOptionGroup, useTagPickerFilter } from '@fluentui/react-tag-picker';
|