@fluentui/react-avatar 9.4.9 → 9.4.10

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.json CHANGED
@@ -2,7 +2,46 @@
2
2
  "name": "@fluentui/react-avatar",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 17 Apr 2023 17:49:56 GMT",
5
+ "date": "Mon, 24 Apr 2023 08:09:06 GMT",
6
+ "tag": "@fluentui/react-avatar_v9.4.10",
7
+ "version": "9.4.10",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "bernardo.sunderhus@gmail.com",
12
+ "package": "@fluentui/react-avatar",
13
+ "commit": "d340ff4b1c3aa7e1818780ec4d41f46c86e451c9",
14
+ "comment": "chore: adopt custom JSX pragma"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-avatar",
19
+ "comment": "Bump @fluentui/react-badge to v9.1.10",
20
+ "commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-avatar",
25
+ "comment": "Bump @fluentui/react-popover to v9.5.10",
26
+ "commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-avatar",
31
+ "comment": "Bump @fluentui/react-tooltip to v9.2.10",
32
+ "commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-avatar",
37
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2",
38
+ "commit": "948b5bf9871303d1742f1b9a17a3bd4006ce2fea"
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ {
44
+ "date": "Mon, 17 Apr 2023 17:53:45 GMT",
6
45
  "tag": "@fluentui/react-avatar_v9.4.9",
7
46
  "version": "9.4.9",
8
47
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,25 @@
1
1
  # Change Log - @fluentui/react-avatar
2
2
 
3
- This log was last generated on Mon, 17 Apr 2023 17:49:56 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 24 Apr 2023 08:09:06 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.10)
8
+
9
+ Mon, 24 Apr 2023 08:09:06 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.9..@fluentui/react-avatar_v9.4.10)
11
+
12
+ ### Patches
13
+
14
+ - chore: adopt custom JSX pragma ([PR #27602](https://github.com/microsoft/fluentui/pull/27602) by bernardo.sunderhus@gmail.com)
15
+ - Bump @fluentui/react-badge to v9.1.10 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
16
+ - Bump @fluentui/react-popover to v9.5.10 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
17
+ - Bump @fluentui/react-tooltip to v9.2.10 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
18
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2 ([PR #27632](https://github.com/microsoft/fluentui/pull/27632) by beachball)
19
+
7
20
  ## [9.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.9)
8
21
 
9
- Mon, 17 Apr 2023 17:49:56 GMT
22
+ Mon, 17 Apr 2023 17:53:45 GMT
10
23
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.8..@fluentui/react-avatar_v9.4.9)
11
24
 
12
25
  ### Patches
@@ -1,10 +1,10 @@
1
- import * as React from 'react';
2
- import { getSlots } from '@fluentui/react-utilities';
1
+ /** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';
2
+ import { getSlotsNext } from '@fluentui/react-utilities';
3
3
  export const renderAvatar_unstable = state => {
4
4
  const {
5
5
  slots,
6
6
  slotProps
7
- } = getSlots(state);
8
- return /*#__PURE__*/React.createElement(slots.root, slotProps.root, slots.initials && /*#__PURE__*/React.createElement(slots.initials, slotProps.initials), slots.icon && /*#__PURE__*/React.createElement(slots.icon, slotProps.icon), slots.image && /*#__PURE__*/React.createElement(slots.image, slotProps.image), slots.badge && /*#__PURE__*/React.createElement(slots.badge, slotProps.badge), state.activeAriaLabelElement);
7
+ } = getSlotsNext(state);
8
+ return /*#__PURE__*/createElement(slots.root, slotProps.root, slots.initials && /*#__PURE__*/createElement(slots.initials, slotProps.initials), slots.icon && /*#__PURE__*/createElement(slots.icon, slotProps.icon), slots.image && /*#__PURE__*/createElement(slots.image, slotProps.image), slots.badge && /*#__PURE__*/createElement(slots.badge, slotProps.badge), state.activeAriaLabelElement);
9
9
  };
10
10
  //# sourceMappingURL=renderAvatar.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","getSlots","renderAvatar_unstable","state","slots","slotProps","createElement","root","initials","icon","image","badge","activeAriaLabelElement"],"sources":["../../../src/components/Avatar/renderAvatar.tsx"],"sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\nimport type { AvatarSlots, AvatarState } from './Avatar.types';\n\nexport const renderAvatar_unstable = (state: AvatarState) => {\n const { slots, slotProps } = getSlots<AvatarSlots>(state);\n\n return (\n <slots.root {...slotProps.root}>\n {slots.initials && <slots.initials {...slotProps.initials} />}\n {slots.icon && <slots.icon {...slotProps.icon} />}\n {slots.image && <slots.image {...slotProps.image} />}\n {slots.badge && <slots.badge {...slotProps.badge} />}\n {state.activeAriaLabelElement}\n </slots.root>\n );\n};\n"],"mappings":"AAAA,YAAYA,KAAA,MAAW;AACvB,SAASC,QAAQ,QAAQ;AAGzB,OAAO,MAAMC,qBAAA,GAAyBC,KAAA,IAAuB;EAC3D,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGJ,QAAA,CAAsBE,KAAA;EAEnD,oBACEH,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMG,IAAI,EAAKF,SAAA,CAAUE,IAAI,EAC3BH,KAAA,CAAMI,QAAQ,iBAAIR,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMI,QAAQ,EAAKH,SAAA,CAAUG,QAAQ,GACxDJ,KAAA,CAAMK,IAAI,iBAAIT,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMK,IAAI,EAAKJ,SAAA,CAAUI,IAAI,GAC5CL,KAAA,CAAMM,KAAK,iBAAIV,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMM,KAAK,EAAKL,SAAA,CAAUK,KAAK,GAC/CN,KAAA,CAAMO,KAAK,iBAAIX,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMO,KAAK,EAAKN,SAAA,CAAUM,KAAK,GAC/CR,KAAA,CAAMS,sBAAsB;AAGnC"}
1
+ {"version":3,"names":["createElement","getSlotsNext","renderAvatar_unstable","state","slots","slotProps","root","initials","icon","image","badge","activeAriaLabelElement"],"sources":["../../../src/components/Avatar/renderAvatar.tsx"],"sourcesContent":["/** @jsxRuntime classic */\n/** @jsx createElement */\n\nimport { createElement } from '@fluentui/react-jsx-runtime';\n\nimport { getSlotsNext } from '@fluentui/react-utilities';\nimport type { AvatarSlots, AvatarState } from './Avatar.types';\n\nexport const renderAvatar_unstable = (state: AvatarState) => {\n const { slots, slotProps } = getSlotsNext<AvatarSlots>(state);\n\n return (\n <slots.root {...slotProps.root}>\n {slots.initials && <slots.initials {...slotProps.initials} />}\n {slots.icon && <slots.icon {...slotProps.icon} />}\n {slots.image && <slots.image {...slotProps.image} />}\n {slots.badge && <slots.badge {...slotProps.badge} />}\n {state.activeAriaLabelElement}\n </slots.root>\n );\n};\n"],"mappings":"AAAA,2BACA,yBAEA,SAASA,aAAa,QAAQ;AAE9B,SAASC,YAAY,QAAQ;AAG7B,OAAO,MAAMC,qBAAA,GAAyBC,KAAA,IAAuB;EAC3D,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGJ,YAAA,CAA0BE,KAAA;EAEvD,oBACEH,aAXJ,CAWKI,KAAA,CAAME,IAAI,EAAKD,SAAA,CAAUC,IAAI,EAC3BF,KAAA,CAAMG,QAAQ,iBAAIP,aAZzB,CAY0BI,KAAA,CAAMG,QAAQ,EAAKF,SAAA,CAAUE,QAAQ,GACxDH,KAAA,CAAMI,IAAI,iBAAIR,aAbrB,CAasBI,KAAA,CAAMI,IAAI,EAAKH,SAAA,CAAUG,IAAI,GAC5CJ,KAAA,CAAMK,KAAK,iBAAIT,aAdtB,CAcuBI,KAAA,CAAMK,KAAK,EAAKJ,SAAA,CAAUI,KAAK,GAC/CL,KAAA,CAAMM,KAAK,iBAAIV,aAftB,CAeuBI,KAAA,CAAMM,KAAK,EAAKL,SAAA,CAAUK,KAAK,GAC/CP,KAAA,CAAMQ,sBAAsB;AAGnC"}
@@ -1,5 +1,5 @@
1
- import * as React from 'react';
2
- import { getSlots } from '@fluentui/react-utilities';
1
+ /** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';
2
+ import { getSlotsNext } from '@fluentui/react-utilities';
3
3
  import { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';
4
4
  /**
5
5
  * Render the final JSX of AvatarGroup
@@ -8,9 +8,9 @@ export const renderAvatarGroup_unstable = (state, contextValues) => {
8
8
  const {
9
9
  slots,
10
10
  slotProps
11
- } = getSlots(state);
12
- return /*#__PURE__*/React.createElement(AvatarGroupProvider, {
11
+ } = getSlotsNext(state);
12
+ return /*#__PURE__*/createElement(AvatarGroupProvider, {
13
13
  value: contextValues.avatarGroup
14
- }, /*#__PURE__*/React.createElement(slots.root, slotProps.root));
14
+ }, /*#__PURE__*/createElement(slots.root, slotProps.root));
15
15
  };
16
16
  //# sourceMappingURL=renderAvatarGroup.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","getSlots","AvatarGroupProvider","renderAvatarGroup_unstable","state","contextValues","slots","slotProps","createElement","value","avatarGroup","root"],"sources":["../../../src/components/AvatarGroup/renderAvatarGroup.tsx"],"sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport type { AvatarGroupState, AvatarGroupSlots, AvatarGroupContextValues } from './AvatarGroup.types';\n\n/**\n * Render the final JSX of AvatarGroup\n */\nexport const renderAvatarGroup_unstable = (state: AvatarGroupState, contextValues: AvatarGroupContextValues) => {\n const { slots, slotProps } = getSlots<AvatarGroupSlots>(state);\n\n return (\n <AvatarGroupProvider value={contextValues.avatarGroup}>\n <slots.root {...slotProps.root} />\n </AvatarGroupProvider>\n );\n};\n"],"mappings":"AAAA,YAAYA,KAAA,MAAW;AACvB,SAASC,QAAQ,QAAQ;AACzB,SAASC,mBAAmB,QAAQ;AAGpC;;;AAGA,OAAO,MAAMC,0BAAA,GAA6BA,CAACC,KAAA,EAAyBC,aAAA,KAA4C;EAC9G,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGN,QAAA,CAA2BG,KAAA;EAExD,oBACEJ,KAAA,CAAAQ,aAAA,CAACN,mBAAA;IAAoBO,KAAA,EAAOJ,aAAA,CAAcK;kBACxCV,KAAA,CAAAQ,aAAA,CAACF,KAAA,CAAMK,IAAI,EAAKJ,SAAA,CAAUI,IAAI;AAGpC"}
1
+ {"version":3,"names":["createElement","getSlotsNext","AvatarGroupProvider","renderAvatarGroup_unstable","state","contextValues","slots","slotProps","value","avatarGroup","root"],"sources":["../../../src/components/AvatarGroup/renderAvatarGroup.tsx"],"sourcesContent":["/** @jsxRuntime classic */\n/** @jsx createElement */\n\nimport { createElement } from '@fluentui/react-jsx-runtime';\n\nimport { getSlotsNext } from '@fluentui/react-utilities';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport type { AvatarGroupState, AvatarGroupSlots, AvatarGroupContextValues } from './AvatarGroup.types';\n\n/**\n * Render the final JSX of AvatarGroup\n */\nexport const renderAvatarGroup_unstable = (state: AvatarGroupState, contextValues: AvatarGroupContextValues) => {\n const { slots, slotProps } = getSlotsNext<AvatarGroupSlots>(state);\n\n return (\n <AvatarGroupProvider value={contextValues.avatarGroup}>\n <slots.root {...slotProps.root} />\n </AvatarGroupProvider>\n );\n};\n"],"mappings":"AAAA,2BACA,yBAEA,SAASA,aAAa,QAAQ;AAE9B,SAASC,YAAY,QAAQ;AAC7B,SAASC,mBAAmB,QAAQ;AAGpC;;;AAGA,OAAO,MAAMC,0BAAA,GAA6BA,CAACC,KAAA,EAAyBC,aAAA,KAA4C;EAC9G,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGN,YAAA,CAA+BG,KAAA;EAE5D,oBACEJ,aAfJ,CAeKE,mBAAA;IAAoBM,KAAA,EAAOH,aAAA,CAAcI;kBACxCT,aAhBN,CAgBOM,KAAA,CAAMI,IAAI,EAAKH,SAAA,CAAUG,IAAI;AAGpC"}
@@ -1,5 +1,5 @@
1
- import * as React from 'react';
2
- import { getSlots } from '@fluentui/react-utilities';
1
+ /** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';
2
+ import { getSlotsNext } from '@fluentui/react-utilities';
3
3
  /**
4
4
  * Render the final JSX of AvatarGroupItem
5
5
  */
@@ -7,7 +7,7 @@ export const renderAvatarGroupItem_unstable = state => {
7
7
  const {
8
8
  slots,
9
9
  slotProps
10
- } = getSlots(state);
11
- return /*#__PURE__*/React.createElement(slots.root, slotProps.root, /*#__PURE__*/React.createElement(slots.avatar, slotProps.avatar), state.isOverflowItem && /*#__PURE__*/React.createElement(slots.overflowLabel, slotProps.overflowLabel));
10
+ } = getSlotsNext(state);
11
+ return /*#__PURE__*/createElement(slots.root, slotProps.root, /*#__PURE__*/createElement(slots.avatar, slotProps.avatar), state.isOverflowItem && /*#__PURE__*/createElement(slots.overflowLabel, slotProps.overflowLabel));
12
12
  };
13
13
  //# sourceMappingURL=renderAvatarGroupItem.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","getSlots","renderAvatarGroupItem_unstable","state","slots","slotProps","createElement","root","avatar","isOverflowItem","overflowLabel"],"sources":["../../../src/components/AvatarGroupItem/renderAvatarGroupItem.tsx"],"sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\nimport type { AvatarGroupItemState, AvatarGroupItemSlots } from './AvatarGroupItem.types';\n\n/**\n * Render the final JSX of AvatarGroupItem\n */\nexport const renderAvatarGroupItem_unstable = (state: AvatarGroupItemState) => {\n const { slots, slotProps } = getSlots<AvatarGroupItemSlots>(state);\n\n return (\n <slots.root {...slotProps.root}>\n <slots.avatar {...slotProps.avatar} />\n {state.isOverflowItem && <slots.overflowLabel {...slotProps.overflowLabel} />}\n </slots.root>\n );\n};\n"],"mappings":"AAAA,YAAYA,KAAA,MAAW;AACvB,SAASC,QAAQ,QAAQ;AAGzB;;;AAGA,OAAO,MAAMC,8BAAA,GAAkCC,KAAA,IAAgC;EAC7E,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGJ,QAAA,CAA+BE,KAAA;EAE5D,oBACEH,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMG,IAAI,EAAKF,SAAA,CAAUE,IAAI,eAC5BP,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMI,MAAM,EAAKH,SAAA,CAAUG,MAAM,GACjCL,KAAA,CAAMM,cAAc,iBAAIT,KAAA,CAAAM,aAAA,CAACF,KAAA,CAAMM,aAAa,EAAKL,SAAA,CAAUK,aAAa;AAG/E"}
1
+ {"version":3,"names":["createElement","getSlotsNext","renderAvatarGroupItem_unstable","state","slots","slotProps","root","avatar","isOverflowItem","overflowLabel"],"sources":["../../../src/components/AvatarGroupItem/renderAvatarGroupItem.tsx"],"sourcesContent":["/** @jsxRuntime classic */\n/** @jsx createElement */\n\nimport { createElement } from '@fluentui/react-jsx-runtime';\n\nimport { getSlotsNext } from '@fluentui/react-utilities';\nimport type { AvatarGroupItemState, AvatarGroupItemSlots } from './AvatarGroupItem.types';\n\n/**\n * Render the final JSX of AvatarGroupItem\n */\nexport const renderAvatarGroupItem_unstable = (state: AvatarGroupItemState) => {\n const { slots, slotProps } = getSlotsNext<AvatarGroupItemSlots>(state);\n\n return (\n <slots.root {...slotProps.root}>\n <slots.avatar {...slotProps.avatar} />\n {state.isOverflowItem && <slots.overflowLabel {...slotProps.overflowLabel} />}\n </slots.root>\n );\n};\n"],"mappings":"AAAA,2BACA,yBAEA,SAASA,aAAa,QAAQ;AAE9B,SAASC,YAAY,QAAQ;AAG7B;;;AAGA,OAAO,MAAMC,8BAAA,GAAkCC,KAAA,IAAgC;EAC7E,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGJ,YAAA,CAAmCE,KAAA;EAEhE,oBACEH,aAdJ,CAcKI,KAAA,CAAME,IAAI,EAAKD,SAAA,CAAUC,IAAI,eAC5BN,aAfN,CAeOI,KAAA,CAAMG,MAAM,EAAKF,SAAA,CAAUE,MAAM,GACjCJ,KAAA,CAAMK,cAAc,iBAAIR,aAhB/B,CAgBgCI,KAAA,CAAMK,aAAa,EAAKJ,SAAA,CAAUI,aAAa;AAG/E"}
@@ -1,6 +1,6 @@
1
- import * as React from 'react';
1
+ /** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';
2
2
  import { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';
3
- import { getSlots } from '@fluentui/react-utilities';
3
+ import { getSlotsNext } from '@fluentui/react-utilities';
4
4
  import { PopoverTrigger } from '@fluentui/react-popover';
5
5
  /**
6
6
  * Render the final JSX of AvatarGroupPopover
@@ -9,11 +9,11 @@ export const renderAvatarGroupPopover_unstable = (state, contextValues) => {
9
9
  const {
10
10
  slots,
11
11
  slotProps
12
- } = getSlots(state);
13
- return /*#__PURE__*/React.createElement(slots.root, slotProps.root, /*#__PURE__*/React.createElement(PopoverTrigger, {
12
+ } = getSlotsNext(state);
13
+ return /*#__PURE__*/createElement(slots.root, slotProps.root, /*#__PURE__*/createElement(PopoverTrigger, {
14
14
  disableButtonEnhancement: true
15
- }, /*#__PURE__*/React.createElement(slots.tooltip, slotProps.tooltip, /*#__PURE__*/React.createElement(slots.triggerButton, slotProps.triggerButton))), /*#__PURE__*/React.createElement(slots.popoverSurface, slotProps.popoverSurface, /*#__PURE__*/React.createElement(AvatarGroupProvider, {
15
+ }, /*#__PURE__*/createElement(slots.tooltip, slotProps.tooltip, /*#__PURE__*/createElement(slots.triggerButton, slotProps.triggerButton))), /*#__PURE__*/createElement(slots.popoverSurface, slotProps.popoverSurface, /*#__PURE__*/createElement(AvatarGroupProvider, {
16
16
  value: contextValues.avatarGroup
17
- }, /*#__PURE__*/React.createElement(slots.content, slotProps.content))));
17
+ }, /*#__PURE__*/createElement(slots.content, slotProps.content))));
18
18
  };
19
19
  //# sourceMappingURL=renderAvatarGroupPopover.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","AvatarGroupProvider","getSlots","PopoverTrigger","renderAvatarGroupPopover_unstable","state","contextValues","slots","slotProps","createElement","root","disableButtonEnhancement","tooltip","triggerButton","popoverSurface","value","avatarGroup","content"],"sources":["../../../src/components/AvatarGroupPopover/renderAvatarGroupPopover.tsx"],"sourcesContent":["import * as React from 'react';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport { AvatarGroupContextValues } from '../AvatarGroup/AvatarGroup.types';\nimport { getSlots } from '@fluentui/react-utilities';\nimport { PopoverProps, PopoverTrigger } from '@fluentui/react-popover';\nimport { TooltipProps } from '@fluentui/react-tooltip';\nimport type { AvatarGroupPopoverState, AvatarGroupPopoverSlots } from './AvatarGroupPopover.types';\n\n/**\n * Render the final JSX of AvatarGroupPopover\n */\nexport const renderAvatarGroupPopover_unstable = (\n state: AvatarGroupPopoverState,\n contextValues: AvatarGroupContextValues,\n) => {\n const { slots, slotProps } = getSlots<AvatarGroupPopoverSlots>(state);\n\n return (\n <slots.root {...(slotProps.root as PopoverProps)}>\n <PopoverTrigger disableButtonEnhancement>\n <slots.tooltip {...(slotProps.tooltip as TooltipProps)}>\n <slots.triggerButton {...slotProps.triggerButton} />\n </slots.tooltip>\n </PopoverTrigger>\n <slots.popoverSurface {...slotProps.popoverSurface}>\n <AvatarGroupProvider value={contextValues.avatarGroup}>\n <slots.content {...slotProps.content} />\n </AvatarGroupProvider>\n </slots.popoverSurface>\n </slots.root>\n );\n};\n"],"mappings":"AAAA,YAAYA,KAAA,MAAW;AACvB,SAASC,mBAAmB,QAAQ;AAEpC,SAASC,QAAQ,QAAQ;AACzB,SAAuBC,cAAc,QAAQ;AAI7C;;;AAGA,OAAO,MAAMC,iCAAA,GAAoCA,CAC/CC,KAAA,EACAC,aAAA,KACG;EACH,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGN,QAAA,CAAkCG,KAAA;EAE/D,oBACEL,KAAA,CAAAS,aAAA,CAACF,KAAA,CAAMG,IAAI,EAAMF,SAAA,CAAUE,IAAI,eAC7BV,KAAA,CAAAS,aAAA,CAACN,cAAA;IAAeQ,wBAAA;kBACdX,KAAA,CAAAS,aAAA,CAACF,KAAA,CAAMK,OAAO,EAAMJ,SAAA,CAAUI,OAAO,eACnCZ,KAAA,CAAAS,aAAA,CAACF,KAAA,CAAMM,aAAa,EAAKL,SAAA,CAAUK,aAAa,kBAGpDb,KAAA,CAAAS,aAAA,CAACF,KAAA,CAAMO,cAAc,EAAKN,SAAA,CAAUM,cAAc,eAChDd,KAAA,CAAAS,aAAA,CAACR,mBAAA;IAAoBc,KAAA,EAAOT,aAAA,CAAcU;kBACxChB,KAAA,CAAAS,aAAA,CAACF,KAAA,CAAMU,OAAO,EAAKT,SAAA,CAAUS,OAAO;AAK9C"}
1
+ {"version":3,"names":["createElement","AvatarGroupProvider","getSlotsNext","PopoverTrigger","renderAvatarGroupPopover_unstable","state","contextValues","slots","slotProps","root","disableButtonEnhancement","tooltip","triggerButton","popoverSurface","value","avatarGroup","content"],"sources":["../../../src/components/AvatarGroupPopover/renderAvatarGroupPopover.tsx"],"sourcesContent":["/** @jsxRuntime classic */\n/** @jsx createElement */\n\nimport { createElement } from '@fluentui/react-jsx-runtime';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport { AvatarGroupContextValues } from '../AvatarGroup/AvatarGroup.types';\n\nimport { getSlotsNext } from '@fluentui/react-utilities';\nimport { PopoverProps, PopoverTrigger } from '@fluentui/react-popover';\nimport { TooltipProps } from '@fluentui/react-tooltip';\nimport type { AvatarGroupPopoverState, AvatarGroupPopoverSlots } from './AvatarGroupPopover.types';\n\n/**\n * Render the final JSX of AvatarGroupPopover\n */\nexport const renderAvatarGroupPopover_unstable = (\n state: AvatarGroupPopoverState,\n contextValues: AvatarGroupContextValues,\n) => {\n const { slots, slotProps } = getSlotsNext<AvatarGroupPopoverSlots>(state);\n\n return (\n <slots.root {...(slotProps.root as PopoverProps)}>\n <PopoverTrigger disableButtonEnhancement>\n <slots.tooltip {...(slotProps.tooltip as TooltipProps)}>\n <slots.triggerButton {...slotProps.triggerButton} />\n </slots.tooltip>\n </PopoverTrigger>\n <slots.popoverSurface {...slotProps.popoverSurface}>\n <AvatarGroupProvider value={contextValues.avatarGroup}>\n <slots.content {...slotProps.content} />\n </AvatarGroupProvider>\n </slots.popoverSurface>\n </slots.root>\n );\n};\n"],"mappings":"AAAA,2BACA,yBAEA,SAASA,aAAa,QAAQ;AAC9B,SAASC,mBAAmB,QAAQ;AAGpC,SAASC,YAAY,QAAQ;AAC7B,SAAuBC,cAAc,QAAQ;AAI7C;;;AAGA,OAAO,MAAMC,iCAAA,GAAoCA,CAC/CC,KAAA,EACAC,aAAA,KACG;EACH,MAAM;IAAEC,KAAA;IAAOC;EAAS,CAAE,GAAGN,YAAA,CAAsCG,KAAA;EAEnE,oBACEL,aArBJ,CAqBKO,KAAA,CAAME,IAAI,EAAMD,SAAA,CAAUC,IAAI,eAC7BT,aAtBN,CAsBOG,cAAA;IAAeO,wBAAA;kBACdV,aAvBR,CAuBSO,KAAA,CAAMI,OAAO,EAAMH,SAAA,CAAUG,OAAO,eACnCX,aAxBV,CAwBWO,KAAA,CAAMK,aAAa,EAAKJ,SAAA,CAAUI,aAAa,kBAGpDZ,aA3BN,CA2BOO,KAAA,CAAMM,cAAc,EAAKL,SAAA,CAAUK,cAAc,eAChDb,aA5BR,CA4BSC,mBAAA;IAAoBa,KAAA,EAAOR,aAAA,CAAcS;kBACxCf,aA7BV,CA6BWO,KAAA,CAAMS,OAAO,EAAKR,SAAA,CAAUQ,OAAO;AAK9C"}
@@ -1,4 +1,4 @@
1
- "use strict";
1
+ /** @jsxRuntime classic */ /** @jsx createElement */ "use strict";
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
@@ -6,12 +6,11 @@ Object.defineProperty(exports, "renderAvatar_unstable", {
6
6
  enumerable: true,
7
7
  get: ()=>renderAvatar_unstable
8
8
  });
9
- const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
10
- const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
9
+ const _reactJsxRuntime = require("@fluentui/react-jsx-runtime");
11
10
  const _reactUtilities = require("@fluentui/react-utilities");
12
11
  const renderAvatar_unstable = (state)=>{
13
- const { slots , slotProps } = (0, _reactUtilities.getSlots)(state);
14
- return /*#__PURE__*/ _react.createElement(slots.root, slotProps.root, slots.initials && /*#__PURE__*/ _react.createElement(slots.initials, slotProps.initials), slots.icon && /*#__PURE__*/ _react.createElement(slots.icon, slotProps.icon), slots.image && /*#__PURE__*/ _react.createElement(slots.image, slotProps.image), slots.badge && /*#__PURE__*/ _react.createElement(slots.badge, slotProps.badge), state.activeAriaLabelElement);
12
+ const { slots , slotProps } = (0, _reactUtilities.getSlotsNext)(state);
13
+ return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.root, slotProps.root, slots.initials && /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.initials, slotProps.initials), slots.icon && /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.icon, slotProps.icon), slots.image && /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.image, slotProps.image), slots.badge && /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.badge, slotProps.badge), state.activeAriaLabelElement);
15
14
  }; //# sourceMappingURL=renderAvatar.js.map
16
15
 
17
16
  //# sourceMappingURL=renderAvatar.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/Avatar/renderAvatar.js"],"sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\nexport const renderAvatar_unstable = state => {\n const {\n slots,\n slotProps\n } = getSlots(state);\n return /*#__PURE__*/React.createElement(slots.root, slotProps.root, slots.initials && /*#__PURE__*/React.createElement(slots.initials, slotProps.initials), slots.icon && /*#__PURE__*/React.createElement(slots.icon, slotProps.icon), slots.image && /*#__PURE__*/React.createElement(slots.image, slotProps.image), slots.badge && /*#__PURE__*/React.createElement(slots.badge, slotProps.badge), state.activeAriaLabelElement);\n};\n//# sourceMappingURL=renderAvatar.js.map"],"names":["renderAvatar_unstable","state","slots","slotProps","getSlots","React","createElement","root","initials","icon","image","badge","activeAriaLabelElement"],"mappings":";;;;+BAEaA;;aAAAA;;;6DAFU;gCACE;AAClB,MAAMA,wBAAwBC,CAAAA,QAAS;IAC5C,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,wBAAQ,EAACH;IACb,OAAO,WAAW,GAAEI,OAAMC,aAAa,CAACJ,MAAMK,IAAI,EAAEJ,UAAUI,IAAI,EAAEL,MAAMM,QAAQ,IAAI,WAAW,GAAEH,OAAMC,aAAa,CAACJ,MAAMM,QAAQ,EAAEL,UAAUK,QAAQ,GAAGN,MAAMO,IAAI,IAAI,WAAW,GAAEJ,OAAMC,aAAa,CAACJ,MAAMO,IAAI,EAAEN,UAAUM,IAAI,GAAGP,MAAMQ,KAAK,IAAI,WAAW,GAAEL,OAAMC,aAAa,CAACJ,MAAMQ,KAAK,EAAEP,UAAUO,KAAK,GAAGR,MAAMS,KAAK,IAAI,WAAW,GAAEN,OAAMC,aAAa,CAACJ,MAAMS,KAAK,EAAER,UAAUQ,KAAK,GAAGV,MAAMW,sBAAsB;AACpa,GACA,wCAAwC"}
1
+ {"version":3,"sources":["../../../lib/components/Avatar/renderAvatar.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';\nimport { getSlotsNext } from '@fluentui/react-utilities';\nexport const renderAvatar_unstable = state => {\n const {\n slots,\n slotProps\n } = getSlotsNext(state);\n return /*#__PURE__*/createElement(slots.root, slotProps.root, slots.initials && /*#__PURE__*/createElement(slots.initials, slotProps.initials), slots.icon && /*#__PURE__*/createElement(slots.icon, slotProps.icon), slots.image && /*#__PURE__*/createElement(slots.image, slotProps.image), slots.badge && /*#__PURE__*/createElement(slots.badge, slotProps.badge), state.activeAriaLabelElement);\n};\n//# sourceMappingURL=renderAvatar.js.map"],"names":["renderAvatar_unstable","state","slots","slotProps","getSlotsNext","createElement","root","initials","icon","image","badge","activeAriaLabelElement"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAErCA;;aAAAA;;iCAFqE;gCACrD;AACtB,MAAMA,wBAAwBC,CAAAA,QAAS;IAC5C,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,4BAAY,EAACH;IACjB,OAAO,WAAW,GAAEI,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAEH,UAAUG,IAAI,EAAEJ,MAAMK,QAAQ,IAAI,WAAW,GAAEF,IAAAA,8BAAa,EAACH,MAAMK,QAAQ,EAAEJ,UAAUI,QAAQ,GAAGL,MAAMM,IAAI,IAAI,WAAW,GAAEH,IAAAA,8BAAa,EAACH,MAAMM,IAAI,EAAEL,UAAUK,IAAI,GAAGN,MAAMO,KAAK,IAAI,WAAW,GAAEJ,IAAAA,8BAAa,EAACH,MAAMO,KAAK,EAAEN,UAAUM,KAAK,GAAGP,MAAMQ,KAAK,IAAI,WAAW,GAAEL,IAAAA,8BAAa,EAACH,MAAMQ,KAAK,EAAEP,UAAUO,KAAK,GAAGT,MAAMU,sBAAsB;AACtY,GACA,wCAAwC"}
@@ -1,4 +1,4 @@
1
- "use strict";
1
+ /** @jsxRuntime classic */ /** @jsx createElement */ "use strict";
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
@@ -6,15 +6,14 @@ Object.defineProperty(exports, "renderAvatarGroup_unstable", {
6
6
  enumerable: true,
7
7
  get: ()=>renderAvatarGroup_unstable
8
8
  });
9
- const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
10
- const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
9
+ const _reactJsxRuntime = require("@fluentui/react-jsx-runtime");
11
10
  const _reactUtilities = require("@fluentui/react-utilities");
12
11
  const _avatarGroupContext = require("../../contexts/AvatarGroupContext");
13
12
  const renderAvatarGroup_unstable = (state, contextValues)=>{
14
- const { slots , slotProps } = (0, _reactUtilities.getSlots)(state);
15
- return /*#__PURE__*/ _react.createElement(_avatarGroupContext.AvatarGroupProvider, {
13
+ const { slots , slotProps } = (0, _reactUtilities.getSlotsNext)(state);
14
+ return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(_avatarGroupContext.AvatarGroupProvider, {
16
15
  value: contextValues.avatarGroup
17
- }, /*#__PURE__*/ _react.createElement(slots.root, slotProps.root));
16
+ }, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.root, slotProps.root));
18
17
  }; //# sourceMappingURL=renderAvatarGroup.js.map
19
18
 
20
19
  //# sourceMappingURL=renderAvatarGroup.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/AvatarGroup/renderAvatarGroup.js"],"sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\n/**\n * Render the final JSX of AvatarGroup\n */\nexport const renderAvatarGroup_unstable = (state, contextValues) => {\n const {\n slots,\n slotProps\n } = getSlots(state);\n return /*#__PURE__*/React.createElement(AvatarGroupProvider, {\n value: contextValues.avatarGroup\n }, /*#__PURE__*/React.createElement(slots.root, slotProps.root));\n};\n//# sourceMappingURL=renderAvatarGroup.js.map"],"names":["renderAvatarGroup_unstable","state","contextValues","slots","slotProps","getSlots","React","createElement","AvatarGroupProvider","value","avatarGroup","root"],"mappings":";;;;+BAMaA;;aAAAA;;;6DANU;gCACE;oCACW;AAI7B,MAAMA,6BAA6B,CAACC,OAAOC,gBAAkB;IAClE,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,wBAAQ,EAACJ;IACb,OAAO,WAAW,GAAEK,OAAMC,aAAa,CAACC,uCAAmB,EAAE;QAC3DC,OAAOP,cAAcQ,WAAW;IAClC,GAAG,WAAW,GAAEJ,OAAMC,aAAa,CAACJ,MAAMQ,IAAI,EAAEP,UAAUO,IAAI;AAChE,GACA,6CAA6C"}
1
+ {"version":3,"sources":["../../../lib/components/AvatarGroup/renderAvatarGroup.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';\nimport { getSlotsNext } from '@fluentui/react-utilities';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\n/**\n * Render the final JSX of AvatarGroup\n */\nexport const renderAvatarGroup_unstable = (state, contextValues) => {\n const {\n slots,\n slotProps\n } = getSlotsNext(state);\n return /*#__PURE__*/createElement(AvatarGroupProvider, {\n value: contextValues.avatarGroup\n }, /*#__PURE__*/createElement(slots.root, slotProps.root));\n};\n//# sourceMappingURL=renderAvatarGroup.js.map"],"names":["renderAvatarGroup_unstable","state","contextValues","slots","slotProps","getSlotsNext","createElement","AvatarGroupProvider","value","avatarGroup","root"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAMrCA;;aAAAA;;iCANqE;gCACrD;oCACO;AAI7B,MAAMA,6BAA6B,CAACC,OAAOC,gBAAkB;IAClE,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,4BAAY,EAACJ;IACjB,OAAO,WAAW,GAAEK,IAAAA,8BAAa,EAACC,uCAAmB,EAAE;QACrDC,OAAON,cAAcO,WAAW;IAClC,GAAG,WAAW,GAAEH,IAAAA,8BAAa,EAACH,MAAMO,IAAI,EAAEN,UAAUM,IAAI;AAC1D,GACA,6CAA6C"}
@@ -1,4 +1,4 @@
1
- "use strict";
1
+ /** @jsxRuntime classic */ /** @jsx createElement */ "use strict";
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
@@ -6,12 +6,11 @@ Object.defineProperty(exports, "renderAvatarGroupItem_unstable", {
6
6
  enumerable: true,
7
7
  get: ()=>renderAvatarGroupItem_unstable
8
8
  });
9
- const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
10
- const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
9
+ const _reactJsxRuntime = require("@fluentui/react-jsx-runtime");
11
10
  const _reactUtilities = require("@fluentui/react-utilities");
12
11
  const renderAvatarGroupItem_unstable = (state)=>{
13
- const { slots , slotProps } = (0, _reactUtilities.getSlots)(state);
14
- return /*#__PURE__*/ _react.createElement(slots.root, slotProps.root, /*#__PURE__*/ _react.createElement(slots.avatar, slotProps.avatar), state.isOverflowItem && /*#__PURE__*/ _react.createElement(slots.overflowLabel, slotProps.overflowLabel));
12
+ const { slots , slotProps } = (0, _reactUtilities.getSlotsNext)(state);
13
+ return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.root, slotProps.root, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.avatar, slotProps.avatar), state.isOverflowItem && /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.overflowLabel, slotProps.overflowLabel));
15
14
  }; //# sourceMappingURL=renderAvatarGroupItem.js.map
16
15
 
17
16
  //# sourceMappingURL=renderAvatarGroupItem.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/AvatarGroupItem/renderAvatarGroupItem.js"],"sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of AvatarGroupItem\n */\nexport const renderAvatarGroupItem_unstable = state => {\n const {\n slots,\n slotProps\n } = getSlots(state);\n return /*#__PURE__*/React.createElement(slots.root, slotProps.root, /*#__PURE__*/React.createElement(slots.avatar, slotProps.avatar), state.isOverflowItem && /*#__PURE__*/React.createElement(slots.overflowLabel, slotProps.overflowLabel));\n};\n//# sourceMappingURL=renderAvatarGroupItem.js.map"],"names":["renderAvatarGroupItem_unstable","state","slots","slotProps","getSlots","React","createElement","root","avatar","isOverflowItem","overflowLabel"],"mappings":";;;;+BAKaA;;aAAAA;;;6DALU;gCACE;AAIlB,MAAMA,iCAAiCC,CAAAA,QAAS;IACrD,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,wBAAQ,EAACH;IACb,OAAO,WAAW,GAAEI,OAAMC,aAAa,CAACJ,MAAMK,IAAI,EAAEJ,UAAUI,IAAI,EAAE,WAAW,GAAEF,OAAMC,aAAa,CAACJ,MAAMM,MAAM,EAAEL,UAAUK,MAAM,GAAGP,MAAMQ,cAAc,IAAI,WAAW,GAAEJ,OAAMC,aAAa,CAACJ,MAAMQ,aAAa,EAAEP,UAAUO,aAAa;AAC7O,GACA,iDAAiD"}
1
+ {"version":3,"sources":["../../../lib/components/AvatarGroupItem/renderAvatarGroupItem.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';\nimport { getSlotsNext } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of AvatarGroupItem\n */\nexport const renderAvatarGroupItem_unstable = state => {\n const {\n slots,\n slotProps\n } = getSlotsNext(state);\n return /*#__PURE__*/createElement(slots.root, slotProps.root, /*#__PURE__*/createElement(slots.avatar, slotProps.avatar), state.isOverflowItem && /*#__PURE__*/createElement(slots.overflowLabel, slotProps.overflowLabel));\n};\n//# sourceMappingURL=renderAvatarGroupItem.js.map"],"names":["renderAvatarGroupItem_unstable","state","slots","slotProps","getSlotsNext","createElement","root","avatar","isOverflowItem","overflowLabel"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAKrCA;;aAAAA;;iCALqE;gCACrD;AAItB,MAAMA,iCAAiCC,CAAAA,QAAS;IACrD,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,4BAAY,EAACH;IACjB,OAAO,WAAW,GAAEI,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAEH,UAAUG,IAAI,EAAE,WAAW,GAAED,IAAAA,8BAAa,EAACH,MAAMK,MAAM,EAAEJ,UAAUI,MAAM,GAAGN,MAAMO,cAAc,IAAI,WAAW,GAAEH,IAAAA,8BAAa,EAACH,MAAMO,aAAa,EAAEN,UAAUM,aAAa;AAC3N,GACA,iDAAiD"}
@@ -1,4 +1,4 @@
1
- "use strict";
1
+ /** @jsxRuntime classic */ /** @jsx createElement */ "use strict";
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
@@ -6,18 +6,17 @@ Object.defineProperty(exports, "renderAvatarGroupPopover_unstable", {
6
6
  enumerable: true,
7
7
  get: ()=>renderAvatarGroupPopover_unstable
8
8
  });
9
- const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
10
- const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
9
+ const _reactJsxRuntime = require("@fluentui/react-jsx-runtime");
11
10
  const _avatarGroupContext = require("../../contexts/AvatarGroupContext");
12
11
  const _reactUtilities = require("@fluentui/react-utilities");
13
12
  const _reactPopover = require("@fluentui/react-popover");
14
13
  const renderAvatarGroupPopover_unstable = (state, contextValues)=>{
15
- const { slots , slotProps } = (0, _reactUtilities.getSlots)(state);
16
- return /*#__PURE__*/ _react.createElement(slots.root, slotProps.root, /*#__PURE__*/ _react.createElement(_reactPopover.PopoverTrigger, {
14
+ const { slots , slotProps } = (0, _reactUtilities.getSlotsNext)(state);
15
+ return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.root, slotProps.root, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(_reactPopover.PopoverTrigger, {
17
16
  disableButtonEnhancement: true
18
- }, /*#__PURE__*/ _react.createElement(slots.tooltip, slotProps.tooltip, /*#__PURE__*/ _react.createElement(slots.triggerButton, slotProps.triggerButton))), /*#__PURE__*/ _react.createElement(slots.popoverSurface, slotProps.popoverSurface, /*#__PURE__*/ _react.createElement(_avatarGroupContext.AvatarGroupProvider, {
17
+ }, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.tooltip, slotProps.tooltip, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.triggerButton, slotProps.triggerButton))), /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.popoverSurface, slotProps.popoverSurface, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(_avatarGroupContext.AvatarGroupProvider, {
19
18
  value: contextValues.avatarGroup
20
- }, /*#__PURE__*/ _react.createElement(slots.content, slotProps.content))));
19
+ }, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.content, slotProps.content))));
21
20
  }; //# sourceMappingURL=renderAvatarGroupPopover.js.map
22
21
 
23
22
  //# sourceMappingURL=renderAvatarGroupPopover.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/AvatarGroupPopover/renderAvatarGroupPopover.js"],"sourcesContent":["import * as React from 'react';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport { getSlots } from '@fluentui/react-utilities';\nimport { PopoverTrigger } from '@fluentui/react-popover';\n/**\n * Render the final JSX of AvatarGroupPopover\n */\nexport const renderAvatarGroupPopover_unstable = (state, contextValues) => {\n const {\n slots,\n slotProps\n } = getSlots(state);\n return /*#__PURE__*/React.createElement(slots.root, slotProps.root, /*#__PURE__*/React.createElement(PopoverTrigger, {\n disableButtonEnhancement: true\n }, /*#__PURE__*/React.createElement(slots.tooltip, slotProps.tooltip, /*#__PURE__*/React.createElement(slots.triggerButton, slotProps.triggerButton))), /*#__PURE__*/React.createElement(slots.popoverSurface, slotProps.popoverSurface, /*#__PURE__*/React.createElement(AvatarGroupProvider, {\n value: contextValues.avatarGroup\n }, /*#__PURE__*/React.createElement(slots.content, slotProps.content))));\n};\n//# sourceMappingURL=renderAvatarGroupPopover.js.map"],"names":["renderAvatarGroupPopover_unstable","state","contextValues","slots","slotProps","getSlots","React","createElement","root","PopoverTrigger","disableButtonEnhancement","tooltip","triggerButton","popoverSurface","AvatarGroupProvider","value","avatarGroup","content"],"mappings":";;;;+BAOaA;;aAAAA;;;6DAPU;oCACa;gCACX;8BACM;AAIxB,MAAMA,oCAAoC,CAACC,OAAOC,gBAAkB;IACzE,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,wBAAQ,EAACJ;IACb,OAAO,WAAW,GAAEK,OAAMC,aAAa,CAACJ,MAAMK,IAAI,EAAEJ,UAAUI,IAAI,EAAE,WAAW,GAAEF,OAAMC,aAAa,CAACE,4BAAc,EAAE;QACnHC,0BAA0B,IAAI;IAChC,GAAG,WAAW,GAAEJ,OAAMC,aAAa,CAACJ,MAAMQ,OAAO,EAAEP,UAAUO,OAAO,EAAE,WAAW,GAAEL,OAAMC,aAAa,CAACJ,MAAMS,aAAa,EAAER,UAAUQ,aAAa,KAAK,WAAW,GAAEN,OAAMC,aAAa,CAACJ,MAAMU,cAAc,EAAET,UAAUS,cAAc,EAAE,WAAW,GAAEP,OAAMC,aAAa,CAACO,uCAAmB,EAAE;QAC7RC,OAAOb,cAAcc,WAAW;IAClC,GAAG,WAAW,GAAEV,OAAMC,aAAa,CAACJ,MAAMc,OAAO,EAAEb,UAAUa,OAAO;AACtE,GACA,oDAAoD"}
1
+ {"version":3,"sources":["../../../lib/components/AvatarGroupPopover/renderAvatarGroupPopover.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport { getSlotsNext } from '@fluentui/react-utilities';\nimport { PopoverTrigger } from '@fluentui/react-popover';\n/**\n * Render the final JSX of AvatarGroupPopover\n */\nexport const renderAvatarGroupPopover_unstable = (state, contextValues) => {\n const {\n slots,\n slotProps\n } = getSlotsNext(state);\n return /*#__PURE__*/createElement(slots.root, slotProps.root, /*#__PURE__*/createElement(PopoverTrigger, {\n disableButtonEnhancement: true\n }, /*#__PURE__*/createElement(slots.tooltip, slotProps.tooltip, /*#__PURE__*/createElement(slots.triggerButton, slotProps.triggerButton))), /*#__PURE__*/createElement(slots.popoverSurface, slotProps.popoverSurface, /*#__PURE__*/createElement(AvatarGroupProvider, {\n value: contextValues.avatarGroup\n }, /*#__PURE__*/createElement(slots.content, slotProps.content))));\n};\n//# sourceMappingURL=renderAvatarGroupPopover.js.map"],"names":["renderAvatarGroupPopover_unstable","state","contextValues","slots","slotProps","getSlotsNext","createElement","root","PopoverTrigger","disableButtonEnhancement","tooltip","triggerButton","popoverSurface","AvatarGroupProvider","value","avatarGroup","content"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAOrCA;;aAAAA;;iCAPqE;oCAC9C;gCACP;8BACE;AAIxB,MAAMA,oCAAoC,CAACC,OAAOC,gBAAkB;IACzE,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,4BAAY,EAACJ;IACjB,OAAO,WAAW,GAAEK,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAEH,UAAUG,IAAI,EAAE,WAAW,GAAED,IAAAA,8BAAa,EAACE,4BAAc,EAAE;QACvGC,0BAA0B,IAAI;IAChC,GAAG,WAAW,GAAEH,IAAAA,8BAAa,EAACH,MAAMO,OAAO,EAAEN,UAAUM,OAAO,EAAE,WAAW,GAAEJ,IAAAA,8BAAa,EAACH,MAAMQ,aAAa,EAAEP,UAAUO,aAAa,KAAK,WAAW,GAAEL,IAAAA,8BAAa,EAACH,MAAMS,cAAc,EAAER,UAAUQ,cAAc,EAAE,WAAW,GAAEN,IAAAA,8BAAa,EAACO,uCAAmB,EAAE;QACrQC,OAAOZ,cAAca,WAAW;IAClC,GAAG,WAAW,GAAET,IAAAA,8BAAa,EAACH,MAAMa,OAAO,EAAEZ,UAAUY,OAAO;AAChE,GACA,oDAAoD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-avatar",
3
- "version": "9.4.9",
3
+ "version": "9.4.10",
4
4
  "description": "React components for building Microsoft web experiences.",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -36,15 +36,16 @@
36
36
  "@fluentui/scripts-tasks": "*"
37
37
  },
38
38
  "dependencies": {
39
- "@fluentui/react-badge": "^9.1.9",
39
+ "@fluentui/react-badge": "^9.1.10",
40
40
  "@fluentui/react-context-selector": "^9.1.18",
41
41
  "@fluentui/react-icons": "^2.0.196",
42
- "@fluentui/react-popover": "^9.5.9",
42
+ "@fluentui/react-popover": "^9.5.10",
43
43
  "@fluentui/react-shared-contexts": "^9.3.3",
44
44
  "@fluentui/react-tabster": "^9.6.5",
45
45
  "@fluentui/react-theme": "^9.1.7",
46
- "@fluentui/react-tooltip": "^9.2.9",
46
+ "@fluentui/react-tooltip": "^9.2.10",
47
47
  "@fluentui/react-utilities": "^9.8.0",
48
+ "@fluentui/react-jsx-runtime": "9.0.0-alpha.2",
48
49
  "@griffel/react": "^1.5.2",
49
50
  "@swc/helpers": "^0.4.14"
50
51
  },