@fluentui/react-avatar 9.4.4 → 9.4.6

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.
Files changed (202) hide show
  1. package/.swcrc +30 -0
  2. package/CHANGELOG.json +121 -1
  3. package/CHANGELOG.md +35 -2
  4. package/lib/Avatar.js.map +1 -1
  5. package/lib/AvatarGroup.js.map +1 -1
  6. package/lib/AvatarGroupItem.js.map +1 -1
  7. package/lib/AvatarGroupPopover.js.map +1 -1
  8. package/lib/components/Avatar/Avatar.js.map +1 -1
  9. package/lib/components/Avatar/Avatar.types.js.map +1 -1
  10. package/lib/components/Avatar/index.js.map +1 -1
  11. package/lib/components/Avatar/renderAvatar.js +1 -11
  12. package/lib/components/Avatar/renderAvatar.js.map +1 -1
  13. package/lib/components/Avatar/useAvatar.js +2 -2
  14. package/lib/components/Avatar/useAvatar.js.map +1 -1
  15. package/lib/components/Avatar/useAvatarStyles.js.map +1 -1
  16. package/lib/components/AvatarGroup/AvatarGroup.js.map +1 -1
  17. package/lib/components/AvatarGroup/AvatarGroup.types.js.map +1 -1
  18. package/lib/components/AvatarGroup/index.js.map +1 -1
  19. package/lib/components/AvatarGroup/renderAvatarGroup.js +1 -3
  20. package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
  21. package/lib/components/AvatarGroup/useAvatarGroup.js +1 -0
  22. package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -1
  23. package/lib/components/AvatarGroup/useAvatarGroupContextValues.js.map +1 -1
  24. package/lib/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -1
  25. package/lib/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -1
  26. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -1
  27. package/lib/components/AvatarGroupItem/index.js.map +1 -1
  28. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js +1 -7
  29. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -1
  30. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js +1 -0
  31. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -1
  32. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -1
  33. package/lib/components/AvatarGroupPopover/AvatarGroupPopover.js +1 -0
  34. package/lib/components/AvatarGroupPopover/AvatarGroupPopover.js.map +1 -1
  35. package/lib/components/AvatarGroupPopover/AvatarGroupPopover.types.js +1 -1
  36. package/lib/components/AvatarGroupPopover/AvatarGroupPopover.types.js.map +1 -1
  37. package/lib/components/AvatarGroupPopover/index.js.map +1 -1
  38. package/lib/components/AvatarGroupPopover/renderAvatarGroupPopover.js +3 -13
  39. package/lib/components/AvatarGroupPopover/renderAvatarGroupPopover.js.map +1 -1
  40. package/lib/components/AvatarGroupPopover/useAvatarGroupPopover.js +4 -4
  41. package/lib/components/AvatarGroupPopover/useAvatarGroupPopover.js.map +1 -1
  42. package/lib/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.js.map +1 -1
  43. package/lib/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.js.map +1 -1
  44. package/lib/contexts/AvatarContext.js +2 -4
  45. package/lib/contexts/AvatarContext.js.map +1 -1
  46. package/lib/contexts/AvatarGroupContext.js.map +1 -1
  47. package/lib/contexts/index.js.map +1 -1
  48. package/lib/index.js.map +1 -1
  49. package/lib/utils/getInitials.js +5 -8
  50. package/lib/utils/getInitials.js.map +1 -1
  51. package/lib/utils/index.js.map +1 -1
  52. package/lib/utils/partitionAvatarGroupItems.js +3 -4
  53. package/lib/utils/partitionAvatarGroupItems.js.map +1 -1
  54. package/lib-commonjs/Avatar.js +5 -4
  55. package/lib-commonjs/Avatar.js.map +1 -1
  56. package/lib-commonjs/AvatarGroup.js +5 -4
  57. package/lib-commonjs/AvatarGroup.js.map +1 -1
  58. package/lib-commonjs/AvatarGroupItem.js +5 -4
  59. package/lib-commonjs/AvatarGroupItem.js.map +1 -1
  60. package/lib-commonjs/AvatarGroupPopover.js +5 -4
  61. package/lib-commonjs/AvatarGroupPopover.js.map +1 -1
  62. package/lib-commonjs/components/Avatar/Avatar.js +19 -17
  63. package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
  64. package/lib-commonjs/components/Avatar/Avatar.types.js +3 -2
  65. package/lib-commonjs/components/Avatar/Avatar.types.js.map +1 -1
  66. package/lib-commonjs/components/Avatar/index.js +9 -8
  67. package/lib-commonjs/components/Avatar/index.js.map +1 -1
  68. package/lib-commonjs/components/Avatar/renderAvatar.js +13 -23
  69. package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
  70. package/lib-commonjs/components/Avatar/useAvatar.js +186 -158
  71. package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
  72. package/lib-commonjs/components/Avatar/useAvatarStyles.js +889 -510
  73. package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
  74. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +21 -23
  75. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -1
  76. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js +3 -2
  77. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js.map +1 -1
  78. package/lib-commonjs/components/AvatarGroup/index.js +10 -9
  79. package/lib-commonjs/components/AvatarGroup/index.js.map +1 -1
  80. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +16 -21
  81. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
  82. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +33 -33
  83. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -1
  84. package/lib-commonjs/components/AvatarGroup/useAvatarGroupContextValues.js +16 -17
  85. package/lib-commonjs/components/AvatarGroup/useAvatarGroupContextValues.js.map +1 -1
  86. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +47 -37
  87. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -1
  88. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js +19 -21
  89. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -1
  90. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js +3 -2
  91. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -1
  92. package/lib-commonjs/components/AvatarGroupItem/index.js +9 -8
  93. package/lib-commonjs/components/AvatarGroupItem/index.js.map +1 -1
  94. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js +13 -22
  95. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -1
  96. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js +59 -68
  97. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -1
  98. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js +379 -224
  99. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -1
  100. package/lib-commonjs/components/AvatarGroupPopover/AvatarGroupPopover.js +21 -22
  101. package/lib-commonjs/components/AvatarGroupPopover/AvatarGroupPopover.js.map +1 -1
  102. package/lib-commonjs/components/AvatarGroupPopover/AvatarGroupPopover.types.js +5 -2
  103. package/lib-commonjs/components/AvatarGroupPopover/AvatarGroupPopover.types.js.map +1 -1
  104. package/lib-commonjs/components/AvatarGroupPopover/index.js +9 -8
  105. package/lib-commonjs/components/AvatarGroupPopover/index.js.map +1 -1
  106. package/lib-commonjs/components/AvatarGroupPopover/renderAvatarGroupPopover.js +19 -32
  107. package/lib-commonjs/components/AvatarGroupPopover/renderAvatarGroupPopover.js.map +1 -1
  108. package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopover.js +89 -99
  109. package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopover.js.map +1 -1
  110. package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.js +15 -13
  111. package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.js.map +1 -1
  112. package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.js +527 -272
  113. package/lib-commonjs/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.js.map +1 -1
  114. package/lib-commonjs/contexts/AvatarContext.js +18 -17
  115. package/lib-commonjs/contexts/AvatarContext.js.map +1 -1
  116. package/lib-commonjs/contexts/AvatarGroupContext.js +17 -12
  117. package/lib-commonjs/contexts/AvatarGroupContext.js.map +1 -1
  118. package/lib-commonjs/contexts/index.js +6 -5
  119. package/lib-commonjs/contexts/index.js.map +1 -1
  120. package/lib-commonjs/index.js +45 -172
  121. package/lib-commonjs/index.js.map +1 -1
  122. package/lib-commonjs/utils/getInitials.js +44 -60
  123. package/lib-commonjs/utils/getInitials.js.map +1 -1
  124. package/lib-commonjs/utils/index.js +14 -16
  125. package/lib-commonjs/utils/index.js.map +1 -1
  126. package/lib-commonjs/utils/partitionAvatarGroupItems.js +25 -26
  127. package/lib-commonjs/utils/partitionAvatarGroupItems.js.map +1 -1
  128. package/package.json +14 -13
  129. package/lib-amd/Avatar.js +0 -6
  130. package/lib-amd/Avatar.js.map +0 -1
  131. package/lib-amd/AvatarGroup.js +0 -6
  132. package/lib-amd/AvatarGroup.js.map +0 -1
  133. package/lib-amd/AvatarGroupItem.js +0 -6
  134. package/lib-amd/AvatarGroupItem.js.map +0 -1
  135. package/lib-amd/AvatarGroupPopover.js +0 -6
  136. package/lib-amd/AvatarGroupPopover.js.map +0 -1
  137. package/lib-amd/components/Avatar/Avatar.js +0 -14
  138. package/lib-amd/components/Avatar/Avatar.js.map +0 -1
  139. package/lib-amd/components/Avatar/Avatar.types.js +0 -5
  140. package/lib-amd/components/Avatar/Avatar.types.js.map +0 -1
  141. package/lib-amd/components/Avatar/index.js +0 -10
  142. package/lib-amd/components/Avatar/index.js.map +0 -1
  143. package/lib-amd/components/Avatar/renderAvatar.js +0 -16
  144. package/lib-amd/components/Avatar/renderAvatar.js.map +0 -1
  145. package/lib-amd/components/Avatar/useAvatar.js +0 -178
  146. package/lib-amd/components/Avatar/useAvatar.js.map +0 -1
  147. package/lib-amd/components/Avatar/useAvatarStyles.js +0 -425
  148. package/lib-amd/components/Avatar/useAvatarStyles.js.map +0 -1
  149. package/lib-amd/components/AvatarGroup/AvatarGroup.js +0 -19
  150. package/lib-amd/components/AvatarGroup/AvatarGroup.js.map +0 -1
  151. package/lib-amd/components/AvatarGroup/AvatarGroup.types.js +0 -5
  152. package/lib-amd/components/AvatarGroup/AvatarGroup.types.js.map +0 -1
  153. package/lib-amd/components/AvatarGroup/index.js +0 -11
  154. package/lib-amd/components/AvatarGroup/index.js.map +0 -1
  155. package/lib-amd/components/AvatarGroup/renderAvatarGroup.js +0 -15
  156. package/lib-amd/components/AvatarGroup/renderAvatarGroup.js.map +0 -1
  157. package/lib-amd/components/AvatarGroup/useAvatarGroup.js +0 -29
  158. package/lib-amd/components/AvatarGroup/useAvatarGroup.js.map +0 -1
  159. package/lib-amd/components/AvatarGroup/useAvatarGroupContextValues.js +0 -15
  160. package/lib-amd/components/AvatarGroup/useAvatarGroupContextValues.js.map +0 -1
  161. package/lib-amd/components/AvatarGroup/useAvatarGroupStyles.js +0 -36
  162. package/lib-amd/components/AvatarGroup/useAvatarGroupStyles.js.map +0 -1
  163. package/lib-amd/components/AvatarGroupItem/AvatarGroupItem.js +0 -18
  164. package/lib-amd/components/AvatarGroupItem/AvatarGroupItem.js.map +0 -1
  165. package/lib-amd/components/AvatarGroupItem/AvatarGroupItem.types.js +0 -5
  166. package/lib-amd/components/AvatarGroupItem/AvatarGroupItem.types.js.map +0 -1
  167. package/lib-amd/components/AvatarGroupItem/index.js +0 -10
  168. package/lib-amd/components/AvatarGroupItem/index.js.map +0 -1
  169. package/lib-amd/components/AvatarGroupItem/renderAvatarGroupItem.js +0 -16
  170. package/lib-amd/components/AvatarGroupItem/renderAvatarGroupItem.js.map +0 -1
  171. package/lib-amd/components/AvatarGroupItem/useAvatarGroupItem.js +0 -58
  172. package/lib-amd/components/AvatarGroupItem/useAvatarGroupItem.js.map +0 -1
  173. package/lib-amd/components/AvatarGroupItem/useAvatarGroupItemStyles.js +0 -236
  174. package/lib-amd/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +0 -1
  175. package/lib-amd/components/AvatarGroupPopover/AvatarGroupPopover.js +0 -19
  176. package/lib-amd/components/AvatarGroupPopover/AvatarGroupPopover.js.map +0 -1
  177. package/lib-amd/components/AvatarGroupPopover/AvatarGroupPopover.types.js +0 -5
  178. package/lib-amd/components/AvatarGroupPopover/AvatarGroupPopover.types.js.map +0 -1
  179. package/lib-amd/components/AvatarGroupPopover/index.js +0 -10
  180. package/lib-amd/components/AvatarGroupPopover/index.js.map +0 -1
  181. package/lib-amd/components/AvatarGroupPopover/renderAvatarGroupPopover.js +0 -20
  182. package/lib-amd/components/AvatarGroupPopover/renderAvatarGroupPopover.js.map +0 -1
  183. package/lib-amd/components/AvatarGroupPopover/useAvatarGroupPopover.js +0 -86
  184. package/lib-amd/components/AvatarGroupPopover/useAvatarGroupPopover.js.map +0 -1
  185. package/lib-amd/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.js +0 -14
  186. package/lib-amd/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.js.map +0 -1
  187. package/lib-amd/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.js +0 -136
  188. package/lib-amd/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.js.map +0 -1
  189. package/lib-amd/contexts/AvatarContext.js +0 -17
  190. package/lib-amd/contexts/AvatarContext.js.map +0 -1
  191. package/lib-amd/contexts/AvatarGroupContext.js +0 -20
  192. package/lib-amd/contexts/AvatarGroupContext.js.map +0 -1
  193. package/lib-amd/contexts/index.js +0 -7
  194. package/lib-amd/contexts/index.js.map +0 -1
  195. package/lib-amd/index.js +0 -33
  196. package/lib-amd/index.js.map +0 -1
  197. package/lib-amd/utils/getInitials.js +0 -87
  198. package/lib-amd/utils/getInitials.js.map +0 -1
  199. package/lib-amd/utils/index.js +0 -8
  200. package/lib-amd/utils/index.js.map +0 -1
  201. package/lib-amd/utils/partitionAvatarGroupItems.js +0 -32
  202. package/lib-amd/utils/partitionAvatarGroupItems.js.map +0 -1
@@ -1,257 +1,412 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ avatarGroupItemClassNames: ()=>avatarGroupItemClassNames,
13
+ useAvatarGroupItemStyles_unstable: ()=>useAvatarGroupItemStyles_unstable,
14
+ useGroupChildClassName: ()=>useGroupChildClassName
5
15
  });
6
- exports.useGroupChildClassName = exports.useAvatarGroupItemStyles_unstable = exports.avatarGroupItemClassNames = void 0;
7
- const react_1 = /*#__PURE__*/require("@griffel/react");
8
- const react_theme_1 = /*#__PURE__*/require("@fluentui/react-theme");
9
- const Avatar_1 = /*#__PURE__*/require("../../Avatar");
10
- const react_shared_contexts_1 = /*#__PURE__*/require("@fluentui/react-shared-contexts");
11
- exports.avatarGroupItemClassNames = {
12
- root: 'fui-AvatarGroupItem',
13
- avatar: 'fui-AvatarGroupItem__avatar',
14
- overflowLabel: 'fui-AvatarGroupItem__overflowLabel'
16
+ const _react = require("@griffel/react");
17
+ const _avatar = require("../../Avatar");
18
+ const _reactSharedContexts = require("@fluentui/react-shared-contexts");
19
+ const avatarGroupItemClassNames = {
20
+ root: 'fui-AvatarGroupItem',
21
+ avatar: 'fui-AvatarGroupItem__avatar',
22
+ overflowLabel: 'fui-AvatarGroupItem__overflowLabel'
15
23
  };
16
24
  const avatarGroupItemDividerWidthVar = '--fuiAvatarGroupItem__divider--width';
17
25
  /**
18
26
  * Styles for the root slot
19
- */
20
- const useRootStyles = /*#__PURE__*/react_1.__styles({
21
- base: {
22
- Bt984gj: "f122n59",
23
- mc9l5x: "ftuwxu6",
24
- Bnnss6s: "fi64zpg",
25
- qhf8xq: "f10pi13n"
26
- },
27
- overflowItem: {
28
- z8tnut: "f1ywm7hm",
29
- z189sj: ["f7x41pl", "fruq291"],
30
- Byoj8tv: "f14wxoun",
31
- uwmqm3: ["fruq291", "f7x41pl"]
32
- },
33
- nonOverflowItem: {
34
- Bbmb7ep: ["f8fbkgy", "f1nfllo7"],
35
- Beyfa6y: ["f1nfllo7", "f8fbkgy"],
36
- B7oj6ja: ["f1djnp8u", "f1s8kh49"],
37
- Btl43ni: ["f1s8kh49", "f1djnp8u"]
38
- }
27
+ */ const useRootStyles = /*#__PURE__*/ (0, _react["__styles"])({
28
+ base: {
29
+ Bt984gj: "f122n59",
30
+ mc9l5x: "ftuwxu6",
31
+ Bnnss6s: "fi64zpg",
32
+ qhf8xq: "f10pi13n"
33
+ },
34
+ overflowItem: {
35
+ z8tnut: "f1ywm7hm",
36
+ z189sj: [
37
+ "f7x41pl",
38
+ "fruq291"
39
+ ],
40
+ Byoj8tv: "f14wxoun",
41
+ uwmqm3: [
42
+ "fruq291",
43
+ "f7x41pl"
44
+ ]
45
+ },
46
+ nonOverflowItem: {
47
+ Bbmb7ep: [
48
+ "f8fbkgy",
49
+ "f1nfllo7"
50
+ ],
51
+ Beyfa6y: [
52
+ "f1nfllo7",
53
+ "f8fbkgy"
54
+ ],
55
+ B7oj6ja: [
56
+ "f1djnp8u",
57
+ "f1s8kh49"
58
+ ],
59
+ Btl43ni: [
60
+ "f1s8kh49",
61
+ "f1djnp8u"
62
+ ]
63
+ }
39
64
  }, {
40
- 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);}"]
65
+ d: [
66
+ ".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}",
67
+ ".ftuwxu6{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}",
68
+ ".fi64zpg{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;}",
69
+ ".f10pi13n{position:relative;}",
70
+ ".f1ywm7hm{padding-top:var(--spacingVerticalXS);}",
71
+ ".f7x41pl{padding-right:var(--spacingHorizontalXS);}",
72
+ ".fruq291{padding-left:var(--spacingHorizontalXS);}",
73
+ ".f14wxoun{padding-bottom:var(--spacingVerticalXS);}",
74
+ ".f8fbkgy{border-bottom-right-radius:var(--borderRadiusCircular);}",
75
+ ".f1nfllo7{border-bottom-left-radius:var(--borderRadiusCircular);}",
76
+ ".f1djnp8u{border-top-right-radius:var(--borderRadiusCircular);}",
77
+ ".f1s8kh49{border-top-left-radius:var(--borderRadiusCircular);}"
78
+ ]
41
79
  });
42
80
  /**
43
81
  * Styles for the avatar slot
44
- */
45
- const useAvatarStyles = /*#__PURE__*/react_1.__styles({
46
- nonOverflowItem: {
47
- qhf8xq: "f1euv43f"
48
- },
49
- pie: {
50
- Bbmb7ep: ["f1krrbdw", "f1deotkl"],
51
- Beyfa6y: ["f1deotkl", "f1krrbdw"],
52
- B7oj6ja: ["f10ostut", "f1ozlkrg"],
53
- Btl43ni: ["f1ozlkrg", "f10ostut"]
54
- }
82
+ */ const useAvatarStyles = /*#__PURE__*/ (0, _react["__styles"])({
83
+ nonOverflowItem: {
84
+ qhf8xq: "f1euv43f"
85
+ },
86
+ pie: {
87
+ Bbmb7ep: [
88
+ "f1krrbdw",
89
+ "f1deotkl"
90
+ ],
91
+ Beyfa6y: [
92
+ "f1deotkl",
93
+ "f1krrbdw"
94
+ ],
95
+ B7oj6ja: [
96
+ "f10ostut",
97
+ "f1ozlkrg"
98
+ ],
99
+ Btl43ni: [
100
+ "f1ozlkrg",
101
+ "f10ostut"
102
+ ]
103
+ }
55
104
  }, {
56
- 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;}"]
105
+ d: [
106
+ ".f1euv43f{position:absolute;}",
107
+ ".f1krrbdw{border-bottom-right-radius:0;}",
108
+ ".f1deotkl{border-bottom-left-radius:0;}",
109
+ ".f10ostut{border-top-right-radius:0;}",
110
+ ".f1ozlkrg{border-top-left-radius:0;}"
111
+ ]
57
112
  });
58
113
  /**
59
114
  * Styles for the label slot
60
- */
61
- const useOverflowLabelStyles = /*#__PURE__*/react_1.__styles({
62
- base: {
63
- Frg6f3: ["foyynoy", "f1vcna3q"],
64
- sj55zd: "f19n0e5",
65
- Bahqtrf: "fk6fouc",
66
- Be2twd7: "fkhj508",
67
- Bhrd7zp: "figsok6",
68
- Bg96gwp: "f1i3iumi"
69
- }
115
+ */ const useOverflowLabelStyles = /*#__PURE__*/ (0, _react["__styles"])({
116
+ base: {
117
+ Frg6f3: [
118
+ "foyynoy",
119
+ "f1vcna3q"
120
+ ],
121
+ sj55zd: "f19n0e5",
122
+ Bahqtrf: "fk6fouc",
123
+ Be2twd7: "fkhj508",
124
+ Bhrd7zp: "figsok6",
125
+ Bg96gwp: "f1i3iumi"
126
+ }
70
127
  }, {
71
- 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);}"]
128
+ d: [
129
+ ".foyynoy{margin-left:var(--spacingHorizontalS);}",
130
+ ".f1vcna3q{margin-right:var(--spacingHorizontalS);}",
131
+ ".f19n0e5{color:var(--colorNeutralForeground1);}",
132
+ ".fk6fouc{font-family:var(--fontFamilyBase);}",
133
+ ".fkhj508{font-size:var(--fontSizeBase300);}",
134
+ ".figsok6{font-weight:var(--fontWeightRegular);}",
135
+ ".f1i3iumi{line-height:var(--lineHeightBase300);}"
136
+ ]
72
137
  });
73
138
  /**
74
139
  * Styles for the stack layout
75
- */
76
- const useStackStyles = /*#__PURE__*/react_1.__styles({
77
- thick: {
78
- E5pizo: "foiuzp5"
79
- },
80
- thicker: {
81
- E5pizo: "f1x6o7w7"
82
- },
83
- thickest: {
84
- E5pizo: "f2aml1u"
85
- },
86
- xxs: {
87
- jhia2w: ["f1cjco14", "f13dxjc9"]
88
- },
89
- xs: {
90
- jhia2w: ["f15p6bln", "f1bab3ru"]
91
- },
92
- s: {
93
- jhia2w: ["f1v53ncc", "f17pu8r8"]
94
- },
95
- l: {
96
- jhia2w: ["flv48ch", "fnh1ydj"]
97
- }
140
+ */ const useStackStyles = /*#__PURE__*/ (0, _react["__styles"])({
141
+ thick: {
142
+ E5pizo: "foiuzp5"
143
+ },
144
+ thicker: {
145
+ E5pizo: "f1x6o7w7"
146
+ },
147
+ thickest: {
148
+ E5pizo: "f2aml1u"
149
+ },
150
+ xxs: {
151
+ jhia2w: [
152
+ "f1cjco14",
153
+ "f13dxjc9"
154
+ ]
155
+ },
156
+ xs: {
157
+ jhia2w: [
158
+ "f15p6bln",
159
+ "f1bab3ru"
160
+ ]
161
+ },
162
+ s: {
163
+ jhia2w: [
164
+ "f1v53ncc",
165
+ "f17pu8r8"
166
+ ]
167
+ },
168
+ l: {
169
+ jhia2w: [
170
+ "flv48ch",
171
+ "fnh1ydj"
172
+ ]
173
+ }
98
174
  }, {
99
- 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));}"]
175
+ d: [
176
+ ".foiuzp5{box-shadow:0 0 0 var(--strokeWidthThick) var(--colorNeutralBackground2);}",
177
+ ".f1x6o7w7{box-shadow:0 0 0 var(--strokeWidthThicker) var(--colorNeutralBackground2);}",
178
+ ".f2aml1u{box-shadow:0 0 0 var(--strokeWidthThickest) var(--colorNeutralBackground2);}",
179
+ ".f1cjco14:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalXXS));}",
180
+ ".f13dxjc9:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalXXS));}",
181
+ ".f15p6bln:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalXS));}",
182
+ ".f1bab3ru:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalXS));}",
183
+ ".f1v53ncc:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalS));}",
184
+ ".f17pu8r8:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalS));}",
185
+ ".flv48ch:not(:first-child){margin-left:calc(-1 * var(--spacingHorizontalL));}",
186
+ ".fnh1ydj:not(:first-child){margin-right:calc(-1 * var(--spacingHorizontalL));}"
187
+ ]
100
188
  });
101
189
  /**
102
190
  * Styles for the spread layout
103
- */
104
- const useSpreadStyles = /*#__PURE__*/react_1.__styles({
105
- s: {
106
- jhia2w: ["f7lhxv7", "f6ou2b0"]
107
- },
108
- mNudge: {
109
- jhia2w: ["f1h0okno", "fnnqava"]
110
- },
111
- m: {
112
- jhia2w: ["f1wkt588", "f1maio5g"]
113
- },
114
- l: {
115
- jhia2w: ["f1l333zn", "f1r41m4c"]
116
- },
117
- xl: {
118
- jhia2w: ["fahr13a", "f2n7rbo"]
119
- }
191
+ */ const useSpreadStyles = /*#__PURE__*/ (0, _react["__styles"])({
192
+ s: {
193
+ jhia2w: [
194
+ "f7lhxv7",
195
+ "f6ou2b0"
196
+ ]
197
+ },
198
+ mNudge: {
199
+ jhia2w: [
200
+ "f1h0okno",
201
+ "fnnqava"
202
+ ]
203
+ },
204
+ m: {
205
+ jhia2w: [
206
+ "f1wkt588",
207
+ "f1maio5g"
208
+ ]
209
+ },
210
+ l: {
211
+ jhia2w: [
212
+ "f1l333zn",
213
+ "f1r41m4c"
214
+ ]
215
+ },
216
+ xl: {
217
+ jhia2w: [
218
+ "fahr13a",
219
+ "f2n7rbo"
220
+ ]
221
+ }
120
222
  }, {
121
- 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);}"]
223
+ d: [
224
+ ".f7lhxv7:not(:first-child){margin-left:var(--spacingHorizontalS);}",
225
+ ".f6ou2b0:not(:first-child){margin-right:var(--spacingHorizontalS);}",
226
+ ".f1h0okno:not(:first-child){margin-left:var(--spacingHorizontalMNudge);}",
227
+ ".fnnqava:not(:first-child){margin-right:var(--spacingHorizontalMNudge);}",
228
+ ".f1wkt588:not(:first-child){margin-left:var(--spacingHorizontalM);}",
229
+ ".f1maio5g:not(:first-child){margin-right:var(--spacingHorizontalM);}",
230
+ ".f1l333zn:not(:first-child){margin-left:var(--spacingHorizontalL);}",
231
+ ".f1r41m4c:not(:first-child){margin-right:var(--spacingHorizontalL);}",
232
+ ".fahr13a:not(:first-child){margin-left:var(--spacingHorizontalXL);}",
233
+ ".f2n7rbo:not(:first-child){margin-right:var(--spacingHorizontalXL);}"
234
+ ]
122
235
  });
123
236
  /**
124
237
  * Styles for the pie layout
125
- */
126
- const usePieStyles = /*#__PURE__*/react_1.__styles({
127
- base: {
128
- qhf8xq: "f1euv43f"
129
- },
130
- slices: {
131
- B3gf25r: "f16m7w7k",
132
- Be2twx7: ["f1o4hhgz", "fb4gjrz"],
133
- Bvaow4n: "f1pgb5nx",
134
- Gpecfs: ["fugirid", "f4sk99m"],
135
- bhabj1: "fjreaf3",
136
- B7rc6i7: ["f1k4vw81", "f1w1xcy7"],
137
- Bwrfys5: "f1ef8vxk",
138
- Bwuzm9m: ["f1x2qbfv", "f1xwf4nz"],
139
- fflka: "ff6xuso",
140
- do7bja: "fzpvk6c",
141
- Be8zqhl: "f4onu7f",
142
- Bij0kh0: ["f1ydfez1", "fjensob"],
143
- Bwexnyt: "f1yv732j",
144
- Bhe5x6o: "fchq2fj",
145
- B3kv7bh: "ff5binh"
146
- },
147
- rtlSlices: {
148
- B3gf25r: "f5vdl61",
149
- Bvaow4n: "f1bnra92",
150
- bhabj1: "f4ibo7t",
151
- Bwrfys5: "f17heuis",
152
- Bwuzm9m: ["f64f2ud", "f1yjglu3"],
153
- Be8zqhl: "fa6l61x",
154
- Bij0kh0: ["f1w2396a", "f14ab3yo"]
155
- },
156
- thick: {
157
- uiicq7: "fnyfzln"
158
- },
159
- thicker: {
160
- uiicq7: "f1xdzzot"
161
- },
162
- thickest: {
163
- uiicq7: "f1auhru5"
164
- }
238
+ */ const usePieStyles = /*#__PURE__*/ (0, _react["__styles"])({
239
+ base: {
240
+ qhf8xq: "f1euv43f"
241
+ },
242
+ slices: {
243
+ B3gf25r: "f16m7w7k",
244
+ Be2twx7: [
245
+ "f1o4hhgz",
246
+ "fb4gjrz"
247
+ ],
248
+ Bvaow4n: "f1pgb5nx",
249
+ Gpecfs: [
250
+ "fugirid",
251
+ "f4sk99m"
252
+ ],
253
+ bhabj1: "fjreaf3",
254
+ B7rc6i7: [
255
+ "f1k4vw81",
256
+ "f1w1xcy7"
257
+ ],
258
+ Bwrfys5: "f1ef8vxk",
259
+ Bwuzm9m: [
260
+ "f1x2qbfv",
261
+ "f1xwf4nz"
262
+ ],
263
+ fflka: "ff6xuso",
264
+ do7bja: "fzpvk6c",
265
+ Be8zqhl: "f4onu7f",
266
+ Bij0kh0: [
267
+ "f1ydfez1",
268
+ "fjensob"
269
+ ],
270
+ Bwexnyt: "f1yv732j",
271
+ Bhe5x6o: "fchq2fj",
272
+ B3kv7bh: "ff5binh"
273
+ },
274
+ rtlSlices: {
275
+ B3gf25r: "f5vdl61",
276
+ Bvaow4n: "f1bnra92",
277
+ bhabj1: "f4ibo7t",
278
+ Bwrfys5: "f17heuis",
279
+ Bwuzm9m: [
280
+ "f64f2ud",
281
+ "f1yjglu3"
282
+ ],
283
+ Be8zqhl: "fa6l61x",
284
+ Bij0kh0: [
285
+ "f1w2396a",
286
+ "f14ab3yo"
287
+ ]
288
+ },
289
+ thick: {
290
+ uiicq7: "fnyfzln"
291
+ },
292
+ thicker: {
293
+ uiicq7: "f1xdzzot"
294
+ },
295
+ thickest: {
296
+ uiicq7: "f1auhru5"
297
+ }
165
298
  }, {
166
- 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);}"]
299
+ d: [
300
+ ".f1euv43f{position:absolute;}",
301
+ ".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%);}",
302
+ ".f1o4hhgz:nth-of-type(1):nth-last-of-type(2){left:-25%;}",
303
+ ".fb4gjrz:nth-of-type(1):nth-last-of-type(2){right:-25%;}",
304
+ ".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)));}",
305
+ ".fugirid:nth-of-type(2):nth-last-of-type(1){left:25%;}",
306
+ ".f4sk99m:nth-of-type(2):nth-last-of-type(1){right:25%;}",
307
+ ".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%);}",
308
+ ".f1k4vw81:nth-of-type(1):nth-last-of-type(3){left:-25%;}",
309
+ ".f1w1xcy7:nth-of-type(1):nth-last-of-type(3){right:-25%;}",
310
+ ".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));}",
311
+ ".f1x2qbfv:nth-of-type(2):nth-last-of-type(2){left:50%;}",
312
+ ".f1xwf4nz:nth-of-type(2):nth-last-of-type(2){right:50%;}",
313
+ ".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);}",
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){-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));}",
316
+ ".f1ydfez1:nth-of-type(3):nth-last-of-type(1){left:50%;}",
317
+ ".fjensob:nth-of-type(3):nth-last-of-type(1){right:50%;}",
318
+ ".f1yv732j:nth-of-type(3):nth-last-of-type(1){top:50%;}",
319
+ ".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);}",
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){-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)));}",
322
+ ".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%);}",
323
+ ".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)));}",
324
+ ".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);}",
325
+ ".f64f2ud:nth-of-type(2):nth-last-of-type(2){left:0;}",
326
+ ".f1yjglu3:nth-of-type(2):nth-last-of-type(2){right:0;}",
327
+ ".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);}",
328
+ ".f1w2396a:nth-of-type(3):nth-last-of-type(1){left:0;}",
329
+ ".f14ab3yo:nth-of-type(3):nth-last-of-type(1){right:0;}",
330
+ ".fnyfzln{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThick);}",
331
+ ".f1xdzzot{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThicker);}",
332
+ ".f1auhru5{--fuiAvatarGroupItem__divider--width:var(--strokeWidthThickest);}"
333
+ ]
167
334
  });
168
- /**
169
- * Apply styling to the AvatarGroupItem slots based on the state
170
- */
171
- const useAvatarGroupItemStyles_unstable = state => {
172
- const {
173
- isOverflowItem,
174
- layout,
175
- size
176
- } = state;
177
- const {
178
- dir
179
- } = react_shared_contexts_1.useFluent_unstable();
180
- const avatarStyles = useAvatarStyles();
181
- const overflowLabelStyles = useOverflowLabelStyles();
182
- const pieStyles = usePieStyles();
183
- const rootStyles = useRootStyles();
184
- const sizeStyles = Avatar_1.useSizeStyles();
185
- const groupChildClassName = exports.useGroupChildClassName(layout, size);
186
- const rootClasses = [rootStyles.base];
187
- if (!isOverflowItem) {
188
- rootClasses.push(rootStyles.nonOverflowItem);
189
- rootClasses.push(groupChildClassName);
190
- rootClasses.push(sizeStyles[size]);
191
- if (layout === 'pie') {
192
- rootClasses.push(pieStyles.base);
193
- if (size < 56) {
194
- rootClasses.push(pieStyles.thick);
195
- } else if (size < 72) {
196
- rootClasses.push(pieStyles.thicker);
197
- } else {
198
- rootClasses.push(pieStyles.thickest);
199
- }
200
- rootClasses.push(pieStyles.slices);
201
- if (dir === 'rtl') {
202
- rootClasses.push(pieStyles.rtlSlices);
203
- }
335
+ const useAvatarGroupItemStyles_unstable = (state)=>{
336
+ const { isOverflowItem , layout , size } = state;
337
+ const { dir } = (0, _reactSharedContexts.useFluent_unstable)();
338
+ const avatarStyles = useAvatarStyles();
339
+ const overflowLabelStyles = useOverflowLabelStyles();
340
+ const pieStyles = usePieStyles();
341
+ const rootStyles = useRootStyles();
342
+ const sizeStyles = (0, _avatar.useSizeStyles)();
343
+ const groupChildClassName = useGroupChildClassName(layout, size);
344
+ const rootClasses = [
345
+ rootStyles.base
346
+ ];
347
+ if (!isOverflowItem) {
348
+ rootClasses.push(rootStyles.nonOverflowItem);
349
+ rootClasses.push(groupChildClassName);
350
+ rootClasses.push(sizeStyles[size]);
351
+ if (layout === 'pie') {
352
+ rootClasses.push(pieStyles.base);
353
+ if (size < 56) {
354
+ rootClasses.push(pieStyles.thick);
355
+ } else if (size < 72) {
356
+ rootClasses.push(pieStyles.thicker);
357
+ } else {
358
+ rootClasses.push(pieStyles.thickest);
359
+ }
360
+ rootClasses.push(pieStyles.slices);
361
+ if (dir === 'rtl') {
362
+ rootClasses.push(pieStyles.rtlSlices);
363
+ }
364
+ }
365
+ } else {
366
+ rootClasses.push(rootStyles.overflowItem);
204
367
  }
205
- } else {
206
- rootClasses.push(rootStyles.overflowItem);
207
- }
208
- state.root.className = react_1.mergeClasses(exports.avatarGroupItemClassNames.root, ...rootClasses, state.root.className);
209
- state.avatar.className = react_1.mergeClasses(exports.avatarGroupItemClassNames.avatar, !isOverflowItem && avatarStyles.nonOverflowItem, layout === 'pie' && avatarStyles.pie, state.avatar.className);
210
- if (state.overflowLabel) {
211
- state.overflowLabel.className = react_1.mergeClasses(exports.avatarGroupItemClassNames.overflowLabel, overflowLabelStyles.base, state.overflowLabel.className);
212
- }
213
- return state;
214
- };
215
- exports.useAvatarGroupItemStyles_unstable = useAvatarGroupItemStyles_unstable;
216
- /**
217
- * Hook for getting the className for the children of AvatarGroup. This hook will provide the spacing and outlines
218
- * needed for each layout.
219
- */
220
- const useGroupChildClassName = (layout, size) => {
221
- const stackStyles = useStackStyles();
222
- const spreadStyles = useSpreadStyles();
223
- const layoutClasses = [];
224
- if (size) {
225
- if (layout === 'stack') {
226
- if (size < 56) {
227
- layoutClasses.push(stackStyles.thick);
228
- } else if (size < 72) {
229
- layoutClasses.push(stackStyles.thicker);
230
- } else {
231
- layoutClasses.push(stackStyles.thickest);
232
- }
233
- if (size < 24) {
234
- layoutClasses.push(stackStyles.xxs);
235
- } else if (size < 48) {
236
- layoutClasses.push(stackStyles.xs);
237
- } else if (size < 96) {
238
- layoutClasses.push(stackStyles.s);
239
- } else {
240
- layoutClasses.push(stackStyles.l);
241
- }
242
- } else if (layout === 'spread') {
243
- if (size < 20) {
244
- layoutClasses.push(spreadStyles.s);
245
- } else if (size < 32) {
246
- layoutClasses.push(spreadStyles.mNudge);
247
- } else if (size < 64) {
248
- layoutClasses.push(spreadStyles.l);
249
- } else {
250
- layoutClasses.push(spreadStyles.xl);
251
- }
368
+ state.root.className = (0, _react.mergeClasses)(avatarGroupItemClassNames.root, ...rootClasses, state.root.className);
369
+ state.avatar.className = (0, _react.mergeClasses)(avatarGroupItemClassNames.avatar, !isOverflowItem && avatarStyles.nonOverflowItem, layout === 'pie' && avatarStyles.pie, state.avatar.className);
370
+ if (state.overflowLabel) {
371
+ state.overflowLabel.className = (0, _react.mergeClasses)(avatarGroupItemClassNames.overflowLabel, overflowLabelStyles.base, state.overflowLabel.className);
252
372
  }
253
- }
254
- return react_1.mergeClasses(...layoutClasses);
373
+ return state;
255
374
  };
256
- exports.useGroupChildClassName = useGroupChildClassName;
375
+ const useGroupChildClassName = (layout, size)=>{
376
+ const stackStyles = useStackStyles();
377
+ const spreadStyles = useSpreadStyles();
378
+ const layoutClasses = [];
379
+ if (size) {
380
+ if (layout === 'stack') {
381
+ if (size < 56) {
382
+ layoutClasses.push(stackStyles.thick);
383
+ } else if (size < 72) {
384
+ layoutClasses.push(stackStyles.thicker);
385
+ } else {
386
+ layoutClasses.push(stackStyles.thickest);
387
+ }
388
+ if (size < 24) {
389
+ layoutClasses.push(stackStyles.xxs);
390
+ } else if (size < 48) {
391
+ layoutClasses.push(stackStyles.xs);
392
+ } else if (size < 96) {
393
+ layoutClasses.push(stackStyles.s);
394
+ } else {
395
+ layoutClasses.push(stackStyles.l);
396
+ }
397
+ } else if (layout === 'spread') {
398
+ if (size < 20) {
399
+ layoutClasses.push(spreadStyles.s);
400
+ } else if (size < 32) {
401
+ layoutClasses.push(spreadStyles.mNudge);
402
+ } else if (size < 64) {
403
+ layoutClasses.push(spreadStyles.l);
404
+ } else {
405
+ layoutClasses.push(spreadStyles.xl);
406
+ }
407
+ }
408
+ }
409
+ return (0, _react.mergeClasses)(...layoutClasses);
410
+ }; //# sourceMappingURL=useAvatarGroupItemStyles.js.map
411
+
257
412
  //# sourceMappingURL=useAvatarGroupItemStyles.js.map