@conveyorhq/arrow-ds 2.0.0-beta.5 → 2.0.0-beta.9

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 (617) hide show
  1. package/package.json +31 -23
  2. package/public/components/Accordion/Accordion.d.ts +29 -17
  3. package/public/components/Accordion/Accordion.js +73 -53
  4. package/public/components/Accordion/context.d.ts +12 -0
  5. package/public/components/Accordion/context.js +30 -0
  6. package/public/components/Accordion/index.d.ts +1 -0
  7. package/public/components/Accordion/index.js +1 -0
  8. package/public/components/Accordion/types.d.ts +17 -0
  9. package/public/components/Accordion/types.js +2 -0
  10. package/public/components/Avatar/Avatar.d.ts +1 -1
  11. package/public/components/Avatar/Avatar.js +20 -19
  12. package/public/components/Avatar/AvatarGroup.d.ts +1 -1
  13. package/public/components/Avatar/AvatarGroup.js +11 -1
  14. package/public/components/Button/Button.d.ts +3 -2
  15. package/public/components/Button/Button.js +5 -2
  16. package/public/components/CloseButton/CloseButton.d.ts +1 -2
  17. package/public/components/ConveyorLogo/ConveyorLogo.js +7 -7
  18. package/public/components/Divider/Divider.d.ts +1 -9
  19. package/public/components/Divider/Divider.js +13 -24
  20. package/public/components/Drawer/Drawer.js +4 -2
  21. package/public/components/Flex/Flex.js +3 -4
  22. package/public/components/Frame/Frame.d.ts +1 -1
  23. package/public/components/Grid/Grid.d.ts +2 -2
  24. package/public/components/Grid/Grid.js +9 -3
  25. package/public/components/Icon/Icon.d.ts +15 -0
  26. package/public/components/Icon/Icon.js +34 -2
  27. package/public/components/Icon/svg/ArrowToBottom.d.ts +2 -0
  28. package/public/components/Icon/svg/ArrowToBottom.js +14 -0
  29. package/public/components/Icon/svg/CommentAltCheck.d.ts +2 -0
  30. package/public/components/Icon/svg/CommentAltCheck.js +13 -0
  31. package/public/components/Icon/svg/index.d.ts +2 -0
  32. package/public/components/Icon/svg/index.js +2 -0
  33. package/public/components/Input/Input.d.ts +3 -2
  34. package/public/components/Input/Input.js +7 -6
  35. package/public/components/Loading/Loading.d.ts +3 -2
  36. package/public/components/Loading/Loading.js +4 -7
  37. package/public/components/Markdown/Markdown.d.ts +1 -1
  38. package/public/components/Markdown/Markdown.js +3 -3
  39. package/public/components/MarkdownEditor/MarkdownEditor.js +1 -2
  40. package/public/components/MarkdownEditor/MarkdownHelp.js +4 -7
  41. package/public/components/Modal/Modal.d.ts +6 -0
  42. package/public/components/Modal/Modal.js +30 -20
  43. package/public/components/Modal/context.d.ts +6 -0
  44. package/public/components/Modal/context.js +15 -0
  45. package/public/components/Modal/index.d.ts +1 -0
  46. package/public/components/Modal/index.js +1 -0
  47. package/public/components/OptionButton/OptionButton.d.ts +28 -1
  48. package/public/components/OptionButton/OptionButton.js +65 -13
  49. package/public/components/OptionButton/context.d.ts +11 -0
  50. package/public/components/OptionButton/context.js +16 -0
  51. package/public/components/Overlay/Overlay.js +2 -2
  52. package/public/components/Paragraph/Paragraph.js +3 -7
  53. package/public/components/Reference/Reference.d.ts +2 -2
  54. package/public/components/Select/Select.d.ts +1 -0
  55. package/public/components/Select/Select.js +15 -10
  56. package/public/components/Select/SelectPopover.js +6 -6
  57. package/public/components/Select/index.d.ts +2 -0
  58. package/public/components/Select/index.js +3 -0
  59. package/public/components/Select/theme.js +22 -22
  60. package/public/components/Snackbar/Snackbar.d.ts +14 -22
  61. package/public/components/Snackbar/Snackbar.js +28 -85
  62. package/public/components/Snackbar/SnackbarProvider.d.ts +2 -0
  63. package/public/components/Snackbar/SnackbarProvider.js +21 -0
  64. package/public/components/Snackbar/constants.d.ts +2 -0
  65. package/public/components/Snackbar/constants.js +5 -0
  66. package/public/components/Snackbar/context.d.ts +4 -0
  67. package/public/components/Snackbar/context.js +17 -0
  68. package/public/components/Snackbar/helpers.d.ts +3 -0
  69. package/public/components/Snackbar/helpers.js +31 -0
  70. package/public/components/Snackbar/hooks.d.ts +2 -0
  71. package/public/components/Snackbar/hooks.js +47 -0
  72. package/public/components/Snackbar/index.d.ts +6 -0
  73. package/public/components/Snackbar/index.js +6 -0
  74. package/public/components/Snackbar/types.d.ts +43 -0
  75. package/public/components/Snackbar/types.js +2 -0
  76. package/public/components/SpeechBubble/SpeechBubble.d.ts +1 -0
  77. package/public/components/SpeechBubble/SpeechBubble.js +9 -2
  78. package/public/components/Svg/Svg.d.ts +3 -3
  79. package/public/components/Svg/Svg.js +1 -2
  80. package/public/components/Table/Table.d.ts +5 -2
  81. package/public/components/Table/Table.js +11 -4
  82. package/public/components/Table/TableCell.d.ts +1 -0
  83. package/public/components/Table/TableCell.js +4 -2
  84. package/public/components/Table/TableHeaderCell.d.ts +2 -1
  85. package/public/components/Table/TableHeaderCell.js +24 -7
  86. package/public/components/Table/index.d.ts +3 -0
  87. package/public/components/Tag/Tag.d.ts +2 -2
  88. package/public/components/Toast/Toast.d.ts +3 -3
  89. package/public/components/Toast/Toast.js +6 -2
  90. package/public/components/Tooltip/Tooltip.js +24 -31
  91. package/public/components/VisuallyHidden/VisuallyHidden.d.ts +2 -1
  92. package/public/components/VisuallyHidden/VisuallyHidden.js +3 -5
  93. package/public/css/styles.css +4542 -33010
  94. package/public/css/styles.min.css +1 -1
  95. package/public/css/styles.min.css.map +1 -1
  96. package/public/hooks/index.d.ts +3 -0
  97. package/public/hooks/index.js +7 -1
  98. package/public/hooks/useMatchMedia.d.ts +1 -0
  99. package/public/hooks/useMatchMedia.js +27 -0
  100. package/public/hooks/usePrefersReducedMotion.d.ts +1 -0
  101. package/public/hooks/usePrefersReducedMotion.js +9 -0
  102. package/public/hooks/useScreenOrientation.d.ts +1 -0
  103. package/public/hooks/useScreenOrientation.js +24 -0
  104. package/public/index.d.ts +0 -15
  105. package/public/index.js +0 -15
  106. package/public/src/style-dictionary/dist/tokens.css +378 -0
  107. package/public/src/style-dictionary/dist/tokens.d.ts +428 -0
  108. package/public/src/style-dictionary/dist/tokens.js +428 -0
  109. package/public/src/style-dictionary/dist/tokens.module.js +428 -0
  110. package/public/src/style-dictionary/tailwind.config.js +87 -0
  111. package/public/storybook-components/ComponentHeading.js +3 -5
  112. package/public/storybook-components/ComponentStatus.d.ts +1 -0
  113. package/public/storybook-components/ComponentStatus.js +4 -0
  114. package/public/storybook-components/EnumTable.js +2 -1
  115. package/public/storybook-components/Story.d.ts +2 -1
  116. package/public/storybook-components/Story.js +4 -1
  117. package/public/storybook-components/index.d.ts +1 -1
  118. package/public/storybook-components/index.js +1 -1
  119. package/public/style-dictionary/dist/tokens.d.ts +433 -0
  120. package/public/style-dictionary/dist/tokens.js +426 -0
  121. package/public/style-dictionary/dist/tokens.module.d.ts +431 -0
  122. package/public/style-dictionary/dist/tokens.module.js +424 -0
  123. package/public/style-dictionary/src/border-radius.d.ts +31 -0
  124. package/public/style-dictionary/src/border-radius.js +12 -0
  125. package/public/style-dictionary/src/border-width.d.ts +21 -0
  126. package/public/style-dictionary/src/border-width.js +11 -0
  127. package/public/style-dictionary/src/color.d.ts +249 -0
  128. package/public/style-dictionary/src/color.js +99 -0
  129. package/public/style-dictionary/src/font-size.d.ts +45 -0
  130. package/public/style-dictionary/src/font-size.js +16 -0
  131. package/public/style-dictionary/src/font-weight.d.ts +13 -0
  132. package/public/style-dictionary/src/font-weight.js +8 -0
  133. package/public/style-dictionary/src/height.d.ts +215 -0
  134. package/public/style-dictionary/src/height.js +13 -0
  135. package/public/style-dictionary/src/leading.d.ts +17 -0
  136. package/public/style-dictionary/src/leading.js +9 -0
  137. package/public/style-dictionary/src/screen-width.d.ts +17 -0
  138. package/public/style-dictionary/src/screen-width.js +9 -0
  139. package/public/style-dictionary/src/shadow.d.ts +63 -0
  140. package/public/style-dictionary/src/shadow.js +20 -0
  141. package/public/style-dictionary/src/spacing.d.ts +197 -0
  142. package/public/style-dictionary/src/spacing.js +70 -0
  143. package/public/style-dictionary/src/tracking.d.ts +13 -0
  144. package/public/style-dictionary/src/tracking.js +8 -0
  145. package/public/style-dictionary/src/type.d.ts +13 -0
  146. package/public/style-dictionary/src/type.js +35 -0
  147. package/public/style-dictionary/src/width.d.ts +287 -0
  148. package/public/style-dictionary/src/width.js +32 -0
  149. package/public/style-dictionary/src/z-index.d.ts +53 -0
  150. package/public/style-dictionary/src/z-index.js +22 -0
  151. package/public/style-dictionary/tailwind.config.d.ts +392 -0
  152. package/public/style-dictionary/tailwind.config.js +66 -0
  153. package/public/tokens/box-shadow.d.ts +1 -0
  154. package/public/tokens/box-shadow.js +1 -0
  155. package/public/tokens/font-family.js +1 -1
  156. package/public/tokens/height.d.ts +65 -43
  157. package/public/tokens/height.js +3 -44
  158. package/public/tokens/index.d.ts +526 -173
  159. package/public/tokens/index.js +1 -1
  160. package/public/tokens/margin.d.ts +129 -47
  161. package/public/tokens/margin.js +3 -47
  162. package/public/tokens/padding.d.ts +65 -24
  163. package/public/tokens/padding.js +2 -24
  164. package/public/tokens/sizing-scale.d.ts +133 -0
  165. package/public/tokens/sizing-scale.js +136 -0
  166. package/public/tokens/width.d.ts +197 -63
  167. package/public/tokens/width.js +6 -63
  168. package/public/types/index.d.ts +14 -6
  169. package/public/types/index.js +3 -10
  170. package/public/utilities/index.d.ts +1 -0
  171. package/public/utilities/index.js +3 -1
  172. package/public/utilities/mergeEventHandlers.d.ts +3 -0
  173. package/public/utilities/mergeEventHandlers.js +13 -0
  174. package/src/components/Accordion/Accordion.story.mdx +232 -22
  175. package/src/components/Accordion/Accordion.tsx +237 -114
  176. package/src/components/Accordion/context.ts +60 -0
  177. package/src/components/Accordion/index.css +0 -5
  178. package/src/components/Accordion/index.ts +1 -0
  179. package/src/components/Accordion/types.ts +55 -0
  180. package/src/components/Avatar/Avatar.story.mdx +60 -0
  181. package/src/components/Avatar/Avatar.tsx +20 -19
  182. package/src/components/Avatar/AvatarGroup.tsx +11 -9
  183. package/src/components/Avatar/index.css +8 -0
  184. package/src/components/Button/Button.story.mdx +116 -1
  185. package/src/components/Button/Button.tsx +13 -7
  186. package/src/components/Button/index.css +12 -1
  187. package/src/components/Button/product.css +12 -0
  188. package/src/components/Card/Card.story.mdx +56 -73
  189. package/src/components/CloseButton/CloseButton.tsx +1 -1
  190. package/src/components/ConveyorLogo/ConveyorLogo.tsx +7 -6
  191. package/src/components/Divider/Divider.tsx +26 -40
  192. package/src/components/Divider/index.css +16 -0
  193. package/src/components/Drawer/Drawer.story.mdx +68 -70
  194. package/src/components/Drawer/Drawer.tsx +9 -8
  195. package/src/components/Drawer/index.css +26 -1
  196. package/src/components/Flex/Flex.story.mdx +130 -0
  197. package/src/components/Flex/Flex.tsx +7 -6
  198. package/src/components/Flex/index.css +3 -0
  199. package/src/components/Frame/Frame.story.mdx +146 -6
  200. package/src/components/Frame/Frame.tsx +1 -1
  201. package/src/components/Frame/index.css +8 -13
  202. package/src/components/Grid/Grid.story.mdx +205 -3
  203. package/src/components/Grid/Grid.tsx +44 -5
  204. package/src/components/Grid/index.css +3 -0
  205. package/src/components/Icon/Icon.tsx +63 -5
  206. package/src/components/Icon/svg/ArrowToBottom.tsx +17 -0
  207. package/src/components/Icon/svg/CommentAltCheck.tsx +13 -0
  208. package/src/components/Icon/svg/index.ts +2 -0
  209. package/src/components/Input/Input.story.mdx +199 -13
  210. package/src/components/Input/Input.tsx +39 -6
  211. package/src/components/Input/brand.css +7 -7
  212. package/src/components/Input/index.css +30 -0
  213. package/src/components/Input/product.css +12 -48
  214. package/src/components/Loading/Loading.story.mdx +16 -9
  215. package/src/components/Loading/Loading.tsx +17 -8
  216. package/src/components/Loading/index.css +1 -67
  217. package/src/components/Markdown/Markdown.story.mdx +67 -0
  218. package/src/components/Markdown/Markdown.tsx +3 -2
  219. package/src/components/MarkdownEditor/MarkdownEditor.tsx +2 -3
  220. package/src/components/MarkdownEditor/MarkdownHelp.tsx +7 -10
  221. package/src/components/MarkdownEditor/index.css +5 -1
  222. package/src/components/Modal/Modal.story.mdx +26 -0
  223. package/src/components/Modal/Modal.tsx +61 -43
  224. package/src/components/Modal/context.ts +20 -0
  225. package/src/components/Modal/index.css +8 -3
  226. package/src/components/Modal/index.ts +1 -0
  227. package/src/components/OptionButton/OptionButton.story.mdx +175 -21
  228. package/src/components/OptionButton/OptionButton.tsx +215 -26
  229. package/src/components/OptionButton/context.ts +22 -0
  230. package/src/components/OptionButton/index.css +14 -2
  231. package/src/components/Overlay/Overlay.story.mdx +26 -0
  232. package/src/components/Overlay/Overlay.tsx +2 -3
  233. package/src/components/Overlay/index.css +1 -0
  234. package/src/components/Paragraph/Paragraph.story.mdx +16 -2
  235. package/src/components/Paragraph/Paragraph.tsx +5 -13
  236. package/src/components/Paragraph/index.css +6 -0
  237. package/src/components/Popover/index.css +5 -6
  238. package/src/components/Reference/Reference.tsx +2 -2
  239. package/src/components/Select/Select.story.mdx +23 -10
  240. package/src/components/Select/Select.tsx +35 -10
  241. package/src/components/Select/SelectPopover.tsx +6 -6
  242. package/src/components/Select/index.ts +14 -0
  243. package/src/components/Select/theme.ts +22 -22
  244. package/src/components/Snackbar/Snackbar.story.mdx +96 -9
  245. package/src/components/Snackbar/Snackbar.tsx +56 -145
  246. package/src/components/Snackbar/SnackbarProvider.tsx +31 -0
  247. package/src/components/Snackbar/constants.ts +2 -0
  248. package/src/components/Snackbar/context.ts +20 -0
  249. package/src/components/Snackbar/helpers.tsx +52 -0
  250. package/src/components/Snackbar/hooks.ts +57 -0
  251. package/src/components/Snackbar/index.ts +6 -0
  252. package/src/components/Snackbar/types.ts +180 -0
  253. package/src/components/SpeechBubble/SpeechBubble.story.mdx +76 -0
  254. package/src/components/SpeechBubble/SpeechBubble.tsx +22 -1
  255. package/src/components/SpeechBubble/index.css +7 -4
  256. package/src/components/Svg/Svg.story.mdx +36 -0
  257. package/src/components/Svg/Svg.tsx +6 -4
  258. package/src/components/Table/Table.story.mdx +243 -0
  259. package/src/components/Table/Table.tsx +36 -1
  260. package/src/components/Table/TableCell.tsx +24 -1
  261. package/src/components/Table/TableHeaderCell.tsx +64 -11
  262. package/src/components/Table/index.css +138 -10
  263. package/src/components/Table/index.ts +3 -0
  264. package/src/components/Tag/Tag.tsx +2 -2
  265. package/src/components/Text/Text.story.mdx +34 -0
  266. package/src/components/Toast/Toast.story.mdx +1 -1
  267. package/src/components/Toast/Toast.tsx +14 -10
  268. package/src/components/Toast/index.css +4 -2
  269. package/src/components/Toggle/index.css +2 -3
  270. package/src/components/Tooltip/Tooltip.story.mdx +71 -1
  271. package/src/components/Tooltip/Tooltip.tsx +40 -35
  272. package/src/components/Tooltip/index.css +31 -0
  273. package/src/components/VisuallyHidden/VisuallyHidden.story.mdx +54 -0
  274. package/src/components/VisuallyHidden/VisuallyHidden.tsx +10 -5
  275. package/src/components/VisuallyHidden/index.css +3 -0
  276. package/src/css/base.css +6 -561
  277. package/src/css/components.css +6 -9
  278. package/src/css/fonts.css +13 -10
  279. package/src/css/styles.css +0 -1
  280. package/src/css/utilities/animations.css +13 -0
  281. package/src/docs/Colors.story.mdx +13 -13
  282. package/src/docs/Spacing.story.mdx +4 -20
  283. package/src/docs/Tokens.story.mdx +230 -0
  284. package/src/docs/Typography.story.mdx +27 -101
  285. package/src/docs/hooks/useDisclosureHook.story.mdx +58 -0
  286. package/src/docs/hooks/useKeyPressHook.story.mdx +54 -0
  287. package/src/docs/hooks/useMatchMediaHook.story.mdx +42 -0
  288. package/src/docs/hooks/useOutsideClickHook.story.mdx +56 -0
  289. package/src/docs/hooks/usePrefersReducedMotion.story.mdx +61 -0
  290. package/src/docs/hooks/useScreenOrientationHook.story.mdx +56 -0
  291. package/src/docs/hooks/useStepHook.story.mdx +102 -0
  292. package/src/hooks/index.ts +3 -0
  293. package/src/hooks/useMatchMedia.ts +40 -0
  294. package/src/hooks/usePrefersReducedMotion.ts +9 -0
  295. package/src/hooks/useScreenOrientation.ts +27 -0
  296. package/src/index.ts +0 -15
  297. package/src/storybook-components/ComponentHeading.tsx +4 -19
  298. package/src/storybook-components/ComponentStatus.tsx +4 -0
  299. package/src/storybook-components/EnumTable.tsx +3 -2
  300. package/src/storybook-components/Story.tsx +13 -1
  301. package/src/storybook-components/index.tsx +1 -1
  302. package/src/style-dictionary/dist/tokens.css +378 -0
  303. package/src/style-dictionary/dist/tokens.d.ts +428 -0
  304. package/src/style-dictionary/dist/tokens.js +428 -0
  305. package/src/style-dictionary/dist/tokens.module.js +428 -0
  306. package/src/style-dictionary/src/border-radius.js +11 -0
  307. package/src/style-dictionary/src/border-width.js +10 -0
  308. package/src/style-dictionary/src/color.js +98 -0
  309. package/src/style-dictionary/src/font-size.js +15 -0
  310. package/src/style-dictionary/src/font-weight.js +7 -0
  311. package/src/style-dictionary/src/height.js +13 -0
  312. package/src/style-dictionary/src/leading.js +8 -0
  313. package/src/style-dictionary/src/screen-width.js +8 -0
  314. package/src/style-dictionary/src/shadow.js +19 -0
  315. package/src/style-dictionary/src/spacing.js +69 -0
  316. package/src/style-dictionary/src/tracking.js +7 -0
  317. package/src/style-dictionary/src/type.js +34 -0
  318. package/src/style-dictionary/src/width.js +32 -0
  319. package/src/style-dictionary/src/z-index.js +21 -0
  320. package/src/style-dictionary/tailwind.config.js +87 -0
  321. package/src/tokens/borders.ts +6 -0
  322. package/src/tokens/box-shadow.ts +4 -0
  323. package/src/tokens/colors.ts +6 -0
  324. package/src/tokens/font-family.ts +4 -1
  325. package/src/tokens/font-size.ts +3 -0
  326. package/src/tokens/font-weight.ts +3 -0
  327. package/src/tokens/height.ts +6 -44
  328. package/src/tokens/index.ts +5 -4
  329. package/src/tokens/letter-spacing.ts +3 -0
  330. package/src/tokens/line-height.ts +3 -0
  331. package/src/tokens/margin.ts +7 -47
  332. package/src/tokens/padding.ts +6 -24
  333. package/src/tokens/screens.ts +3 -0
  334. package/src/tokens/sizing-scale.ts +140 -0
  335. package/src/tokens/width.ts +16 -63
  336. package/src/tokens/will-change.ts +3 -0
  337. package/src/tokens/z-index.ts +3 -0
  338. package/src/types/index.ts +37 -10
  339. package/src/utilities/index.ts +1 -0
  340. package/src/utilities/mergeEventHandlers.ts +20 -0
  341. package/public/components/Absolute/Absolute.d.ts +0 -2
  342. package/public/components/Absolute/Absolute.js +0 -14
  343. package/public/components/Absolute/index.d.ts +0 -1
  344. package/public/components/Absolute/index.js +0 -5
  345. package/public/components/Appbar/Appbar.d.ts +0 -60
  346. package/public/components/Appbar/Appbar.js +0 -42
  347. package/public/components/Appbar/AppbarClaimProfileButton.d.ts +0 -2
  348. package/public/components/Appbar/AppbarClaimProfileButton.js +0 -10
  349. package/public/components/Appbar/AppbarDropdownIcon.d.ts +0 -1
  350. package/public/components/Appbar/AppbarDropdownIcon.js +0 -10
  351. package/public/components/Appbar/AppbarLogInButton.d.ts +0 -2
  352. package/public/components/Appbar/AppbarLogInButton.js +0 -26
  353. package/public/components/Appbar/AppbarLogo.d.ts +0 -2
  354. package/public/components/Appbar/AppbarLogo.js +0 -19
  355. package/public/components/Appbar/AppbarOrganization.d.ts +0 -17
  356. package/public/components/Appbar/AppbarOrganization.js +0 -35
  357. package/public/components/Appbar/AppbarTabMarker.d.ts +0 -1
  358. package/public/components/Appbar/AppbarTabMarker.js +0 -11
  359. package/public/components/Appbar/AppbarTabs.d.ts +0 -10
  360. package/public/components/Appbar/AppbarTabs.js +0 -42
  361. package/public/components/Appbar/AppbarUser.d.ts +0 -27
  362. package/public/components/Appbar/AppbarUser.js +0 -76
  363. package/public/components/Appbar/config.d.ts +0 -7
  364. package/public/components/Appbar/config.js +0 -13
  365. package/public/components/Appbar/context.d.ts +0 -10
  366. package/public/components/Appbar/context.js +0 -16
  367. package/public/components/Appbar/index.d.ts +0 -1
  368. package/public/components/Appbar/index.js +0 -13
  369. package/public/components/ArrowButton/ArrowButton.d.ts +0 -9
  370. package/public/components/ArrowButton/ArrowButton.js +0 -22
  371. package/public/components/ArrowButton/index.d.ts +0 -1
  372. package/public/components/ArrowButton/index.js +0 -13
  373. package/public/components/ArrowLink/ArrowLink.d.ts +0 -9
  374. package/public/components/ArrowLink/ArrowLink.js +0 -21
  375. package/public/components/ArrowLink/index.d.ts +0 -1
  376. package/public/components/ArrowLink/index.js +0 -13
  377. package/public/components/Aside/Aside.d.ts +0 -14
  378. package/public/components/Aside/Aside.js +0 -28
  379. package/public/components/Aside/index.d.ts +0 -1
  380. package/public/components/Aside/index.js +0 -13
  381. package/public/components/Fixed/Fixed.d.ts +0 -2
  382. package/public/components/Fixed/Fixed.js +0 -14
  383. package/public/components/Fixed/Fixed.story.d.ts +0 -1
  384. package/public/components/Fixed/Fixed.story.js +0 -12
  385. package/public/components/Fixed/index.d.ts +0 -1
  386. package/public/components/Fixed/index.js +0 -5
  387. package/public/components/Flex/Flex.story.d.ts +0 -1
  388. package/public/components/Flex/Flex.story.js +0 -12
  389. package/public/components/IntegrationLogo/IntegrationLogo.d.ts +0 -10
  390. package/public/components/IntegrationLogo/IntegrationLogo.js +0 -33
  391. package/public/components/IntegrationLogo/IntegrationLogoSvg.d.ts +0 -9
  392. package/public/components/IntegrationLogo/IntegrationLogoSvg.js +0 -52
  393. package/public/components/IntegrationLogo/index.d.ts +0 -1
  394. package/public/components/IntegrationLogo/index.js +0 -13
  395. package/public/components/IntegrationLogo/svg/addigy.d.ts +0 -2
  396. package/public/components/IntegrationLogo/svg/addigy.js +0 -17
  397. package/public/components/IntegrationLogo/svg/aws.d.ts +0 -2
  398. package/public/components/IntegrationLogo/svg/aws.js +0 -22
  399. package/public/components/IntegrationLogo/svg/bamboohr.d.ts +0 -2
  400. package/public/components/IntegrationLogo/svg/bamboohr.js +0 -18
  401. package/public/components/IntegrationLogo/svg/bitbucket.d.ts +0 -2
  402. package/public/components/IntegrationLogo/svg/bitbucket.js +0 -18
  403. package/public/components/IntegrationLogo/svg/conveyor.d.ts +0 -2
  404. package/public/components/IntegrationLogo/svg/conveyor.js +0 -20
  405. package/public/components/IntegrationLogo/svg/default.d.ts +0 -2
  406. package/public/components/IntegrationLogo/svg/default.js +0 -13
  407. package/public/components/IntegrationLogo/svg/deploy.d.ts +0 -2
  408. package/public/components/IntegrationLogo/svg/deploy.js +0 -17
  409. package/public/components/IntegrationLogo/svg/events-api.d.ts +0 -2
  410. package/public/components/IntegrationLogo/svg/events-api.js +0 -26
  411. package/public/components/IntegrationLogo/svg/gcp.d.ts +0 -3
  412. package/public/components/IntegrationLogo/svg/gcp.js +0 -15
  413. package/public/components/IntegrationLogo/svg/github.d.ts +0 -3
  414. package/public/components/IntegrationLogo/svg/github.js +0 -12
  415. package/public/components/IntegrationLogo/svg/gitlab.d.ts +0 -2
  416. package/public/components/IntegrationLogo/svg/gitlab.js +0 -19
  417. package/public/components/IntegrationLogo/svg/gsuite.d.ts +0 -2
  418. package/public/components/IntegrationLogo/svg/gsuite.js +0 -15
  419. package/public/components/IntegrationLogo/svg/index.d.ts +0 -21
  420. package/public/components/IntegrationLogo/svg/index.js +0 -54
  421. package/public/components/IntegrationLogo/svg/jamf.d.ts +0 -2
  422. package/public/components/IntegrationLogo/svg/jamf.js +0 -20
  423. package/public/components/IntegrationLogo/svg/jira.d.ts +0 -2
  424. package/public/components/IntegrationLogo/svg/jira.js +0 -21
  425. package/public/components/IntegrationLogo/svg/jumpcloud.d.ts +0 -2
  426. package/public/components/IntegrationLogo/svg/jumpcloud.js +0 -28
  427. package/public/components/IntegrationLogo/svg/okta.d.ts +0 -2
  428. package/public/components/IntegrationLogo/svg/okta.js +0 -16
  429. package/public/components/IntegrationLogo/svg/onelogin.d.ts +0 -2
  430. package/public/components/IntegrationLogo/svg/onelogin.js +0 -18
  431. package/public/components/IntegrationLogo/svg/salesforce.d.ts +0 -2
  432. package/public/components/IntegrationLogo/svg/salesforce.js +0 -20
  433. package/public/components/IntegrationLogo/svg/slack.d.ts +0 -2
  434. package/public/components/IntegrationLogo/svg/slack.js +0 -19
  435. package/public/components/IntegrationLogo/svg/wrapper.d.ts +0 -11
  436. package/public/components/IntegrationLogo/svg/wrapper.js +0 -13
  437. package/public/components/IntegrationLogo/svg/zoom.d.ts +0 -2
  438. package/public/components/IntegrationLogo/svg/zoom.js +0 -23
  439. package/public/components/Meta/Meta.d.ts +0 -6
  440. package/public/components/Meta/Meta.js +0 -21
  441. package/public/components/Meta/Meta.story.d.ts +0 -1
  442. package/public/components/Meta/Meta.story.js +0 -39
  443. package/public/components/Meta/index.d.ts +0 -1
  444. package/public/components/Meta/index.js +0 -5
  445. package/public/components/Overlay/Overlay.story.d.ts +0 -1
  446. package/public/components/Overlay/Overlay.story.js +0 -12
  447. package/public/components/PropertyDiff/PropertyDiff.d.ts +0 -7
  448. package/public/components/PropertyDiff/PropertyDiff.js +0 -22
  449. package/public/components/PropertyDiff/index.d.ts +0 -1
  450. package/public/components/PropertyDiff/index.js +0 -13
  451. package/public/components/Relative/Relative.d.ts +0 -2
  452. package/public/components/Relative/Relative.js +0 -14
  453. package/public/components/Relative/Relative.story.d.ts +0 -1
  454. package/public/components/Relative/Relative.story.js +0 -12
  455. package/public/components/Relative/index.d.ts +0 -1
  456. package/public/components/Relative/index.js +0 -5
  457. package/public/components/SpeechBubble/SpeechBubble.story.d.ts +0 -1
  458. package/public/components/SpeechBubble/SpeechBubble.story.js +0 -19
  459. package/public/components/StatusLabel/StatusLabel.d.ts +0 -16
  460. package/public/components/StatusLabel/StatusLabel.js +0 -40
  461. package/public/components/StatusLabel/index.d.ts +0 -1
  462. package/public/components/StatusLabel/index.js +0 -13
  463. package/public/components/StatusPanel/StatusPanel.d.ts +0 -11
  464. package/public/components/StatusPanel/StatusPanel.js +0 -24
  465. package/public/components/StatusPanel/index.d.ts +0 -1
  466. package/public/components/StatusPanel/index.js +0 -13
  467. package/public/components/Sticky/Sticky.d.ts +0 -2
  468. package/public/components/Sticky/Sticky.js +0 -14
  469. package/public/components/Sticky/Sticky.story.d.ts +0 -1
  470. package/public/components/Sticky/Sticky.story.js +0 -12
  471. package/public/components/Sticky/index.d.ts +0 -1
  472. package/public/components/Sticky/index.js +0 -5
  473. package/public/components/Svg/Svg.story.d.ts +0 -1
  474. package/public/components/Svg/Svg.story.js +0 -14
  475. package/public/components/Text/Text.story.d.ts +0 -1
  476. package/public/components/Text/Text.story.js +0 -31
  477. package/public/components/TopBar/TopBar.d.ts +0 -14
  478. package/public/components/TopBar/TopBar.js +0 -24
  479. package/public/components/TopBar/TopBarBreadcrumbs.d.ts +0 -10
  480. package/public/components/TopBar/TopBarBreadcrumbs.js +0 -34
  481. package/public/components/TopBar/TopBarSubNav.d.ts +0 -2
  482. package/public/components/TopBar/TopBarSubNav.js +0 -16
  483. package/public/components/TopBar/TopBarSubNavItem.d.ts +0 -5
  484. package/public/components/TopBar/TopBarSubNavItem.js +0 -17
  485. package/public/components/TopBar/index.d.ts +0 -1
  486. package/public/components/TopBar/index.js +0 -13
  487. package/public/components/VendorLogo/VendorLogo.d.ts +0 -20
  488. package/public/components/VendorLogo/VendorLogo.js +0 -57
  489. package/public/components/VendorLogo/index.d.ts +0 -1
  490. package/public/components/VendorLogo/index.js +0 -13
  491. package/public/components/VisuallyHidden/VisuallyHidden.story.d.ts +0 -1
  492. package/public/components/VisuallyHidden/VisuallyHidden.story.js +0 -36
  493. package/public/components/useStep/ExampleSetupWizard.d.ts +0 -4
  494. package/public/components/useStep/ExampleSetupWizard.js +0 -33
  495. package/public/storybook-components/TailwindPropertyClasses.d.ts +0 -9
  496. package/public/storybook-components/TailwindPropertyClasses.js +0 -194
  497. package/public/tailwind.config.d.ts +0 -1
  498. package/public/tailwind.config.js +0 -4
  499. package/public/tokens/_tailwind-config.d.ts +0 -810
  500. package/public/tokens/_tailwind-config.js +0 -50
  501. package/src/components/Absolute/Absolute.story.mdx +0 -26
  502. package/src/components/Absolute/Absolute.tsx +0 -9
  503. package/src/components/Absolute/index.ts +0 -1
  504. package/src/components/Appbar/Appbar.story.mdx +0 -185
  505. package/src/components/Appbar/Appbar.tsx +0 -108
  506. package/src/components/Appbar/AppbarClaimProfileButton.tsx +0 -13
  507. package/src/components/Appbar/AppbarDropdownIcon.tsx +0 -6
  508. package/src/components/Appbar/AppbarLogInButton.tsx +0 -28
  509. package/src/components/Appbar/AppbarLogo.tsx +0 -29
  510. package/src/components/Appbar/AppbarOrganization.tsx +0 -96
  511. package/src/components/Appbar/AppbarTabMarker.tsx +0 -5
  512. package/src/components/Appbar/AppbarTabs.tsx +0 -46
  513. package/src/components/Appbar/AppbarUser.tsx +0 -179
  514. package/src/components/Appbar/config.ts +0 -12
  515. package/src/components/Appbar/context.ts +0 -20
  516. package/src/components/Appbar/index.css +0 -324
  517. package/src/components/Appbar/index.ts +0 -1
  518. package/src/components/ArrowButton/ArrowButton.story.mdx +0 -110
  519. package/src/components/ArrowButton/ArrowButton.tsx +0 -54
  520. package/src/components/ArrowButton/index.css +0 -42
  521. package/src/components/ArrowButton/index.ts +0 -1
  522. package/src/components/ArrowLink/ArrowLink.story.mdx +0 -65
  523. package/src/components/ArrowLink/ArrowLink.tsx +0 -42
  524. package/src/components/ArrowLink/index.ts +0 -1
  525. package/src/components/Aside/Aside.story.mdx +0 -65
  526. package/src/components/Aside/Aside.tsx +0 -59
  527. package/src/components/Aside/index.css +0 -11
  528. package/src/components/Aside/index.ts +0 -1
  529. package/src/components/Fixed/Fixed.md +0 -16
  530. package/src/components/Fixed/Fixed.story.tsx +0 -12
  531. package/src/components/Fixed/Fixed.tsx +0 -9
  532. package/src/components/Fixed/index.ts +0 -1
  533. package/src/components/Flex/Flex.md +0 -14
  534. package/src/components/Flex/Flex.story.tsx +0 -12
  535. package/src/components/IntegrationLogo/IntegrationLogo.story.mdx +0 -159
  536. package/src/components/IntegrationLogo/IntegrationLogo.tsx +0 -54
  537. package/src/components/IntegrationLogo/IntegrationLogoSvg.tsx +0 -79
  538. package/src/components/IntegrationLogo/index.ts +0 -1
  539. package/src/components/IntegrationLogo/svg/addigy.tsx +0 -23
  540. package/src/components/IntegrationLogo/svg/aws.tsx +0 -52
  541. package/src/components/IntegrationLogo/svg/bamboohr.tsx +0 -34
  542. package/src/components/IntegrationLogo/svg/bitbucket.tsx +0 -37
  543. package/src/components/IntegrationLogo/svg/conveyor.tsx +0 -41
  544. package/src/components/IntegrationLogo/svg/default.tsx +0 -11
  545. package/src/components/IntegrationLogo/svg/deploy.tsx +0 -29
  546. package/src/components/IntegrationLogo/svg/events-api.tsx +0 -75
  547. package/src/components/IntegrationLogo/svg/gcp.tsx +0 -26
  548. package/src/components/IntegrationLogo/svg/github.tsx +0 -14
  549. package/src/components/IntegrationLogo/svg/gitlab.tsx +0 -40
  550. package/src/components/IntegrationLogo/svg/gsuite.tsx +0 -24
  551. package/src/components/IntegrationLogo/svg/index.ts +0 -21
  552. package/src/components/IntegrationLogo/svg/jamf.tsx +0 -36
  553. package/src/components/IntegrationLogo/svg/jira.tsx +0 -44
  554. package/src/components/IntegrationLogo/svg/jumpcloud.tsx +0 -86
  555. package/src/components/IntegrationLogo/svg/okta.tsx +0 -28
  556. package/src/components/IntegrationLogo/svg/onelogin.tsx +0 -34
  557. package/src/components/IntegrationLogo/svg/salesforce.tsx +0 -39
  558. package/src/components/IntegrationLogo/svg/slack.tsx +0 -40
  559. package/src/components/IntegrationLogo/svg/wrapper.tsx +0 -35
  560. package/src/components/IntegrationLogo/svg/zoom.tsx +0 -51
  561. package/src/components/Meta/Meta.md +0 -14
  562. package/src/components/Meta/Meta.story.tsx +0 -24
  563. package/src/components/Meta/Meta.tsx +0 -26
  564. package/src/components/Meta/index.ts +0 -1
  565. package/src/components/Overlay/Overlay.md +0 -14
  566. package/src/components/Overlay/Overlay.story.tsx +0 -12
  567. package/src/components/PropertyDiff/PropertDiff.story.mdx +0 -46
  568. package/src/components/PropertyDiff/PropertyDiff.tsx +0 -48
  569. package/src/components/PropertyDiff/index.css +0 -33
  570. package/src/components/PropertyDiff/index.ts +0 -1
  571. package/src/components/Relative/Relative.md +0 -16
  572. package/src/components/Relative/Relative.story.tsx +0 -12
  573. package/src/components/Relative/Relative.tsx +0 -9
  574. package/src/components/Relative/index.ts +0 -1
  575. package/src/components/SpeechBubble/SpeechBubble.md +0 -14
  576. package/src/components/SpeechBubble/SpeechBubble.story.tsx +0 -26
  577. package/src/components/StatusLabel/StatusLabel.story.mdx +0 -316
  578. package/src/components/StatusLabel/StatusLabel.tsx +0 -112
  579. package/src/components/StatusLabel/index.css +0 -23
  580. package/src/components/StatusLabel/index.ts +0 -1
  581. package/src/components/StatusPanel/StatusPanel.story.mdx +0 -109
  582. package/src/components/StatusPanel/StatusPanel.tsx +0 -51
  583. package/src/components/StatusPanel/index.css +0 -52
  584. package/src/components/StatusPanel/index.ts +0 -1
  585. package/src/components/Sticky/Sticky.md +0 -16
  586. package/src/components/Sticky/Sticky.story.tsx +0 -12
  587. package/src/components/Sticky/Sticky.tsx +0 -9
  588. package/src/components/Sticky/index.ts +0 -1
  589. package/src/components/Svg/Svg.md +0 -14
  590. package/src/components/Svg/Svg.story.tsx +0 -15
  591. package/src/components/Text/Text.md +0 -14
  592. package/src/components/Text/Text.story.tsx +0 -12
  593. package/src/components/TopBar/TopBar.story.mdx +0 -154
  594. package/src/components/TopBar/TopBar.tsx +0 -40
  595. package/src/components/TopBar/TopBarBreadcrumbs.tsx +0 -79
  596. package/src/components/TopBar/TopBarSubNav.tsx +0 -19
  597. package/src/components/TopBar/TopBarSubNavItem.tsx +0 -21
  598. package/src/components/TopBar/index.css +0 -102
  599. package/src/components/TopBar/index.ts +0 -1
  600. package/src/components/VendorLogo/VendorLogo.story.mdx +0 -209
  601. package/src/components/VendorLogo/VendorLogo.tsx +0 -110
  602. package/src/components/VendorLogo/index.css +0 -46
  603. package/src/components/VendorLogo/index.ts +0 -1
  604. package/src/components/VisuallyHidden/VisuallyHidden.md +0 -23
  605. package/src/components/VisuallyHidden/VisuallyHidden.story.tsx +0 -19
  606. package/src/components/useStep/ExampleSetupWizard.tsx +0 -63
  607. package/src/components/useStep/useStep.story.mdx +0 -76
  608. package/src/docs/TailwindClasses.story.mdx +0 -15
  609. package/src/docs/brand-components/BrandButton.story.mdx +0 -103
  610. package/src/docs/brand-components/BrandCheckbox.story.mdx +0 -63
  611. package/src/docs/brand-components/BrandFormGroup.story.mdx +0 -76
  612. package/src/docs/brand-components/BrandInput.story.mdx +0 -41
  613. package/src/docs/brand-components/BrandRadio.story.mdx +0 -45
  614. package/src/docs/brand-components/BrandTextArea.story.mdx +0 -41
  615. package/src/storybook-components/TailwindPropertyClasses.tsx +0 -285
  616. package/src/tailwind.config.ts +0 -6
  617. package/src/tokens/_tailwind-config.ts +0 -69
@@ -1,76 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.AppbarUser = exports.AppbarUserDropdownMenuItem = exports.AppbarUserDropdownMenu = exports.AppbarUserDropdown = exports.AppbarUserAvatar = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const classnames_1 = __importDefault(require("classnames"));
9
- const types_1 = require("../../types");
10
- const Avatar_1 = require("../Avatar");
11
- const Box_1 = require("../Box");
12
- const Flex_1 = require("../Flex");
13
- const Link_1 = require("../Link");
14
- const MenuRenderer_1 = require("../MenuRenderer");
15
- const PopoverMenu_1 = require("../PopoverMenu");
16
- const Text_1 = require("../Text");
17
- const AppbarDropdownIcon_1 = require("./AppbarDropdownIcon");
18
- const config_1 = require("./config");
19
- const AppbarUserName = ({ name, avatar }) => (react_1.default.createElement(Flex_1.Flex, { className: config_1.cn({ e: "userName" }) },
20
- avatar,
21
- name && react_1.default.createElement(Text_1.Text, { as: "div" }, name)));
22
- const AppbarUserAvatar = (props) => {
23
- const sharedClassNames = "mr-2";
24
- const sharedProps = {
25
- size: "medium",
26
- square: true,
27
- };
28
- if (props.type === Avatar_1.AVATAR_TYPE.SYSTEM) {
29
- return (react_1.default.createElement(Avatar_1.Avatar, Object.assign({ className: sharedClassNames, type: Avatar_1.AVATAR_TYPE.SYSTEM }, sharedProps)));
30
- }
31
- if (props.type === Avatar_1.AVATAR_TYPE.USER && props.email) {
32
- return (react_1.default.createElement(Avatar_1.Avatar, Object.assign({ className: sharedClassNames, type: Avatar_1.AVATAR_TYPE.USER, email: props.email }, sharedProps)));
33
- }
34
- return (react_1.default.createElement(Avatar_1.Avatar, Object.assign({ className: classnames_1.default(sharedClassNames, "bg-gray-400"), type: Avatar_1.AVATAR_TYPE.ANONYMOUS }, sharedProps)));
35
- };
36
- exports.AppbarUserAvatar = AppbarUserAvatar;
37
- const AppbarUserDropdown = ({ name, avatar, children, onClose, }) => {
38
- return (react_1.default.createElement(Box_1.Box, { className: "h-full -mr-3" },
39
- react_1.default.createElement(MenuRenderer_1.MenuRenderer, { className: classnames_1.default([config_1.cn({ e: "menu" }), config_1.cn({ e: "userMenu" })]), popperModifiers: config_1.popperModifiers, onClose: onClose, trigger: ({ onClick, ...triggerProps }, { isOpen }) => (react_1.default.createElement("button", Object.assign({ type: "button", className: classnames_1.default([
40
- config_1.cn({ e: "menuButton" }),
41
- config_1.cn({ e: "userMenuButton" }),
42
- isOpen && "isOpen",
43
- ]) }, triggerProps, { onClick: (event) => {
44
- onClick(event);
45
- if (onClose && isOpen) {
46
- onClose();
47
- }
48
- } }),
49
- react_1.default.createElement(Flex_1.Flex, { className: "items-center" },
50
- react_1.default.createElement(AppbarUserName, { name: name, avatar: avatar }),
51
- react_1.default.createElement(AppbarDropdownIcon_1.AppbarDropdownIcon, null)))) }, ({ listProps }) => (react_1.default.createElement(PopoverMenu_1.PopoverMenu, Object.assign({ className: config_1.cn({ e: "menuList" }), theme: types_1.THEME.BRAND }, listProps), children)))));
52
- };
53
- exports.AppbarUserDropdown = AppbarUserDropdown;
54
- const AppbarUserDropdownMenu = ({ children, }) => react_1.default.createElement(react_1.default.Fragment, null, children);
55
- exports.AppbarUserDropdownMenu = AppbarUserDropdownMenu;
56
- const AppbarUserDropdownMenuItem = ({ children, onClick, as, className, ...rest }) => {
57
- const { itemProps, onClose } = MenuRenderer_1.useMenuContext();
58
- return (react_1.default.createElement(Link_1.Link, Object.assign({ as: as, noStyles: true, className: classnames_1.default([
59
- config_1.cn({ e: "menuItem" }),
60
- config_1.cn({ e: "userMenuItem" }),
61
- className,
62
- ]), onClick: () => {
63
- if (typeof onClick === "function") {
64
- onClick();
65
- }
66
- if (typeof onClose === "function") {
67
- onClose();
68
- }
69
- } }, rest, itemProps), children));
70
- };
71
- exports.AppbarUserDropdownMenuItem = AppbarUserDropdownMenuItem;
72
- const AppbarUser = ({ name, avatar }) => {
73
- return (react_1.default.createElement(Box_1.Box, { className: config_1.cn({ e: "user" }) },
74
- react_1.default.createElement(AppbarUserName, { name: name, avatar: avatar })));
75
- };
76
- exports.AppbarUser = AppbarUser;
@@ -1,7 +0,0 @@
1
- export declare const cn: (options?: import("../../utilities/bem").BemOptions | undefined) => string;
2
- export declare const popperModifiers: {
3
- name: string;
4
- options: {
5
- offset: number[];
6
- };
7
- }[];
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.popperModifiers = exports.cn = void 0;
4
- const bem_1 = require("../../utilities/bem");
5
- exports.cn = bem_1.bemHOF("Appbar");
6
- exports.popperModifiers = [
7
- {
8
- name: "offset",
9
- options: {
10
- offset: [0, 4],
11
- },
12
- },
13
- ];
@@ -1,10 +0,0 @@
1
- import { Context } from "react";
2
- import { COMPLY_COMPANY_NAME } from "../../types";
3
- declare type AppbarContextType = {
4
- company: COMPLY_COMPANY_NAME;
5
- } | undefined;
6
- export declare const AppbarContext: Context<AppbarContextType>;
7
- export declare function useAppbarContext(): {
8
- company?: COMPLY_COMPANY_NAME | undefined;
9
- };
10
- export {};
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useAppbarContext = exports.AppbarContext = void 0;
4
- const react_1 = require("react");
5
- const types_1 = require("../../types");
6
- const defaultContext = {
7
- company: types_1.COMPLY_COMPANY_NAME.CONVEYOR,
8
- };
9
- exports.AppbarContext = react_1.createContext(defaultContext);
10
- function useAppbarContext() {
11
- const context = react_1.useContext(exports.AppbarContext) || {
12
- ...defaultContext,
13
- };
14
- return context;
15
- }
16
- exports.useAppbarContext = useAppbarContext;
@@ -1 +0,0 @@
1
- export * from "./Appbar";
@@ -1,13 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./Appbar"), exports);
@@ -1,9 +0,0 @@
1
- export interface ArrowButtonProps {
2
- children?: string;
3
- as?: any;
4
- className?: string;
5
- disabled?: boolean;
6
- loading?: boolean;
7
- [key: string]: any;
8
- }
9
- export declare const ArrowButton: ({ children, as: Component, className, disabled, loading, ...rest }: ArrowButtonProps) => JSX.Element;
@@ -1,22 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ArrowButton = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const classnames_1 = __importDefault(require("classnames"));
9
- const Box_1 = require("../Box");
10
- const Svg_1 = require("../Svg");
11
- const bem_1 = require("../../utilities/bem");
12
- const Icon_1 = require("../Icon");
13
- const cn = "ArrowButton";
14
- const Arrow = () => (react_1.default.createElement(Svg_1.Svg, { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none" },
15
- react_1.default.createElement("path", { d: "M20 10.0006L10.2324 -4.26954e-07L7.30217 -5.5504e-07L16.093 9.0005L3.42127e-06 9.0005L3.33385e-06 11.0006L16.093 11.0006L7.30217 20L10.2324 20L20 10.0006Z" })));
16
- const ArrowButton = ({ children, as: Component = "a", className, disabled, loading, ...rest }) => {
17
- const isDisabled = disabled || loading;
18
- return (react_1.default.createElement(Component, Object.assign({ className: classnames_1.default(bem_1.bem(cn), isDisabled && bem_1.bem(cn, { m: "disabled" }), className), disabled: Component === "button" && isDisabled }, rest),
19
- children,
20
- react_1.default.createElement(Box_1.Box, { className: bem_1.bem(cn, { e: "arrow" }) }, loading ? (react_1.default.createElement(Icon_1.Icon, { className: "arrow-button-arrow", icon: Icon_1.ICON_TYPE.SPINNER, spin: true })) : (react_1.default.createElement(Arrow, null)))));
21
- };
22
- exports.ArrowButton = ArrowButton;
@@ -1 +0,0 @@
1
- export * from "./ArrowButton";
@@ -1,13 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./ArrowButton"), exports);
@@ -1,9 +0,0 @@
1
- import { LinkProps } from "../Link";
2
- export interface ArrowLinkProps extends LinkProps {
3
- block?: boolean;
4
- }
5
- declare const ArrowLink: {
6
- (props: ArrowLinkProps): JSX.Element;
7
- defaultProps: Partial<ArrowLinkProps>;
8
- };
9
- export { ArrowLink };
@@ -1,21 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ArrowLink = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const classnames_1 = __importDefault(require("classnames"));
9
- const Link_1 = require("../Link");
10
- const Icon_1 = require("../Icon");
11
- const defaultArrowLinkProps = {
12
- block: false,
13
- };
14
- const ArrowLink = (props) => {
15
- const { className, children, block = defaultArrowLinkProps.block, ...rest } = props;
16
- return (react_1.default.createElement(Link_1.Link, Object.assign({ className: classnames_1.default(block ? "flex" : "inline-flex", "items-center", "justify-between", "no-underline", "font-medium", className) }, rest),
17
- react_1.default.createElement("span", { className: "mr-1" }, children),
18
- react_1.default.createElement(Icon_1.Icon, { icon: Icon_1.ICON_TYPE.LONG_ARROW_ALT_RIGHT })));
19
- };
20
- exports.ArrowLink = ArrowLink;
21
- ArrowLink.defaultProps = defaultArrowLinkProps;
@@ -1 +0,0 @@
1
- export * from "./ArrowLink";
@@ -1,13 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./ArrowLink"), exports);
@@ -1,14 +0,0 @@
1
- import { BoxProps } from "../Box";
2
- import { DividerProps } from "../Divider";
3
- interface AsideProps extends BoxProps {
4
- disableScrolling?: boolean;
5
- }
6
- interface AsideItemProps extends BoxProps {
7
- removePadding?: boolean;
8
- }
9
- export declare const Aside: {
10
- (props: AsideProps): JSX.Element;
11
- Divider: (props: DividerProps) => JSX.Element;
12
- Item: (props: AsideItemProps) => JSX.Element;
13
- };
14
- export {};
@@ -1,28 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.Aside = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const classnames_1 = __importDefault(require("classnames"));
9
- const Box_1 = require("../Box");
10
- const Divider_1 = require("../Divider");
11
- const ScrollPane_1 = require("../ScrollPane");
12
- const bem_1 = require("../../utilities/bem");
13
- const cn = "Aside";
14
- const AsideDivider = (props) => {
15
- const { className, ...rest } = props;
16
- return (react_1.default.createElement(Divider_1.Divider, Object.assign({ className: classnames_1.default(bem_1.bem(cn, { e: "item" }), classnames_1.default) }, rest)));
17
- };
18
- const AsideItem = (props) => {
19
- const { removePadding = false, className, ...rest } = props;
20
- return (react_1.default.createElement(Box_1.Box, Object.assign({ className: classnames_1.default(bem_1.bem(cn, { e: "item" }), !removePadding && bem_1.bem(cn, { e: "item", m: "padded" }), className) }, rest)));
21
- };
22
- const Aside = (props) => {
23
- const { disableScrolling, children, className, ...rest } = props;
24
- return (react_1.default.createElement(ScrollPane_1.ScrollPane, Object.assign({ as: "aside", disabled: disableScrolling, className: className }, rest), children));
25
- };
26
- exports.Aside = Aside;
27
- exports.Aside.Divider = AsideDivider;
28
- exports.Aside.Item = AsideItem;
@@ -1 +0,0 @@
1
- export * from "./Aside";
@@ -1,13 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./Aside"), exports);
@@ -1,2 +0,0 @@
1
- import { BoxProps } from "../Box";
2
- export declare const Fixed: (props: BoxProps) => JSX.Element;
@@ -1,14 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.Fixed = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const classnames_1 = __importDefault(require("classnames"));
9
- const Box_1 = require("../Box");
10
- const Fixed = (props) => {
11
- const { className, ...rest } = props;
12
- return react_1.default.createElement(Box_1.Box, Object.assign({ className: classnames_1.default("fixed", className) }, rest));
13
- };
14
- exports.Fixed = Fixed;
@@ -1 +0,0 @@
1
- export {};
@@ -1,12 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const react_1 = __importDefault(require("react"));
7
- const react_2 = require("@storybook/react");
8
- const Story_1 = __importDefault(require("../../storybook-components/Story"));
9
- const Fixed_1 = require("./Fixed");
10
- const stories = react_2.storiesOf("Components/Positioning/Fixed", module);
11
- stories.add("Default", () => (react_1.default.createElement(Story_1.default, { title: "Fixed" },
12
- react_1.default.createElement(Fixed_1.Fixed, null, "This is the Fixed component"))));
@@ -1 +0,0 @@
1
- export { Fixed } from "./Fixed";
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Fixed = void 0;
4
- var Fixed_1 = require("./Fixed");
5
- Object.defineProperty(exports, "Fixed", { enumerable: true, get: function () { return Fixed_1.Fixed; } });
@@ -1 +0,0 @@
1
- export {};
@@ -1,12 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const react_1 = __importDefault(require("react"));
7
- const react_2 = require("@storybook/react");
8
- const Story_1 = __importDefault(require("../../storybook-components/Story"));
9
- const Flex_1 = require("./Flex");
10
- const stories = react_2.storiesOf("Components/Layout/Flex", module);
11
- stories.add("Default", () => (react_1.default.createElement(Story_1.default, { title: "Flex" },
12
- react_1.default.createElement(Flex_1.Flex, null, "This is the Flex component"))));
@@ -1,10 +0,0 @@
1
- import { SvgProps } from "../Svg";
2
- export declare const integrationLogoNames: readonly ["addigy", "aws", "bamboohr", "bitbucket", "conveyor", "deploy", "events-api", "gcp", "github", "gitlab", "gsuite", "jamf", "jira", "jumpcloud", "okta", "onelogin", "salesforce", "slack", "zoom"];
3
- export declare type IntegrationLogoName = typeof integrationLogoNames[number];
4
- export interface IntegrationLogoProps extends SvgProps {
5
- logo?: IntegrationLogoName | string;
6
- color?: string;
7
- square?: boolean;
8
- size?: number;
9
- }
10
- export declare const IntegrationLogo: ({ logo, size, ...rest }: IntegrationLogoProps) => JSX.Element;
@@ -1,33 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.IntegrationLogo = exports.integrationLogoNames = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const IntegrationLogoSvg_1 = __importDefault(require("./IntegrationLogoSvg"));
9
- exports.integrationLogoNames = [
10
- "addigy",
11
- "aws",
12
- "bamboohr",
13
- "bitbucket",
14
- "conveyor",
15
- "deploy",
16
- "events-api",
17
- "gcp",
18
- "github",
19
- "gitlab",
20
- "gsuite",
21
- "jamf",
22
- "jira",
23
- "jumpcloud",
24
- "okta",
25
- "onelogin",
26
- "salesforce",
27
- "slack",
28
- "zoom",
29
- ];
30
- const IntegrationLogo = ({ logo, size = 24, ...rest }) => {
31
- return react_1.default.createElement(IntegrationLogoSvg_1.default, Object.assign({ logo: logo, size: size }, rest));
32
- };
33
- exports.IntegrationLogo = IntegrationLogo;
@@ -1,9 +0,0 @@
1
- import { SvgProps } from "../Svg";
2
- interface IntegrationLogoSvgProps extends SvgProps {
3
- logo?: string;
4
- color?: string;
5
- square?: boolean;
6
- size?: number;
7
- }
8
- declare const IntegrationLogoSvg: ({ logo, ...rest }: IntegrationLogoSvgProps) => JSX.Element;
9
- export default IntegrationLogoSvg;
@@ -1,52 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const react_1 = __importDefault(require("react"));
7
- const svg_1 = require("./svg");
8
- const IntegrationLogoSvg = ({ logo, ...rest }) => {
9
- switch (logo) {
10
- case "addigy":
11
- return react_1.default.createElement(svg_1.AddigySvg, Object.assign({}, rest));
12
- case "aws":
13
- return react_1.default.createElement(svg_1.AwsSvg, Object.assign({}, rest));
14
- case "bamboohr":
15
- return react_1.default.createElement(svg_1.BambooHrSvg, Object.assign({}, rest));
16
- case "bitbucket":
17
- return react_1.default.createElement(svg_1.BitbucketSvg, Object.assign({}, rest));
18
- case "conveyor":
19
- return react_1.default.createElement(svg_1.ConveyorSvg, Object.assign({}, rest));
20
- case "deploy":
21
- return react_1.default.createElement(svg_1.DeploySvg, Object.assign({}, rest));
22
- case "events-api":
23
- return react_1.default.createElement(svg_1.EventsAPI, Object.assign({}, rest));
24
- case "gcp":
25
- return react_1.default.createElement(svg_1.GcpSvg, Object.assign({}, rest));
26
- case "github":
27
- return react_1.default.createElement(svg_1.GithubSvg, Object.assign({}, rest));
28
- case "gitlab":
29
- return react_1.default.createElement(svg_1.GitlabSvg, Object.assign({}, rest));
30
- case "gsuite":
31
- return react_1.default.createElement(svg_1.GsuiteSvg, Object.assign({}, rest));
32
- case "jamf":
33
- return react_1.default.createElement(svg_1.JamfSvg, Object.assign({}, rest));
34
- case "jira":
35
- return react_1.default.createElement(svg_1.JiraSvg, Object.assign({}, rest));
36
- case "jumpcloud":
37
- return react_1.default.createElement(svg_1.JumpcloudSvg, Object.assign({}, rest));
38
- case "okta":
39
- return react_1.default.createElement(svg_1.OktaSvg, Object.assign({}, rest));
40
- case "onelogin":
41
- return react_1.default.createElement(svg_1.OneLoginSvg, Object.assign({}, rest));
42
- case "salesforce":
43
- return react_1.default.createElement(svg_1.SalesforceSvg, Object.assign({}, rest));
44
- case "slack":
45
- return react_1.default.createElement(svg_1.SlackSvg, Object.assign({}, rest));
46
- case "zoom":
47
- return react_1.default.createElement(svg_1.ZoomSvg, Object.assign({}, rest));
48
- default:
49
- return react_1.default.createElement(svg_1.DefaultSvg, Object.assign({}, rest));
50
- }
51
- };
52
- exports.default = IntegrationLogoSvg;
@@ -1 +0,0 @@
1
- export * from "./IntegrationLogo";
@@ -1,13 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./IntegrationLogo"), exports);
@@ -1,2 +0,0 @@
1
- import { SvgLogoProps } from "./wrapper";
2
- export declare const AddigySvg: ({ color, square, ...rest }: SvgLogoProps) => JSX.Element;
@@ -1,17 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.AddigySvg = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const wrapper_1 = require("./wrapper");
9
- const AddigySvg = ({ color, square, ...rest }) => {
10
- const viewBox = "0 0 32 32";
11
- const path = (react_1.default.createElement(react_1.default.Fragment, null,
12
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M26.4246 22.7281L15.2402 7.84787L21.3036 5.93106L28.8469 15.9669L26.4246 22.7281ZM0 27.96H30.3571L32 15.7831L22.3505 3L6.8423 4.40076L22.71 25.5118L20.162 23.3718H12.8786L16.1671 20.0166L13.3872 17.6819L0 27.96Z", fill: color || "#53bdcd" })));
13
- return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
14
- react_1.default.createElement("title", null, "Addigy integration logo"),
15
- path));
16
- };
17
- exports.AddigySvg = AddigySvg;
@@ -1,2 +0,0 @@
1
- import { SvgLogoProps } from "./wrapper";
2
- export declare const AwsSvg: ({ color, square, ...rest }: SvgLogoProps) => JSX.Element;
@@ -1,22 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.AwsSvg = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const wrapper_1 = require("./wrapper");
9
- const AwsSvg = ({ color, square, ...rest }) => {
10
- const viewBox = square ? "0 0 32 32" : "0 0 54 32";
11
- const path = square ? (react_1.default.createElement(react_1.default.Fragment, null,
12
- react_1.default.createElement("path", { d: "M9.01791 12.9498C9.01791 13.3436 9.06048 13.6629 9.13498 13.897C9.22012 14.1311 9.32655 14.3866 9.47555 14.6633C9.52877 14.7484 9.55005 14.8336 9.55005 14.9081C9.55005 15.0145 9.4862 15.1209 9.34784 15.2274L8.67734 15.6744C8.58155 15.7382 8.48577 15.7701 8.40062 15.7701C8.29419 15.7701 8.18777 15.7169 8.08134 15.6211C7.93234 15.4615 7.80462 15.2912 7.69819 15.1209C7.59177 14.94 7.48534 14.7378 7.36827 14.493C6.53812 15.4721 5.49512 15.9617 4.23926 15.9617C3.34526 15.9617 2.63219 15.7063 2.11069 15.1954C1.58919 14.6846 1.32312 14.0034 1.32312 13.152C1.32312 12.2474 1.64241 11.513 2.29162 10.9596C2.94084 10.4061 3.80291 10.1294 4.89912 10.1294C5.26098 10.1294 5.63348 10.1614 6.02726 10.2146C6.42105 10.2678 6.82548 10.3529 7.25119 10.4487V9.67179C7.25119 8.86293 7.08091 8.29886 6.75098 7.96893C6.41041 7.639 5.83569 7.47936 5.01619 7.47936C4.64369 7.47936 4.26055 7.52193 3.86676 7.61771C3.47298 7.7135 3.08984 7.83057 2.71734 7.97957C2.54705 8.05407 2.41933 8.09664 2.34483 8.11793C2.27033 8.13922 2.21712 8.14986 2.17455 8.14986C2.02555 8.14986 1.95105 8.04343 1.95105 7.81993V7.29843C1.95105 7.12814 1.97233 7.00043 2.02555 6.92593C2.07876 6.85143 2.17455 6.77693 2.32355 6.70243C2.69605 6.51086 3.14305 6.35121 3.66455 6.2235C4.18605 6.08514 4.73948 6.02129 5.32484 6.02129C6.59134 6.02129 7.51727 6.30864 8.11327 6.88336C8.69862 7.45807 8.99662 8.33079 8.99662 9.5015V12.9498H9.01791ZM4.69691 14.5675C5.04812 14.5675 5.40998 14.5036 5.79312 14.3759C6.17627 14.2482 6.51684 14.0141 6.80419 13.6948C6.97448 13.4926 7.10219 13.2691 7.16605 13.0136C7.22991 12.7582 7.27248 12.4496 7.27248 12.0877V11.6407C6.96384 11.5662 6.63391 11.5024 6.29334 11.4598C5.95276 11.4172 5.62284 11.3959 5.29291 11.3959C4.57984 11.3959 4.05834 11.5343 3.70712 11.8216C3.35591 12.109 3.18562 12.5134 3.18562 13.0456C3.18562 13.5458 3.31334 13.9183 3.57941 14.1737C3.83484 14.4398 4.20734 14.5675 4.69691 14.5675ZM13.2431 15.7169C13.0516 15.7169 12.9238 15.685 12.8387 15.6105C12.7536 15.5466 12.6791 15.3976 12.6152 15.1954L10.1141 6.9685C10.0503 6.75564 10.0183 6.61729 10.0183 6.54279C10.0183 6.3725 10.1035 6.27671 10.2738 6.27671H11.3168C11.519 6.27671 11.6573 6.30864 11.7318 6.38314C11.817 6.447 11.8808 6.596 11.9447 6.79821L13.7327 13.8438L15.393 6.79821C15.4462 6.58536 15.5101 6.447 15.5952 6.38314C15.6803 6.31929 15.8293 6.27671 16.0209 6.27671H16.8723C17.0746 6.27671 17.2129 6.30864 17.2981 6.38314C17.3832 6.447 17.4577 6.596 17.5003 6.79821L19.1818 13.9289L21.0231 6.79821C21.0869 6.58536 21.1614 6.447 21.2359 6.38314C21.3211 6.31929 21.4594 6.27671 21.651 6.27671H22.6408C22.8111 6.27671 22.9068 6.36186 22.9068 6.54279C22.9068 6.596 22.8962 6.64921 22.8856 6.71307C22.8749 6.77693 22.8536 6.86207 22.8111 6.97914L20.2461 15.2061C20.1823 15.4189 20.1078 15.5573 20.0226 15.6211C19.9375 15.685 19.7991 15.7276 19.6182 15.7276H18.7029C18.5007 15.7276 18.3623 15.6956 18.2772 15.6211C18.1921 15.5466 18.1176 15.4083 18.075 15.1954L16.4253 8.33079L14.7863 15.1848C14.7331 15.3976 14.6693 15.536 14.5841 15.6105C14.499 15.685 14.35 15.7169 14.1584 15.7169H13.2431ZM26.9192 16.0043C26.3658 16.0043 25.8123 15.9404 25.2802 15.8127C24.7481 15.685 24.333 15.5466 24.0563 15.387C23.886 15.2912 23.7689 15.1848 23.7263 15.089C23.6838 14.9932 23.6625 14.8868 23.6625 14.791V14.2482C23.6625 14.0247 23.7476 13.9183 23.9073 13.9183C23.9711 13.9183 24.035 13.9289 24.0988 13.9502C24.1627 13.9715 24.2585 14.0141 24.3649 14.0566C24.7268 14.2163 25.1206 14.344 25.5356 14.4291C25.9613 14.5143 26.3764 14.5569 26.8021 14.5569C27.4726 14.5569 27.9941 14.4398 28.356 14.2056C28.7178 13.9715 28.9094 13.6309 28.9094 13.1946C28.9094 12.8966 28.8136 12.6518 28.6221 12.4496C28.4305 12.2474 28.0686 12.0664 27.5471 11.8961L26.0039 11.4172C25.227 11.1724 24.6523 10.8106 24.3011 10.3316C23.9498 9.86336 23.7689 9.34186 23.7689 8.78843C23.7689 8.34143 23.8647 7.94764 24.0563 7.60707C24.2478 7.2665 24.5033 6.9685 24.8226 6.73436C25.1418 6.48957 25.5037 6.30864 25.9294 6.18093C26.3551 6.05321 26.8021 6 27.2704 6C27.5046 6 27.7493 6.01064 27.9835 6.04257C28.2283 6.0745 28.4518 6.11707 28.6753 6.15964C28.8881 6.21286 29.0903 6.26607 29.2819 6.32993C29.4735 6.39379 29.6225 6.45764 29.7289 6.5215C29.8779 6.60664 29.9843 6.69179 30.0482 6.78757C30.1121 6.87271 30.144 6.98979 30.144 7.13879V7.639C30.144 7.8625 30.0588 7.97957 29.8992 7.97957C29.8141 7.97957 29.6757 7.937 29.4948 7.85186C28.8881 7.57514 28.207 7.43679 27.4513 7.43679C26.8447 7.43679 26.3658 7.53257 26.0358 7.73479C25.7059 7.937 25.5356 8.24564 25.5356 8.682C25.5356 8.98 25.6421 9.23543 25.8549 9.43764C26.0678 9.63986 26.4616 9.84207 27.0256 10.023L28.5369 10.5019C29.3032 10.7467 29.8566 11.0873 30.1866 11.5236C30.5165 11.96 30.6761 12.4602 30.6761 13.0136C30.6761 13.4713 30.5803 13.8864 30.3994 14.2482C30.2078 14.6101 29.9524 14.9294 29.6225 15.1848C29.2926 15.4509 28.8988 15.6424 28.4411 15.7808C27.9622 15.9298 27.462 16.0043 26.9192 16.0043Z", fill: color || "#252f3e" }),
13
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28.9307 21.1767C25.4292 23.7629 20.3419 25.1359 15.9677 25.1359C9.83741 25.1359 4.31377 22.8689 0.141765 19.1014C-0.188164 18.8034 0.109836 18.3989 0.503622 18.6331C5.0162 21.2512 10.5824 22.837 16.3402 22.837C20.2248 22.837 24.4926 22.0281 28.4199 20.3679C29.0052 20.1018 29.5054 20.751 28.9307 21.1767Z", fill: color || "#ff9900" }),
14
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M30.3888 19.5164C29.9418 18.9417 27.4301 19.2397 26.2913 19.3781C25.9507 19.4206 25.8975 19.1226 26.2061 18.8991C28.207 17.4943 31.4956 17.8987 31.8788 18.367C32.2619 18.8459 31.7724 22.1346 29.8992 23.7097C29.6119 23.9545 29.3351 23.8268 29.4629 23.5075C29.8886 22.4539 30.8358 20.0805 30.3888 19.5164Z", fill: color || "#ff9900" }))) : (react_1.default.createElement(react_1.default.Fragment, null,
15
- react_1.default.createElement("path", { d: "M15.0802 11.6218C15.0802 12.2803 15.1514 12.8142 15.276 13.2058C15.4184 13.5973 15.5963 14.0245 15.8455 14.4872C15.9345 14.6296 15.9701 14.772 15.9701 14.8966C15.9701 15.0745 15.8633 15.2525 15.6319 15.4305L14.5107 16.178C14.3505 16.2848 14.1903 16.3382 14.048 16.3382C13.87 16.3382 13.692 16.2492 13.514 16.089C13.2649 15.822 13.0513 15.5373 12.8733 15.2525C12.6953 14.9499 12.5174 14.6118 12.3216 14.2025C10.9334 15.8398 9.18923 16.6585 7.08912 16.6585C5.59412 16.6585 4.40168 16.2314 3.5296 15.3771C2.65752 14.5228 2.21259 13.3838 2.21259 11.96C2.21259 10.4472 2.74651 9.21914 3.83216 8.29366C4.91781 7.36819 6.35942 6.90545 8.19256 6.90545C8.79768 6.90545 9.4206 6.95885 10.0791 7.04783C10.7376 7.13682 11.4139 7.2792 12.1258 7.43938V6.14016C12.1258 4.78754 11.8411 3.84427 11.2893 3.29255C10.7198 2.74082 9.75875 2.47386 8.38834 2.47386C7.76542 2.47386 7.12471 2.54505 6.4662 2.70523C5.80769 2.86541 5.16698 3.06118 4.54407 3.31035C4.2593 3.43493 4.04573 3.50612 3.92115 3.54171C3.79657 3.57731 3.70758 3.59511 3.63639 3.59511C3.38722 3.59511 3.26264 3.41713 3.26264 3.04338V2.1713C3.26264 1.88654 3.29824 1.67297 3.38722 1.54839C3.47621 1.4238 3.63639 1.29922 3.88556 1.17464C4.50847 0.854283 5.25597 0.587319 6.12805 0.373749C7.00013 0.14238 7.9256 0.0355951 8.90447 0.0355951C11.0224 0.0355951 12.5708 0.516129 13.5674 1.4772C14.5463 2.43827 15.0446 3.89767 15.0446 5.8554V11.6218H15.0802ZM7.85441 14.327C8.44173 14.327 9.04685 14.2202 9.68756 14.0067C10.3283 13.7931 10.8978 13.4016 11.3783 12.8676C11.6631 12.5295 11.8767 12.1557 11.9834 11.7286C12.0902 11.3014 12.1614 10.7853 12.1614 10.1802V9.43271C11.6453 9.30812 11.0936 9.20134 10.524 9.13015C9.95452 9.05896 9.4028 9.02336 8.85107 9.02336C7.65864 9.02336 6.78656 9.25473 6.19924 9.73526C5.61192 10.2158 5.32716 10.8921 5.32716 11.782C5.32716 12.6185 5.54073 13.2414 5.98567 13.6685C6.41281 14.1135 7.03572 14.327 7.85441 14.327ZM22.1458 16.2492C21.8255 16.2492 21.6119 16.1958 21.4695 16.0712C21.3272 15.9644 21.2026 15.7152 21.0958 15.3771L16.9134 1.61958C16.8066 1.26363 16.7532 1.03226 16.7532 0.907675C16.7532 0.622915 16.8956 0.462736 17.1803 0.462736H18.9245C19.2626 0.462736 19.494 0.516129 19.6186 0.640712C19.761 0.747497 19.8678 0.996663 19.9745 1.33482L22.9645 13.1168L25.741 1.33482C25.8299 0.978866 25.9367 0.747497 26.0791 0.640712C26.2215 0.533927 26.4707 0.462736 26.791 0.462736H28.2148C28.553 0.462736 28.7843 0.516129 28.9267 0.640712C29.0691 0.747497 29.1937 0.996663 29.2649 1.33482L32.0769 13.2592L35.1559 1.33482C35.2626 0.978866 35.3872 0.747497 35.5118 0.640712C35.6542 0.533927 35.8856 0.462736 36.2059 0.462736H37.8611C38.1458 0.462736 38.306 0.605117 38.306 0.907675C38.306 0.996663 38.2882 1.08565 38.2704 1.19244C38.2526 1.29922 38.217 1.4416 38.1459 1.63738L33.8566 15.3949C33.7499 15.7508 33.6253 15.9822 33.4829 16.089C33.3405 16.1958 33.1091 16.267 32.8066 16.267H31.276C30.9378 16.267 30.7065 16.2136 30.5641 16.089C30.4217 15.9644 30.2971 15.733 30.2259 15.3771L27.4673 3.89767L24.7265 15.3593C24.6375 15.7152 24.5307 15.9466 24.3883 16.0712C24.246 16.1958 23.9968 16.2492 23.6764 16.2492H22.1458ZM45.0157 16.7297C44.0902 16.7297 43.1648 16.6229 42.2749 16.4093C41.385 16.1958 40.6909 15.9644 40.2282 15.6974C39.9434 15.5373 39.7476 15.3593 39.6764 15.1991C39.6053 15.0389 39.5697 14.861 39.5697 14.7008V13.7931C39.5697 13.4194 39.712 13.2414 39.979 13.2414C40.0858 13.2414 40.1926 13.2592 40.2994 13.2948C40.4061 13.3304 40.5663 13.4016 40.7443 13.4728C41.3494 13.7397 42.0079 13.9533 42.702 14.0957C43.4139 14.238 44.108 14.3092 44.8199 14.3092C45.9412 14.3092 46.8133 14.1135 47.4184 13.7219C48.0235 13.3304 48.3438 12.7608 48.3438 12.0311C48.3438 11.5328 48.1837 11.1235 47.8633 10.7853C47.543 10.4472 46.9378 10.1446 46.0658 9.85985L43.4851 9.05896C42.1859 8.64961 41.2248 8.0445 40.6375 7.24361C40.0502 6.46051 39.7476 5.58843 39.7476 4.66296C39.7476 3.91546 39.9078 3.25695 40.2282 2.68743C40.5485 2.11791 40.9757 1.61958 41.5096 1.22803C42.0435 0.818688 42.6486 0.516129 43.3605 0.302558C44.0724 0.0889878 44.8199 0 45.603 0C45.9946 0 46.4039 0.0177976 46.7955 0.0711902C47.2048 0.124583 47.5786 0.195773 47.9523 0.266963C48.3083 0.355951 48.6464 0.444939 48.9668 0.551724C49.2871 0.65851 49.5363 0.765295 49.7143 0.87208C49.9634 1.01446 50.1414 1.15684 50.2482 1.31702C50.355 1.4594 50.4084 1.65517 50.4084 1.90434V2.74082C50.4084 3.11457 50.266 3.31035 49.999 3.31035C49.8566 3.31035 49.6253 3.23916 49.3227 3.09678C48.3083 2.63404 47.1692 2.40267 45.9056 2.40267C44.8911 2.40267 44.0902 2.56285 43.5385 2.901C42.9868 3.23916 42.702 3.75528 42.702 4.48498C42.702 4.98332 42.88 5.41046 43.236 5.74861C43.5919 6.08677 44.2504 6.42492 45.1937 6.72748L47.7209 7.52837C49.0024 7.93771 49.9278 8.50723 50.4796 9.23693C51.0313 9.96663 51.2982 10.8031 51.2982 11.7286C51.2982 12.4939 51.1381 13.188 50.8355 13.7931C50.5152 14.3982 50.088 14.9322 49.5363 15.3593C48.9846 15.8042 48.3261 16.1246 47.5608 16.356C46.7599 16.6051 45.9234 16.7297 45.0157 16.7297Z", fill: color || "#252f3e" }),
16
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M48.3795 25.3793C42.5241 29.7041 34.0168 32 26.702 32C16.4506 32 7.21371 28.2091 0.237066 21.9088C-0.314658 21.4105 0.183674 20.7342 0.842183 21.1257C8.38835 25.5039 17.6965 28.1557 27.3249 28.1557C33.8211 28.1557 40.9579 26.8031 47.5252 24.0267C48.504 23.5818 49.3405 24.6674 48.3795 25.3793Z", fill: color || "#ff9900" }),
17
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M50.8178 22.6029C50.0703 21.6418 45.87 22.1402 43.9657 22.3715C43.3962 22.4427 43.3072 21.9444 43.8233 21.5706C47.1693 19.2214 52.6687 19.8977 53.3094 20.6808C53.9501 21.4816 53.1314 26.9811 49.9991 29.6151C49.5185 30.0245 49.0558 29.8109 49.2694 29.277C49.9813 27.515 51.5653 23.5462 50.8178 22.6029Z", fill: color || "#ff9900" })));
18
- return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
19
- react_1.default.createElement("title", null, "AWS integration logo"),
20
- path));
21
- };
22
- exports.AwsSvg = AwsSvg;
@@ -1,2 +0,0 @@
1
- import { SvgLogoProps } from "./wrapper";
2
- export declare const BambooHrSvg: ({ color, square, ...rest }: SvgLogoProps) => JSX.Element;
@@ -1,18 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.BambooHrSvg = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const wrapper_1 = require("./wrapper");
9
- const BambooHrSvg = ({ color = "#69c52f", square, ...rest }) => {
10
- const viewBox = square ? "0 0 32 32" : "0 0 210 32";
11
- const path = square ? (react_1.default.createElement(react_1.default.Fragment, null,
12
- react_1.default.createElement("path", { fill: color, d: "M32 16c0 8.836-7.163 16-16 16s-16-7.164-16-16c0-8.837 7.163-16 16-16s16 7.163 16 16zM18.874 13.214c-1.904 0-2.925 0.654-3.641 1.364l-0.195 0.205-0.001-6.382h-1.645v10.445c0 3.214 2.476 5.216 5.316 5.216 3.129 0 5.498-2.408 5.498-5.504 0-2.874-2.471-5.345-5.333-5.345zM12.616 15.334l-0.73-2.392c-0.436-1.258-0.565-1.983-1.792-3.279-0.42-0.445-2.012-1.423-1.815-1.21 2.017 2.177 3.049 4.816 3.447 5.548-0.365-0.444-0.794-0.842-1.282-1.338-0.416-0.422-0.851-0.803-1.264-1.058-0.272-0.168-0.424-0.261-0.7-0.404-1.243-0.646-2.447-1.036-2.91-1.152-0.565-0.141-1.122-0.177-1.122-0.177s1.801 1.52 2.572 2.488c0.772 0.967 1.559 1.835 2.429 2.19s1.173 0.456 1.857 0.56c0.59 0.089 1.31 0.224 1.31 0.224zM18.708 22.563c-2.066 0-3.815-1.629-3.815-3.812 0-2.184 1.474-3.977 3.852-3.977s3.779 1.923 3.779 3.936c0 2.191-1.483 3.852-3.816 3.852z" }),
13
- react_1.default.createElement("path", { fill: color, d: "M29.987 28.832c0.009 0.020 0.017 0.039 0.025 0.057s0.015 0.037 0.020 0.057c0.007-0.020 0.014-0.039 0.019-0.057s0.014-0.037 0.026-0.057l0.365-0.654c0.013-0.019 0.025-0.031 0.037-0.037s0.029-0.009 0.052-0.009h0.229v1.279h-0.238v-0.788l0.019-0.162-0.395 0.726c-0.019 0.040-0.050 0.061-0.095 0.061h-0.039c-0.045 0-0.076-0.020-0.093-0.061l-0.397-0.719 0.017 0.156v0.788h-0.238v-1.279h0.229c0.024 0 0.042 0.003 0.052 0.009s0.023 0.018 0.039 0.037zM29.095 28.133v0.227h-0.389v1.052h-0.272v-1.052h-0.389v-0.227h1.050z" }))) : (react_1.default.createElement("path", { fill: color, d: "M53.242 28.743c3.778 0 7.261-3.214 7.261-7.78 0-4.82-3.232-7.99-7.177-7.99-5.037 0-7.428 3.974-7.428 7.862s2.392 7.907 7.344 7.907zM60.209 13.648v-2.916h3.314v20.252h-3.314v-2.706h-0.084c-1.469 1.776-3.944 3.425-7.344 3.425-5.453 0-10.322-4.271-10.322-10.867 0-6.259 4.531-10.779 10.533-10.779 3.651 0 5.789 1.943 7.174 3.592zM89.425 10.056c4.532 0 7.68 3.17 7.68 9.133v11.795h-3.316v-12.052c0-3.127-1.425-5.875-4.825-5.875-2.812 0-5.456 2.029-5.456 6.681v11.246h-3.357v-12.052c0-3.338-1.804-5.875-4.783-5.875-3.358 0-5.497 2.452-5.497 6.681v11.246h-3.317v-20.252h3.317v2.537h0.085c1.341-1.817 3.397-3.212 5.999-3.212 3.147 0 5.706 1.817 6.547 4.185 1.007-2.031 3.441-4.185 6.924-4.185zM133.906 28.658c4.237 0 7.301-3.383 7.301-7.822 0-4.271-2.895-7.779-7.301-7.779-4.28 0-7.302 3.298-7.302 7.779 0 4.566 3.441 7.822 7.302 7.822zM133.906 10.056c6.251 0 10.742 4.65 10.742 10.779 0 5.962-4.532 10.867-10.742 10.867-6.086 0-10.744-4.737-10.744-10.867 0-6.259 4.7-10.779 10.744-10.779zM157.512 28.658c4.238 0 7.304-3.383 7.304-7.822 0-4.271-2.895-7.779-7.304-7.779-4.278 0-7.3 3.298-7.3 7.779 0 4.566 3.441 7.822 7.3 7.822zM157.512 10.056c6.256 0 10.744 4.65 10.744 10.779 0 5.962-4.533 10.867-10.744 10.867-6.082 0-10.741-4.737-10.741-10.867 0-6.259 4.7-10.779 10.741-10.779zM183.993 19.413v-8.612h2.437v20.183h-2.437v-9.322h-10.656v9.322h-2.436v-20.183h2.436v8.612zM192.597 20.3h3.641c2.647 0 3.968-1.627 3.968-3.581 0-2.367-1.409-3.669-3.997-3.669h-3.613zM202.731 16.72c0 2.87-2.116 5.090-4.639 5.594l6.314 8.67h-3.087l-6.047-8.434h-2.676v8.434h-2.439v-20.182h5.789c4.991 0 6.785 3.137 6.785 5.918zM28.921 28.936c4.733 0 7.739-3.394 7.739-7.87 0-4.115-2.841-8.043-7.664-8.043s-7.812 3.664-7.812 8.125c0 4.459 3.547 7.788 7.737 7.788zM29.256 9.835c5.804 0 10.815 5.047 10.815 10.919 0 6.325-4.804 11.246-11.151 11.246-5.761 0-10.781-4.092-10.781-10.659v-21.341h3.336l0.001 13.040 0.396-0.419c1.452-1.452 3.522-2.787 7.384-2.787zM110.242 28.936c4.733 0 7.739-3.394 7.739-7.87 0-4.115-2.841-8.043-7.663-8.043s-7.812 3.664-7.812 8.125c0 4.459 3.546 7.788 7.737 7.788zM110.578 9.835c5.803 0 10.815 5.047 10.815 10.919 0 6.325-4.804 11.246-11.15 11.246-5.761 0-10.782-4.092-10.782-10.659v-19.332h3.337l0.001 11.031 0.395-0.419c1.453-1.452 3.523-2.787 7.384-2.787zM11.451 2.577c2.49 2.649 2.751 4.129 3.634 6.699l1.481 4.889c0 0-1.46-0.277-2.656-0.458-1.388-0.212-2.002-0.42-3.766-1.144s-3.361-2.497-4.926-4.474c-1.564-1.978-5.217-5.084-5.217-5.084s1.129 0.075 2.275 0.362c0.938 0.236 3.381 1.034 5.902 2.354 0.559 0.292 0.868 0.482 1.419 0.825 0.838 0.522 1.72 1.3 2.564 2.162 0.991 1.013 1.86 1.828 2.601 2.734-0.807-1.498-2.9-6.887-6.99-11.337-0.401-0.436 2.827 1.564 3.68 2.472zM209.194 13.957c0.098-0.246 0.148-0.514 0.148-0.805 0-0.282-0.049-0.546-0.148-0.79s-0.234-0.456-0.408-0.635c-0.174-0.179-0.377-0.32-0.611-0.423s-0.487-0.155-0.76-0.155c-0.275 0-0.531 0.051-0.768 0.155s-0.442 0.245-0.615 0.423c-0.173 0.18-0.309 0.391-0.408 0.635s-0.147 0.508-0.147 0.79c0 0.291 0.049 0.559 0.147 0.805 0.098 0.247 0.234 0.461 0.408 0.643s0.378 0.323 0.615 0.426c0.236 0.103 0.492 0.155 0.768 0.155 0.272 0 0.525-0.052 0.76-0.155s0.438-0.245 0.611-0.426c0.174-0.182 0.31-0.395 0.408-0.643zM209.579 12.223c0.126 0.286 0.188 0.596 0.188 0.929 0 0.341-0.062 0.656-0.188 0.945s-0.295 0.539-0.508 0.751c-0.213 0.213-0.462 0.379-0.746 0.497s-0.588 0.177-0.91 0.177c-0.322 0-0.626-0.059-0.912-0.177s-0.537-0.284-0.753-0.497c-0.215-0.212-0.385-0.463-0.511-0.751s-0.188-0.604-0.188-0.945c0-0.332 0.062-0.642 0.188-0.929s0.296-0.535 0.511-0.746c0.216-0.21 0.466-0.375 0.753-0.496s0.59-0.18 0.912-0.18c0.323 0 0.625 0.060 0.91 0.18s0.533 0.286 0.746 0.496c0.213 0.211 0.383 0.46 0.508 0.746zM207.371 13.007c0.096 0 0.187-0.003 0.273-0.009s0.162-0.024 0.229-0.054c0.067-0.030 0.12-0.075 0.16-0.136s0.059-0.146 0.059-0.256c0-0.093-0.017-0.167-0.053-0.221s-0.082-0.096-0.138-0.126c-0.057-0.030-0.121-0.050-0.194-0.060s-0.146-0.016-0.217-0.016h-0.564v0.878zM208.312 13.118c-0.138 0.116-0.309 0.184-0.515 0.205l0.785 1.22h-0.458l-0.747-1.188h-0.451v1.188h-0.427v-2.762h1.061c0.326 0 0.567 0.066 0.724 0.196s0.235 0.329 0.235 0.594c0 0.249-0.069 0.431-0.207 0.547z" }));
14
- return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
15
- react_1.default.createElement("title", null, "BambooHR integration logo"),
16
- path));
17
- };
18
- exports.BambooHrSvg = BambooHrSvg;
@@ -1,2 +0,0 @@
1
- import { SvgLogoProps } from "./wrapper";
2
- export declare const BitbucketSvg: ({ color, square, ...rest }: SvgLogoProps) => JSX.Element;