@fluentui/react-avatar 9.5.16 → 9.5.18
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 +127 -1
- package/CHANGELOG.md +36 -2
- package/lib/components/Avatar/renderAvatar.js +3 -3
- package/lib/components/Avatar/renderAvatar.js.map +1 -1
- package/lib/components/Avatar/useAvatar.js +27 -29
- package/lib/components/Avatar/useAvatar.js.map +1 -1
- package/lib/components/Avatar/useAvatarStyles.styles.js +6 -3
- package/lib/components/Avatar/useAvatarStyles.styles.js.map +1 -1
- package/lib/components/AvatarGroup/renderAvatarGroup.js +3 -3
- package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
- package/lib/components/AvatarGroup/useAvatarGroup.js +5 -3
- package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -1
- package/lib/components/AvatarGroup/useAvatarGroupStyles.styles.js +1 -1
- package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js +3 -3
- package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -1
- package/lib/components/AvatarGroupItem/useAvatarGroupItem.js +10 -10
- package/lib/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -1
- package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.styles.js +2 -2
- package/lib/components/AvatarGroupPopover/renderAvatarGroupPopover.js +5 -5
- package/lib/components/AvatarGroupPopover/renderAvatarGroupPopover.js.map +1 -1
- package/lib/components/AvatarGroupPopover/useAvatarGroupPopover.js +17 -15
- package/lib/components/AvatarGroupPopover/useAvatarGroupPopover.js.map +1 -1
- package/lib/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.js +2 -4
- package/lib/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.js.map +1 -1
- package/lib-commonjs/components/Avatar/renderAvatar.js +2 -2
- package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
- package/lib-commonjs/components/Avatar/useAvatar.js +26 -28
- package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
- package/lib-commonjs/components/Avatar/useAvatarStyles.styles.js +18 -14
- package/lib-commonjs/components/Avatar/useAvatarStyles.styles.js.map +1 -1
- package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +2 -2
- package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
- package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +4 -2
- package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -1
- package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.styles.js +2 -2
- package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.styles.js.map +1 -1
- package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js +2 -2
- package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -1
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js +9 -9
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -1
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.styles.js +15 -15
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.styles.js.map +1 -1
- package/lib-commonjs/components/AvatarGroupPopover/renderAvatarGroupPopover.js +4 -4
- package/lib-commonjs/components/AvatarGroupPopover/renderAvatarGroupPopover.js.map +1 -1
- package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopover.js +16 -14
- package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopover.js.map +1 -1
- package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.js +6 -12
- package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.js.map +1 -1
- package/package.json +11 -11
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["useAvatarGroupItem.js"],"sourcesContent":["import * as React from 'react';\nimport { Avatar } from '../Avatar/Avatar';\nimport { AvatarGroupContext, useAvatarGroupContext_unstable } from '../../contexts/AvatarGroupContext';\nimport { defaultAvatarGroupSize } from '../AvatarGroup/useAvatarGroup';\nimport {
|
|
1
|
+
{"version":3,"sources":["useAvatarGroupItem.js"],"sourcesContent":["import * as React from 'react';\nimport { Avatar } from '../Avatar/Avatar';\nimport { AvatarGroupContext, useAvatarGroupContext_unstable } from '../../contexts/AvatarGroupContext';\nimport { defaultAvatarGroupSize } from '../AvatarGroup/useAvatarGroup';\nimport { slot } from '@fluentui/react-utilities';\nimport { useHasParentContext } from '@fluentui/react-context-selector';\n/**\n * Create the state required to render AvatarGroupItem.\n *\n * The returned state can be modified with hooks such as useAvatarGroupItemStyles_unstable,\n * before being passed to renderAvatarGroupItem_unstable.\n *\n * @param props - props from this instance of AvatarGroupItem\n * @param ref - reference to root HTMLElement of AvatarGroupItem\n */ export const useAvatarGroupItem_unstable = (props, ref)=>{\n const groupIsOverflow = useAvatarGroupContext_unstable((ctx)=>ctx.isOverflow);\n const groupSize = useAvatarGroupContext_unstable((ctx)=>ctx.size);\n const layout = useAvatarGroupContext_unstable((ctx)=>ctx.layout);\n // Since the primary slot is not an intrinsic element, getPartitionedNativeProps cannot be used here.\n const { style , className , ...avatarSlotProps } = props;\n const size = groupSize !== null && groupSize !== void 0 ? groupSize : defaultAvatarGroupSize;\n const hasAvatarGroupContext = useHasParentContext(AvatarGroupContext);\n if (process.env.NODE_ENV !== 'production' && !hasAvatarGroupContext) {\n // eslint-disable-next-line no-console\n console.warn('AvatarGroupItem must only be used inside an AvatarGroup component.');\n }\n return {\n isOverflowItem: groupIsOverflow,\n layout,\n size,\n components: {\n root: groupIsOverflow ? 'li' : 'div',\n avatar: Avatar,\n overflowLabel: 'span'\n },\n root: slot.always(props.root, {\n defaultProps: {\n style,\n className\n },\n elementType: groupIsOverflow ? 'li' : 'div'\n }),\n avatar: slot.always(props.avatar, {\n defaultProps: {\n ref,\n size,\n color: 'colorful',\n ...avatarSlotProps\n },\n elementType: Avatar\n }),\n overflowLabel: slot.always(props.overflowLabel, {\n defaultProps: {\n // Avatar already has its aria-label set to the name, this will prevent the name to be read twice.\n 'aria-hidden': true,\n children: props.name\n },\n elementType: 'span'\n })\n };\n};\n"],"names":["useAvatarGroupItem_unstable","props","ref","groupIsOverflow","useAvatarGroupContext_unstable","ctx","isOverflow","groupSize","size","layout","style","className","avatarSlotProps","defaultAvatarGroupSize","hasAvatarGroupContext","useHasParentContext","AvatarGroupContext","process","env","NODE_ENV","console","warn","isOverflowItem","components","root","avatar","Avatar","overflowLabel","slot","always","defaultProps","elementType","color","children","name"],"mappings":";;;;+BAciBA;;aAAAA;;;6DAdM;wBACA;oCAC4C;gCAC5B;gCAClB;sCACe;AASzB,MAAMA,8BAA8B,CAACC,OAAOC,MAAM;IACzD,MAAMC,kBAAkBC,IAAAA,kDAA8B,EAAC,CAACC,MAAMA,IAAIC,UAAU;IAC5E,MAAMC,YAAYH,IAAAA,kDAA8B,EAAC,CAACC,MAAMA,IAAIG,IAAI;IAChE,MAAMC,SAASL,IAAAA,kDAA8B,EAAC,CAACC,MAAMA,IAAII,MAAM;IAC/D,qGAAqG;IACrG,MAAM,EAAEC,MAAK,EAAGC,UAAS,EAAG,GAAGC,iBAAiB,GAAGX;IACnD,MAAMO,OAAOD,cAAc,IAAI,IAAIA,cAAc,KAAK,IAAIA,YAAYM,sCAAsB;IAC5F,MAAMC,wBAAwBC,IAAAA,yCAAmB,EAACC,sCAAkB;IACpE,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,gBAAgB,CAACL,uBAAuB;QACjE,sCAAsC;QACtCM,QAAQC,IAAI,CAAC;IACjB,CAAC;IACD,OAAO;QACHC,gBAAgBnB;QAChBM;QACAD;QACAe,YAAY;YACRC,MAAMrB,kBAAkB,OAAO,KAAK;YACpCsB,QAAQC,cAAM;YACdC,eAAe;QACnB;QACAH,MAAMI,oBAAI,CAACC,MAAM,CAAC5B,MAAMuB,IAAI,EAAE;YAC1BM,cAAc;gBACVpB;gBACAC;YACJ;YACAoB,aAAa5B,kBAAkB,OAAO,KAAK;QAC/C;QACAsB,QAAQG,oBAAI,CAACC,MAAM,CAAC5B,MAAMwB,MAAM,EAAE;YAC9BK,cAAc;gBACV5B;gBACAM;gBACAwB,OAAO;gBACP,GAAGpB,eAAe;YACtB;YACAmB,aAAaL,cAAM;QACvB;QACAC,eAAeC,oBAAI,CAACC,MAAM,CAAC5B,MAAM0B,aAAa,EAAE;YAC5CG,cAAc;gBACV,kGAAkG;gBAClG,eAAe,IAAI;gBACnBG,UAAUhC,MAAMiC,IAAI;YACxB;YACAH,aAAa;QACjB;IACJ;AACJ"}
|
|
@@ -63,9 +63,9 @@ const avatarGroupItemDividerWidthVar = '--fuiAvatarGroupItem__divider--width';
|
|
|
63
63
|
}
|
|
64
64
|
}, {
|
|
65
65
|
d: [
|
|
66
|
-
".f122n59{
|
|
67
|
-
".ftuwxu6{display
|
|
68
|
-
".fi64zpg{
|
|
66
|
+
".f122n59{align-items:center;}",
|
|
67
|
+
".ftuwxu6{display:inline-flex;}",
|
|
68
|
+
".fi64zpg{flex-shrink:0;}",
|
|
69
69
|
".f10pi13n{position:relative;}",
|
|
70
70
|
".f1ywm7hm{padding-top:var(--spacingVerticalXS);}",
|
|
71
71
|
".f7x41pl{padding-right:var(--spacingHorizontalXS);}",
|
|
@@ -298,33 +298,33 @@ const avatarGroupItemDividerWidthVar = '--fuiAvatarGroupItem__divider--width';
|
|
|
298
298
|
}, {
|
|
299
299
|
d: [
|
|
300
300
|
".f1euv43f{position:absolute;}",
|
|
301
|
-
".f16m7w7k:nth-of-type(1):nth-last-of-type(2){
|
|
301
|
+
".f16m7w7k:nth-of-type(1):nth-last-of-type(2){clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}",
|
|
302
302
|
".f1o4hhgz:nth-of-type(1):nth-last-of-type(2){left:-25%;}",
|
|
303
303
|
".fb4gjrz:nth-of-type(1):nth-last-of-type(2){right:-25%;}",
|
|
304
|
-
".f1pgb5nx:nth-of-type(2):nth-last-of-type(1){
|
|
304
|
+
".f1pgb5nx:nth-of-type(2):nth-last-of-type(1){clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}",
|
|
305
305
|
".fugirid:nth-of-type(2):nth-last-of-type(1){left:25%;}",
|
|
306
306
|
".f4sk99m:nth-of-type(2):nth-last-of-type(1){right:25%;}",
|
|
307
|
-
".fjreaf3:nth-of-type(1):nth-last-of-type(3){
|
|
307
|
+
".fjreaf3:nth-of-type(1):nth-last-of-type(3){clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}",
|
|
308
308
|
".f1k4vw81:nth-of-type(1):nth-last-of-type(3){left:-25%;}",
|
|
309
309
|
".f1w1xcy7:nth-of-type(1):nth-last-of-type(3){right:-25%;}",
|
|
310
|
-
".f1ef8vxk:nth-of-type(2):nth-last-of-type(2){
|
|
310
|
+
".f1ef8vxk:nth-of-type(2):nth-last-of-type(2){clip-path:inset(0 0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width));}",
|
|
311
311
|
".f1x2qbfv:nth-of-type(2):nth-last-of-type(2){left:50%;}",
|
|
312
312
|
".f1xwf4nz:nth-of-type(2):nth-last-of-type(2){right:50%;}",
|
|
313
|
-
".ff6xuso:nth-of-type(2):nth-last-of-type(2){
|
|
313
|
+
".ff6xuso:nth-of-type(2):nth-last-of-type(2){transform:scale(0.5);}",
|
|
314
314
|
".fzpvk6c:nth-of-type(2):nth-last-of-type(2){transform-origin:0 0;}",
|
|
315
|
-
".f4onu7f:nth-of-type(3):nth-last-of-type(1){
|
|
315
|
+
".f4onu7f:nth-of-type(3):nth-last-of-type(1){clip-path:inset(var(--fuiAvatarGroupItem__divider--width) 0 0 var(--fuiAvatarGroupItem__divider--width));}",
|
|
316
316
|
".f1ydfez1:nth-of-type(3):nth-last-of-type(1){left:50%;}",
|
|
317
317
|
".fjensob:nth-of-type(3):nth-last-of-type(1){right:50%;}",
|
|
318
318
|
".f1yv732j:nth-of-type(3):nth-last-of-type(1){top:50%;}",
|
|
319
|
-
".fchq2fj:nth-of-type(3):nth-last-of-type(1){
|
|
319
|
+
".fchq2fj:nth-of-type(3):nth-last-of-type(1){transform:scale(0.5);}",
|
|
320
320
|
".ff5binh:nth-of-type(3):nth-last-of-type(1){transform-origin:0 0;}",
|
|
321
|
-
".f5vdl61:nth-of-type(1):nth-last-of-type(2){
|
|
322
|
-
".f1bnra92:nth-of-type(2):nth-last-of-type(1){
|
|
323
|
-
".f4ibo7t:nth-of-type(1):nth-last-of-type(3){
|
|
324
|
-
".f17heuis:nth-of-type(2):nth-last-of-type(2){
|
|
321
|
+
".f5vdl61:nth-of-type(1):nth-last-of-type(2){clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}",
|
|
322
|
+
".f1bnra92:nth-of-type(2):nth-last-of-type(1){clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}",
|
|
323
|
+
".f4ibo7t:nth-of-type(1):nth-last-of-type(3){clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}",
|
|
324
|
+
".f17heuis:nth-of-type(2):nth-last-of-type(2){clip-path:inset(0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0);}",
|
|
325
325
|
".f64f2ud:nth-of-type(2):nth-last-of-type(2){left:0;}",
|
|
326
326
|
".f1yjglu3:nth-of-type(2):nth-last-of-type(2){right:0;}",
|
|
327
|
-
".fa6l61x:nth-of-type(3):nth-last-of-type(1){
|
|
327
|
+
".fa6l61x:nth-of-type(3):nth-last-of-type(1){clip-path:inset(var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0 0);}",
|
|
328
328
|
".f1w2396a:nth-of-type(3):nth-last-of-type(1){left:0;}",
|
|
329
329
|
".f14ab3yo:nth-of-type(3):nth-last-of-type(1){right:0;}",
|
|
330
330
|
".fnyfzln{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThick);}",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["useAvatarGroupItemStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport { useSizeStyles } from '../../Avatar';\nimport { useFluent_unstable as useFluent } from '@fluentui/react-shared-contexts';\nexport const avatarGroupItemClassNames = {\n root: 'fui-AvatarGroupItem',\n avatar: 'fui-AvatarGroupItem__avatar',\n overflowLabel: 'fui-AvatarGroupItem__overflowLabel'\n};\nconst avatarGroupItemDividerWidthVar = '--fuiAvatarGroupItem__divider--width';\n/**\n * Styles for the root slot\n */\nconst useRootStyles = /*#__PURE__*/__styles({\n base: {\n Bt984gj: \"f122n59\",\n mc9l5x: \"ftuwxu6\",\n Bnnss6s: \"fi64zpg\",\n qhf8xq: \"f10pi13n\"\n },\n overflowItem: {\n z8tnut: \"f1ywm7hm\",\n z189sj: [\"f7x41pl\", \"fruq291\"],\n Byoj8tv: \"f14wxoun\",\n uwmqm3: [\"fruq291\", \"f7x41pl\"]\n },\n nonOverflowItem: {\n Bbmb7ep: [\"f8fbkgy\", \"f1nfllo7\"],\n Beyfa6y: [\"f1nfllo7\", \"f8fbkgy\"],\n B7oj6ja: [\"f1djnp8u\", \"f1s8kh49\"],\n Btl43ni: [\"f1s8kh49\", \"f1djnp8u\"]\n }\n}, {\n d: [\".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}\", \".ftuwxu6{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}\", \".fi64zpg{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;}\", \".f10pi13n{position:relative;}\", \".f1ywm7hm{padding-top:var(--spacingVerticalXS);}\", \".f7x41pl{padding-right:var(--spacingHorizontalXS);}\", \".fruq291{padding-left:var(--spacingHorizontalXS);}\", \".f14wxoun{padding-bottom:var(--spacingVerticalXS);}\", \".f8fbkgy{border-bottom-right-radius:var(--borderRadiusCircular);}\", \".f1nfllo7{border-bottom-left-radius:var(--borderRadiusCircular);}\", \".f1djnp8u{border-top-right-radius:var(--borderRadiusCircular);}\", \".f1s8kh49{border-top-left-radius:var(--borderRadiusCircular);}\"]\n});\n/**\n * Styles for the avatar slot\n */\nconst useAvatarStyles = /*#__PURE__*/__styles({\n nonOverflowItem: {\n qhf8xq: \"f1euv43f\"\n },\n pie: {\n Bbmb7ep: [\"f1krrbdw\", \"f1deotkl\"],\n Beyfa6y: [\"f1deotkl\", \"f1krrbdw\"],\n B7oj6ja: [\"f10ostut\", \"f1ozlkrg\"],\n Btl43ni: [\"f1ozlkrg\", \"f10ostut\"]\n }\n}, {\n d: [\".f1euv43f{position:absolute;}\", \".f1krrbdw{border-bottom-right-radius:0;}\", \".f1deotkl{border-bottom-left-radius:0;}\", \".f10ostut{border-top-right-radius:0;}\", \".f1ozlkrg{border-top-left-radius:0;}\"]\n});\n/**\n * Styles for the label slot\n */\nconst useOverflowLabelStyles = /*#__PURE__*/__styles({\n base: {\n Frg6f3: [\"foyynoy\", \"f1vcna3q\"],\n sj55zd: \"f19n0e5\",\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"figsok6\",\n Bg96gwp: \"f1i3iumi\"\n }\n}, {\n d: [\".foyynoy{margin-left:var(--spacingHorizontalS);}\", \".f1vcna3q{margin-right:var(--spacingHorizontalS);}\", \".f19n0e5{color:var(--colorNeutralForeground1);}\", \".fk6fouc{font-family:var(--fontFamilyBase);}\", \".fkhj508{font-size:var(--fontSizeBase300);}\", \".figsok6{font-weight:var(--fontWeightRegular);}\", \".f1i3iumi{line-height:var(--lineHeightBase300);}\"]\n});\n/**\n * Styles for the stack layout\n */\nconst useStackStyles = /*#__PURE__*/__styles({\n thick: {\n E5pizo: \"foiuzp5\"\n },\n thicker: {\n E5pizo: \"f1x6o7w7\"\n },\n thickest: {\n E5pizo: \"f2aml1u\"\n },\n xxs: {\n jhia2w: [\"f1cjco14\", \"f13dxjc9\"]\n },\n xs: {\n jhia2w: [\"f15p6bln\", \"f1bab3ru\"]\n },\n s: {\n jhia2w: [\"f1v53ncc\", \"f17pu8r8\"]\n },\n l: {\n jhia2w: [\"flv48ch\", \"fnh1ydj\"]\n }\n}, {\n d: [\".foiuzp5{box-shadow:0 0 0 var(--strokeWidthThick) var(--colorNeutralBackground2);}\", \".f1x6o7w7{box-shadow:0 0 0 var(--strokeWidthThicker) var(--colorNeutralBackground2);}\", \".f2aml1u{box-shadow:0 0 0 var(--strokeWidthThickest) var(--colorNeutralBackground2);}\", \".f1cjco14:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalXXS));}\", \".f13dxjc9:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalXXS));}\", \".f15p6bln:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalXS));}\", \".f1bab3ru:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalXS));}\", \".f1v53ncc:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalS));}\", \".f17pu8r8:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalS));}\", \".flv48ch:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalL));}\", \".fnh1ydj:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalL));}\"]\n});\n/**\n * Styles for the spread layout\n */\nconst useSpreadStyles = /*#__PURE__*/__styles({\n s: {\n jhia2w: [\"f7lhxv7\", \"f6ou2b0\"]\n },\n mNudge: {\n jhia2w: [\"f1h0okno\", \"fnnqava\"]\n },\n m: {\n jhia2w: [\"f1wkt588\", \"f1maio5g\"]\n },\n l: {\n jhia2w: [\"f1l333zn\", \"f1r41m4c\"]\n },\n xl: {\n jhia2w: [\"fahr13a\", \"f2n7rbo\"]\n }\n}, {\n d: [\".f7lhxv7:not(:first-child){margin-left:var(--spacingHorizontalS);}\", \".f6ou2b0:not(:first-child){margin-right:var(--spacingHorizontalS);}\", \".f1h0okno:not(:first-child){margin-left:var(--spacingHorizontalMNudge);}\", \".fnnqava:not(:first-child){margin-right:var(--spacingHorizontalMNudge);}\", \".f1wkt588:not(:first-child){margin-left:var(--spacingHorizontalM);}\", \".f1maio5g:not(:first-child){margin-right:var(--spacingHorizontalM);}\", \".f1l333zn:not(:first-child){margin-left:var(--spacingHorizontalL);}\", \".f1r41m4c:not(:first-child){margin-right:var(--spacingHorizontalL);}\", \".fahr13a:not(:first-child){margin-left:var(--spacingHorizontalXL);}\", \".f2n7rbo:not(:first-child){margin-right:var(--spacingHorizontalXL);}\"]\n});\n/**\n * Styles for the pie layout\n */\nconst usePieStyles = /*#__PURE__*/__styles({\n base: {\n qhf8xq: \"f1euv43f\"\n },\n slices: {\n B3gf25r: \"f16m7w7k\",\n Be2twx7: [\"f1o4hhgz\", \"fb4gjrz\"],\n Bvaow4n: \"f1pgb5nx\",\n Gpecfs: [\"fugirid\", \"f4sk99m\"],\n bhabj1: \"fjreaf3\",\n B7rc6i7: [\"f1k4vw81\", \"f1w1xcy7\"],\n Bwrfys5: \"f1ef8vxk\",\n Bwuzm9m: [\"f1x2qbfv\", \"f1xwf4nz\"],\n fflka: \"ff6xuso\",\n do7bja: \"fzpvk6c\",\n Be8zqhl: \"f4onu7f\",\n Bij0kh0: [\"f1ydfez1\", \"fjensob\"],\n Bwexnyt: \"f1yv732j\",\n Bhe5x6o: \"fchq2fj\",\n B3kv7bh: \"ff5binh\"\n },\n rtlSlices: {\n B3gf25r: \"f5vdl61\",\n Bvaow4n: \"f1bnra92\",\n bhabj1: \"f4ibo7t\",\n Bwrfys5: \"f17heuis\",\n Bwuzm9m: [\"f64f2ud\", \"f1yjglu3\"],\n Be8zqhl: \"fa6l61x\",\n Bij0kh0: [\"f1w2396a\", \"f14ab3yo\"]\n },\n thick: {\n uiicq7: \"fnyfzln\"\n },\n thicker: {\n uiicq7: \"f1xdzzot\"\n },\n thickest: {\n uiicq7: \"f1auhru5\"\n }\n}, {\n d: [\".f1euv43f{position:absolute;}\", \".f16m7w7k:nth-of-type(1):nth-last-of-type(2){-webkit-clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}\", \".f1o4hhgz:nth-of-type(1):nth-last-of-type(2){left:-25%;}\", \".fb4gjrz:nth-of-type(1):nth-last-of-type(2){right:-25%;}\", \".f1pgb5nx:nth-of-type(2):nth-last-of-type(1){-webkit-clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}\", \".fugirid:nth-of-type(2):nth-last-of-type(1){left:25%;}\", \".f4sk99m:nth-of-type(2):nth-last-of-type(1){right:25%;}\", \".fjreaf3:nth-of-type(1):nth-last-of-type(3){-webkit-clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}\", \".f1k4vw81:nth-of-type(1):nth-last-of-type(3){left:-25%;}\", \".f1w1xcy7:nth-of-type(1):nth-last-of-type(3){right:-25%;}\", \".f1ef8vxk:nth-of-type(2):nth-last-of-type(2){-webkit-clip-path:inset(0 0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width));clip-path:inset(0 0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width));}\", \".f1x2qbfv:nth-of-type(2):nth-last-of-type(2){left:50%;}\", \".f1xwf4nz:nth-of-type(2):nth-last-of-type(2){right:50%;}\", \".ff6xuso:nth-of-type(2):nth-last-of-type(2){-webkit-transform:scale(0.5);-moz-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);}\", \".fzpvk6c:nth-of-type(2):nth-last-of-type(2){transform-origin:0 0;}\", \".f4onu7f:nth-of-type(3):nth-last-of-type(1){-webkit-clip-path:inset(var(--fuiAvatarGroupItem__divider--width) 0 0 var(--fuiAvatarGroupItem__divider--width));clip-path:inset(var(--fuiAvatarGroupItem__divider--width) 0 0 var(--fuiAvatarGroupItem__divider--width));}\", \".f1ydfez1:nth-of-type(3):nth-last-of-type(1){left:50%;}\", \".fjensob:nth-of-type(3):nth-last-of-type(1){right:50%;}\", \".f1yv732j:nth-of-type(3):nth-last-of-type(1){top:50%;}\", \".fchq2fj:nth-of-type(3):nth-last-of-type(1){-webkit-transform:scale(0.5);-moz-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);}\", \".ff5binh:nth-of-type(3):nth-last-of-type(1){transform-origin:0 0;}\", \".f5vdl61:nth-of-type(1):nth-last-of-type(2){-webkit-clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}\", \".f1bnra92:nth-of-type(2):nth-last-of-type(1){-webkit-clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}\", \".f4ibo7t:nth-of-type(1):nth-last-of-type(3){-webkit-clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}\", \".f17heuis:nth-of-type(2):nth-last-of-type(2){-webkit-clip-path:inset(0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0);clip-path:inset(0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0);}\", \".f64f2ud:nth-of-type(2):nth-last-of-type(2){left:0;}\", \".f1yjglu3:nth-of-type(2):nth-last-of-type(2){right:0;}\", \".fa6l61x:nth-of-type(3):nth-last-of-type(1){-webkit-clip-path:inset(var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0 0);clip-path:inset(var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0 0);}\", \".f1w2396a:nth-of-type(3):nth-last-of-type(1){left:0;}\", \".f14ab3yo:nth-of-type(3):nth-last-of-type(1){right:0;}\", \".fnyfzln{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThick);}\", \".f1xdzzot{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThicker);}\", \".f1auhru5{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThickest);}\"]\n});\n/**\n * Apply styling to the AvatarGroupItem slots based on the state\n */\nexport const useAvatarGroupItemStyles_unstable = state => {\n const {\n isOverflowItem,\n layout,\n size\n } = state;\n const {\n dir\n } = useFluent();\n const avatarStyles = useAvatarStyles();\n const overflowLabelStyles = useOverflowLabelStyles();\n const pieStyles = usePieStyles();\n const rootStyles = useRootStyles();\n const sizeStyles = useSizeStyles();\n const groupChildClassName = useGroupChildClassName(layout, size);\n const rootClasses = [rootStyles.base];\n if (!isOverflowItem) {\n rootClasses.push(rootStyles.nonOverflowItem);\n rootClasses.push(groupChildClassName);\n rootClasses.push(sizeStyles[size]);\n if (layout === 'pie') {\n rootClasses.push(pieStyles.base);\n if (size < 56) {\n rootClasses.push(pieStyles.thick);\n } else if (size < 72) {\n rootClasses.push(pieStyles.thicker);\n } else {\n rootClasses.push(pieStyles.thickest);\n }\n rootClasses.push(pieStyles.slices);\n if (dir === 'rtl') {\n rootClasses.push(pieStyles.rtlSlices);\n }\n }\n } else {\n rootClasses.push(rootStyles.overflowItem);\n }\n state.root.className = mergeClasses(avatarGroupItemClassNames.root, ...rootClasses, state.root.className);\n state.avatar.className = mergeClasses(avatarGroupItemClassNames.avatar, !isOverflowItem && avatarStyles.nonOverflowItem, layout === 'pie' && avatarStyles.pie, state.avatar.className);\n if (state.overflowLabel) {\n state.overflowLabel.className = mergeClasses(avatarGroupItemClassNames.overflowLabel, overflowLabelStyles.base, state.overflowLabel.className);\n }\n return state;\n};\n/**\n * Hook for getting the className for the children of AvatarGroup. This hook will provide the spacing and outlines\n * needed for each layout.\n */\nexport const useGroupChildClassName = (layout, size) => {\n const stackStyles = useStackStyles();\n const spreadStyles = useSpreadStyles();\n const layoutClasses = [];\n if (size) {\n if (layout === 'stack') {\n if (size < 56) {\n layoutClasses.push(stackStyles.thick);\n } else if (size < 72) {\n layoutClasses.push(stackStyles.thicker);\n } else {\n layoutClasses.push(stackStyles.thickest);\n }\n if (size < 24) {\n layoutClasses.push(stackStyles.xxs);\n } else if (size < 48) {\n layoutClasses.push(stackStyles.xs);\n } else if (size < 96) {\n layoutClasses.push(stackStyles.s);\n } else {\n layoutClasses.push(stackStyles.l);\n }\n } else if (layout === 'spread') {\n if (size < 20) {\n layoutClasses.push(spreadStyles.s);\n } else if (size < 32) {\n layoutClasses.push(spreadStyles.mNudge);\n } else if (size < 64) {\n layoutClasses.push(spreadStyles.l);\n } else {\n layoutClasses.push(spreadStyles.xl);\n }\n }\n }\n return mergeClasses(...layoutClasses);\n};\n//# sourceMappingURL=useAvatarGroupItemStyles.styles.js.map"],"names":["avatarGroupItemClassNames","useAvatarGroupItemStyles_unstable","useGroupChildClassName","root","avatar","overflowLabel","avatarGroupItemDividerWidthVar","useRootStyles","__styles","base","Bt984gj","mc9l5x","Bnnss6s","qhf8xq","overflowItem","z8tnut","z189sj","Byoj8tv","uwmqm3","nonOverflowItem","Bbmb7ep","Beyfa6y","B7oj6ja","Btl43ni","d","useAvatarStyles","pie","useOverflowLabelStyles","Frg6f3","sj55zd","Bahqtrf","Be2twd7","Bhrd7zp","Bg96gwp","useStackStyles","thick","E5pizo","thicker","thickest","xxs","jhia2w","xs","s","l","useSpreadStyles","mNudge","m","xl","usePieStyles","slices","B3gf25r","Be2twx7","Bvaow4n","Gpecfs","bhabj1","B7rc6i7","Bwrfys5","Bwuzm9m","fflka","do7bja","Be8zqhl","Bij0kh0","Bwexnyt","Bhe5x6o","B3kv7bh","rtlSlices","uiicq7","state","isOverflowItem","layout","size","dir","useFluent","avatarStyles","overflowLabelStyles","pieStyles","rootStyles","sizeStyles","useSizeStyles","groupChildClassName","rootClasses","push","className","mergeClasses","stackStyles","spreadStyles","layoutClasses"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["useAvatarGroupItemStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport { useSizeStyles } from '../../Avatar';\nimport { useFluent_unstable as useFluent } from '@fluentui/react-shared-contexts';\nexport const avatarGroupItemClassNames = {\n root: 'fui-AvatarGroupItem',\n avatar: 'fui-AvatarGroupItem__avatar',\n overflowLabel: 'fui-AvatarGroupItem__overflowLabel'\n};\nconst avatarGroupItemDividerWidthVar = '--fuiAvatarGroupItem__divider--width';\n/**\n * Styles for the root slot\n */\nconst useRootStyles = /*#__PURE__*/__styles({\n base: {\n Bt984gj: \"f122n59\",\n mc9l5x: \"ftuwxu6\",\n Bnnss6s: \"fi64zpg\",\n qhf8xq: \"f10pi13n\"\n },\n overflowItem: {\n z8tnut: \"f1ywm7hm\",\n z189sj: [\"f7x41pl\", \"fruq291\"],\n Byoj8tv: \"f14wxoun\",\n uwmqm3: [\"fruq291\", \"f7x41pl\"]\n },\n nonOverflowItem: {\n Bbmb7ep: [\"f8fbkgy\", \"f1nfllo7\"],\n Beyfa6y: [\"f1nfllo7\", \"f8fbkgy\"],\n B7oj6ja: [\"f1djnp8u\", \"f1s8kh49\"],\n Btl43ni: [\"f1s8kh49\", \"f1djnp8u\"]\n }\n}, {\n d: [\".f122n59{align-items:center;}\", \".ftuwxu6{display:inline-flex;}\", \".fi64zpg{flex-shrink:0;}\", \".f10pi13n{position:relative;}\", \".f1ywm7hm{padding-top:var(--spacingVerticalXS);}\", \".f7x41pl{padding-right:var(--spacingHorizontalXS);}\", \".fruq291{padding-left:var(--spacingHorizontalXS);}\", \".f14wxoun{padding-bottom:var(--spacingVerticalXS);}\", \".f8fbkgy{border-bottom-right-radius:var(--borderRadiusCircular);}\", \".f1nfllo7{border-bottom-left-radius:var(--borderRadiusCircular);}\", \".f1djnp8u{border-top-right-radius:var(--borderRadiusCircular);}\", \".f1s8kh49{border-top-left-radius:var(--borderRadiusCircular);}\"]\n});\n/**\n * Styles for the avatar slot\n */\nconst useAvatarStyles = /*#__PURE__*/__styles({\n nonOverflowItem: {\n qhf8xq: \"f1euv43f\"\n },\n pie: {\n Bbmb7ep: [\"f1krrbdw\", \"f1deotkl\"],\n Beyfa6y: [\"f1deotkl\", \"f1krrbdw\"],\n B7oj6ja: [\"f10ostut\", \"f1ozlkrg\"],\n Btl43ni: [\"f1ozlkrg\", \"f10ostut\"]\n }\n}, {\n d: [\".f1euv43f{position:absolute;}\", \".f1krrbdw{border-bottom-right-radius:0;}\", \".f1deotkl{border-bottom-left-radius:0;}\", \".f10ostut{border-top-right-radius:0;}\", \".f1ozlkrg{border-top-left-radius:0;}\"]\n});\n/**\n * Styles for the label slot\n */\nconst useOverflowLabelStyles = /*#__PURE__*/__styles({\n base: {\n Frg6f3: [\"foyynoy\", \"f1vcna3q\"],\n sj55zd: \"f19n0e5\",\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"figsok6\",\n Bg96gwp: \"f1i3iumi\"\n }\n}, {\n d: [\".foyynoy{margin-left:var(--spacingHorizontalS);}\", \".f1vcna3q{margin-right:var(--spacingHorizontalS);}\", \".f19n0e5{color:var(--colorNeutralForeground1);}\", \".fk6fouc{font-family:var(--fontFamilyBase);}\", \".fkhj508{font-size:var(--fontSizeBase300);}\", \".figsok6{font-weight:var(--fontWeightRegular);}\", \".f1i3iumi{line-height:var(--lineHeightBase300);}\"]\n});\n/**\n * Styles for the stack layout\n */\nconst useStackStyles = /*#__PURE__*/__styles({\n thick: {\n E5pizo: \"foiuzp5\"\n },\n thicker: {\n E5pizo: \"f1x6o7w7\"\n },\n thickest: {\n E5pizo: \"f2aml1u\"\n },\n xxs: {\n jhia2w: [\"f1cjco14\", \"f13dxjc9\"]\n },\n xs: {\n jhia2w: [\"f15p6bln\", \"f1bab3ru\"]\n },\n s: {\n jhia2w: [\"f1v53ncc\", \"f17pu8r8\"]\n },\n l: {\n jhia2w: [\"flv48ch\", \"fnh1ydj\"]\n }\n}, {\n d: [\".foiuzp5{box-shadow:0 0 0 var(--strokeWidthThick) var(--colorNeutralBackground2);}\", \".f1x6o7w7{box-shadow:0 0 0 var(--strokeWidthThicker) var(--colorNeutralBackground2);}\", \".f2aml1u{box-shadow:0 0 0 var(--strokeWidthThickest) var(--colorNeutralBackground2);}\", \".f1cjco14:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalXXS));}\", \".f13dxjc9:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalXXS));}\", \".f15p6bln:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalXS));}\", \".f1bab3ru:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalXS));}\", \".f1v53ncc:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalS));}\", \".f17pu8r8:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalS));}\", \".flv48ch:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalL));}\", \".fnh1ydj:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalL));}\"]\n});\n/**\n * Styles for the spread layout\n */\nconst useSpreadStyles = /*#__PURE__*/__styles({\n s: {\n jhia2w: [\"f7lhxv7\", \"f6ou2b0\"]\n },\n mNudge: {\n jhia2w: [\"f1h0okno\", \"fnnqava\"]\n },\n m: {\n jhia2w: [\"f1wkt588\", \"f1maio5g\"]\n },\n l: {\n jhia2w: [\"f1l333zn\", \"f1r41m4c\"]\n },\n xl: {\n jhia2w: [\"fahr13a\", \"f2n7rbo\"]\n }\n}, {\n d: [\".f7lhxv7:not(:first-child){margin-left:var(--spacingHorizontalS);}\", \".f6ou2b0:not(:first-child){margin-right:var(--spacingHorizontalS);}\", \".f1h0okno:not(:first-child){margin-left:var(--spacingHorizontalMNudge);}\", \".fnnqava:not(:first-child){margin-right:var(--spacingHorizontalMNudge);}\", \".f1wkt588:not(:first-child){margin-left:var(--spacingHorizontalM);}\", \".f1maio5g:not(:first-child){margin-right:var(--spacingHorizontalM);}\", \".f1l333zn:not(:first-child){margin-left:var(--spacingHorizontalL);}\", \".f1r41m4c:not(:first-child){margin-right:var(--spacingHorizontalL);}\", \".fahr13a:not(:first-child){margin-left:var(--spacingHorizontalXL);}\", \".f2n7rbo:not(:first-child){margin-right:var(--spacingHorizontalXL);}\"]\n});\n/**\n * Styles for the pie layout\n */\nconst usePieStyles = /*#__PURE__*/__styles({\n base: {\n qhf8xq: \"f1euv43f\"\n },\n slices: {\n B3gf25r: \"f16m7w7k\",\n Be2twx7: [\"f1o4hhgz\", \"fb4gjrz\"],\n Bvaow4n: \"f1pgb5nx\",\n Gpecfs: [\"fugirid\", \"f4sk99m\"],\n bhabj1: \"fjreaf3\",\n B7rc6i7: [\"f1k4vw81\", \"f1w1xcy7\"],\n Bwrfys5: \"f1ef8vxk\",\n Bwuzm9m: [\"f1x2qbfv\", \"f1xwf4nz\"],\n fflka: \"ff6xuso\",\n do7bja: \"fzpvk6c\",\n Be8zqhl: \"f4onu7f\",\n Bij0kh0: [\"f1ydfez1\", \"fjensob\"],\n Bwexnyt: \"f1yv732j\",\n Bhe5x6o: \"fchq2fj\",\n B3kv7bh: \"ff5binh\"\n },\n rtlSlices: {\n B3gf25r: \"f5vdl61\",\n Bvaow4n: \"f1bnra92\",\n bhabj1: \"f4ibo7t\",\n Bwrfys5: \"f17heuis\",\n Bwuzm9m: [\"f64f2ud\", \"f1yjglu3\"],\n Be8zqhl: \"fa6l61x\",\n Bij0kh0: [\"f1w2396a\", \"f14ab3yo\"]\n },\n thick: {\n uiicq7: \"fnyfzln\"\n },\n thicker: {\n uiicq7: \"f1xdzzot\"\n },\n thickest: {\n uiicq7: \"f1auhru5\"\n }\n}, {\n d: [\".f1euv43f{position:absolute;}\", \".f16m7w7k:nth-of-type(1):nth-last-of-type(2){clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}\", \".f1o4hhgz:nth-of-type(1):nth-last-of-type(2){left:-25%;}\", \".fb4gjrz:nth-of-type(1):nth-last-of-type(2){right:-25%;}\", \".f1pgb5nx:nth-of-type(2):nth-last-of-type(1){clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}\", \".fugirid:nth-of-type(2):nth-last-of-type(1){left:25%;}\", \".f4sk99m:nth-of-type(2):nth-last-of-type(1){right:25%;}\", \".fjreaf3:nth-of-type(1):nth-last-of-type(3){clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}\", \".f1k4vw81:nth-of-type(1):nth-last-of-type(3){left:-25%;}\", \".f1w1xcy7:nth-of-type(1):nth-last-of-type(3){right:-25%;}\", \".f1ef8vxk:nth-of-type(2):nth-last-of-type(2){clip-path:inset(0 0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width));}\", \".f1x2qbfv:nth-of-type(2):nth-last-of-type(2){left:50%;}\", \".f1xwf4nz:nth-of-type(2):nth-last-of-type(2){right:50%;}\", \".ff6xuso:nth-of-type(2):nth-last-of-type(2){transform:scale(0.5);}\", \".fzpvk6c:nth-of-type(2):nth-last-of-type(2){transform-origin:0 0;}\", \".f4onu7f:nth-of-type(3):nth-last-of-type(1){clip-path:inset(var(--fuiAvatarGroupItem__divider--width) 0 0 var(--fuiAvatarGroupItem__divider--width));}\", \".f1ydfez1:nth-of-type(3):nth-last-of-type(1){left:50%;}\", \".fjensob:nth-of-type(3):nth-last-of-type(1){right:50%;}\", \".f1yv732j:nth-of-type(3):nth-last-of-type(1){top:50%;}\", \".fchq2fj:nth-of-type(3):nth-last-of-type(1){transform:scale(0.5);}\", \".ff5binh:nth-of-type(3):nth-last-of-type(1){transform-origin:0 0;}\", \".f5vdl61:nth-of-type(1):nth-last-of-type(2){clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}\", \".f1bnra92:nth-of-type(2):nth-last-of-type(1){clip-path:inset(0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)) 0 25%);}\", \".f4ibo7t:nth-of-type(1):nth-last-of-type(3){clip-path:inset(0 25% 0 calc(25% + (var(--fuiAvatarGroupItem__divider--width) / 2)));}\", \".f17heuis:nth-of-type(2):nth-last-of-type(2){clip-path:inset(0 var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0);}\", \".f64f2ud:nth-of-type(2):nth-last-of-type(2){left:0;}\", \".f1yjglu3:nth-of-type(2):nth-last-of-type(2){right:0;}\", \".fa6l61x:nth-of-type(3):nth-last-of-type(1){clip-path:inset(var(--fuiAvatarGroupItem__divider--width) var(--fuiAvatarGroupItem__divider--width) 0 0);}\", \".f1w2396a:nth-of-type(3):nth-last-of-type(1){left:0;}\", \".f14ab3yo:nth-of-type(3):nth-last-of-type(1){right:0;}\", \".fnyfzln{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThick);}\", \".f1xdzzot{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThicker);}\", \".f1auhru5{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThickest);}\"]\n});\n/**\n * Apply styling to the AvatarGroupItem slots based on the state\n */\nexport const useAvatarGroupItemStyles_unstable = state => {\n const {\n isOverflowItem,\n layout,\n size\n } = state;\n const {\n dir\n } = useFluent();\n const avatarStyles = useAvatarStyles();\n const overflowLabelStyles = useOverflowLabelStyles();\n const pieStyles = usePieStyles();\n const rootStyles = useRootStyles();\n const sizeStyles = useSizeStyles();\n const groupChildClassName = useGroupChildClassName(layout, size);\n const rootClasses = [rootStyles.base];\n if (!isOverflowItem) {\n rootClasses.push(rootStyles.nonOverflowItem);\n rootClasses.push(groupChildClassName);\n rootClasses.push(sizeStyles[size]);\n if (layout === 'pie') {\n rootClasses.push(pieStyles.base);\n if (size < 56) {\n rootClasses.push(pieStyles.thick);\n } else if (size < 72) {\n rootClasses.push(pieStyles.thicker);\n } else {\n rootClasses.push(pieStyles.thickest);\n }\n rootClasses.push(pieStyles.slices);\n if (dir === 'rtl') {\n rootClasses.push(pieStyles.rtlSlices);\n }\n }\n } else {\n rootClasses.push(rootStyles.overflowItem);\n }\n state.root.className = mergeClasses(avatarGroupItemClassNames.root, ...rootClasses, state.root.className);\n state.avatar.className = mergeClasses(avatarGroupItemClassNames.avatar, !isOverflowItem && avatarStyles.nonOverflowItem, layout === 'pie' && avatarStyles.pie, state.avatar.className);\n if (state.overflowLabel) {\n state.overflowLabel.className = mergeClasses(avatarGroupItemClassNames.overflowLabel, overflowLabelStyles.base, state.overflowLabel.className);\n }\n return state;\n};\n/**\n * Hook for getting the className for the children of AvatarGroup. This hook will provide the spacing and outlines\n * needed for each layout.\n */\nexport const useGroupChildClassName = (layout, size) => {\n const stackStyles = useStackStyles();\n const spreadStyles = useSpreadStyles();\n const layoutClasses = [];\n if (size) {\n if (layout === 'stack') {\n if (size < 56) {\n layoutClasses.push(stackStyles.thick);\n } else if (size < 72) {\n layoutClasses.push(stackStyles.thicker);\n } else {\n layoutClasses.push(stackStyles.thickest);\n }\n if (size < 24) {\n layoutClasses.push(stackStyles.xxs);\n } else if (size < 48) {\n layoutClasses.push(stackStyles.xs);\n } else if (size < 96) {\n layoutClasses.push(stackStyles.s);\n } else {\n layoutClasses.push(stackStyles.l);\n }\n } else if (layout === 'spread') {\n if (size < 20) {\n layoutClasses.push(spreadStyles.s);\n } else if (size < 32) {\n layoutClasses.push(spreadStyles.mNudge);\n } else if (size < 64) {\n layoutClasses.push(spreadStyles.l);\n } else {\n layoutClasses.push(spreadStyles.xl);\n }\n }\n }\n return mergeClasses(...layoutClasses);\n};\n//# sourceMappingURL=useAvatarGroupItemStyles.styles.js.map"],"names":["avatarGroupItemClassNames","useAvatarGroupItemStyles_unstable","useGroupChildClassName","root","avatar","overflowLabel","avatarGroupItemDividerWidthVar","useRootStyles","__styles","base","Bt984gj","mc9l5x","Bnnss6s","qhf8xq","overflowItem","z8tnut","z189sj","Byoj8tv","uwmqm3","nonOverflowItem","Bbmb7ep","Beyfa6y","B7oj6ja","Btl43ni","d","useAvatarStyles","pie","useOverflowLabelStyles","Frg6f3","sj55zd","Bahqtrf","Be2twd7","Bhrd7zp","Bg96gwp","useStackStyles","thick","E5pizo","thicker","thickest","xxs","jhia2w","xs","s","l","useSpreadStyles","mNudge","m","xl","usePieStyles","slices","B3gf25r","Be2twx7","Bvaow4n","Gpecfs","bhabj1","B7rc6i7","Bwrfys5","Bwuzm9m","fflka","do7bja","Be8zqhl","Bij0kh0","Bwexnyt","Bhe5x6o","B3kv7bh","rtlSlices","uiicq7","state","isOverflowItem","layout","size","dir","useFluent","avatarStyles","overflowLabelStyles","pieStyles","rootStyles","sizeStyles","useSizeStyles","groupChildClassName","rootClasses","push","className","mergeClasses","stackStyles","spreadStyles","layoutClasses"],"mappings":";;;;;;;;;;;IAIaA,yBAAyB,MAAzBA;IAgKAC,iCAAiC,MAAjCA;IAgDAC,sBAAsB,MAAtBA;;uBApNsC;wBAErB;qCACkB;AACzC,MAAMF,4BAA4B;IACvCG,MAAM;IACNC,QAAQ;IACRC,eAAe;AACjB;AACA,MAAMC,iCAAiC;AACvC;;CAEC,GACD,MAAMC,gBAAgB,WAAW,GAAEC,IAAAA,kBAAQ,EAAC;IAC1CC,MAAM;QACJC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;IACV;IACAC,cAAc;QACZC,QAAQ;QACRC,QAAQ;YAAC;YAAW;SAAU;QAC9BC,SAAS;QACTC,QAAQ;YAAC;YAAW;SAAU;IAChC;IACAC,iBAAiB;QACfC,SAAS;YAAC;YAAW;SAAW;QAChCC,SAAS;YAAC;YAAY;SAAU;QAChCC,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;YAAC;YAAY;SAAW;IACnC;AACF,GAAG;IACDC,GAAG;QAAC;QAAiC;QAAkC;QAA4B;QAAiC;QAAoD;QAAuD;QAAsD;QAAuD;QAAqE;QAAqE;QAAmE;KAAiE;AAC5mB;AACA;;CAEC,GACD,MAAMC,kBAAkB,WAAW,GAAEjB,IAAAA,kBAAQ,EAAC;IAC5CW,iBAAiB;QACfN,QAAQ;IACV;IACAa,KAAK;QACHN,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;YAAC;YAAY;SAAW;IACnC;AACF,GAAG;IACDC,GAAG;QAAC;QAAiC;QAA4C;QAA2C;QAAyC;KAAuC;AAC9M;AACA;;CAEC,GACD,MAAMG,yBAAyB,WAAW,GAAEnB,IAAAA,kBAAQ,EAAC;IACnDC,MAAM;QACJmB,QAAQ;YAAC;YAAW;SAAW;QAC/BC,QAAQ;QACRC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;IACX;AACF,GAAG;IACDT,GAAG;QAAC;QAAoD;QAAsD;QAAmD;QAAgD;QAA+C;QAAmD;KAAmD;AACxW;AACA;;CAEC,GACD,MAAMU,iBAAiB,WAAW,GAAE1B,IAAAA,kBAAQ,EAAC;IAC3C2B,OAAO;QACLC,QAAQ;IACV;IACAC,SAAS;QACPD,QAAQ;IACV;IACAE,UAAU;QACRF,QAAQ;IACV;IACAG,KAAK;QACHC,QAAQ;YAAC;YAAY;SAAW;IAClC;IACAC,IAAI;QACFD,QAAQ;YAAC;YAAY;SAAW;IAClC;IACAE,GAAG;QACDF,QAAQ;YAAC;YAAY;SAAW;IAClC;IACAG,GAAG;QACDH,QAAQ;YAAC;YAAW;SAAU;IAChC;AACF,GAAG;IACDhB,GAAG;QAAC;QAAsF;QAAyF;QAAyF;QAAoF;QAAqF;QAAmF;QAAoF;QAAkF;QAAmF;QAAiF;KAAiF;AACr6B;AACA;;CAEC,GACD,MAAMoB,kBAAkB,WAAW,GAAEpC,IAAAA,kBAAQ,EAAC;IAC5CkC,GAAG;QACDF,QAAQ;YAAC;YAAW;SAAU;IAChC;IACAK,QAAQ;QACNL,QAAQ;YAAC;YAAY;SAAU;IACjC;IACAM,GAAG;QACDN,QAAQ;YAAC;YAAY;SAAW;IAClC;IACAG,GAAG;QACDH,QAAQ;YAAC;YAAY;SAAW;IAClC;IACAO,IAAI;QACFP,QAAQ;YAAC;YAAW;SAAU;IAChC;AACF,GAAG;IACDhB,GAAG;QAAC;QAAsE;QAAuE;QAA4E;QAA4E;QAAuE;QAAwE;QAAuE;QAAwE;QAAuE;KAAuE;AACvtB;AACA;;CAEC,GACD,MAAMwB,eAAe,WAAW,GAAExC,IAAAA,kBAAQ,EAAC;IACzCC,MAAM;QACJI,QAAQ;IACV;IACAoC,QAAQ;QACNC,SAAS;QACTC,SAAS;YAAC;YAAY;SAAU;QAChCC,SAAS;QACTC,QAAQ;YAAC;YAAW;SAAU;QAC9BC,QAAQ;QACRC,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;QACTC,SAAS;YAAC;YAAY;SAAW;QACjCC,OAAO;QACPC,QAAQ;QACRC,SAAS;QACTC,SAAS;YAAC;YAAY;SAAU;QAChCC,SAAS;QACTC,SAAS;QACTC,SAAS;IACX;IACAC,WAAW;QACTf,SAAS;QACTE,SAAS;QACTE,QAAQ;QACRE,SAAS;QACTC,SAAS;YAAC;YAAW;SAAW;QAChCG,SAAS;QACTC,SAAS;YAAC;YAAY;SAAW;IACnC;IACA1B,OAAO;QACL+B,QAAQ;IACV;IACA7B,SAAS;QACP6B,QAAQ;IACV;IACA5B,UAAU;QACR4B,QAAQ;IACV;AACF,GAAG;IACD1C,GAAG;QAAC;QAAiC;QAAuI;QAA4D;QAA4D;QAAuI;QAA0D;QAA2D;QAAsI;QAA4D;QAA6D;QAA2J;QAA2D;QAA4D;QAAsE;QAAsE;QAA0J;QAA2D;QAA2D;QAA0D;QAAsE;QAAsE;QAAsI;QAAuI;QAAsI;QAA2J;QAAwD;QAA0D;QAA0J;QAAyD;QAA0D;QAA2E;QAA8E;KAA8E;AACzyF;AAIO,MAAMvB,oCAAoCkE,CAAAA,QAAS;IACxD,MAAM,EACJC,eAAc,EACdC,OAAM,EACNC,KAAI,EACL,GAAGH;IACJ,MAAM,EACJI,IAAG,EACJ,GAAGC,IAAAA,uCAAS;IACb,MAAMC,eAAehD;IACrB,MAAMiD,sBAAsB/C;IAC5B,MAAMgD,YAAY3B;IAClB,MAAM4B,aAAarE;IACnB,MAAMsE,aAAaC,IAAAA,qBAAa;IAChC,MAAMC,sBAAsB7E,uBAAuBmE,QAAQC;IAC3D,MAAMU,cAAc;QAACJ,WAAWnE,IAAI;KAAC;IACrC,IAAI,CAAC2D,gBAAgB;QACnBY,YAAYC,IAAI,CAACL,WAAWzD,eAAe;QAC3C6D,YAAYC,IAAI,CAACF;QACjBC,YAAYC,IAAI,CAACJ,UAAU,CAACP,KAAK;QACjC,IAAID,WAAW,OAAO;YACpBW,YAAYC,IAAI,CAACN,UAAUlE,IAAI;YAC/B,IAAI6D,OAAO,IAAI;gBACbU,YAAYC,IAAI,CAACN,UAAUxC,KAAK;YAClC,OAAO,IAAImC,OAAO,IAAI;gBACpBU,YAAYC,IAAI,CAACN,UAAUtC,OAAO;YACpC,OAAO;gBACL2C,YAAYC,IAAI,CAACN,UAAUrC,QAAQ;YACrC,CAAC;YACD0C,YAAYC,IAAI,CAACN,UAAU1B,MAAM;YACjC,IAAIsB,QAAQ,OAAO;gBACjBS,YAAYC,IAAI,CAACN,UAAUV,SAAS;YACtC,CAAC;QACH,CAAC;IACH,OAAO;QACLe,YAAYC,IAAI,CAACL,WAAW9D,YAAY;IAC1C,CAAC;IACDqD,MAAMhE,IAAI,CAAC+E,SAAS,GAAGC,IAAAA,mBAAY,EAACnF,0BAA0BG,IAAI,KAAK6E,aAAab,MAAMhE,IAAI,CAAC+E,SAAS;IACxGf,MAAM/D,MAAM,CAAC8E,SAAS,GAAGC,IAAAA,mBAAY,EAACnF,0BAA0BI,MAAM,EAAE,CAACgE,kBAAkBK,aAAatD,eAAe,EAAEkD,WAAW,SAASI,aAAa/C,GAAG,EAAEyC,MAAM/D,MAAM,CAAC8E,SAAS;IACrL,IAAIf,MAAM9D,aAAa,EAAE;QACvB8D,MAAM9D,aAAa,CAAC6E,SAAS,GAAGC,IAAAA,mBAAY,EAACnF,0BAA0BK,aAAa,EAAEqE,oBAAoBjE,IAAI,EAAE0D,MAAM9D,aAAa,CAAC6E,SAAS;IAC/I,CAAC;IACD,OAAOf;AACT;AAKO,MAAMjE,yBAAyB,CAACmE,QAAQC,OAAS;IACtD,MAAMc,cAAclD;IACpB,MAAMmD,eAAezC;IACrB,MAAM0C,gBAAgB,EAAE;IACxB,IAAIhB,MAAM;QACR,IAAID,WAAW,SAAS;YACtB,IAAIC,OAAO,IAAI;gBACbgB,cAAcL,IAAI,CAACG,YAAYjD,KAAK;YACtC,OAAO,IAAImC,OAAO,IAAI;gBACpBgB,cAAcL,IAAI,CAACG,YAAY/C,OAAO;YACxC,OAAO;gBACLiD,cAAcL,IAAI,CAACG,YAAY9C,QAAQ;YACzC,CAAC;YACD,IAAIgC,OAAO,IAAI;gBACbgB,cAAcL,IAAI,CAACG,YAAY7C,GAAG;YACpC,OAAO,IAAI+B,OAAO,IAAI;gBACpBgB,cAAcL,IAAI,CAACG,YAAY3C,EAAE;YACnC,OAAO,IAAI6B,OAAO,IAAI;gBACpBgB,cAAcL,IAAI,CAACG,YAAY1C,CAAC;YAClC,OAAO;gBACL4C,cAAcL,IAAI,CAACG,YAAYzC,CAAC;YAClC,CAAC;QACH,OAAO,IAAI0B,WAAW,UAAU;YAC9B,IAAIC,OAAO,IAAI;gBACbgB,cAAcL,IAAI,CAACI,aAAa3C,CAAC;YACnC,OAAO,IAAI4B,OAAO,IAAI;gBACpBgB,cAAcL,IAAI,CAACI,aAAaxC,MAAM;YACxC,OAAO,IAAIyB,OAAO,IAAI;gBACpBgB,cAAcL,IAAI,CAACI,aAAa1C,CAAC;YACnC,OAAO;gBACL2C,cAAcL,IAAI,CAACI,aAAatC,EAAE;YACpC,CAAC;QACH,CAAC;IACH,CAAC;IACD,OAAOoC,IAAAA,mBAAY,KAAIG;AACzB,GACA,2DAA2D"}
|
|
@@ -11,10 +11,10 @@ const _avatarGroupContext = require("../../contexts/AvatarGroupContext");
|
|
|
11
11
|
const _reactUtilities = require("@fluentui/react-utilities");
|
|
12
12
|
const _reactPopover = require("@fluentui/react-popover");
|
|
13
13
|
const renderAvatarGroupPopover_unstable = (state, contextValues)=>{
|
|
14
|
-
|
|
15
|
-
return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(
|
|
14
|
+
(0, _reactUtilities.assertSlots)(state);
|
|
15
|
+
return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(state.root, null, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(_reactPopover.PopoverTrigger, {
|
|
16
16
|
disableButtonEnhancement: true
|
|
17
|
-
}, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(
|
|
17
|
+
}, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(state.tooltip, null, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(state.triggerButton, null))), /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(state.popoverSurface, null, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(_avatarGroupContext.AvatarGroupProvider, {
|
|
18
18
|
value: contextValues.avatarGroup
|
|
19
|
-
}, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(
|
|
19
|
+
}, /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(state.content, null))));
|
|
20
20
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["renderAvatarGroupPopover.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */ import { createElement } from '@fluentui/react-jsx-runtime';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport {
|
|
1
|
+
{"version":3,"sources":["renderAvatarGroupPopover.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */ import { createElement } from '@fluentui/react-jsx-runtime';\nimport { AvatarGroupProvider } from '../../contexts/AvatarGroupContext';\nimport { assertSlots } from '@fluentui/react-utilities';\nimport { PopoverTrigger } from '@fluentui/react-popover';\n/**\n * Render the final JSX of AvatarGroupPopover\n */ export const renderAvatarGroupPopover_unstable = (state, contextValues)=>{\n assertSlots(state);\n return /*#__PURE__*/ createElement(state.root, null, /*#__PURE__*/ createElement(PopoverTrigger, {\n disableButtonEnhancement: true\n }, /*#__PURE__*/ createElement(state.tooltip, null, /*#__PURE__*/ createElement(state.triggerButton, null))), /*#__PURE__*/ createElement(state.popoverSurface, null, /*#__PURE__*/ createElement(AvatarGroupProvider, {\n value: contextValues.avatarGroup\n }, /*#__PURE__*/ createElement(state.content, null))));\n};\n"],"names":["renderAvatarGroupPopover_unstable","state","contextValues","assertSlots","createElement","root","PopoverTrigger","disableButtonEnhancement","tooltip","triggerButton","popoverSurface","AvatarGroupProvider","value","avatarGroup","content"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAMjCA;;aAAAA;;iCANkE;oCAC/C;gCACR;8BACG;AAGpB,MAAMA,oCAAoC,CAACC,OAAOC,gBAAgB;IACzEC,IAAAA,2BAAW,EAACF;IACZ,OAAO,WAAW,GAAGG,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAE,IAAI,EAAE,WAAW,GAAGD,IAAAA,8BAAa,EAACE,4BAAc,EAAE;QAC7FC,0BAA0B,IAAI;IAClC,GAAG,WAAW,GAAGH,IAAAA,8BAAa,EAACH,MAAMO,OAAO,EAAE,IAAI,EAAE,WAAW,GAAGJ,IAAAA,8BAAa,EAACH,MAAMQ,aAAa,EAAE,IAAI,KAAK,WAAW,GAAGL,IAAAA,8BAAa,EAACH,MAAMS,cAAc,EAAE,IAAI,EAAE,WAAW,GAAGN,IAAAA,8BAAa,EAACO,uCAAmB,EAAE;QACnNC,OAAOV,cAAcW,WAAW;IACpC,GAAG,WAAW,GAAGT,IAAAA,8BAAa,EAACH,MAAMa,OAAO,EAAE,IAAI;AACtD"}
|
|
@@ -50,7 +50,7 @@ const useAvatarGroupPopover_unstable = (props)=>{
|
|
|
50
50
|
popoverSurface: _reactPopover.PopoverSurface,
|
|
51
51
|
tooltip: _reactTooltip.Tooltip
|
|
52
52
|
},
|
|
53
|
-
root: {
|
|
53
|
+
root: _reactUtilities.slot.always({
|
|
54
54
|
// Popover expects a child for its children. The children are added in the renderAvatarGroupPopover.
|
|
55
55
|
children: /*#__PURE__*/ _react.createElement(_react.Fragment, null),
|
|
56
56
|
size: 'small',
|
|
@@ -58,34 +58,36 @@ const useAvatarGroupPopover_unstable = (props)=>{
|
|
|
58
58
|
...restOfProps,
|
|
59
59
|
open: popoverOpen,
|
|
60
60
|
onOpenChange: handleOnPopoverChange
|
|
61
|
-
},
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
}, {
|
|
62
|
+
elementType: _reactPopover.Popover
|
|
63
|
+
}),
|
|
64
|
+
triggerButton: _reactUtilities.slot.always(props.triggerButton, {
|
|
64
65
|
defaultProps: {
|
|
65
66
|
children: triggerButtonChildren,
|
|
66
67
|
type: 'button'
|
|
67
|
-
}
|
|
68
|
+
},
|
|
69
|
+
elementType: 'button'
|
|
68
70
|
}),
|
|
69
|
-
content:
|
|
70
|
-
required: true,
|
|
71
|
+
content: _reactUtilities.slot.always(props.content, {
|
|
71
72
|
defaultProps: {
|
|
72
73
|
children,
|
|
73
74
|
role: 'list'
|
|
74
|
-
}
|
|
75
|
+
},
|
|
76
|
+
elementType: 'ul'
|
|
75
77
|
}),
|
|
76
|
-
popoverSurface:
|
|
77
|
-
required: true,
|
|
78
|
+
popoverSurface: _reactUtilities.slot.always(props.popoverSurface, {
|
|
78
79
|
defaultProps: {
|
|
79
80
|
'aria-label': 'Overflow',
|
|
80
81
|
tabIndex: 0
|
|
81
|
-
}
|
|
82
|
+
},
|
|
83
|
+
elementType: _reactPopover.PopoverSurface
|
|
82
84
|
}),
|
|
83
|
-
tooltip:
|
|
84
|
-
required: true,
|
|
85
|
+
tooltip: _reactUtilities.slot.always(props.tooltip, {
|
|
85
86
|
defaultProps: {
|
|
86
87
|
content: 'View more people.',
|
|
87
88
|
relationship: 'label'
|
|
88
|
-
}
|
|
89
|
+
},
|
|
90
|
+
elementType: _reactTooltip.Tooltip
|
|
89
91
|
})
|
|
90
92
|
};
|
|
91
93
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["useAvatarGroupPopover.js"],"sourcesContent":["import * as React from 'react';\nimport { useAvatarGroupContext_unstable } from '../../contexts/AvatarGroupContext';\nimport { defaultAvatarGroupSize } from '../AvatarGroup/useAvatarGroup';\nimport {
|
|
1
|
+
{"version":3,"sources":["useAvatarGroupPopover.js"],"sourcesContent":["import * as React from 'react';\nimport { useAvatarGroupContext_unstable } from '../../contexts/AvatarGroupContext';\nimport { defaultAvatarGroupSize } from '../AvatarGroup/useAvatarGroup';\nimport { useControllableState, slot } from '@fluentui/react-utilities';\nimport { MoreHorizontalRegular } from '@fluentui/react-icons';\nimport { Popover, PopoverSurface } from '@fluentui/react-popover';\nimport { Tooltip } from '@fluentui/react-tooltip';\n/**\n * Create the state required to render AvatarGroupPopover.\n *\n * The returned state can be modified with hooks such as useAvatarGroupPopoverStyles_unstable,\n * before being passed to renderAvatarGroupPopover_unstable.\n *\n * @param props - props from this instance of AvatarGroupPopover\n */ export const useAvatarGroupPopover_unstable = (props)=>{\n var _useAvatarGroupContext_unstable;\n const size = (_useAvatarGroupContext_unstable = useAvatarGroupContext_unstable((ctx)=>ctx.size)) !== null && _useAvatarGroupContext_unstable !== void 0 ? _useAvatarGroupContext_unstable : defaultAvatarGroupSize;\n const layout = useAvatarGroupContext_unstable((ctx)=>ctx.layout);\n const { indicator =size < 24 ? 'icon' : 'count' , count =React.Children.count(props.children) , children , ...restOfProps } = props;\n const [popoverOpen, setPopoverOpen] = useControllableState({\n state: props.open,\n defaultState: props.defaultOpen,\n initialState: false\n });\n const handleOnPopoverChange = (e, data)=>{\n var _restOfProps_onOpenChange;\n (_restOfProps_onOpenChange = restOfProps.onOpenChange) === null || _restOfProps_onOpenChange === void 0 ? void 0 : _restOfProps_onOpenChange.call(restOfProps, e, data);\n setPopoverOpen(data.open);\n };\n let triggerButtonChildren;\n if (layout === 'pie') {\n triggerButtonChildren = null;\n } else if (indicator === 'icon') {\n triggerButtonChildren = /*#__PURE__*/ React.createElement(MoreHorizontalRegular, null);\n } else {\n triggerButtonChildren = count > 99 ? '99+' : `+${count}`;\n }\n return {\n count,\n indicator,\n layout,\n popoverOpen,\n size,\n components: {\n root: Popover,\n triggerButton: 'button',\n content: 'ul',\n popoverSurface: PopoverSurface,\n tooltip: Tooltip\n },\n root: slot.always({\n // Popover expects a child for its children. The children are added in the renderAvatarGroupPopover.\n children: /*#__PURE__*/ React.createElement(React.Fragment, null),\n size: 'small',\n trapFocus: true,\n ...restOfProps,\n open: popoverOpen,\n onOpenChange: handleOnPopoverChange\n }, {\n elementType: Popover\n }),\n triggerButton: slot.always(props.triggerButton, {\n defaultProps: {\n children: triggerButtonChildren,\n type: 'button'\n },\n elementType: 'button'\n }),\n content: slot.always(props.content, {\n defaultProps: {\n children,\n role: 'list'\n },\n elementType: 'ul'\n }),\n popoverSurface: slot.always(props.popoverSurface, {\n defaultProps: {\n 'aria-label': 'Overflow',\n tabIndex: 0\n },\n elementType: PopoverSurface\n }),\n tooltip: slot.always(props.tooltip, {\n defaultProps: {\n content: 'View more people.',\n relationship: 'label'\n },\n elementType: Tooltip\n })\n };\n};\n"],"names":["useAvatarGroupPopover_unstable","props","_useAvatarGroupContext_unstable","size","useAvatarGroupContext_unstable","ctx","defaultAvatarGroupSize","layout","indicator","count","React","Children","children","restOfProps","popoverOpen","setPopoverOpen","useControllableState","state","open","defaultState","defaultOpen","initialState","handleOnPopoverChange","e","data","_restOfProps_onOpenChange","onOpenChange","call","triggerButtonChildren","createElement","MoreHorizontalRegular","components","root","Popover","triggerButton","content","popoverSurface","PopoverSurface","tooltip","Tooltip","slot","always","Fragment","trapFocus","elementType","defaultProps","type","role","tabIndex","relationship"],"mappings":";;;;+BAciBA;;aAAAA;;;6DAdM;oCACwB;gCACR;gCACI;4BACL;8BACE;8BAChB;AAQb,MAAMA,iCAAiC,CAACC,QAAQ;IACvD,IAAIC;IACJ,MAAMC,OAAO,AAACD,CAAAA,kCAAkCE,IAAAA,kDAA8B,EAAC,CAACC,MAAMA,IAAIF,IAAI,CAAA,MAAO,IAAI,IAAID,oCAAoC,KAAK,IAAIA,kCAAkCI,sCAAsB;IAClN,MAAMC,SAASH,IAAAA,kDAA8B,EAAC,CAACC,MAAMA,IAAIE,MAAM;IAC/D,MAAM,EAAEC,WAAWL,OAAO,KAAK,SAAS,OAAO,CAAA,EAAGM,OAAOC,OAAMC,QAAQ,CAACF,KAAK,CAACR,MAAMW,QAAQ,EAAC,EAAGA,SAAQ,EAAG,GAAGC,aAAa,GAAGZ;IAC9H,MAAM,CAACa,aAAaC,eAAe,GAAGC,IAAAA,oCAAoB,EAAC;QACvDC,OAAOhB,MAAMiB,IAAI;QACjBC,cAAclB,MAAMmB,WAAW;QAC/BC,cAAc,KAAK;IACvB;IACA,MAAMC,wBAAwB,CAACC,GAAGC,OAAO;QACrC,IAAIC;QACHA,CAAAA,4BAA4BZ,YAAYa,YAAY,AAAD,MAAO,IAAI,IAAID,8BAA8B,KAAK,IAAI,KAAK,IAAIA,0BAA0BE,IAAI,CAACd,aAAaU,GAAGC,KAAK;QACvKT,eAAeS,KAAKN,IAAI;IAC5B;IACA,IAAIU;IACJ,IAAIrB,WAAW,OAAO;QAClBqB,wBAAwB,IAAI;IAChC,OAAO,IAAIpB,cAAc,QAAQ;QAC7BoB,wBAAwB,WAAW,GAAGlB,OAAMmB,aAAa,CAACC,iCAAqB,EAAE,IAAI;IACzF,OAAO;QACHF,wBAAwBnB,QAAQ,KAAK,QAAQ,CAAC,CAAC,EAAEA,MAAM,CAAC;IAC5D,CAAC;IACD,OAAO;QACHA;QACAD;QACAD;QACAO;QACAX;QACA4B,YAAY;YACRC,MAAMC,qBAAO;YACbC,eAAe;YACfC,SAAS;YACTC,gBAAgBC,4BAAc;YAC9BC,SAASC,qBAAO;QACpB;QACAP,MAAMQ,oBAAI,CAACC,MAAM,CAAC;YACd,oGAAoG;YACpG7B,UAAU,WAAW,GAAGF,OAAMmB,aAAa,CAACnB,OAAMgC,QAAQ,EAAE,IAAI;YAChEvC,MAAM;YACNwC,WAAW,IAAI;YACf,GAAG9B,WAAW;YACdK,MAAMJ;YACNY,cAAcJ;QAClB,GAAG;YACCsB,aAAaX,qBAAO;QACxB;QACAC,eAAeM,oBAAI,CAACC,MAAM,CAACxC,MAAMiC,aAAa,EAAE;YAC5CW,cAAc;gBACVjC,UAAUgB;gBACVkB,MAAM;YACV;YACAF,aAAa;QACjB;QACAT,SAASK,oBAAI,CAACC,MAAM,CAACxC,MAAMkC,OAAO,EAAE;YAChCU,cAAc;gBACVjC;gBACAmC,MAAM;YACV;YACAH,aAAa;QACjB;QACAR,gBAAgBI,oBAAI,CAACC,MAAM,CAACxC,MAAMmC,cAAc,EAAE;YAC9CS,cAAc;gBACV,cAAc;gBACdG,UAAU;YACd;YACAJ,aAAaP,4BAAc;QAC/B;QACAC,SAASE,oBAAI,CAACC,MAAM,CAACxC,MAAMqC,OAAO,EAAE;YAChCO,cAAc;gBACVV,SAAS;gBACTc,cAAc;YAClB;YACAL,aAAaL,qBAAO;QACxB;IACJ;AACJ"}
|
|
@@ -61,8 +61,8 @@ const avatarGroupPopoverClassNames = {
|
|
|
61
61
|
".fhxju0i{padding-right:0;}",
|
|
62
62
|
".f1cnd47f{padding-left:0;}",
|
|
63
63
|
".f1qch9an{padding-bottom:0;}",
|
|
64
|
-
".f22iagw{display
|
|
65
|
-
".f1vx9l62{
|
|
64
|
+
".f22iagw{display:flex;}",
|
|
65
|
+
".f1vx9l62{flex-direction:column;}"
|
|
66
66
|
]
|
|
67
67
|
});
|
|
68
68
|
/**
|
|
@@ -360,11 +360,11 @@ const avatarGroupPopoverClassNames = {
|
|
|
360
360
|
}
|
|
361
361
|
}, {
|
|
362
362
|
d: [
|
|
363
|
-
".ftuwxu6{display
|
|
363
|
+
".ftuwxu6{display:inline-flex;}",
|
|
364
364
|
".f10pi13n{position:relative;}",
|
|
365
|
-
".fi64zpg{
|
|
366
|
-
".f4d9j23{
|
|
367
|
-
".f122n59{
|
|
365
|
+
".fi64zpg{flex-shrink:0;}",
|
|
366
|
+
".f4d9j23{justify-content:center;}",
|
|
367
|
+
".f122n59{align-items:center;}",
|
|
368
368
|
".f19n0e5{color:var(--colorNeutralForeground1);}",
|
|
369
369
|
".fxugw4r{background-color:var(--colorNeutralBackground1);}",
|
|
370
370
|
".fj3muxo{border-top-color:var(--colorNeutralStroke1);}",
|
|
@@ -464,12 +464,6 @@ const avatarGroupPopoverClassNames = {
|
|
|
464
464
|
{
|
|
465
465
|
m: "(forced-colors: active)"
|
|
466
466
|
}
|
|
467
|
-
],
|
|
468
|
-
[
|
|
469
|
-
"@media (forced-colors: active){.f1ptkjjm{border-right-color:CanvasText;}.fmzzjfk{border-left-color:CanvasText;}}",
|
|
470
|
-
{
|
|
471
|
-
m: "(forced-colors: active)"
|
|
472
|
-
}
|
|
473
467
|
]
|
|
474
468
|
],
|
|
475
469
|
h: [
|
package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["useAvatarGroupPopoverStyles.styles.js"],"sourcesContent":["import { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nimport { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport { useGroupChildClassName } from '../AvatarGroupItem/useAvatarGroupItemStyles.styles';\nimport { useSizeStyles } from '../Avatar/useAvatarStyles.styles';\nexport const avatarGroupPopoverClassNames = {\n root: 'fui-AvatarGroupPopover',\n content: 'fui-AvatarGroupPopover__content',\n popoverSurface: 'fui-AvatarGroupPopover__popoverSurface',\n tooltip: 'fui-AvatarGroupPopover__tooltip',\n triggerButton: 'fui-AvatarGroupPopover__triggerButton'\n};\n/**\n * Styles for the content slot.\n */\nconst useContentStyles = /*#__PURE__*/__styles({\n base: {\n dclx09: \"ftrb29c\",\n B6of3ja: \"f1hu3pq6\",\n t21cq0: [\"f11qmguv\", \"f1tyq0we\"],\n jrapky: \"f19f4twv\",\n Frg6f3: [\"f1tyq0we\", \"f11qmguv\"],\n z8tnut: \"f1g0x7ka\",\n z189sj: [\"fhxju0i\", \"f1cnd47f\"],\n Byoj8tv: \"f1qch9an\",\n uwmqm3: [\"f1cnd47f\", \"fhxju0i\"],\n mc9l5x: \"f22iagw\",\n Beiy3e4: \"f1vx9l62\"\n }\n}, {\n d: [\".ftrb29c{list-style-type:none;}\", \".f1hu3pq6{margin-top:0;}\", \".f11qmguv{margin-right:0;}\", \".f1tyq0we{margin-left:0;}\", \".f19f4twv{margin-bottom:0;}\", \".f1g0x7ka{padding-top:0;}\", \".fhxju0i{padding-right:0;}\", \".f1cnd47f{padding-left:0;}\", \".f1qch9an{padding-bottom:0;}\", \".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}\", \".f1vx9l62{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}\"]\n});\n/**\n * Styles for the popoverSurface slot.\n */\nconst usePopoverSurfaceStyles = /*#__PURE__*/__styles({\n base: {\n Bxyxcbc: \"fopcw2o\",\n sshi5w: \"f1n5o1gx\",\n B68tc82: \"f1p9o1ba\",\n Bmxbyg5: \"fqkkaap\",\n z8tnut: \"f1kwiid1\",\n z189sj: [\"f1vdfbxk\", \"f1f5gg8d\"],\n Byoj8tv: \"f5b47ha\",\n uwmqm3: [\"f1f5gg8d\", \"f1vdfbxk\"],\n a9b677: \"f13dwy2t\"\n }\n}, {\n d: [\".fopcw2o{max-height:220px;}\", \".f1n5o1gx{min-height:80px;}\", \".f1p9o1ba{overflow-x:hidden;}\", \".fqkkaap{overflow-y:scroll;}\", \".f1kwiid1{padding-top:var(--spacingVerticalS);}\", \".f1vdfbxk{padding-right:var(--spacingHorizontalS);}\", \".f1f5gg8d{padding-left:var(--spacingHorizontalS);}\", \".f5b47ha{padding-bottom:var(--spacingVerticalS);}\", \".f13dwy2t{width:220px;}\"]\n});\n/**\n * Styles for the triggerButton slot.\n */\nconst useTriggerButtonStyles = /*#__PURE__*/__styles({\n base: {\n mc9l5x: \"ftuwxu6\",\n qhf8xq: \"f10pi13n\",\n Bnnss6s: \"fi64zpg\",\n Brf1p80: \"f4d9j23\",\n Bt984gj: \"f122n59\",\n sj55zd: \"f19n0e5\",\n De3pzq: \"fxugw4r\",\n g2u3we: \"fj3muxo\",\n h3c5rm: [\"f1akhkt\", \"f1lxtadh\"],\n B9xav0g: \"f1aperda\",\n zhjwy3: [\"f1lxtadh\", \"f1akhkt\"],\n Bbmb7ep: [\"f8fbkgy\", \"f1nfllo7\"],\n Beyfa6y: [\"f1nfllo7\", \"f8fbkgy\"],\n B7oj6ja: [\"f1djnp8u\", \"f1s8kh49\"],\n Btl43ni: [\"f1s8kh49\", \"f1djnp8u\"],\n icvyot: \"fzkkow9\",\n vrafjx: [\"fcdblym\", \"fjik90z\"],\n oivjwe: \"fg706s2\",\n wvpqe5: [\"fjik90z\", \"fcdblym\"],\n z8tnut: \"f1g0x7ka\",\n z189sj: [\"fhxju0i\", \"f1cnd47f\"],\n Byoj8tv: \"f1qch9an\",\n uwmqm3: [\"f1cnd47f\", \"fhxju0i\"],\n Bjwas2f: \"fw33nwi\",\n Bn1d65q: [\"f1ptkjjm\", \"fmzzjfk\"],\n Bxeuatn: \"f15j0dln\",\n n51gp8: [\"fmzzjfk\", \"f1ptkjjm\"]\n },\n pie: {\n De3pzq: \"f1c21dwh\",\n g2u3we: \"fghlq4f\",\n h3c5rm: [\"f1gn591s\", \"fjscplz\"],\n B9xav0g: \"fb073pr\",\n zhjwy3: [\"fjscplz\", \"f1gn591s\"],\n sj55zd: \"f44pa96\"\n },\n focusIndicator: {\n Bbcte9g: \"fhqs6ru\",\n Bn40d3w: [\"f14qhy8p\", \"f12lscv2\"],\n i2cumq: \"f1p9w1qi\",\n lbo84a: [\"f12lscv2\", \"f14qhy8p\"],\n B5gfjzb: \"ff4w5z6\",\n u5e7qz: [\"f1slf1ze\", \"f33ndkz\"],\n Bbjhlyh: \"fsap1ud\",\n mqozju: [\"f33ndkz\", \"f1slf1ze\"],\n B8q5s1w: \"f17t0x8g\",\n Bci5o5g: [\"f194v5ow\", \"fk7jm04\"],\n n8qw10: \"f1qgg65p\",\n Bdrgwmp: [\"fk7jm04\", \"f194v5ow\"],\n g9k6zt: \"f1nev41a\"\n },\n states: {\n Bi91k9c: \"feu1g3u\",\n Jwef8y: \"f1knas48\",\n Bgoe8wy: \"fvcxoqz\",\n Bwzppfd: [\"f1ub3y4t\", \"f1m52nbi\"],\n oetu4i: \"f1xlaoq0\",\n gg5e9n: [\"f1m52nbi\", \"f1ub3y4t\"],\n lj723h: \"f1g4hkjv\",\n ecr2s2: \"fb40n2d\",\n B6oc9vd: \"fvs00aa\",\n ak43y8: [\"f1assf6x\", \"f4ruux4\"],\n wmxk5l: \"fumykes\",\n B50zh58: [\"f4ruux4\", \"f1assf6x\"]\n },\n selected: {\n sj55zd: \"f14nttnl\",\n De3pzq: \"f1nfm20t\",\n g2u3we: \"f1ly1fcm\",\n h3c5rm: [\"fi8bssc\", \"fj6btzu\"],\n B9xav0g: \"f1s9tnsa\",\n zhjwy3: [\"fj6btzu\", \"fi8bssc\"]\n },\n icon12: {\n Be2twd7: \"f1ugzwwg\"\n },\n icon16: {\n Be2twd7: \"f4ybsrx\"\n },\n icon20: {\n Be2twd7: \"fe5j1ua\"\n },\n icon24: {\n Be2twd7: \"f1rt2boy\"\n },\n icon28: {\n Be2twd7: \"f24l1pt\"\n },\n icon32: {\n Be2twd7: \"ffl51b\"\n },\n icon48: {\n Be2twd7: \"f18m8u13\"\n },\n caption2Strong: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"f13mqy1h\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"fcpl73t\"\n },\n caption1Strong: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fy9rknc\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"fwrc4pm\"\n },\n body1Strong: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"f1i3iumi\"\n },\n subtitle2: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fod5ikn\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"faaz57k\"\n },\n subtitle1: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"f1pp30po\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"f106mvju\"\n },\n title3: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"f1x0m3f5\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"fb86gi6\"\n },\n borderThin: {\n B4j52fo: \"f192inf7\",\n Bekrc4i: [\"f5tn483\", \"f1ojsxk5\"],\n Bn0qgzm: \"f1vxd6vx\",\n ibv6hh: [\"f1ojsxk5\", \"f5tn483\"]\n },\n borderThick: {\n B4j52fo: \"f18zi460\",\n Bekrc4i: [\"f1wpluaz\", \"fsfsuhs\"],\n Bn0qgzm: \"fmklw6v\",\n ibv6hh: [\"fsfsuhs\", \"f1wpluaz\"]\n },\n borderThicker: {\n B4j52fo: \"fgx37oo\",\n Bekrc4i: [\"f130t4y6\", \"f1efpmoh\"],\n Bn0qgzm: \"fv51ejd\",\n ibv6hh: [\"f1efpmoh\", \"f130t4y6\"]\n },\n borderThickest: {\n B4j52fo: \"fwn6jck\",\n Bekrc4i: [\"figl7jc\", \"f1g0iy8l\"],\n Bn0qgzm: \"f1b8shu7\",\n ibv6hh: [\"f1g0iy8l\", \"figl7jc\"]\n }\n}, {\n d: [\".ftuwxu6{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}\", \".f10pi13n{position:relative;}\", \".fi64zpg{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;}\", \".f4d9j23{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}\", \".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}\", \".f19n0e5{color:var(--colorNeutralForeground1);}\", \".fxugw4r{background-color:var(--colorNeutralBackground1);}\", \".fj3muxo{border-top-color:var(--colorNeutralStroke1);}\", \".f1akhkt{border-right-color:var(--colorNeutralStroke1);}\", \".f1lxtadh{border-left-color:var(--colorNeutralStroke1);}\", \".f1aperda{border-bottom-color:var(--colorNeutralStroke1);}\", \".f8fbkgy{border-bottom-right-radius:var(--borderRadiusCircular);}\", \".f1nfllo7{border-bottom-left-radius:var(--borderRadiusCircular);}\", \".f1djnp8u{border-top-right-radius:var(--borderRadiusCircular);}\", \".f1s8kh49{border-top-left-radius:var(--borderRadiusCircular);}\", \".fzkkow9{border-top-style:solid;}\", \".fcdblym{border-right-style:solid;}\", \".fjik90z{border-left-style:solid;}\", \".fg706s2{border-bottom-style:solid;}\", \".f1g0x7ka{padding-top:0;}\", \".fhxju0i{padding-right:0;}\", \".f1cnd47f{padding-left:0;}\", \".f1qch9an{padding-bottom:0;}\", \".f1c21dwh{background-color:var(--colorTransparentBackground);}\", \".fghlq4f{border-top-color:var(--colorTransparentStroke);}\", \".f1gn591s{border-right-color:var(--colorTransparentStroke);}\", \".fjscplz{border-left-color:var(--colorTransparentStroke);}\", \".fb073pr{border-bottom-color:var(--colorTransparentStroke);}\", \".f44pa96{color:transparent;}\", \".fhqs6ru[data-fui-focus-visible]{border-top-width:var(--strokeWidthThick);}\", \".f14qhy8p[data-fui-focus-visible]{border-right-width:var(--strokeWidthThick);}\", \".f12lscv2[data-fui-focus-visible]{border-left-width:var(--strokeWidthThick);}\", \".f1p9w1qi[data-fui-focus-visible]{border-bottom-width:var(--strokeWidthThick);}\", \".ff4w5z6[data-fui-focus-visible]{border-top-style:solid;}\", \".f1slf1ze[data-fui-focus-visible]{border-right-style:solid;}\", \".f33ndkz[data-fui-focus-visible]{border-left-style:solid;}\", \".fsap1ud[data-fui-focus-visible]{border-bottom-style:solid;}\", \".f17t0x8g[data-fui-focus-visible]{border-top-color:var(--colorStrokeFocus2);}\", \".f194v5ow[data-fui-focus-visible]{border-right-color:var(--colorStrokeFocus2);}\", \".fk7jm04[data-fui-focus-visible]{border-left-color:var(--colorStrokeFocus2);}\", \".f1qgg65p[data-fui-focus-visible]{border-bottom-color:var(--colorStrokeFocus2);}\", \".f1nev41a[data-fui-focus-visible]{outline-style:none;}\", \".f14nttnl{color:var(--colorNeutralForeground1Selected);}\", \".f1nfm20t{background-color:var(--colorNeutralBackground1Selected);}\", \".f1ly1fcm{border-top-color:var(--colorNeutralStroke1Selected);}\", \".fi8bssc{border-right-color:var(--colorNeutralStroke1Selected);}\", \".fj6btzu{border-left-color:var(--colorNeutralStroke1Selected);}\", \".f1s9tnsa{border-bottom-color:var(--colorNeutralStroke1Selected);}\", \".f1ugzwwg{font-size:12px;}\", \".f4ybsrx{font-size:16px;}\", \".fe5j1ua{font-size:20px;}\", \".f1rt2boy{font-size:24px;}\", \".f24l1pt{font-size:28px;}\", \".ffl51b{font-size:32px;}\", \".f18m8u13{font-size:48px;}\", \".fk6fouc{font-family:var(--fontFamilyBase);}\", \".f13mqy1h{font-size:var(--fontSizeBase100);}\", \".fl43uef{font-weight:var(--fontWeightSemibold);}\", \".fcpl73t{line-height:var(--lineHeightBase100);}\", \".fy9rknc{font-size:var(--fontSizeBase200);}\", \".fwrc4pm{line-height:var(--lineHeightBase200);}\", \".fkhj508{font-size:var(--fontSizeBase300);}\", \".f1i3iumi{line-height:var(--lineHeightBase300);}\", \".fod5ikn{font-size:var(--fontSizeBase400);}\", \".faaz57k{line-height:var(--lineHeightBase400);}\", \".f1pp30po{font-size:var(--fontSizeBase500);}\", \".f106mvju{line-height:var(--lineHeightBase500);}\", \".f1x0m3f5{font-size:var(--fontSizeBase600);}\", \".fb86gi6{line-height:var(--lineHeightBase600);}\", \".f192inf7{border-top-width:var(--strokeWidthThin);}\", \".f5tn483{border-right-width:var(--strokeWidthThin);}\", \".f1ojsxk5{border-left-width:var(--strokeWidthThin);}\", \".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}\", \".f18zi460{border-top-width:var(--strokeWidthThick);}\", \".f1wpluaz{border-right-width:var(--strokeWidthThick);}\", \".fsfsuhs{border-left-width:var(--strokeWidthThick);}\", \".fmklw6v{border-bottom-width:var(--strokeWidthThick);}\", \".fgx37oo{border-top-width:var(--strokeWidthThicker);}\", \".f130t4y6{border-right-width:var(--strokeWidthThicker);}\", \".f1efpmoh{border-left-width:var(--strokeWidthThicker);}\", \".fv51ejd{border-bottom-width:var(--strokeWidthThicker);}\", \".fwn6jck{border-top-width:var(--strokeWidthThickest);}\", \".figl7jc{border-right-width:var(--strokeWidthThickest);}\", \".f1g0iy8l{border-left-width:var(--strokeWidthThickest);}\", \".f1b8shu7{border-bottom-width:var(--strokeWidthThickest);}\"],\n m: [[\"@media (forced-colors: active){.fw33nwi{border-top-color:CanvasText;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1ptkjjm{border-right-color:CanvasText;}.fmzzjfk{border-left-color:CanvasText;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f15j0dln{border-bottom-color:CanvasText;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1ptkjjm{border-right-color:CanvasText;}.fmzzjfk{border-left-color:CanvasText;}}\", {\n m: \"(forced-colors: active)\"\n }]],\n h: [\".feu1g3u:hover{color:var(--colorNeutralForeground1Hover);}\", \".f1knas48:hover{background-color:var(--colorNeutralBackground1Hover);}\", \".fvcxoqz:hover{border-top-color:var(--colorNeutralStroke1Hover);}\", \".f1ub3y4t:hover{border-right-color:var(--colorNeutralStroke1Hover);}\", \".f1m52nbi:hover{border-left-color:var(--colorNeutralStroke1Hover);}\", \".f1xlaoq0:hover{border-bottom-color:var(--colorNeutralStroke1Hover);}\"],\n a: [\".f1g4hkjv:active{color:var(--colorNeutralForeground1Pressed);}\", \".fb40n2d:active{background-color:var(--colorNeutralBackground1Pressed);}\", \".fvs00aa:active{border-top-color:var(--colorNeutralStroke1Pressed);}\", \".f1assf6x:active{border-right-color:var(--colorNeutralStroke1Pressed);}\", \".f4ruux4:active{border-left-color:var(--colorNeutralStroke1Pressed);}\", \".fumykes:active{border-bottom-color:var(--colorNeutralStroke1Pressed);}\"]\n});\n/**\n * Apply styling to the AvatarGroupPopover slots based on the state\n */\nexport const useAvatarGroupPopoverStyles_unstable = state => {\n const {\n indicator,\n size,\n layout,\n popoverOpen\n } = state;\n const sizeStyles = useSizeStyles();\n const triggerButtonStyles = useTriggerButtonStyles();\n const contentStyles = useContentStyles();\n const popoverSurfaceStyles = usePopoverSurfaceStyles();\n const groupChildClassName = useGroupChildClassName(layout, size);\n const triggerButtonClasses = [];\n if (size < 36) {\n triggerButtonClasses.push(triggerButtonStyles.borderThin);\n } else if (size < 56) {\n triggerButtonClasses.push(triggerButtonStyles.borderThick);\n } else if (size < 72) {\n triggerButtonClasses.push(triggerButtonStyles.borderThicker);\n } else {\n triggerButtonClasses.push(triggerButtonStyles.borderThickest);\n }\n if (indicator === 'count') {\n if (size <= 24) {\n triggerButtonClasses.push(triggerButtonStyles.caption2Strong);\n } else if (size <= 28) {\n triggerButtonClasses.push(triggerButtonStyles.caption1Strong);\n } else if (size <= 40) {\n triggerButtonClasses.push(triggerButtonStyles.body1Strong);\n } else if (size <= 56) {\n triggerButtonClasses.push(triggerButtonStyles.subtitle2);\n } else if (size <= 96) {\n triggerButtonClasses.push(triggerButtonStyles.subtitle1);\n } else {\n triggerButtonClasses.push(triggerButtonStyles.title3);\n }\n } else {\n if (size <= 16) {\n triggerButtonClasses.push(triggerButtonStyles.icon12);\n } else if (size <= 24) {\n triggerButtonClasses.push(triggerButtonStyles.icon16);\n } else if (size <= 40) {\n triggerButtonClasses.push(triggerButtonStyles.icon20);\n } else if (size <= 48) {\n triggerButtonClasses.push(triggerButtonStyles.icon24);\n } else if (size <= 56) {\n triggerButtonClasses.push(triggerButtonStyles.icon28);\n } else if (size <= 72) {\n triggerButtonClasses.push(triggerButtonStyles.icon32);\n } else {\n triggerButtonClasses.push(triggerButtonStyles.icon48);\n }\n }\n state.triggerButton.className = mergeClasses(avatarGroupPopoverClassNames.triggerButton, groupChildClassName, sizeStyles[size], triggerButtonStyles.base, layout === 'pie' && triggerButtonStyles.pie, triggerButtonStyles.focusIndicator, layout !== 'pie' && triggerButtonStyles.states, layout !== 'pie' && popoverOpen && triggerButtonStyles.selected, ...triggerButtonClasses, state.triggerButton.className);\n state.content.className = mergeClasses(avatarGroupPopoverClassNames.content, contentStyles.base, state.content.className);\n state.popoverSurface.className = mergeClasses(avatarGroupPopoverClassNames.popoverSurface, popoverSurfaceStyles.base, state.popoverSurface.className);\n return state;\n};\n//# sourceMappingURL=useAvatarGroupPopoverStyles.styles.js.map"],"names":["avatarGroupPopoverClassNames","useAvatarGroupPopoverStyles_unstable","root","content","popoverSurface","tooltip","triggerButton","useContentStyles","__styles","base","dclx09","B6of3ja","t21cq0","jrapky","Frg6f3","z8tnut","z189sj","Byoj8tv","uwmqm3","mc9l5x","Beiy3e4","d","usePopoverSurfaceStyles","Bxyxcbc","sshi5w","B68tc82","Bmxbyg5","a9b677","useTriggerButtonStyles","qhf8xq","Bnnss6s","Brf1p80","Bt984gj","sj55zd","De3pzq","g2u3we","h3c5rm","B9xav0g","zhjwy3","Bbmb7ep","Beyfa6y","B7oj6ja","Btl43ni","icvyot","vrafjx","oivjwe","wvpqe5","Bjwas2f","Bn1d65q","Bxeuatn","n51gp8","pie","focusIndicator","Bbcte9g","Bn40d3w","i2cumq","lbo84a","B5gfjzb","u5e7qz","Bbjhlyh","mqozju","B8q5s1w","Bci5o5g","n8qw10","Bdrgwmp","g9k6zt","states","Bi91k9c","Jwef8y","Bgoe8wy","Bwzppfd","oetu4i","gg5e9n","lj723h","ecr2s2","B6oc9vd","ak43y8","wmxk5l","B50zh58","selected","icon12","Be2twd7","icon16","icon20","icon24","icon28","icon32","icon48","caption2Strong","Bahqtrf","Bhrd7zp","Bg96gwp","caption1Strong","body1Strong","subtitle2","subtitle1","title3","borderThin","B4j52fo","Bekrc4i","Bn0qgzm","ibv6hh","borderThick","borderThicker","borderThickest","m","h","a","state","indicator","size","layout","popoverOpen","sizeStyles","useSizeStyles","triggerButtonStyles","contentStyles","popoverSurfaceStyles","groupChildClassName","useGroupChildClassName","triggerButtonClasses","push","className","mergeClasses"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["useAvatarGroupPopoverStyles.styles.js"],"sourcesContent":["import { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nimport { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport { useGroupChildClassName } from '../AvatarGroupItem/useAvatarGroupItemStyles.styles';\nimport { useSizeStyles } from '../Avatar/useAvatarStyles.styles';\nexport const avatarGroupPopoverClassNames = {\n root: 'fui-AvatarGroupPopover',\n content: 'fui-AvatarGroupPopover__content',\n popoverSurface: 'fui-AvatarGroupPopover__popoverSurface',\n tooltip: 'fui-AvatarGroupPopover__tooltip',\n triggerButton: 'fui-AvatarGroupPopover__triggerButton'\n};\n/**\n * Styles for the content slot.\n */\nconst useContentStyles = /*#__PURE__*/__styles({\n base: {\n dclx09: \"ftrb29c\",\n B6of3ja: \"f1hu3pq6\",\n t21cq0: [\"f11qmguv\", \"f1tyq0we\"],\n jrapky: \"f19f4twv\",\n Frg6f3: [\"f1tyq0we\", \"f11qmguv\"],\n z8tnut: \"f1g0x7ka\",\n z189sj: [\"fhxju0i\", \"f1cnd47f\"],\n Byoj8tv: \"f1qch9an\",\n uwmqm3: [\"f1cnd47f\", \"fhxju0i\"],\n mc9l5x: \"f22iagw\",\n Beiy3e4: \"f1vx9l62\"\n }\n}, {\n d: [\".ftrb29c{list-style-type:none;}\", \".f1hu3pq6{margin-top:0;}\", \".f11qmguv{margin-right:0;}\", \".f1tyq0we{margin-left:0;}\", \".f19f4twv{margin-bottom:0;}\", \".f1g0x7ka{padding-top:0;}\", \".fhxju0i{padding-right:0;}\", \".f1cnd47f{padding-left:0;}\", \".f1qch9an{padding-bottom:0;}\", \".f22iagw{display:flex;}\", \".f1vx9l62{flex-direction:column;}\"]\n});\n/**\n * Styles for the popoverSurface slot.\n */\nconst usePopoverSurfaceStyles = /*#__PURE__*/__styles({\n base: {\n Bxyxcbc: \"fopcw2o\",\n sshi5w: \"f1n5o1gx\",\n B68tc82: \"f1p9o1ba\",\n Bmxbyg5: \"fqkkaap\",\n z8tnut: \"f1kwiid1\",\n z189sj: [\"f1vdfbxk\", \"f1f5gg8d\"],\n Byoj8tv: \"f5b47ha\",\n uwmqm3: [\"f1f5gg8d\", \"f1vdfbxk\"],\n a9b677: \"f13dwy2t\"\n }\n}, {\n d: [\".fopcw2o{max-height:220px;}\", \".f1n5o1gx{min-height:80px;}\", \".f1p9o1ba{overflow-x:hidden;}\", \".fqkkaap{overflow-y:scroll;}\", \".f1kwiid1{padding-top:var(--spacingVerticalS);}\", \".f1vdfbxk{padding-right:var(--spacingHorizontalS);}\", \".f1f5gg8d{padding-left:var(--spacingHorizontalS);}\", \".f5b47ha{padding-bottom:var(--spacingVerticalS);}\", \".f13dwy2t{width:220px;}\"]\n});\n/**\n * Styles for the triggerButton slot.\n */\nconst useTriggerButtonStyles = /*#__PURE__*/__styles({\n base: {\n mc9l5x: \"ftuwxu6\",\n qhf8xq: \"f10pi13n\",\n Bnnss6s: \"fi64zpg\",\n Brf1p80: \"f4d9j23\",\n Bt984gj: \"f122n59\",\n sj55zd: \"f19n0e5\",\n De3pzq: \"fxugw4r\",\n g2u3we: \"fj3muxo\",\n h3c5rm: [\"f1akhkt\", \"f1lxtadh\"],\n B9xav0g: \"f1aperda\",\n zhjwy3: [\"f1lxtadh\", \"f1akhkt\"],\n Bbmb7ep: [\"f8fbkgy\", \"f1nfllo7\"],\n Beyfa6y: [\"f1nfllo7\", \"f8fbkgy\"],\n B7oj6ja: [\"f1djnp8u\", \"f1s8kh49\"],\n Btl43ni: [\"f1s8kh49\", \"f1djnp8u\"],\n icvyot: \"fzkkow9\",\n vrafjx: [\"fcdblym\", \"fjik90z\"],\n oivjwe: \"fg706s2\",\n wvpqe5: [\"fjik90z\", \"fcdblym\"],\n z8tnut: \"f1g0x7ka\",\n z189sj: [\"fhxju0i\", \"f1cnd47f\"],\n Byoj8tv: \"f1qch9an\",\n uwmqm3: [\"f1cnd47f\", \"fhxju0i\"],\n Bjwas2f: \"fw33nwi\",\n Bn1d65q: [\"f1ptkjjm\", \"fmzzjfk\"],\n Bxeuatn: \"f15j0dln\",\n n51gp8: [\"fmzzjfk\", \"f1ptkjjm\"]\n },\n pie: {\n De3pzq: \"f1c21dwh\",\n g2u3we: \"fghlq4f\",\n h3c5rm: [\"f1gn591s\", \"fjscplz\"],\n B9xav0g: \"fb073pr\",\n zhjwy3: [\"fjscplz\", \"f1gn591s\"],\n sj55zd: \"f44pa96\"\n },\n focusIndicator: {\n Bbcte9g: \"fhqs6ru\",\n Bn40d3w: [\"f14qhy8p\", \"f12lscv2\"],\n i2cumq: \"f1p9w1qi\",\n lbo84a: [\"f12lscv2\", \"f14qhy8p\"],\n B5gfjzb: \"ff4w5z6\",\n u5e7qz: [\"f1slf1ze\", \"f33ndkz\"],\n Bbjhlyh: \"fsap1ud\",\n mqozju: [\"f33ndkz\", \"f1slf1ze\"],\n B8q5s1w: \"f17t0x8g\",\n Bci5o5g: [\"f194v5ow\", \"fk7jm04\"],\n n8qw10: \"f1qgg65p\",\n Bdrgwmp: [\"fk7jm04\", \"f194v5ow\"],\n g9k6zt: \"f1nev41a\"\n },\n states: {\n Bi91k9c: \"feu1g3u\",\n Jwef8y: \"f1knas48\",\n Bgoe8wy: \"fvcxoqz\",\n Bwzppfd: [\"f1ub3y4t\", \"f1m52nbi\"],\n oetu4i: \"f1xlaoq0\",\n gg5e9n: [\"f1m52nbi\", \"f1ub3y4t\"],\n lj723h: \"f1g4hkjv\",\n ecr2s2: \"fb40n2d\",\n B6oc9vd: \"fvs00aa\",\n ak43y8: [\"f1assf6x\", \"f4ruux4\"],\n wmxk5l: \"fumykes\",\n B50zh58: [\"f4ruux4\", \"f1assf6x\"]\n },\n selected: {\n sj55zd: \"f14nttnl\",\n De3pzq: \"f1nfm20t\",\n g2u3we: \"f1ly1fcm\",\n h3c5rm: [\"fi8bssc\", \"fj6btzu\"],\n B9xav0g: \"f1s9tnsa\",\n zhjwy3: [\"fj6btzu\", \"fi8bssc\"]\n },\n icon12: {\n Be2twd7: \"f1ugzwwg\"\n },\n icon16: {\n Be2twd7: \"f4ybsrx\"\n },\n icon20: {\n Be2twd7: \"fe5j1ua\"\n },\n icon24: {\n Be2twd7: \"f1rt2boy\"\n },\n icon28: {\n Be2twd7: \"f24l1pt\"\n },\n icon32: {\n Be2twd7: \"ffl51b\"\n },\n icon48: {\n Be2twd7: \"f18m8u13\"\n },\n caption2Strong: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"f13mqy1h\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"fcpl73t\"\n },\n caption1Strong: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fy9rknc\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"fwrc4pm\"\n },\n body1Strong: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"f1i3iumi\"\n },\n subtitle2: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fod5ikn\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"faaz57k\"\n },\n subtitle1: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"f1pp30po\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"f106mvju\"\n },\n title3: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"f1x0m3f5\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"fb86gi6\"\n },\n borderThin: {\n B4j52fo: \"f192inf7\",\n Bekrc4i: [\"f5tn483\", \"f1ojsxk5\"],\n Bn0qgzm: \"f1vxd6vx\",\n ibv6hh: [\"f1ojsxk5\", \"f5tn483\"]\n },\n borderThick: {\n B4j52fo: \"f18zi460\",\n Bekrc4i: [\"f1wpluaz\", \"fsfsuhs\"],\n Bn0qgzm: \"fmklw6v\",\n ibv6hh: [\"fsfsuhs\", \"f1wpluaz\"]\n },\n borderThicker: {\n B4j52fo: \"fgx37oo\",\n Bekrc4i: [\"f130t4y6\", \"f1efpmoh\"],\n Bn0qgzm: \"fv51ejd\",\n ibv6hh: [\"f1efpmoh\", \"f130t4y6\"]\n },\n borderThickest: {\n B4j52fo: \"fwn6jck\",\n Bekrc4i: [\"figl7jc\", \"f1g0iy8l\"],\n Bn0qgzm: \"f1b8shu7\",\n ibv6hh: [\"f1g0iy8l\", \"figl7jc\"]\n }\n}, {\n d: [\".ftuwxu6{display:inline-flex;}\", \".f10pi13n{position:relative;}\", \".fi64zpg{flex-shrink:0;}\", \".f4d9j23{justify-content:center;}\", \".f122n59{align-items:center;}\", \".f19n0e5{color:var(--colorNeutralForeground1);}\", \".fxugw4r{background-color:var(--colorNeutralBackground1);}\", \".fj3muxo{border-top-color:var(--colorNeutralStroke1);}\", \".f1akhkt{border-right-color:var(--colorNeutralStroke1);}\", \".f1lxtadh{border-left-color:var(--colorNeutralStroke1);}\", \".f1aperda{border-bottom-color:var(--colorNeutralStroke1);}\", \".f8fbkgy{border-bottom-right-radius:var(--borderRadiusCircular);}\", \".f1nfllo7{border-bottom-left-radius:var(--borderRadiusCircular);}\", \".f1djnp8u{border-top-right-radius:var(--borderRadiusCircular);}\", \".f1s8kh49{border-top-left-radius:var(--borderRadiusCircular);}\", \".fzkkow9{border-top-style:solid;}\", \".fcdblym{border-right-style:solid;}\", \".fjik90z{border-left-style:solid;}\", \".fg706s2{border-bottom-style:solid;}\", \".f1g0x7ka{padding-top:0;}\", \".fhxju0i{padding-right:0;}\", \".f1cnd47f{padding-left:0;}\", \".f1qch9an{padding-bottom:0;}\", \".f1c21dwh{background-color:var(--colorTransparentBackground);}\", \".fghlq4f{border-top-color:var(--colorTransparentStroke);}\", \".f1gn591s{border-right-color:var(--colorTransparentStroke);}\", \".fjscplz{border-left-color:var(--colorTransparentStroke);}\", \".fb073pr{border-bottom-color:var(--colorTransparentStroke);}\", \".f44pa96{color:transparent;}\", \".fhqs6ru[data-fui-focus-visible]{border-top-width:var(--strokeWidthThick);}\", \".f14qhy8p[data-fui-focus-visible]{border-right-width:var(--strokeWidthThick);}\", \".f12lscv2[data-fui-focus-visible]{border-left-width:var(--strokeWidthThick);}\", \".f1p9w1qi[data-fui-focus-visible]{border-bottom-width:var(--strokeWidthThick);}\", \".ff4w5z6[data-fui-focus-visible]{border-top-style:solid;}\", \".f1slf1ze[data-fui-focus-visible]{border-right-style:solid;}\", \".f33ndkz[data-fui-focus-visible]{border-left-style:solid;}\", \".fsap1ud[data-fui-focus-visible]{border-bottom-style:solid;}\", \".f17t0x8g[data-fui-focus-visible]{border-top-color:var(--colorStrokeFocus2);}\", \".f194v5ow[data-fui-focus-visible]{border-right-color:var(--colorStrokeFocus2);}\", \".fk7jm04[data-fui-focus-visible]{border-left-color:var(--colorStrokeFocus2);}\", \".f1qgg65p[data-fui-focus-visible]{border-bottom-color:var(--colorStrokeFocus2);}\", \".f1nev41a[data-fui-focus-visible]{outline-style:none;}\", \".f14nttnl{color:var(--colorNeutralForeground1Selected);}\", \".f1nfm20t{background-color:var(--colorNeutralBackground1Selected);}\", \".f1ly1fcm{border-top-color:var(--colorNeutralStroke1Selected);}\", \".fi8bssc{border-right-color:var(--colorNeutralStroke1Selected);}\", \".fj6btzu{border-left-color:var(--colorNeutralStroke1Selected);}\", \".f1s9tnsa{border-bottom-color:var(--colorNeutralStroke1Selected);}\", \".f1ugzwwg{font-size:12px;}\", \".f4ybsrx{font-size:16px;}\", \".fe5j1ua{font-size:20px;}\", \".f1rt2boy{font-size:24px;}\", \".f24l1pt{font-size:28px;}\", \".ffl51b{font-size:32px;}\", \".f18m8u13{font-size:48px;}\", \".fk6fouc{font-family:var(--fontFamilyBase);}\", \".f13mqy1h{font-size:var(--fontSizeBase100);}\", \".fl43uef{font-weight:var(--fontWeightSemibold);}\", \".fcpl73t{line-height:var(--lineHeightBase100);}\", \".fy9rknc{font-size:var(--fontSizeBase200);}\", \".fwrc4pm{line-height:var(--lineHeightBase200);}\", \".fkhj508{font-size:var(--fontSizeBase300);}\", \".f1i3iumi{line-height:var(--lineHeightBase300);}\", \".fod5ikn{font-size:var(--fontSizeBase400);}\", \".faaz57k{line-height:var(--lineHeightBase400);}\", \".f1pp30po{font-size:var(--fontSizeBase500);}\", \".f106mvju{line-height:var(--lineHeightBase500);}\", \".f1x0m3f5{font-size:var(--fontSizeBase600);}\", \".fb86gi6{line-height:var(--lineHeightBase600);}\", \".f192inf7{border-top-width:var(--strokeWidthThin);}\", \".f5tn483{border-right-width:var(--strokeWidthThin);}\", \".f1ojsxk5{border-left-width:var(--strokeWidthThin);}\", \".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}\", \".f18zi460{border-top-width:var(--strokeWidthThick);}\", \".f1wpluaz{border-right-width:var(--strokeWidthThick);}\", \".fsfsuhs{border-left-width:var(--strokeWidthThick);}\", \".fmklw6v{border-bottom-width:var(--strokeWidthThick);}\", \".fgx37oo{border-top-width:var(--strokeWidthThicker);}\", \".f130t4y6{border-right-width:var(--strokeWidthThicker);}\", \".f1efpmoh{border-left-width:var(--strokeWidthThicker);}\", \".fv51ejd{border-bottom-width:var(--strokeWidthThicker);}\", \".fwn6jck{border-top-width:var(--strokeWidthThickest);}\", \".figl7jc{border-right-width:var(--strokeWidthThickest);}\", \".f1g0iy8l{border-left-width:var(--strokeWidthThickest);}\", \".f1b8shu7{border-bottom-width:var(--strokeWidthThickest);}\"],\n m: [[\"@media (forced-colors: active){.fw33nwi{border-top-color:CanvasText;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1ptkjjm{border-right-color:CanvasText;}.fmzzjfk{border-left-color:CanvasText;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f15j0dln{border-bottom-color:CanvasText;}}\", {\n m: \"(forced-colors: active)\"\n }]],\n h: [\".feu1g3u:hover{color:var(--colorNeutralForeground1Hover);}\", \".f1knas48:hover{background-color:var(--colorNeutralBackground1Hover);}\", \".fvcxoqz:hover{border-top-color:var(--colorNeutralStroke1Hover);}\", \".f1ub3y4t:hover{border-right-color:var(--colorNeutralStroke1Hover);}\", \".f1m52nbi:hover{border-left-color:var(--colorNeutralStroke1Hover);}\", \".f1xlaoq0:hover{border-bottom-color:var(--colorNeutralStroke1Hover);}\"],\n a: [\".f1g4hkjv:active{color:var(--colorNeutralForeground1Pressed);}\", \".fb40n2d:active{background-color:var(--colorNeutralBackground1Pressed);}\", \".fvs00aa:active{border-top-color:var(--colorNeutralStroke1Pressed);}\", \".f1assf6x:active{border-right-color:var(--colorNeutralStroke1Pressed);}\", \".f4ruux4:active{border-left-color:var(--colorNeutralStroke1Pressed);}\", \".fumykes:active{border-bottom-color:var(--colorNeutralStroke1Pressed);}\"]\n});\n/**\n * Apply styling to the AvatarGroupPopover slots based on the state\n */\nexport const useAvatarGroupPopoverStyles_unstable = state => {\n const {\n indicator,\n size,\n layout,\n popoverOpen\n } = state;\n const sizeStyles = useSizeStyles();\n const triggerButtonStyles = useTriggerButtonStyles();\n const contentStyles = useContentStyles();\n const popoverSurfaceStyles = usePopoverSurfaceStyles();\n const groupChildClassName = useGroupChildClassName(layout, size);\n const triggerButtonClasses = [];\n if (size < 36) {\n triggerButtonClasses.push(triggerButtonStyles.borderThin);\n } else if (size < 56) {\n triggerButtonClasses.push(triggerButtonStyles.borderThick);\n } else if (size < 72) {\n triggerButtonClasses.push(triggerButtonStyles.borderThicker);\n } else {\n triggerButtonClasses.push(triggerButtonStyles.borderThickest);\n }\n if (indicator === 'count') {\n if (size <= 24) {\n triggerButtonClasses.push(triggerButtonStyles.caption2Strong);\n } else if (size <= 28) {\n triggerButtonClasses.push(triggerButtonStyles.caption1Strong);\n } else if (size <= 40) {\n triggerButtonClasses.push(triggerButtonStyles.body1Strong);\n } else if (size <= 56) {\n triggerButtonClasses.push(triggerButtonStyles.subtitle2);\n } else if (size <= 96) {\n triggerButtonClasses.push(triggerButtonStyles.subtitle1);\n } else {\n triggerButtonClasses.push(triggerButtonStyles.title3);\n }\n } else {\n if (size <= 16) {\n triggerButtonClasses.push(triggerButtonStyles.icon12);\n } else if (size <= 24) {\n triggerButtonClasses.push(triggerButtonStyles.icon16);\n } else if (size <= 40) {\n triggerButtonClasses.push(triggerButtonStyles.icon20);\n } else if (size <= 48) {\n triggerButtonClasses.push(triggerButtonStyles.icon24);\n } else if (size <= 56) {\n triggerButtonClasses.push(triggerButtonStyles.icon28);\n } else if (size <= 72) {\n triggerButtonClasses.push(triggerButtonStyles.icon32);\n } else {\n triggerButtonClasses.push(triggerButtonStyles.icon48);\n }\n }\n state.triggerButton.className = mergeClasses(avatarGroupPopoverClassNames.triggerButton, groupChildClassName, sizeStyles[size], triggerButtonStyles.base, layout === 'pie' && triggerButtonStyles.pie, triggerButtonStyles.focusIndicator, layout !== 'pie' && triggerButtonStyles.states, layout !== 'pie' && popoverOpen && triggerButtonStyles.selected, ...triggerButtonClasses, state.triggerButton.className);\n state.content.className = mergeClasses(avatarGroupPopoverClassNames.content, contentStyles.base, state.content.className);\n state.popoverSurface.className = mergeClasses(avatarGroupPopoverClassNames.popoverSurface, popoverSurfaceStyles.base, state.popoverSurface.className);\n return state;\n};\n//# sourceMappingURL=useAvatarGroupPopoverStyles.styles.js.map"],"names":["avatarGroupPopoverClassNames","useAvatarGroupPopoverStyles_unstable","root","content","popoverSurface","tooltip","triggerButton","useContentStyles","__styles","base","dclx09","B6of3ja","t21cq0","jrapky","Frg6f3","z8tnut","z189sj","Byoj8tv","uwmqm3","mc9l5x","Beiy3e4","d","usePopoverSurfaceStyles","Bxyxcbc","sshi5w","B68tc82","Bmxbyg5","a9b677","useTriggerButtonStyles","qhf8xq","Bnnss6s","Brf1p80","Bt984gj","sj55zd","De3pzq","g2u3we","h3c5rm","B9xav0g","zhjwy3","Bbmb7ep","Beyfa6y","B7oj6ja","Btl43ni","icvyot","vrafjx","oivjwe","wvpqe5","Bjwas2f","Bn1d65q","Bxeuatn","n51gp8","pie","focusIndicator","Bbcte9g","Bn40d3w","i2cumq","lbo84a","B5gfjzb","u5e7qz","Bbjhlyh","mqozju","B8q5s1w","Bci5o5g","n8qw10","Bdrgwmp","g9k6zt","states","Bi91k9c","Jwef8y","Bgoe8wy","Bwzppfd","oetu4i","gg5e9n","lj723h","ecr2s2","B6oc9vd","ak43y8","wmxk5l","B50zh58","selected","icon12","Be2twd7","icon16","icon20","icon24","icon28","icon32","icon48","caption2Strong","Bahqtrf","Bhrd7zp","Bg96gwp","caption1Strong","body1Strong","subtitle2","subtitle1","title3","borderThin","B4j52fo","Bekrc4i","Bn0qgzm","ibv6hh","borderThick","borderThicker","borderThickest","m","h","a","state","indicator","size","layout","popoverOpen","sizeStyles","useSizeStyles","triggerButtonStyles","contentStyles","popoverSurfaceStyles","groupChildClassName","useGroupChildClassName","triggerButtonClasses","push","className","mergeClasses"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/react-avatar",
|
|
3
|
-
"version": "9.5.
|
|
3
|
+
"version": "9.5.18",
|
|
4
4
|
"description": "React components for building Microsoft web experiences.",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
"@fluentui/scripts-tasks": "*"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@fluentui/react-badge": "^9.1.
|
|
41
|
-
"@fluentui/react-context-selector": "^9.1.
|
|
40
|
+
"@fluentui/react-badge": "^9.1.25",
|
|
41
|
+
"@fluentui/react-context-selector": "^9.1.27",
|
|
42
42
|
"@fluentui/react-icons": "^2.0.207",
|
|
43
|
-
"@fluentui/react-popover": "^9.7.
|
|
44
|
-
"@fluentui/react-shared-contexts": "^9.7.
|
|
45
|
-
"@fluentui/react-tabster": "^9.
|
|
46
|
-
"@fluentui/react-theme": "^9.1.
|
|
47
|
-
"@fluentui/react-tooltip": "^9.2.
|
|
48
|
-
"@fluentui/react-utilities": "^9.
|
|
49
|
-
"@fluentui/react-jsx-runtime": "9.0.0-alpha.
|
|
50
|
-
"@griffel/react": "^1.5.
|
|
43
|
+
"@fluentui/react-popover": "^9.7.12",
|
|
44
|
+
"@fluentui/react-shared-contexts": "^9.7.2",
|
|
45
|
+
"@fluentui/react-tabster": "^9.12.1",
|
|
46
|
+
"@fluentui/react-theme": "^9.1.11",
|
|
47
|
+
"@fluentui/react-tooltip": "^9.2.29",
|
|
48
|
+
"@fluentui/react-utilities": "^9.11.0",
|
|
49
|
+
"@fluentui/react-jsx-runtime": "9.0.0-alpha.14",
|
|
50
|
+
"@griffel/react": "^1.5.14",
|
|
51
51
|
"@swc/helpers": "^0.4.14"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|