@fluentui/react-button 9.0.0-alpha.10 → 9.0.0-alpha.100

Sign up to get free protection for your applications and to get access to all the features.
Files changed (270) hide show
  1. package/CHANGELOG.json +2418 -1
  2. package/CHANGELOG.md +920 -2
  3. package/README.md +19 -108
  4. package/dist/demo/index.html +71 -0
  5. package/dist/demo/react-dom.development.js +21413 -0
  6. package/dist/demo/react.development.js +3155 -0
  7. package/dist/react-button.d.ts +204 -82
  8. package/lib/Button.js.map +1 -1
  9. package/lib/CompoundButton.d.ts +1 -0
  10. package/lib/CompoundButton.js +2 -0
  11. package/lib/CompoundButton.js.map +1 -0
  12. package/lib/MenuButton.d.ts +1 -0
  13. package/lib/MenuButton.js +2 -0
  14. package/lib/MenuButton.js.map +1 -0
  15. package/lib/SplitButton.d.ts +1 -0
  16. package/lib/SplitButton.js +2 -0
  17. package/lib/SplitButton.js.map +1 -0
  18. package/lib/ToggleButton.d.ts +1 -0
  19. package/lib/ToggleButton.js +2 -0
  20. package/lib/ToggleButton.js.map +1 -0
  21. package/lib/common/isConformant.d.ts +4 -2
  22. package/lib/common/isConformant.js +9 -6
  23. package/lib/common/isConformant.js.map +1 -1
  24. package/lib/components/Button/Button.d.ts +4 -11
  25. package/lib/components/Button/Button.js +7 -16
  26. package/lib/components/Button/Button.js.map +1 -1
  27. package/lib/components/Button/Button.types.d.ts +57 -60
  28. package/lib/components/Button/Button.types.js +1 -0
  29. package/lib/components/Button/Button.types.js.map +1 -1
  30. package/lib/components/Button/index.d.ts +1 -2
  31. package/lib/components/Button/index.js +1 -1
  32. package/lib/components/Button/index.js.map +1 -1
  33. package/lib/components/Button/renderButton.d.ts +2 -2
  34. package/lib/components/Button/renderButton.js +9 -8
  35. package/lib/components/Button/renderButton.js.map +1 -1
  36. package/lib/components/Button/useButton.d.ts +5 -7
  37. package/lib/components/Button/useButton.js +49 -23
  38. package/lib/components/Button/useButton.js.map +1 -1
  39. package/lib/components/Button/useButtonStyles.d.ts +10 -4
  40. package/lib/components/Button/useButtonStyles.js +350 -378
  41. package/lib/components/Button/useButtonStyles.js.map +1 -1
  42. package/lib/components/CompoundButton/CompoundButton.d.ts +6 -0
  43. package/lib/components/CompoundButton/CompoundButton.js +15 -0
  44. package/lib/components/CompoundButton/CompoundButton.js.map +1 -0
  45. package/lib/components/CompoundButton/CompoundButton.types.d.ts +14 -0
  46. package/lib/components/CompoundButton/CompoundButton.types.js +2 -0
  47. package/lib/components/CompoundButton/CompoundButton.types.js.map +1 -0
  48. package/lib/components/CompoundButton/index.d.ts +5 -0
  49. package/lib/components/CompoundButton/index.js +6 -0
  50. package/lib/components/CompoundButton/index.js.map +1 -0
  51. package/lib/components/CompoundButton/renderCompoundButton.d.ts +5 -0
  52. package/lib/components/CompoundButton/renderCompoundButton.js +17 -0
  53. package/lib/components/CompoundButton/renderCompoundButton.js.map +1 -0
  54. package/lib/components/CompoundButton/useCompoundButton.d.ts +8 -0
  55. package/lib/components/CompoundButton/useCompoundButton.js +29 -0
  56. package/lib/components/CompoundButton/useCompoundButton.js.map +1 -0
  57. package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -0
  58. package/lib/components/CompoundButton/useCompoundButtonStyles.js +164 -0
  59. package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
  60. package/lib/components/MenuButton/MenuButton.d.ts +6 -0
  61. package/lib/components/MenuButton/MenuButton.js +15 -0
  62. package/lib/components/MenuButton/MenuButton.js.map +1 -0
  63. package/lib/components/MenuButton/MenuButton.types.d.ts +11 -0
  64. package/lib/components/MenuButton/MenuButton.types.js +2 -0
  65. package/lib/components/MenuButton/MenuButton.types.js.map +1 -0
  66. package/lib/components/MenuButton/index.d.ts +5 -0
  67. package/lib/components/MenuButton/index.js +6 -0
  68. package/lib/components/MenuButton/index.js.map +1 -0
  69. package/lib/components/MenuButton/renderMenuButton.d.ts +5 -0
  70. package/lib/components/MenuButton/renderMenuButton.js +17 -0
  71. package/lib/components/MenuButton/renderMenuButton.js.map +1 -0
  72. package/lib/components/MenuButton/useMenuButton.d.ts +6 -0
  73. package/lib/components/MenuButton/useMenuButton.js +32 -0
  74. package/lib/components/MenuButton/useMenuButton.js.map +1 -0
  75. package/lib/components/MenuButton/useMenuButtonStyles.d.ts +2 -0
  76. package/lib/components/MenuButton/useMenuButtonStyles.js +34 -0
  77. package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -0
  78. package/lib/components/SplitButton/SplitButton.d.ts +7 -0
  79. package/lib/components/SplitButton/SplitButton.js +16 -0
  80. package/lib/components/SplitButton/SplitButton.js.map +1 -0
  81. package/lib/components/SplitButton/SplitButton.types.d.ts +19 -0
  82. package/lib/components/SplitButton/SplitButton.types.js +2 -0
  83. package/lib/components/SplitButton/SplitButton.types.js.map +1 -0
  84. package/lib/components/SplitButton/index.d.ts +5 -0
  85. package/lib/components/SplitButton/index.js +6 -0
  86. package/lib/components/SplitButton/index.js.map +1 -0
  87. package/lib/components/SplitButton/renderSplitButton.d.ts +5 -0
  88. package/lib/components/SplitButton/renderSplitButton.js +15 -0
  89. package/lib/components/SplitButton/renderSplitButton.js.map +1 -0
  90. package/lib/components/SplitButton/useSplitButton.d.ts +8 -0
  91. package/lib/components/SplitButton/useSplitButton.js +73 -0
  92. package/lib/components/SplitButton/useSplitButton.js.map +1 -0
  93. package/lib/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
  94. package/lib/components/SplitButton/useSplitButtonStyles.js +77 -0
  95. package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -0
  96. package/lib/components/ToggleButton/ToggleButton.d.ts +6 -0
  97. package/lib/components/ToggleButton/ToggleButton.js +15 -0
  98. package/lib/components/ToggleButton/ToggleButton.js.map +1 -0
  99. package/lib/components/ToggleButton/ToggleButton.types.d.ts +19 -0
  100. package/lib/components/ToggleButton/ToggleButton.types.js +2 -0
  101. package/lib/components/ToggleButton/ToggleButton.types.js.map +1 -0
  102. package/lib/components/ToggleButton/index.d.ts +5 -0
  103. package/lib/components/ToggleButton/index.js +6 -0
  104. package/lib/components/ToggleButton/index.js.map +1 -0
  105. package/lib/components/ToggleButton/renderToggleButton.d.ts +1 -0
  106. package/lib/components/ToggleButton/renderToggleButton.js +2 -0
  107. package/lib/components/ToggleButton/renderToggleButton.js.map +1 -0
  108. package/lib/components/ToggleButton/useToggleButton.d.ts +9 -0
  109. package/lib/components/ToggleButton/useToggleButton.js +50 -0
  110. package/lib/components/ToggleButton/useToggleButton.js.map +1 -0
  111. package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
  112. package/lib/components/ToggleButton/useToggleButtonStyles.js +190 -0
  113. package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
  114. package/lib/index.d.ts +4 -0
  115. package/lib/index.js +4 -0
  116. package/lib/index.js.map +1 -1
  117. package/lib/tsdoc-metadata.json +1 -1
  118. package/lib-commonjs/Button.js +7 -2
  119. package/lib-commonjs/Button.js.map +1 -1
  120. package/lib-commonjs/CompoundButton.d.ts +1 -0
  121. package/lib-commonjs/CompoundButton.js +10 -0
  122. package/lib-commonjs/CompoundButton.js.map +1 -0
  123. package/lib-commonjs/MenuButton.d.ts +1 -0
  124. package/lib-commonjs/MenuButton.js +10 -0
  125. package/lib-commonjs/MenuButton.js.map +1 -0
  126. package/lib-commonjs/SplitButton.d.ts +1 -0
  127. package/lib-commonjs/SplitButton.js +10 -0
  128. package/lib-commonjs/SplitButton.js.map +1 -0
  129. package/lib-commonjs/ToggleButton.d.ts +1 -0
  130. package/lib-commonjs/ToggleButton.js +10 -0
  131. package/lib-commonjs/ToggleButton.js.map +1 -0
  132. package/lib-commonjs/common/isConformant.d.ts +4 -2
  133. package/lib-commonjs/common/isConformant.js +19 -8
  134. package/lib-commonjs/common/isConformant.js.map +1 -1
  135. package/lib-commonjs/components/Button/Button.d.ts +4 -11
  136. package/lib-commonjs/components/Button/Button.js +20 -20
  137. package/lib-commonjs/components/Button/Button.js.map +1 -1
  138. package/lib-commonjs/components/Button/Button.types.d.ts +57 -60
  139. package/lib-commonjs/components/Button/Button.types.js +4 -1
  140. package/lib-commonjs/components/Button/Button.types.js.map +1 -1
  141. package/lib-commonjs/components/Button/index.d.ts +1 -2
  142. package/lib-commonjs/components/Button/index.js +21 -5
  143. package/lib-commonjs/components/Button/index.js.map +1 -1
  144. package/lib-commonjs/components/Button/renderButton.d.ts +2 -2
  145. package/lib-commonjs/components/Button/renderButton.js +24 -13
  146. package/lib-commonjs/components/Button/renderButton.js.map +1 -1
  147. package/lib-commonjs/components/Button/useButton.d.ts +5 -7
  148. package/lib-commonjs/components/Button/useButton.js +59 -24
  149. package/lib-commonjs/components/Button/useButton.js.map +1 -1
  150. package/lib-commonjs/components/Button/useButtonStyles.d.ts +10 -4
  151. package/lib-commonjs/components/Button/useButtonStyles.js +360 -379
  152. package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
  153. package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +6 -0
  154. package/lib-commonjs/components/CompoundButton/CompoundButton.js +26 -0
  155. package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -0
  156. package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +14 -0
  157. package/lib-commonjs/components/CompoundButton/CompoundButton.types.js +6 -0
  158. package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -0
  159. package/lib-commonjs/components/CompoundButton/index.d.ts +5 -0
  160. package/lib-commonjs/components/CompoundButton/index.js +26 -0
  161. package/lib-commonjs/components/CompoundButton/index.js.map +1 -0
  162. package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +5 -0
  163. package/lib-commonjs/components/CompoundButton/renderCompoundButton.js +29 -0
  164. package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -0
  165. package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +8 -0
  166. package/lib-commonjs/components/CompoundButton/useCompoundButton.js +41 -0
  167. package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -0
  168. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -0
  169. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +175 -0
  170. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
  171. package/lib-commonjs/components/MenuButton/MenuButton.d.ts +6 -0
  172. package/lib-commonjs/components/MenuButton/MenuButton.js +26 -0
  173. package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -0
  174. package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +11 -0
  175. package/lib-commonjs/components/MenuButton/MenuButton.types.js +6 -0
  176. package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -0
  177. package/lib-commonjs/components/MenuButton/index.d.ts +5 -0
  178. package/lib-commonjs/components/MenuButton/index.js +26 -0
  179. package/lib-commonjs/components/MenuButton/index.js.map +1 -0
  180. package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +5 -0
  181. package/lib-commonjs/components/MenuButton/renderMenuButton.js +29 -0
  182. package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -0
  183. package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +6 -0
  184. package/lib-commonjs/components/MenuButton/useMenuButton.js +46 -0
  185. package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -0
  186. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +2 -0
  187. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +44 -0
  188. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -0
  189. package/lib-commonjs/components/SplitButton/SplitButton.d.ts +7 -0
  190. package/lib-commonjs/components/SplitButton/SplitButton.js +27 -0
  191. package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -0
  192. package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +19 -0
  193. package/lib-commonjs/components/SplitButton/SplitButton.types.js +6 -0
  194. package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -0
  195. package/lib-commonjs/components/SplitButton/index.d.ts +5 -0
  196. package/lib-commonjs/components/SplitButton/index.js +26 -0
  197. package/lib-commonjs/components/SplitButton/index.js.map +1 -0
  198. package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +5 -0
  199. package/lib-commonjs/components/SplitButton/renderSplitButton.js +27 -0
  200. package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -0
  201. package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +8 -0
  202. package/lib-commonjs/components/SplitButton/useSplitButton.js +86 -0
  203. package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -0
  204. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
  205. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +88 -0
  206. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -0
  207. package/lib-commonjs/components/ToggleButton/ToggleButton.d.ts +6 -0
  208. package/lib-commonjs/components/ToggleButton/ToggleButton.js +26 -0
  209. package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -0
  210. package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +19 -0
  211. package/lib-commonjs/components/ToggleButton/ToggleButton.types.js +6 -0
  212. package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -0
  213. package/lib-commonjs/components/ToggleButton/index.d.ts +5 -0
  214. package/lib-commonjs/components/ToggleButton/index.js +26 -0
  215. package/lib-commonjs/components/ToggleButton/index.js.map +1 -0
  216. package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +1 -0
  217. package/lib-commonjs/components/ToggleButton/renderToggleButton.js +16 -0
  218. package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +1 -0
  219. package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +9 -0
  220. package/lib-commonjs/components/ToggleButton/useToggleButton.js +63 -0
  221. package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -0
  222. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
  223. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +200 -0
  224. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
  225. package/lib-commonjs/index.d.ts +4 -0
  226. package/lib-commonjs/index.js +15 -2
  227. package/lib-commonjs/index.js.map +1 -1
  228. package/package.json +21 -14
  229. package/config/api-extractor.json +0 -3
  230. package/config/pre-copy.json +0 -9
  231. package/config/tests.js +0 -6
  232. package/etc/react-button.api.md +0 -104
  233. package/just.config.ts +0 -3
  234. package/lib/components/Button/useButtonState.d.ts +0 -6
  235. package/lib/components/Button/useButtonState.js +0 -45
  236. package/lib/components/Button/useButtonState.js.map +0 -1
  237. package/lib-amd/Button.d.ts +0 -1
  238. package/lib-amd/Button.js +0 -6
  239. package/lib-amd/Button.js.map +0 -1
  240. package/lib-amd/common/isConformant.d.ts +0 -2
  241. package/lib-amd/common/isConformant.js +0 -14
  242. package/lib-amd/common/isConformant.js.map +0 -1
  243. package/lib-amd/components/Button/Button.d.ts +0 -13
  244. package/lib-amd/components/Button/Button.js +0 -24
  245. package/lib-amd/components/Button/Button.js.map +0 -1
  246. package/lib-amd/components/Button/Button.types.d.ts +0 -65
  247. package/lib-amd/components/Button/Button.types.js +0 -5
  248. package/lib-amd/components/Button/Button.types.js.map +0 -1
  249. package/lib-amd/components/Button/index.d.ts +0 -6
  250. package/lib-amd/components/Button/index.js +0 -10
  251. package/lib-amd/components/Button/index.js.map +0 -1
  252. package/lib-amd/components/Button/renderButton.d.ts +0 -5
  253. package/lib-amd/components/Button/renderButton.js +0 -16
  254. package/lib-amd/components/Button/renderButton.js.map +0 -1
  255. package/lib-amd/components/Button/useButton.d.ts +0 -10
  256. package/lib-amd/components/Button/useButton.js +0 -28
  257. package/lib-amd/components/Button/useButton.js.map +0 -1
  258. package/lib-amd/components/Button/useButtonState.d.ts +0 -6
  259. package/lib-amd/components/Button/useButtonState.js +0 -48
  260. package/lib-amd/components/Button/useButtonState.js.map +0 -1
  261. package/lib-amd/components/Button/useButtonStyles.d.ts +0 -4
  262. package/lib-amd/components/Button/useButtonStyles.js +0 -385
  263. package/lib-amd/components/Button/useButtonStyles.js.map +0 -1
  264. package/lib-amd/index.d.ts +0 -1
  265. package/lib-amd/index.js +0 -6
  266. package/lib-amd/index.js.map +0 -1
  267. package/lib-commonjs/components/Button/useButtonState.d.ts +0 -6
  268. package/lib-commonjs/components/Button/useButtonState.js +0 -47
  269. package/lib-commonjs/components/Button/useButtonState.js.map +0 -1
  270. package/src/components/Button/Button.types.ts +0 -120
@@ -1,384 +1,365 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var react_make_styles_1 = require("@fluentui/react-make-styles");
4
- // TODO: These are named in design specs but not hoisted to global/alias yet.
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useButtonStyles = exports.buttonSpacing = void 0;
7
+
8
+ var react_make_styles_1 = /*#__PURE__*/require("@fluentui/react-make-styles");
9
+
10
+ var react_tabster_1 = /*#__PURE__*/require("@fluentui/react-tabster"); // TODO: These are named in design specs but not hoisted to global/alias yet.
5
11
  // We're tracking these here to determine how we can hoist them.
6
- var buttonSpacing = {
7
- smallest: '2px',
8
- smaller: '4px',
9
- small: '6px',
10
- medium: '8px',
11
- large: '12px',
12
- larger: '16px',
12
+
13
+
14
+ exports.buttonSpacing = {
15
+ smallest: '2px',
16
+ smaller: '4px',
17
+ small: '6px',
18
+ medium: '8px',
19
+ large: '12px',
20
+ larger: '16px'
13
21
  };
14
- // We do not want a combinatorial explosion of component variables for variants (bg, bgPrimary, etc)
15
- // We want a fixed interface of variables for a given component and to alter those between variants
16
- exports.makeButtonTokens = function (theme) { return ({
17
- base: {
18
- // TODO: these are not in the global/alias theme currently
19
- // When they are shown in the token UI, we need to make it clear there is no global/alias mapping support
20
- height: '32px',
21
- paddingX: buttonSpacing.large,
22
- paddingY: '0',
23
- minWidth: '96px',
24
- maxWidth: '280px',
25
- color: theme.alias.color.neutral.neutralForeground1,
26
- content2Color: theme.alias.color.neutral.neutralForeground2,
27
- background: theme.alias.color.neutral.neutralBackground1,
28
- backgroundPressed: theme.alias.color.neutral.neutralBackground1,
29
- borderRadius: theme.global.borderRadius.medium,
30
- borderWidth: theme.global.strokeWidth.thin,
31
- borderColor: theme.alias.color.neutral.neutralStroke1,
32
- backgroundHover: theme.alias.color.neutral.neutralBackground1Hover,
33
- borderColorHover: theme.alias.color.neutral.neutralStroke1Hover,
34
- backgroundActive: theme.alias.color.neutral.neutralBackground1Pressed,
35
- borderColorActive: theme.alias.color.neutral.neutralStroke1Pressed,
36
- fontWeight: theme.global.type.fontWeights.semibold,
37
- fontSize: theme.global.type.fontSizes.base[300],
38
- lineHeight: theme.global.type.lineHeights.base[300],
39
- iconSpacing: buttonSpacing.small,
40
- iconWidth: '20px',
41
- iconHeight: '20px',
42
- },
43
- disabled: {
44
- background: theme.alias.color.neutral.neutralBackgroundDisabled,
45
- borderColor: theme.alias.color.neutral.neutralStrokeDisabled,
46
- color: theme.alias.color.neutral.neutralForegroundDisabled,
47
- content2Color: theme.alias.color.neutral.neutralForegroundDisabled,
48
- },
49
- small: {
50
- paddingX: buttonSpacing.medium,
51
- borderRadius: theme.global.borderRadius.small,
52
- // TODO: design spec says minWidth "can be toggled off", consider prop like compact?
53
- minWidth: '64px',
54
- height: '24px',
55
- fontSize: theme.global.type.fontSizes.base[200],
56
- lineHeight: theme.global.type.fontSizes.base[200],
57
- fontWeight: theme.global.type.fontWeights.regular,
58
- },
59
- large: {
60
- paddingX: buttonSpacing.larger,
61
- height: '40px',
62
- borderRadius: theme.global.borderRadius.medium,
63
- fontSize: theme.global.type.fontSizes.base[400],
64
- // TODO: 24px is not on the global ramp of line heights
65
- // 22px = theme.global.type.lineHeights.base[400]
66
- // 28px = theme.global.type.lineHeights.base[500]
67
- lineHeight: '24px',
68
- iconWidth: '24px',
69
- iconHeight: '24px',
70
- iconSpacing: buttonSpacing.small,
71
- },
72
- // TODO: Would be ideal to automate a check to ensure when a variant is accessed, all the tokens are accessed as well.
73
- // If not, it means there is cruft in the variant tokens definition.
74
- // All tokens in a variant should be mapped to some style property.
75
- iconOnly: {
76
- paddingX: buttonSpacing.small,
77
- paddingY: buttonSpacing.small,
78
- minWidth: '32px',
79
- maxWidth: '32px',
80
- },
81
- // TODO: combinatorial "variants" is wrong, we already have iconOnly and small.
82
- // we essentially need to update component token mappings based on variant matchers.
83
- // fow the sake of progress for now, we're extending variants to have combinations.
84
- iconOnlySmall: {
85
- paddingX: buttonSpacing.smallest,
86
- paddingY: buttonSpacing.smallest,
87
- borderRadius: theme.global.borderRadius.small,
88
- minWidth: '24px',
89
- maxWidth: '24px',
90
- },
91
- iconOnlyLarge: {
92
- paddingX: buttonSpacing.small,
93
- paddingY: buttonSpacing.small,
94
- borderRadius: theme.global.borderRadius.medium,
95
- minWidth: '40px',
96
- maxWidth: '40px',
97
- },
98
- primary: {
99
- color: theme.alias.color.neutral.neutralForegroundInvertedAccessible,
100
- background: theme.alias.color.brand.brandBackground,
101
- borderColor: 'transparent',
102
- borderColorHover: 'transparent',
103
- borderColorActive: 'transparent',
104
- backgroundHover: theme.alias.color.brand.brandBackgroundHover,
105
- backgroundPressed: theme.alias.color.brand.brandBackgroundPressed,
106
- // TODO: spec calls out "shadow 4 __brand__", are we missing tokens?
107
- shadow: theme.alias.shadow.shadow4,
108
- // TODO: spec calls out "shadow 2 __darker__", are we missing tokens?
109
- shadowPressed: theme.alias.shadow.shadow2,
110
- },
111
- primaryDisabled: {
112
- background: theme.alias.color.neutral.neutralBackgroundDisabled,
113
- // borderColor: theme.alias.color.neutral.neutralStrokeDisabled,
114
- color: theme.alias.color.neutral.neutralForegroundDisabled,
115
- content2Color: theme.alias.color.neutral.neutralForegroundDisabled,
116
- shadow: 'none',
117
- shadowPressed: 'none',
118
- },
119
- }); };
120
- var useRootStyles = react_make_styles_1.makeStylesCompat([
121
- [
122
- null,
123
- function (theme) {
124
- var buttonTokens = exports.makeButtonTokens(theme);
125
- return {
126
- display: 'inline-flex',
127
- alignItems: 'center',
128
- justifyContent: 'center',
129
- // TODO: remove unsafe property: https://caniuse.com/?search=gap
130
- gap: buttonTokens.base.iconSpacing,
131
- // // TODO: 1) ask designers what our vertical align strategy is
132
- // // 2) enforce with conformance for inline elements
133
- verticalAlign: 'text-bottom',
134
- margin: 0,
135
- padding: buttonTokens.base.paddingY + " " + buttonTokens.base.paddingX,
136
- height: buttonTokens.base.height,
137
- minWidth: buttonTokens.base.minWidth,
138
- maxWidth: buttonTokens.base.maxWidth,
139
- color: buttonTokens.base.color,
140
- borderStyle: 'solid',
141
- borderRadius: buttonTokens.base.borderRadius,
142
- borderWidth: buttonTokens.base.borderWidth,
143
- borderColor: buttonTokens.base.borderColor,
144
- background: buttonTokens.base.background,
145
- outline: 'none',
146
- ':hover': {
147
- background: buttonTokens.base.backgroundHover,
148
- borderColor: buttonTokens.base.borderColorHover,
149
- cursor: 'pointer',
150
- },
151
- ':active': {
152
- background: buttonTokens.base.backgroundActive,
153
- borderColor: buttonTokens.base.borderColorActive,
154
- outline: 'none',
155
- },
156
- };
157
- },
158
- ],
159
- [
160
- function (_a) {
161
- var size = _a.size;
162
- return size === 'small';
163
- },
164
- function (theme) {
165
- var buttonTokens = exports.makeButtonTokens(theme);
166
- return {
167
- padding: buttonTokens.small.paddingX + " " + buttonTokens.small.paddingY,
168
- minWidth: buttonTokens.small.minWidth,
169
- height: buttonTokens.small.height,
170
- borderRadius: buttonTokens.small.borderRadius,
171
- };
172
- },
173
- ],
174
- [
175
- function (_a) {
176
- var size = _a.size;
177
- return size === 'large';
178
- },
179
- function (theme) {
180
- var buttonTokens = exports.makeButtonTokens(theme);
181
- return {
182
- gap: buttonTokens.large.iconSpacing,
183
- padding: buttonTokens.large.paddingX + " " + buttonTokens.large.paddingY,
184
- height: buttonTokens.large.height,
185
- borderRadius: buttonTokens.large.borderRadius,
186
- };
187
- },
188
- ],
189
- [
190
- function (_a) {
191
- var disabled = _a.disabled;
192
- return disabled;
193
- },
194
- function (theme) {
195
- var buttonTokens = exports.makeButtonTokens(theme);
196
- return {
197
- background: buttonTokens.disabled.background,
198
- borderColor: buttonTokens.disabled.borderColor,
199
- color: buttonTokens.disabled.color,
200
- ':hover': {
201
- background: buttonTokens.disabled.background,
202
- borderColor: buttonTokens.disabled.borderColor,
203
- cursor: 'default',
204
- },
205
- ':active': {
206
- background: buttonTokens.disabled.background,
207
- borderColor: buttonTokens.disabled.borderColor,
208
- },
209
- };
210
- },
211
- ],
212
- [
213
- function (_a) {
214
- var primary = _a.primary;
215
- return primary;
216
- },
217
- function (theme) {
218
- var buttonTokens = exports.makeButtonTokens(theme);
219
- return {
220
- background: buttonTokens.primary.background,
221
- color: buttonTokens.primary.color,
222
- borderColor: buttonTokens.primary.borderColor,
223
- // TODO: spec calls out "shadow 4 __darker__", are we missing tokens?
224
- boxShadow: buttonTokens.primary.shadow,
225
- ':hover': {
226
- background: buttonTokens.primary.backgroundHover,
227
- borderColor: buttonTokens.primary.borderColorHover,
228
- },
229
- ':active': {
230
- background: buttonTokens.primary.backgroundPressed,
231
- // TODO: spec calls out "shadow 2 __darker__", are we missing tokens?
232
- boxShadow: buttonTokens.primary.shadow,
233
- borderColor: buttonTokens.primary.borderColorActive,
234
- },
235
- };
236
- },
237
- ],
238
- [
239
- function (_a) {
240
- var primary = _a.primary, disabled = _a.disabled;
241
- return primary && disabled;
242
- },
243
- function (theme) {
244
- var buttonTokens = exports.makeButtonTokens(theme);
245
- return {
246
- background: buttonTokens.primaryDisabled.background,
247
- color: buttonTokens.primaryDisabled.color,
248
- boxShadow: buttonTokens.primaryDisabled.shadow,
249
- ':hover': {
250
- background: buttonTokens.primaryDisabled.background,
251
- cursor: 'default',
252
- },
253
- ':active': {
254
- boxShadow: buttonTokens.primaryDisabled.shadowPressed,
255
- },
256
- };
257
- },
258
- ],
259
- [
260
- function (_a) {
261
- var iconOnly = _a.iconOnly;
262
- return iconOnly;
263
- },
264
- function (theme) {
265
- var buttonTokens = exports.makeButtonTokens(theme);
266
- return {
267
- padding: buttonTokens.iconOnly.paddingX,
268
- minWidth: buttonTokens.iconOnly.minWidth,
269
- maxWidth: buttonTokens.iconOnly.maxWidth,
270
- };
271
- },
272
- ],
273
- [
274
- function (_a) {
275
- var iconOnly = _a.iconOnly, size = _a.size;
276
- return iconOnly && size === 'small';
277
- },
278
- function (theme) {
279
- var buttonTokens = exports.makeButtonTokens(theme);
280
- return {
281
- padding: buttonTokens.iconOnlySmall.paddingX + " " + buttonTokens.iconOnlySmall.paddingY,
282
- minWidth: buttonTokens.iconOnlySmall.minWidth,
283
- maxWidth: buttonTokens.iconOnlySmall.maxWidth,
284
- borderRadius: buttonTokens.iconOnlySmall.borderRadius,
285
- };
286
- },
287
- ],
288
- [
289
- function (_a) {
290
- var iconOnly = _a.iconOnly, size = _a.size;
291
- return iconOnly && size === 'large';
292
- },
293
- function (theme) {
294
- var buttonTokens = exports.makeButtonTokens(theme);
295
- return {
296
- padding: buttonTokens.iconOnlyLarge.paddingX + " " + buttonTokens.iconOnlyLarge.paddingY,
297
- minWidth: buttonTokens.iconOnlyLarge.minWidth,
298
- maxWidth: buttonTokens.iconOnlyLarge.maxWidth,
299
- borderRadius: buttonTokens.iconOnlyLarge.borderRadius,
300
- };
301
- },
302
- ],
303
- ]);
304
- var useChildrenStyles = react_make_styles_1.makeStylesCompat([
305
- [
306
- null,
307
- function (theme) {
308
- var buttonTokens = exports.makeButtonTokens(theme);
309
- return {
310
- textOverflow: 'ellipsis',
311
- overflow: 'hidden',
312
- whiteSpace: 'nowrap',
313
- // TODO: This is "Body, Strong (?)" token in the design spec (14px size, 20px line, semibold weight)
314
- // There are some type aliases in the figma not in our theme as well, not sure if this maps to alias or not
315
- fontWeight: buttonTokens.base.fontWeight,
316
- fontSize: buttonTokens.base.fontSize,
317
- lineHeight: buttonTokens.base.lineHeight,
318
- };
319
- },
320
- ],
321
- [
322
- function (_a) {
323
- var size = _a.size;
324
- return size === 'small';
325
- },
326
- function (theme) {
327
- var buttonTokens = exports.makeButtonTokens(theme);
328
- return {
329
- fontSize: buttonTokens.small.fontSize,
330
- fontWeight: buttonTokens.small.fontWeight,
331
- lineHeight: buttonTokens.small.lineHeight,
332
- };
333
- },
334
- ],
335
- [
336
- function (_a) {
337
- var size = _a.size;
338
- return size === 'large';
339
- },
340
- function (theme) {
341
- var buttonTokens = exports.makeButtonTokens(theme);
342
- return {
343
- fontSize: buttonTokens.large.fontSize,
344
- lineHeight: buttonTokens.large.lineHeight,
345
- };
346
- },
347
- ],
348
- ]);
349
- var useIconStyles = react_make_styles_1.makeStylesCompat([
350
- [
351
- null,
352
- function (theme) {
353
- var buttonTokens = exports.makeButtonTokens(theme);
354
- return {
355
- display: 'inline-flex',
356
- alignItems: 'center',
357
- justifyContent: 'center',
358
- height: buttonTokens.base.iconHeight,
359
- width: buttonTokens.base.iconWidth,
360
- };
361
- },
362
- ],
363
- [
364
- function (_a) {
365
- var size = _a.size;
366
- return size === 'large';
367
- },
368
- function (theme) {
369
- var buttonTokens = exports.makeButtonTokens(theme);
370
- return {
371
- width: buttonTokens.large.iconWidth,
372
- height: buttonTokens.large.iconHeight,
373
- };
374
- },
375
- ],
376
- ]);
377
- exports.useButtonStyles = function (state, selectors) {
378
- state.className = react_make_styles_1.ax(state.className, useRootStyles(selectors));
379
- state.children = state.children || { className: '' };
380
- state.icon = state.icon || { className: '' };
381
- state.children.className = react_make_styles_1.ax(state.children.className, useChildrenStyles(selectors));
382
- state.icon.className = react_make_styles_1.ax(state.icon.className, useIconStyles(selectors));
22
+
23
+ var useRootStyles = /*#__PURE__*/react_make_styles_1.__styles({
24
+ "base": {
25
+ "Bt984gj": "f122n59",
26
+ "mc9l5x": "ftuwxu6",
27
+ "Brf1p80": "f4d9j23",
28
+ "ha4doy": "fmrv4ls",
29
+ "B6of3ja": "f1hu3pq6",
30
+ "t21cq0": ["f11qmguv", "f1tyq0we"],
31
+ "jrapky": "f19f4twv",
32
+ "Frg6f3": ["f1tyq0we", "f11qmguv"],
33
+ "B2u0y6b": "f1n52uh2",
34
+ "Bpg54ce": "f1a3p1vp",
35
+ "ygn44y": "f1cmbuwj",
36
+ "Huce71": "fz5stix",
37
+ "ayd6f0": "fcm7iae",
38
+ "sj55zd": "f19n0e5",
39
+ "g2u3we": "fj3muxo",
40
+ "h3c5rm": ["f1akhkt", "f1lxtadh"],
41
+ "B9xav0g": "f1aperda",
42
+ "zhjwy3": ["f1lxtadh", "f1akhkt"],
43
+ "icvyot": "fzkkow9",
44
+ "vrafjx": ["fcdblym", "fjik90z"],
45
+ "oivjwe": "fg706s2",
46
+ "wvpqe5": ["fjik90z", "fcdblym"],
47
+ "B4j52fo": "f192inf7",
48
+ "Bekrc4i": ["f5tn483", "f1ojsxk5"],
49
+ "Bn0qgzm": "f1vxd6vx",
50
+ "ibv6hh": ["f1ojsxk5", "f5tn483"],
51
+ "Bahqtrf": "fk6fouc",
52
+ "oeaueh": "f1s6fcnf",
53
+ "v4pbla": "f56u8ty",
54
+ "Bgoe8wy": "fvcxoqz",
55
+ "Bwzppfd": ["f1ub3y4t", "f1m52nbi"],
56
+ "oetu4i": "f1xlaoq0",
57
+ "gg5e9n": ["f1m52nbi", "f1ub3y4t"],
58
+ "Bi91k9c": "fax3udt",
59
+ "eoavqd": "f8491dx",
60
+ "vv34bc": "fzgy25m",
61
+ "B6oc9vd": "fvs00aa",
62
+ "ak43y8": ["f1assf6x", "f4ruux4"],
63
+ "wmxk5l": "fumykes",
64
+ "B50zh58": ["f4ruux4", "f1assf6x"],
65
+ "lj723h": "f1r2dosr",
66
+ "zwc60e": "fb0xa7e"
67
+ },
68
+ "block": {
69
+ "B2u0y6b": "f6dzj5z",
70
+ "a9b677": "fly5x3f"
71
+ },
72
+ "outline": {
73
+ "ayd6f0": "f1gjiv6l",
74
+ "v4pbla": "f62j56f",
75
+ "vv34bc": "flt377r"
76
+ },
77
+ "primary": {
78
+ "ayd6f0": "f1tdnksq",
79
+ "g2u3we": "f1p3nwhy",
80
+ "h3c5rm": ["f11589ue", "f1pdflbu"],
81
+ "B9xav0g": "f1q5o8ev",
82
+ "zhjwy3": ["f1pdflbu", "f11589ue"],
83
+ "sj55zd": "f1phragk",
84
+ "v4pbla": "f1fitrdm",
85
+ "Bgoe8wy": "f1s2uweq",
86
+ "Bwzppfd": ["fr80ssc", "fecsdlb"],
87
+ "oetu4i": "f1ukrpxl",
88
+ "gg5e9n": ["fecsdlb", "fr80ssc"],
89
+ "Bi91k9c": "f1rq72xc",
90
+ "vv34bc": "f4ihffn",
91
+ "B6oc9vd": "ff472gp",
92
+ "ak43y8": ["f4yyc7m", "ft2aflc"],
93
+ "wmxk5l": "fggejwh",
94
+ "B50zh58": ["ft2aflc", "f4yyc7m"],
95
+ "lj723h": "f18otbis"
96
+ },
97
+ "subtle": {
98
+ "ayd6f0": "f11q0hf9",
99
+ "g2u3we": "f1p3nwhy",
100
+ "h3c5rm": ["f11589ue", "f1pdflbu"],
101
+ "B9xav0g": "f1q5o8ev",
102
+ "zhjwy3": ["f1pdflbu", "f11589ue"],
103
+ "sj55zd": "fkfq4zb",
104
+ "v4pbla": "f4wzgrt",
105
+ "Bgoe8wy": "f1s2uweq",
106
+ "Bwzppfd": ["fr80ssc", "fecsdlb"],
107
+ "oetu4i": "f1ukrpxl",
108
+ "gg5e9n": ["fecsdlb", "fr80ssc"],
109
+ "Bi91k9c": "f139oj5f",
110
+ "vv34bc": "f1be4e1d",
111
+ "B6oc9vd": "ff472gp",
112
+ "ak43y8": ["f4yyc7m", "ft2aflc"],
113
+ "wmxk5l": "fggejwh",
114
+ "B50zh58": ["ft2aflc", "f4yyc7m"],
115
+ "lj723h": "f19au66r"
116
+ },
117
+ "transparent": {
118
+ "ayd6f0": "f1gjiv6l",
119
+ "g2u3we": "f1p3nwhy",
120
+ "h3c5rm": ["f11589ue", "f1pdflbu"],
121
+ "B9xav0g": "f1q5o8ev",
122
+ "zhjwy3": ["f1pdflbu", "f11589ue"],
123
+ "sj55zd": "fkfq4zb",
124
+ "v4pbla": "f62j56f",
125
+ "Bgoe8wy": "f1s2uweq",
126
+ "Bwzppfd": ["fr80ssc", "fecsdlb"],
127
+ "oetu4i": "f1ukrpxl",
128
+ "gg5e9n": ["fecsdlb", "fr80ssc"],
129
+ "Bi91k9c": "f139oj5f",
130
+ "vv34bc": "flt377r",
131
+ "B6oc9vd": "ff472gp",
132
+ "ak43y8": ["f4yyc7m", "ft2aflc"],
133
+ "wmxk5l": "fggejwh",
134
+ "B50zh58": ["ft2aflc", "f4yyc7m"],
135
+ "lj723h": "f19au66r"
136
+ },
137
+ "circular": {
138
+ "Dimara": "f44lkw9"
139
+ },
140
+ "rounded": {},
141
+ "square": {
142
+ "Dimara": "f1fabniw"
143
+ },
144
+ "small": {
145
+ "rmohyg": "f4xv25i",
146
+ "z8tnut": "f1g0x7ka",
147
+ "z189sj": ["f19lj068", "f177v4lu"],
148
+ "Byoj8tv": "f1qch9an",
149
+ "uwmqm3": ["f177v4lu", "f19lj068"],
150
+ "Bqenvij": "frvgh55",
151
+ "Bf4jedk": "fh7ncta",
152
+ "Dimara": "fq9zq91",
153
+ "Be2twd7": "fy9rknc",
154
+ "Bhrd7zp": "figsok6",
155
+ "Bg96gwp": "fwrc4pm"
156
+ },
157
+ "medium": {
158
+ "rmohyg": "f19jf40t",
159
+ "z8tnut": "f1g0x7ka",
160
+ "z189sj": ["f11qrl6u", "fjlbh76"],
161
+ "Byoj8tv": "f1qch9an",
162
+ "uwmqm3": ["fjlbh76", "f11qrl6u"],
163
+ "Bqenvij": "f1d2rq10",
164
+ "Bf4jedk": "f14es27b",
165
+ "Dimara": "ft85np5",
166
+ "Be2twd7": "fkhj508",
167
+ "Bhrd7zp": "fl43uef",
168
+ "Bg96gwp": "f1i3iumi"
169
+ },
170
+ "large": {
171
+ "rmohyg": "f19jf40t",
172
+ "z8tnut": "f1g0x7ka",
173
+ "z189sj": ["f1gbmcue", "f1rh9g5y"],
174
+ "Byoj8tv": "f1qch9an",
175
+ "uwmqm3": ["f1rh9g5y", "f1gbmcue"],
176
+ "Bqenvij": "fbhnoac",
177
+ "Bf4jedk": "f14es27b",
178
+ "Dimara": "ft85np5",
179
+ "Be2twd7": "fod5ikn",
180
+ "Bhrd7zp": "fl43uef",
181
+ "Bg96gwp": "faaz57k"
182
+ }
183
+ }, {
184
+ "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;}", ".f4d9j23{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}", ".fmrv4ls{vertical-align:middle;}", ".f1hu3pq6{margin-top:0;}", ".f11qmguv{margin-right:0;}", ".f1tyq0we{margin-left:0;}", ".f19f4twv{margin-bottom:0;}", ".f1n52uh2{max-width:280px;}", ".f1a3p1vp{overflow:hidden;}", ".f1cmbuwj{text-overflow:ellipsis;}", ".fz5stix{white-space:nowrap;}", ".fcm7iae{background:var(--colorNeutralBackground1);}", ".f19n0e5{color:var(--colorNeutralForeground1);}", ".fj3muxo{border-top-color:var(--colorNeutralStroke1);}", ".f1akhkt{border-right-color:var(--colorNeutralStroke1);}", ".f1lxtadh{border-left-color:var(--colorNeutralStroke1);}", ".f1aperda{border-bottom-color:var(--colorNeutralStroke1);}", ".fzkkow9{border-top-style:solid;}", ".fcdblym{border-right-style:solid;}", ".fjik90z{border-left-style:solid;}", ".fg706s2{border-bottom-style:solid;}", ".f192inf7{border-top-width:var(--strokeWidthThin);}", ".f5tn483{border-right-width:var(--strokeWidthThin);}", ".f1ojsxk5{border-left-width:var(--strokeWidthThin);}", ".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}", ".fk6fouc{font-family:var(--fontFamilyBase);}", ".f1s6fcnf{outline-style:none;}", ".f6dzj5z{max-width:100%;}", ".fly5x3f{width:100%;}", ".f1gjiv6l{background:var(--colorTransparentBackground);}", ".f1tdnksq{background:var(--colorBrandBackground);}", ".f1p3nwhy{border-top-color:transparent;}", ".f11589ue{border-right-color:transparent;}", ".f1pdflbu{border-left-color:transparent;}", ".f1q5o8ev{border-bottom-color:transparent;}", ".f1phragk{color:var(--colorNeutralForegroundOnBrand);}", ".f11q0hf9{background:var(--colorSubtleBackground);}", ".fkfq4zb{color:var(--colorNeutralForeground2);}", ".f44lkw9{border-radius:var(--borderRadiusCircular);}", ".f1fabniw{border-radius:var(--borderRadiusNone);}", ".f4xv25i{gap:4px;}", ".f1g0x7ka{padding-top:0;}", ".f19lj068{padding-right:8px;}", ".f177v4lu{padding-left:8px;}", ".f1qch9an{padding-bottom:0;}", ".frvgh55{height:24px;}", ".fh7ncta{min-width:64px;}", ".fq9zq91{border-radius:var(--borderRadiusSmall);}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".figsok6{font-weight:var(--fontWeightRegular);}", ".fwrc4pm{line-height:var(--lineHeightBase200);}", ".f19jf40t{gap:6px;}", ".f11qrl6u{padding-right:12px;}", ".fjlbh76{padding-left:12px;}", ".f1d2rq10{height:32px;}", ".f14es27b{min-width:96px;}", ".ft85np5{border-radius:var(--borderRadiusMedium);}", ".fkhj508{font-size:var(--fontSizeBase300);}", ".fl43uef{font-weight:var(--fontWeightSemibold);}", ".f1i3iumi{line-height:var(--lineHeightBase300);}", ".f1gbmcue{padding-right:16px;}", ".f1rh9g5y{padding-left:16px;}", ".fbhnoac{height:40px;}", ".fod5ikn{font-size:var(--fontSizeBase400);}", ".faaz57k{line-height:var(--lineHeightBase400);}"],
185
+ "h": [".f56u8ty:hover{background: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);}", ".fax3udt:hover{color:var(--colorNeutralForeground1);}", ".f8491dx:hover{cursor:pointer;}", ".f62j56f:hover{background:var(--colorTransparentBackgroundHover);}", ".f1fitrdm:hover{background:var(--colorBrandBackgroundHover);}", ".f1s2uweq:hover{border-top-color:transparent;}", ".fr80ssc:hover{border-right-color:transparent;}", ".fecsdlb:hover{border-left-color:transparent;}", ".f1ukrpxl:hover{border-bottom-color:transparent;}", ".f1rq72xc:hover{color:var(--colorNeutralForegroundOnBrand);}", ".f4wzgrt:hover{background:var(--colorSubtleBackgroundHover);}", ".f139oj5f:hover{color:var(--colorNeutralForeground2BrandHover);}"],
186
+ "a": [".fzgy25m:active{background: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);}", ".f1r2dosr:active{color:var(--colorNeutralForeground1);}", ".fb0xa7e:active{outline-style:none;}", ".flt377r:active{background:var(--colorTransparentBackgroundPressed);}", ".f4ihffn:active{background:var(--colorBrandBackgroundPressed);}", ".ff472gp:active{border-top-color:transparent;}", ".f4yyc7m:active{border-right-color:transparent;}", ".ft2aflc:active{border-left-color:transparent;}", ".fggejwh:active{border-bottom-color:transparent;}", ".f18otbis:active{color:var(--colorNeutralForegroundOnBrand);}", ".f1be4e1d:active{background:var(--colorSubtleBackgroundPressed);}", ".f19au66r:active{color:var(--colorNeutralForeground2BrandPressed);}"]
187
+ });
188
+
189
+ var useRootDisabledStyles = /*#__PURE__*/react_make_styles_1.__styles({
190
+ "base": {
191
+ "ayd6f0": "fqst6tg",
192
+ "g2u3we": "f1jj8ep1",
193
+ "h3c5rm": ["f15xbau", "fy0fskl"],
194
+ "B9xav0g": "f4ikngz",
195
+ "zhjwy3": ["fy0fskl", "f15xbau"],
196
+ "sj55zd": "f1s2aq7o",
197
+ "Bceei9c": "fdrzuqr",
198
+ "v4pbla": "f1nil5o8",
199
+ "Bgoe8wy": "f12mpcsy",
200
+ "Bwzppfd": ["f1gwvigk", "f18rmfxp"],
201
+ "oetu4i": "f1jnshp0",
202
+ "gg5e9n": ["f18rmfxp", "f1gwvigk"],
203
+ "Bi91k9c": "fvgxktp",
204
+ "eoavqd": "fphbwmw",
205
+ "vv34bc": "fkqx3al",
206
+ "B6oc9vd": "fdi4vxw",
207
+ "ak43y8": ["f4ryxzl", "fkdgpbx"],
208
+ "wmxk5l": "fcmhn06",
209
+ "B50zh58": ["fkdgpbx", "f4ryxzl"],
210
+ "lj723h": "f19wldhg",
211
+ "Bwh3duv": "fq67hom"
212
+ },
213
+ "outline": {
214
+ "ayd6f0": "f1gjiv6l",
215
+ "v4pbla": "f62j56f",
216
+ "vv34bc": "flt377r"
217
+ },
218
+ "primary": {
219
+ "g2u3we": "f1p3nwhy",
220
+ "h3c5rm": ["f11589ue", "f1pdflbu"],
221
+ "B9xav0g": "f1q5o8ev",
222
+ "zhjwy3": ["f1pdflbu", "f11589ue"],
223
+ "Bgoe8wy": "f1s2uweq",
224
+ "Bwzppfd": ["fr80ssc", "fecsdlb"],
225
+ "oetu4i": "f1ukrpxl",
226
+ "gg5e9n": ["fecsdlb", "fr80ssc"],
227
+ "B6oc9vd": "ff472gp",
228
+ "ak43y8": ["f4yyc7m", "ft2aflc"],
229
+ "wmxk5l": "fggejwh",
230
+ "B50zh58": ["ft2aflc", "f4yyc7m"]
231
+ },
232
+ "subtle": {
233
+ "ayd6f0": "f1k2sg7s",
234
+ "g2u3we": "f1p3nwhy",
235
+ "h3c5rm": ["f11589ue", "f1pdflbu"],
236
+ "B9xav0g": "f1q5o8ev",
237
+ "zhjwy3": ["f1pdflbu", "f11589ue"],
238
+ "v4pbla": "f1vc35iv",
239
+ "Bgoe8wy": "f1s2uweq",
240
+ "Bwzppfd": ["fr80ssc", "fecsdlb"],
241
+ "oetu4i": "f1ukrpxl",
242
+ "gg5e9n": ["fecsdlb", "fr80ssc"],
243
+ "vv34bc": "f17oliv9",
244
+ "B6oc9vd": "ff472gp",
245
+ "ak43y8": ["f4yyc7m", "ft2aflc"],
246
+ "wmxk5l": "fggejwh",
247
+ "B50zh58": ["ft2aflc", "f4yyc7m"]
248
+ },
249
+ "transparent": {
250
+ "ayd6f0": "f1k2sg7s",
251
+ "g2u3we": "f1p3nwhy",
252
+ "h3c5rm": ["f11589ue", "f1pdflbu"],
253
+ "B9xav0g": "f1q5o8ev",
254
+ "zhjwy3": ["f1pdflbu", "f11589ue"],
255
+ "v4pbla": "f1vc35iv",
256
+ "Bgoe8wy": "f1s2uweq",
257
+ "Bwzppfd": ["fr80ssc", "fecsdlb"],
258
+ "oetu4i": "f1ukrpxl",
259
+ "gg5e9n": ["fecsdlb", "fr80ssc"],
260
+ "vv34bc": "f17oliv9",
261
+ "B6oc9vd": "ff472gp",
262
+ "ak43y8": ["f4yyc7m", "ft2aflc"],
263
+ "wmxk5l": "fggejwh",
264
+ "B50zh58": ["ft2aflc", "f4yyc7m"]
265
+ }
266
+ }, {
267
+ "d": [".fqst6tg{background:var(--colorNeutralBackgroundDisabled);}", ".f1jj8ep1{border-top-color:var(--colorNeutralStrokeDisabled);}", ".f15xbau{border-right-color:var(--colorNeutralStrokeDisabled);}", ".fy0fskl{border-left-color:var(--colorNeutralStrokeDisabled);}", ".f4ikngz{border-bottom-color:var(--colorNeutralStrokeDisabled);}", ".f1s2aq7o{color:var(--colorNeutralForegroundDisabled);}", ".fdrzuqr{cursor:not-allowed;}", ".f1gjiv6l{background:var(--colorTransparentBackground);}", ".f1p3nwhy{border-top-color:transparent;}", ".f11589ue{border-right-color:transparent;}", ".f1pdflbu{border-left-color:transparent;}", ".f1q5o8ev{border-bottom-color:transparent;}", ".f1k2sg7s{background:none;}"],
268
+ "h": [".f1nil5o8:hover{background:var(--colorNeutralBackgroundDisabled);}", ".f12mpcsy:hover{border-top-color:var(--colorNeutralStrokeDisabled);}", ".f1gwvigk:hover{border-right-color:var(--colorNeutralStrokeDisabled);}", ".f18rmfxp:hover{border-left-color:var(--colorNeutralStrokeDisabled);}", ".f1jnshp0:hover{border-bottom-color:var(--colorNeutralStrokeDisabled);}", ".fvgxktp:hover{color:var(--colorNeutralForegroundDisabled);}", ".fphbwmw:hover{cursor:not-allowed;}", ".f62j56f:hover{background:var(--colorTransparentBackgroundHover);}", ".f1s2uweq:hover{border-top-color:transparent;}", ".fr80ssc:hover{border-right-color:transparent;}", ".fecsdlb:hover{border-left-color:transparent;}", ".f1ukrpxl:hover{border-bottom-color:transparent;}", ".f1vc35iv:hover{background:none;}"],
269
+ "a": [".fkqx3al:active{background:var(--colorNeutralBackgroundDisabled);}", ".fdi4vxw:active{border-top-color:var(--colorNeutralStrokeDisabled);}", ".f4ryxzl:active{border-right-color:var(--colorNeutralStrokeDisabled);}", ".fkdgpbx:active{border-left-color:var(--colorNeutralStrokeDisabled);}", ".fcmhn06:active{border-bottom-color:var(--colorNeutralStrokeDisabled);}", ".f19wldhg:active{color:var(--colorNeutralForegroundDisabled);}", ".fq67hom:active{cursor:not-allowed;}", ".flt377r:active{background:var(--colorTransparentBackgroundPressed);}", ".ff472gp:active{border-top-color:transparent;}", ".f4yyc7m:active{border-right-color:transparent;}", ".ft2aflc:active{border-left-color:transparent;}", ".fggejwh:active{border-bottom-color:transparent;}", ".f17oliv9:active{background:none;}"]
270
+ });
271
+
272
+ var useRootFocusStyles = /*#__PURE__*/react_make_styles_1.__styles({
273
+ "base": {},
274
+ "circular": {},
275
+ "rounded": {},
276
+ "primary": {},
277
+ "square": {},
278
+ "small": {},
279
+ "medium": {},
280
+ "large": {}
281
+ }, {});
282
+
283
+ var useRootIconOnlyStyles = /*#__PURE__*/react_make_styles_1.__styles({
284
+ "small": {
285
+ "z8tnut": "f10ra9hq",
286
+ "z189sj": ["f8wuabp", "fycuoez"],
287
+ "Byoj8tv": "f1y2xyjm",
288
+ "uwmqm3": ["fycuoez", "f8wuabp"],
289
+ "Bf4jedk": "f107v6xj",
290
+ "B2u0y6b": "f17iyk3w"
291
+ },
292
+ "medium": {
293
+ "z8tnut": "f10ra9hq",
294
+ "z189sj": ["f8wuabp", "fycuoez"],
295
+ "Byoj8tv": "f1y2xyjm",
296
+ "uwmqm3": ["fycuoez", "f8wuabp"],
297
+ "Bf4jedk": "fwbmr0d",
298
+ "B2u0y6b": "f44c6la"
299
+ },
300
+ "large": {
301
+ "z8tnut": "f1xp5gbu",
302
+ "z189sj": ["f1sgzk6v", "f1bg5zqg"],
303
+ "Byoj8tv": "f1d7kygh",
304
+ "uwmqm3": ["f1bg5zqg", "f1sgzk6v"],
305
+ "Bf4jedk": "f12clzc2",
306
+ "B2u0y6b": "fjy1crr"
307
+ }
308
+ }, {
309
+ "d": [".f10ra9hq{padding-top:4px;}", ".f8wuabp{padding-right:4px;}", ".fycuoez{padding-left:4px;}", ".f1y2xyjm{padding-bottom:4px;}", ".f107v6xj{min-width:28px;}", ".f17iyk3w{max-width:28px;}", ".fwbmr0d{min-width:32px;}", ".f44c6la{max-width:32px;}", ".f1xp5gbu{padding-top:6px;}", ".f1sgzk6v{padding-right:6px;}", ".f1bg5zqg{padding-left:6px;}", ".f1d7kygh{padding-bottom:6px;}", ".f12clzc2{min-width:40px;}", ".fjy1crr{max-width:40px;}"]
310
+ });
311
+
312
+ var useIconStyles = /*#__PURE__*/react_make_styles_1.__styles({
313
+ "base": {
314
+ "Bt984gj": "f122n59",
315
+ "mc9l5x": "ftuwxu6",
316
+ "Brf1p80": "f4d9j23"
317
+ },
318
+ "small": {
319
+ "Be2twd7": "fe5j1ua",
320
+ "Bqenvij": "fjamq6b",
321
+ "a9b677": "f64fuq3"
322
+ },
323
+ "medium": {
324
+ "Be2twd7": "fe5j1ua",
325
+ "Bqenvij": "fjamq6b",
326
+ "a9b677": "f64fuq3"
327
+ },
328
+ "large": {
329
+ "Be2twd7": "f1rt2boy",
330
+ "Bqenvij": "frvgh55",
331
+ "a9b677": "fq4mcun"
332
+ }
333
+ }, {
334
+ "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;}", ".f4d9j23{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}", ".fe5j1ua{font-size:20px;}", ".fjamq6b{height:20px;}", ".f64fuq3{width:20px;}", ".f1rt2boy{font-size:24px;}", ".frvgh55{height:24px;}", ".fq4mcun{width:24px;}"]
335
+ });
336
+
337
+ var useButtonStyles = function (state) {
338
+ var rootStyles = useRootStyles();
339
+ var rootDisabledStyles = useRootDisabledStyles();
340
+ var rootFocusStyles = useRootFocusStyles();
341
+ var rootIconOnlyStyles = useRootIconOnlyStyles();
342
+ var iconStyles = useIconStyles();
343
+ var appearance = state.appearance,
344
+ block = state.block,
345
+ disabled = state.disabled,
346
+ disabledFocusable = state.disabledFocusable,
347
+ iconOnly = state.iconOnly,
348
+ shape = state.shape,
349
+ size = state.size;
350
+ state.root.className = react_make_styles_1.mergeClasses( // Root styles
351
+ rootStyles.base, block && rootStyles.block, appearance && rootStyles[appearance], rootStyles[size], rootStyles[shape], // Disabled styles
352
+ (disabled || disabledFocusable) && rootDisabledStyles.base, appearance && (disabled || disabledFocusable) && rootDisabledStyles[appearance], // Focus styles
353
+ rootFocusStyles.base, appearance === 'primary' && rootFocusStyles.primary, rootFocusStyles[size], rootFocusStyles[shape], // Icon-only styles
354
+ iconOnly && rootIconOnlyStyles[size], // User provided class name
355
+ state.root.className);
356
+
357
+ if (state.icon) {
358
+ state.icon.className = react_make_styles_1.mergeClasses(iconStyles.base, iconStyles[size], state.icon.className);
359
+ }
360
+
361
+ return state;
383
362
  };
363
+
364
+ exports.useButtonStyles = useButtonStyles;
384
365
  //# sourceMappingURL=useButtonStyles.js.map