@fluentui/react-popover 9.11.6 → 9.12.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 CHANGED
@@ -1,12 +1,34 @@
1
1
  # Change Log - @fluentui/react-popover
2
2
 
3
- This log was last generated on Fri, 04 Jul 2025 10:00:06 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 17 Jul 2025 13:45:43 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.12.0)
8
+
9
+ Thu, 17 Jul 2025 13:45:43 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.11.7..@fluentui/react-popover_v9.12.0)
11
+
12
+ ### Minor changes
13
+
14
+ - feat: enable griffel raw styles ([PR #34853](https://github.com/microsoft/fluentui/pull/34853) by martinhochel@microsoft.com)
15
+ - Bump @fluentui/react-aria to v9.15.4 ([PR #34862](https://github.com/microsoft/fluentui/pull/34862) by beachball)
16
+ - Bump @fluentui/react-portal to v9.7.0 ([PR #34862](https://github.com/microsoft/fluentui/pull/34862) by beachball)
17
+ - Bump @fluentui/react-positioning to v9.20.0 ([PR #34862](https://github.com/microsoft/fluentui/pull/34862) by beachball)
18
+ - Bump @fluentui/react-tabster to v9.26.0 ([PR #34862](https://github.com/microsoft/fluentui/pull/34862) by beachball)
19
+
20
+ ## [9.11.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.11.7)
21
+
22
+ Fri, 11 Jul 2025 15:59:24 GMT
23
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.11.6..@fluentui/react-popover_v9.11.7)
24
+
25
+ ### Patches
26
+
27
+ - Bump @fluentui/react-positioning to v9.19.0 ([PR #34807](https://github.com/microsoft/fluentui/pull/34807) by beachball)
28
+
7
29
  ## [9.11.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-popover_v9.11.6)
8
30
 
9
- Fri, 04 Jul 2025 10:00:06 GMT
31
+ Fri, 04 Jul 2025 10:02:46 GMT
10
32
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-popover_v9.11.5..@fluentui/react-popover_v9.11.6)
11
33
 
12
34
  ### Patches
@@ -0,0 +1,61 @@
1
+ import { makeStyles, mergeClasses } from '@griffel/react';
2
+ import { createArrowHeightStyles, createArrowStyles, createSlideStyles } from '@fluentui/react-positioning';
3
+ import { tokens, typographyStyles } from '@fluentui/react-theme';
4
+ export const popoverSurfaceClassNames = {
5
+ root: 'fui-PopoverSurface'
6
+ };
7
+ export const arrowHeights = {
8
+ small: 6,
9
+ medium: 8,
10
+ large: 8
11
+ };
12
+ /**
13
+ * Styles for the root slot
14
+ */ const useStyles = makeStyles({
15
+ root: {
16
+ color: tokens.colorNeutralForeground1,
17
+ backgroundColor: tokens.colorNeutralBackground1,
18
+ borderRadius: tokens.borderRadiusMedium,
19
+ border: `1px solid ${tokens.colorTransparentStroke}`,
20
+ ...typographyStyles.body1,
21
+ ...createSlideStyles(10),
22
+ // TODO need to add versions of tokens.alias.shadow.shadow16, etc. that work with filter
23
+ filter: `drop-shadow(0 0 2px ${tokens.colorNeutralShadowAmbient}) ` + `drop-shadow(0 8px 16px ${tokens.colorNeutralShadowKey})`
24
+ },
25
+ inline: {
26
+ // When rendering inline, the PopoverSurface will be rendered under relatively positioned elements such as Input.
27
+ // This is due to the surface being positioned as absolute, therefore zIndex: 1 ensures that won't happen.
28
+ zIndex: 1
29
+ },
30
+ inverted: {
31
+ backgroundColor: tokens.colorNeutralBackgroundStatic,
32
+ color: tokens.colorNeutralForegroundStaticInverted
33
+ },
34
+ brand: {
35
+ backgroundColor: tokens.colorBrandBackground,
36
+ color: tokens.colorNeutralForegroundOnBrand
37
+ },
38
+ smallPadding: {
39
+ padding: '12px'
40
+ },
41
+ mediumPadding: {
42
+ padding: '16px'
43
+ },
44
+ largePadding: {
45
+ padding: '20px'
46
+ },
47
+ smallArrow: createArrowHeightStyles(arrowHeights.small),
48
+ mediumLargeArrow: createArrowHeightStyles(arrowHeights.medium),
49
+ arrow: createArrowStyles({
50
+ arrowHeight: undefined
51
+ })
52
+ });
53
+ /**
54
+ * Apply styling to the PopoverSurface slots based on the state
55
+ */ export const usePopoverSurfaceStyles_unstable = (state)=>{
56
+ 'use no memo';
57
+ const styles = useStyles();
58
+ state.root.className = mergeClasses(popoverSurfaceClassNames.root, styles.root, state.inline && styles.inline, state.size === 'small' && styles.smallPadding, state.size === 'medium' && styles.mediumPadding, state.size === 'large' && styles.largePadding, state.appearance === 'inverted' && styles.inverted, state.appearance === 'brand' && styles.brand, state.root.className);
59
+ state.arrowClassName = mergeClasses(styles.arrow, state.size === 'small' ? styles.smallArrow : styles.mediumLargeArrow);
60
+ return state;
61
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/components/PopoverSurface/usePopoverSurfaceStyles.styles.ts"],"sourcesContent":["import { makeStyles, mergeClasses } from '@griffel/react';\nimport { createArrowHeightStyles, createArrowStyles, createSlideStyles } from '@fluentui/react-positioning';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport type { PopoverSize } from '../Popover/Popover.types';\nimport type { PopoverSurfaceSlots, PopoverSurfaceState } from './PopoverSurface.types';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\n\nexport const popoverSurfaceClassNames: SlotClassNames<PopoverSurfaceSlots> = {\n root: 'fui-PopoverSurface',\n};\n\nexport const arrowHeights: Record<PopoverSize, number> = {\n small: 6,\n medium: 8,\n large: 8,\n};\n\n/**\n * Styles for the root slot\n */\nconst useStyles = makeStyles({\n root: {\n color: tokens.colorNeutralForeground1,\n backgroundColor: tokens.colorNeutralBackground1,\n borderRadius: tokens.borderRadiusMedium,\n border: `1px solid ${tokens.colorTransparentStroke}`,\n ...typographyStyles.body1,\n ...createSlideStyles(10),\n\n // TODO need to add versions of tokens.alias.shadow.shadow16, etc. that work with filter\n filter:\n `drop-shadow(0 0 2px ${tokens.colorNeutralShadowAmbient}) ` +\n `drop-shadow(0 8px 16px ${tokens.colorNeutralShadowKey})`,\n },\n\n inline: {\n // When rendering inline, the PopoverSurface will be rendered under relatively positioned elements such as Input.\n // This is due to the surface being positioned as absolute, therefore zIndex: 1 ensures that won't happen.\n zIndex: 1,\n },\n\n inverted: {\n backgroundColor: tokens.colorNeutralBackgroundStatic,\n color: tokens.colorNeutralForegroundStaticInverted,\n },\n\n brand: {\n backgroundColor: tokens.colorBrandBackground,\n color: tokens.colorNeutralForegroundOnBrand,\n },\n\n smallPadding: { padding: '12px' },\n\n mediumPadding: { padding: '16px' },\n\n largePadding: { padding: '20px' },\n\n smallArrow: createArrowHeightStyles(arrowHeights.small),\n mediumLargeArrow: createArrowHeightStyles(arrowHeights.medium),\n arrow: createArrowStyles({ arrowHeight: undefined }),\n});\n\n/**\n * Apply styling to the PopoverSurface slots based on the state\n */\nexport const usePopoverSurfaceStyles_unstable = (state: PopoverSurfaceState): PopoverSurfaceState => {\n 'use no memo';\n\n const styles = useStyles();\n state.root.className = mergeClasses(\n popoverSurfaceClassNames.root,\n styles.root,\n state.inline && styles.inline,\n state.size === 'small' && styles.smallPadding,\n state.size === 'medium' && styles.mediumPadding,\n state.size === 'large' && styles.largePadding,\n state.appearance === 'inverted' && styles.inverted,\n state.appearance === 'brand' && styles.brand,\n state.root.className,\n );\n\n state.arrowClassName = mergeClasses(\n styles.arrow,\n state.size === 'small' ? styles.smallArrow : styles.mediumLargeArrow,\n );\n\n return state;\n};\n"],"names":["makeStyles","mergeClasses","createArrowHeightStyles","createArrowStyles","createSlideStyles","tokens","typographyStyles","popoverSurfaceClassNames","root","arrowHeights","small","medium","large","useStyles","color","colorNeutralForeground1","backgroundColor","colorNeutralBackground1","borderRadius","borderRadiusMedium","border","colorTransparentStroke","body1","filter","colorNeutralShadowAmbient","colorNeutralShadowKey","inline","zIndex","inverted","colorNeutralBackgroundStatic","colorNeutralForegroundStaticInverted","brand","colorBrandBackground","colorNeutralForegroundOnBrand","smallPadding","padding","mediumPadding","largePadding","smallArrow","mediumLargeArrow","arrow","arrowHeight","undefined","usePopoverSurfaceStyles_unstable","state","styles","className","size","appearance","arrowClassName"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"AAAA,SAASA,UAAU,EAAEC,YAAY,QAAQ,iBAAiB;AAC1D,SAASC,uBAAuB,EAAEC,iBAAiB,EAAEC,iBAAiB,QAAQ,8BAA8B;AAC5G,SAASC,MAAM,EAAEC,gBAAgB,QAAQ,wBAAwB;AAKjE,OAAO,MAAMC,2BAAgE;IAC3EC,MAAM;AACR,EAAE;AAEF,OAAO,MAAMC,eAA4C;IACvDC,OAAO;IACPC,QAAQ;IACRC,OAAO;AACT,EAAE;AAEF;;CAEC,GACD,MAAMC,YAAYb,WAAW;IAC3BQ,MAAM;QACJM,OAAOT,OAAOU,uBAAuB;QACrCC,iBAAiBX,OAAOY,uBAAuB;QAC/CC,cAAcb,OAAOc,kBAAkB;QACvCC,QAAQ,CAAC,UAAU,EAAEf,OAAOgB,sBAAsB,CAAC,CAAC;QACpD,GAAGf,iBAAiBgB,KAAK;QACzB,GAAGlB,kBAAkB,GAAG;QAExB,wFAAwF;QACxFmB,QACE,CAAC,oBAAoB,EAAElB,OAAOmB,yBAAyB,CAAC,EAAE,CAAC,GAC3D,CAAC,uBAAuB,EAAEnB,OAAOoB,qBAAqB,CAAC,CAAC,CAAC;IAC7D;IAEAC,QAAQ;QACN,iHAAiH;QACjH,0GAA0G;QAC1GC,QAAQ;IACV;IAEAC,UAAU;QACRZ,iBAAiBX,OAAOwB,4BAA4B;QACpDf,OAAOT,OAAOyB,oCAAoC;IACpD;IAEAC,OAAO;QACLf,iBAAiBX,OAAO2B,oBAAoB;QAC5ClB,OAAOT,OAAO4B,6BAA6B;IAC7C;IAEAC,cAAc;QAAEC,SAAS;IAAO;IAEhCC,eAAe;QAAED,SAAS;IAAO;IAEjCE,cAAc;QAAEF,SAAS;IAAO;IAEhCG,YAAYpC,wBAAwBO,aAAaC,KAAK;IACtD6B,kBAAkBrC,wBAAwBO,aAAaE,MAAM;IAC7D6B,OAAOrC,kBAAkB;QAAEsC,aAAaC;IAAU;AACpD;AAEA;;CAEC,GACD,OAAO,MAAMC,mCAAmC,CAACC;IAC/C;IAEA,MAAMC,SAAShC;IACf+B,MAAMpC,IAAI,CAACsC,SAAS,GAAG7C,aACrBM,yBAAyBC,IAAI,EAC7BqC,OAAOrC,IAAI,EACXoC,MAAMlB,MAAM,IAAImB,OAAOnB,MAAM,EAC7BkB,MAAMG,IAAI,KAAK,WAAWF,OAAOX,YAAY,EAC7CU,MAAMG,IAAI,KAAK,YAAYF,OAAOT,aAAa,EAC/CQ,MAAMG,IAAI,KAAK,WAAWF,OAAOR,YAAY,EAC7CO,MAAMI,UAAU,KAAK,cAAcH,OAAOjB,QAAQ,EAClDgB,MAAMI,UAAU,KAAK,WAAWH,OAAOd,KAAK,EAC5Ca,MAAMpC,IAAI,CAACsC,SAAS;IAGtBF,MAAMK,cAAc,GAAGhD,aACrB4C,OAAOL,KAAK,EACZI,MAAMG,IAAI,KAAK,UAAUF,OAAOP,UAAU,GAAGO,OAAON,gBAAgB;IAGtE,OAAOK;AACT,EAAE"}
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ arrowHeights: function() {
13
+ return arrowHeights;
14
+ },
15
+ popoverSurfaceClassNames: function() {
16
+ return popoverSurfaceClassNames;
17
+ },
18
+ usePopoverSurfaceStyles_unstable: function() {
19
+ return usePopoverSurfaceStyles_unstable;
20
+ }
21
+ });
22
+ const _react = require("@griffel/react");
23
+ const _reactpositioning = require("@fluentui/react-positioning");
24
+ const _reacttheme = require("@fluentui/react-theme");
25
+ const popoverSurfaceClassNames = {
26
+ root: 'fui-PopoverSurface'
27
+ };
28
+ const arrowHeights = {
29
+ small: 6,
30
+ medium: 8,
31
+ large: 8
32
+ };
33
+ /**
34
+ * Styles for the root slot
35
+ */ const useStyles = (0, _react.makeStyles)({
36
+ root: {
37
+ color: _reacttheme.tokens.colorNeutralForeground1,
38
+ backgroundColor: _reacttheme.tokens.colorNeutralBackground1,
39
+ borderRadius: _reacttheme.tokens.borderRadiusMedium,
40
+ border: `1px solid ${_reacttheme.tokens.colorTransparentStroke}`,
41
+ ..._reacttheme.typographyStyles.body1,
42
+ ...(0, _reactpositioning.createSlideStyles)(10),
43
+ // TODO need to add versions of tokens.alias.shadow.shadow16, etc. that work with filter
44
+ filter: `drop-shadow(0 0 2px ${_reacttheme.tokens.colorNeutralShadowAmbient}) ` + `drop-shadow(0 8px 16px ${_reacttheme.tokens.colorNeutralShadowKey})`
45
+ },
46
+ inline: {
47
+ // When rendering inline, the PopoverSurface will be rendered under relatively positioned elements such as Input.
48
+ // This is due to the surface being positioned as absolute, therefore zIndex: 1 ensures that won't happen.
49
+ zIndex: 1
50
+ },
51
+ inverted: {
52
+ backgroundColor: _reacttheme.tokens.colorNeutralBackgroundStatic,
53
+ color: _reacttheme.tokens.colorNeutralForegroundStaticInverted
54
+ },
55
+ brand: {
56
+ backgroundColor: _reacttheme.tokens.colorBrandBackground,
57
+ color: _reacttheme.tokens.colorNeutralForegroundOnBrand
58
+ },
59
+ smallPadding: {
60
+ padding: '12px'
61
+ },
62
+ mediumPadding: {
63
+ padding: '16px'
64
+ },
65
+ largePadding: {
66
+ padding: '20px'
67
+ },
68
+ smallArrow: (0, _reactpositioning.createArrowHeightStyles)(arrowHeights.small),
69
+ mediumLargeArrow: (0, _reactpositioning.createArrowHeightStyles)(arrowHeights.medium),
70
+ arrow: (0, _reactpositioning.createArrowStyles)({
71
+ arrowHeight: undefined
72
+ })
73
+ });
74
+ const usePopoverSurfaceStyles_unstable = (state)=>{
75
+ 'use no memo';
76
+ const styles = useStyles();
77
+ state.root.className = (0, _react.mergeClasses)(popoverSurfaceClassNames.root, styles.root, state.inline && styles.inline, state.size === 'small' && styles.smallPadding, state.size === 'medium' && styles.mediumPadding, state.size === 'large' && styles.largePadding, state.appearance === 'inverted' && styles.inverted, state.appearance === 'brand' && styles.brand, state.root.className);
78
+ state.arrowClassName = (0, _react.mergeClasses)(styles.arrow, state.size === 'small' ? styles.smallArrow : styles.mediumLargeArrow);
79
+ return state;
80
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/components/PopoverSurface/usePopoverSurfaceStyles.styles.ts"],"sourcesContent":["import { makeStyles, mergeClasses } from '@griffel/react';\nimport { createArrowHeightStyles, createArrowStyles, createSlideStyles } from '@fluentui/react-positioning';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport type { PopoverSize } from '../Popover/Popover.types';\nimport type { PopoverSurfaceSlots, PopoverSurfaceState } from './PopoverSurface.types';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\n\nexport const popoverSurfaceClassNames: SlotClassNames<PopoverSurfaceSlots> = {\n root: 'fui-PopoverSurface',\n};\n\nexport const arrowHeights: Record<PopoverSize, number> = {\n small: 6,\n medium: 8,\n large: 8,\n};\n\n/**\n * Styles for the root slot\n */\nconst useStyles = makeStyles({\n root: {\n color: tokens.colorNeutralForeground1,\n backgroundColor: tokens.colorNeutralBackground1,\n borderRadius: tokens.borderRadiusMedium,\n border: `1px solid ${tokens.colorTransparentStroke}`,\n ...typographyStyles.body1,\n ...createSlideStyles(10),\n\n // TODO need to add versions of tokens.alias.shadow.shadow16, etc. that work with filter\n filter:\n `drop-shadow(0 0 2px ${tokens.colorNeutralShadowAmbient}) ` +\n `drop-shadow(0 8px 16px ${tokens.colorNeutralShadowKey})`,\n },\n\n inline: {\n // When rendering inline, the PopoverSurface will be rendered under relatively positioned elements such as Input.\n // This is due to the surface being positioned as absolute, therefore zIndex: 1 ensures that won't happen.\n zIndex: 1,\n },\n\n inverted: {\n backgroundColor: tokens.colorNeutralBackgroundStatic,\n color: tokens.colorNeutralForegroundStaticInverted,\n },\n\n brand: {\n backgroundColor: tokens.colorBrandBackground,\n color: tokens.colorNeutralForegroundOnBrand,\n },\n\n smallPadding: { padding: '12px' },\n\n mediumPadding: { padding: '16px' },\n\n largePadding: { padding: '20px' },\n\n smallArrow: createArrowHeightStyles(arrowHeights.small),\n mediumLargeArrow: createArrowHeightStyles(arrowHeights.medium),\n arrow: createArrowStyles({ arrowHeight: undefined }),\n});\n\n/**\n * Apply styling to the PopoverSurface slots based on the state\n */\nexport const usePopoverSurfaceStyles_unstable = (state: PopoverSurfaceState): PopoverSurfaceState => {\n 'use no memo';\n\n const styles = useStyles();\n state.root.className = mergeClasses(\n popoverSurfaceClassNames.root,\n styles.root,\n state.inline && styles.inline,\n state.size === 'small' && styles.smallPadding,\n state.size === 'medium' && styles.mediumPadding,\n state.size === 'large' && styles.largePadding,\n state.appearance === 'inverted' && styles.inverted,\n state.appearance === 'brand' && styles.brand,\n state.root.className,\n );\n\n state.arrowClassName = mergeClasses(\n styles.arrow,\n state.size === 'small' ? styles.smallArrow : styles.mediumLargeArrow,\n );\n\n return state;\n};\n"],"names":["arrowHeights","popoverSurfaceClassNames","usePopoverSurfaceStyles_unstable","root","small","medium","large","useStyles","makeStyles","color","tokens","colorNeutralForeground1","backgroundColor","colorNeutralBackground1","borderRadius","borderRadiusMedium","border","colorTransparentStroke","typographyStyles","body1","createSlideStyles","filter","colorNeutralShadowAmbient","colorNeutralShadowKey","inline","zIndex","inverted","colorNeutralBackgroundStatic","colorNeutralForegroundStaticInverted","brand","colorBrandBackground","colorNeutralForegroundOnBrand","smallPadding","padding","mediumPadding","largePadding","smallArrow","createArrowHeightStyles","mediumLargeArrow","arrow","createArrowStyles","arrowHeight","undefined","state","styles","className","mergeClasses","size","appearance","arrowClassName"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;;;;;;;;IAWaA,YAAAA;eAAAA;;IAJAC,wBAAAA;eAAAA;;IA0DAC,gCAAAA;eAAAA;;;uBAjE4B;kCACqC;4BACrC;AAKlC,MAAMD,2BAAgE;IAC3EE,MAAM;AACR;AAEO,MAAMH,eAA4C;IACvDI,OAAO;IACPC,QAAQ;IACRC,OAAO;AACT;AAEA;;CAEC,GACD,MAAMC,YAAYC,IAAAA,iBAAAA,EAAW;IAC3BL,MAAM;QACJM,OAAOC,kBAAAA,CAAOC,uBAAuB;QACrCC,iBAAiBF,kBAAAA,CAAOG,uBAAuB;QAC/CC,cAAcJ,kBAAAA,CAAOK,kBAAkB;QACvCC,QAAQ,CAAC,UAAU,EAAEN,kBAAAA,CAAOO,sBAAsB,CAAC,CAAC;QACpD,GAAGC,4BAAAA,CAAiBC,KAAK;QACzB,GAAGC,IAAAA,mCAAAA,EAAkB,GAAG;QAExB,wFAAwF;QACxFC,QACE,CAAC,oBAAoB,EAAEX,kBAAAA,CAAOY,yBAAyB,CAAC,EAAE,CAAC,GAC3D,CAAC,uBAAuB,EAAEZ,kBAAAA,CAAOa,qBAAqB,CAAC,CAAC,CAAC;IAC7D;IAEAC,QAAQ;QACN,iHAAiH;QACjH,0GAA0G;QAC1GC,QAAQ;IACV;IAEAC,UAAU;QACRd,iBAAiBF,kBAAAA,CAAOiB,4BAA4B;QACpDlB,OAAOC,kBAAAA,CAAOkB,oCAAoC;IACpD;IAEAC,OAAO;QACLjB,iBAAiBF,kBAAAA,CAAOoB,oBAAoB;QAC5CrB,OAAOC,kBAAAA,CAAOqB,6BAA6B;IAC7C;IAEAC,cAAc;QAAEC,SAAS;IAAO;IAEhCC,eAAe;QAAED,SAAS;IAAO;IAEjCE,cAAc;QAAEF,SAAS;IAAO;IAEhCG,YAAYC,IAAAA,yCAAAA,EAAwBrC,aAAaI,KAAK;IACtDkC,kBAAkBD,IAAAA,yCAAAA,EAAwBrC,aAAaK,MAAM;IAC7DkC,OAAOC,IAAAA,mCAAAA,EAAkB;QAAEC,aAAaC;IAAU;AACpD;AAKO,MAAMxC,mCAAmC,CAACyC;IAC/C;IAEA,MAAMC,SAASrC;IACfoC,MAAMxC,IAAI,CAAC0C,SAAS,GAAGC,IAAAA,mBAAAA,EACrB7C,yBAAyBE,IAAI,EAC7ByC,OAAOzC,IAAI,EACXwC,MAAMnB,MAAM,IAAIoB,OAAOpB,MAAM,EAC7BmB,MAAMI,IAAI,KAAK,WAAWH,OAAOZ,YAAY,EAC7CW,MAAMI,IAAI,KAAK,YAAYH,OAAOV,aAAa,EAC/CS,MAAMI,IAAI,KAAK,WAAWH,OAAOT,YAAY,EAC7CQ,MAAMK,UAAU,KAAK,cAAcJ,OAAOlB,QAAQ,EAClDiB,MAAMK,UAAU,KAAK,WAAWJ,OAAOf,KAAK,EAC5Cc,MAAMxC,IAAI,CAAC0C,SAAS;IAGtBF,MAAMM,cAAc,GAAGH,IAAAA,mBAAAA,EACrBF,OAAOL,KAAK,EACZI,MAAMI,IAAI,KAAK,UAAUH,OAAOR,UAAU,GAAGQ,OAAON,gBAAgB;IAGtE,OAAOK;AACT"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-popover",
3
- "version": "9.11.6",
3
+ "version": "9.12.0",
4
4
  "description": "Popover component for Fluent UI",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -22,12 +22,12 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@fluentui/keyboard-keys": "^9.0.8",
25
- "@fluentui/react-aria": "^9.15.3",
25
+ "@fluentui/react-aria": "^9.15.4",
26
26
  "@fluentui/react-context-selector": "^9.2.2",
27
- "@fluentui/react-portal": "^9.6.4",
28
- "@fluentui/react-positioning": "^9.18.5",
27
+ "@fluentui/react-portal": "^9.7.0",
28
+ "@fluentui/react-positioning": "^9.20.0",
29
29
  "@fluentui/react-shared-contexts": "^9.24.0",
30
- "@fluentui/react-tabster": "^9.25.3",
30
+ "@fluentui/react-tabster": "^9.26.0",
31
31
  "@fluentui/react-theme": "^9.1.24",
32
32
  "@fluentui/react-utilities": "^9.22.0",
33
33
  "@fluentui/react-jsx-runtime": "^9.1.2",