@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,28 +0,0 @@
1
- import React from "react";
2
- import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
3
-
4
- export const OktaSvg = ({
5
- color = "#007dc1",
6
- square,
7
- ...rest
8
- }: SvgLogoProps) => {
9
- const viewBox = square ? "0 0 32 32" : "0 0 95 32";
10
- const path = square ? (
11
- <path
12
- fill={color}
13
- d="M16 0C7.185 0 0 7.1335 0 16C0 24.8665 7.134 32 16 32C24.866 32 32 24.866 32 16C32 7.134 24.815 0 16 0ZM16 24C11.567 24 8 20.433 8 16C8 11.567 11.567 8 16 8C20.433 8 24 11.567 24 16C24 20.433 20.433 24 16 24Z"
14
- />
15
- ) : (
16
- <path
17
- fill={color}
18
- d="M11.9477 8.02854C5.36504 8.02854 0 13.3555 0 19.9762C0 23.1449 1.25877 26.1839 3.49939 28.4245C5.74002 30.6651 8.77896 31.9239 11.9477 31.9239C15.1164 31.9239 18.1553 30.6651 20.396 28.4245C22.6366 26.1839 23.8954 23.1449 23.8954 19.9762C23.8954 13.3555 18.5303 8.02854 11.9477 8.02854V8.02854ZM11.9477 25.9501C8.63733 25.9501 5.97384 23.2866 5.97384 19.9762C5.97384 16.6659 8.63733 14.0024 11.9477 14.0024C15.258 14.0024 17.9215 16.6659 17.9215 19.9762C17.9215 23.2866 15.258 25.9501 11.9477 25.9501ZM32.9132 23.9715C32.9132 23.0202 34.0547 22.5636 34.7015 23.2485L42.654 31.5434C42.7301 31.6195 42.8062 31.7337 43.0725 31.8098C43.1867 31.8478 43.3769 31.8478 43.5672 31.8478H48.9703C49.9215 31.8478 50.2259 30.7444 49.7693 30.1736L40.8276 21.0416L40.371 20.547C39.3436 19.3294 39.4578 18.8728 40.6373 17.6171L47.7527 9.74078C48.2093 9.17004 47.9049 8.06659 46.9156 8.06659H42.0452C41.8549 8.06659 41.7027 8.06659 41.5886 8.10464C41.2842 8.18074 41.2081 8.29489 41.132 8.37099C41.0939 8.40904 37.1748 12.6326 34.7776 15.22C34.1308 15.9429 32.9512 15.4483 32.9512 14.497V0.951249C32.9512 0.26635 32.3805 0 31.9239 0H27.9287C27.2438 0 26.9013 0.456599 26.9013 0.875148V30.9346C26.9013 31.6195 27.4721 31.8098 27.9287 31.8098H31.9239C32.5327 31.8098 32.9512 31.3532 32.9512 30.8966V30.5922L32.9132 23.9715ZM65.4839 30.7824L65.0654 26.7872C64.9893 26.2545 64.4946 25.874 63.9619 25.9501L63.0487 26.0262C59.8526 26.0262 57.2652 23.5149 57.113 20.3948V15.1819C57.113 14.5351 57.5696 14.0404 58.2164 14.0404H63.5434C63.9239 14.0404 64.4946 13.736 64.4946 13.0131V9.24614C64.4946 8.52319 64.038 8.10464 63.6195 8.10464H58.2545C57.6457 8.10464 57.113 7.64804 57.113 7.03924V0.989298C57.113 0.608798 56.8466 0.0380494 56.0856 0.0380494H52.1284C51.6338 0.0380494 51.1391 0.342449 51.1391 0.951249V20.3948C51.2913 26.8252 56.5803 32 63.0868 32C63.6195 32 64.1522 31.9619 64.6849 31.8858C65.1415 31.8097 65.56 31.3151 65.4839 30.7824V30.7824ZM94.2497 25.7598C90.8633 25.7598 90.3686 24.5422 90.3686 20.0143V9.09394C90.3686 8.71344 90.1023 8.06659 89.3413 8.06659H85.346C84.8514 8.06659 84.3187 8.44709 84.3187 9.09394V9.58858C82.5684 8.59929 80.5898 8.02854 78.4209 8.02854C71.8383 8.02854 66.4732 13.3555 66.4732 19.9762C66.4697 21.5462 66.7764 23.1014 67.3756 24.5526C67.9747 26.0037 68.8547 27.3222 69.9648 28.4323C71.075 29.5425 72.3934 30.4224 73.8446 31.0216C75.2957 31.6208 76.8509 31.9274 78.4209 31.9239C81.3888 31.9239 84.0904 30.8585 86.1831 29.0702C87.3246 30.7824 89.113 31.9239 91.9286 31.9239C92.4233 31.9239 94.9726 32 94.9726 30.8205V26.5589C94.9346 26.1784 94.6302 25.7598 94.2497 25.7598V25.7598ZM78.4209 25.9501C75.1106 25.9501 72.4471 23.2866 72.4471 19.9762C72.4471 16.6659 75.1106 14.0024 78.4209 14.0024C81.7313 14.0024 84.3948 16.6659 84.3948 19.9762C84.3567 23.2866 81.6932 25.9501 78.4209 25.9501Z"
19
- />
20
- );
21
-
22
- return (
23
- <IntegrationLogoSvgWrapper viewBox={viewBox} {...rest}>
24
- <title>Okta integration logo</title>
25
- {path}
26
- </IntegrationLogoSvgWrapper>
27
- );
28
- };
@@ -1,34 +0,0 @@
1
- import React from "react";
2
- import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
3
-
4
- export const OneLoginSvg = ({
5
- color = "#1c1f2a",
6
- square,
7
- ...rest
8
- }: SvgLogoProps) => {
9
- const viewBox = square ? "0 0 32 32" : "0 0 130 32";
10
- const path = square ? (
11
- <>
12
- <path
13
- fill={color}
14
- d="M15.9 0.114c-8.771 0-15.9 7.114-15.9 15.886 0 8.786 7.114 15.9 15.9 15.9s15.9-7.114 15.9-15.9c0-8.771-7.114-15.886-15.9-15.886z"
15
- />
16
- <path
17
- fill="#fff"
18
- d="M18.271 21.629c0 0.3-0.157 0.457-0.457 0.457h-2.857c-0.3 0-0.457-0.157-0.457-0.457v-6.886h-2.186c-0.3 0-0.457-0.157-0.457-0.457v-2.857c0-0.3 0.157-0.457 0.457-0.457h5.571c0.3 0 0.371 0.157 0.371 0.371v10.286h0.014z"
19
- />
20
- </>
21
- ) : (
22
- <path
23
- fill={color}
24
- d="M42.886 14.44c0.293-1.841 1.914-4.126 5.010-4.126 2.871 0 4.529 2.103 4.791 4.126h-9.801zM38.906 15.915c0 5.083 3.682 8.546 9.064 8.546 3.535 0 5.858-1.731 7.223-3.243 0.14-0.152 0.219-0.366 0-0.591l-1.896-1.749c-0.219-0.219-0.433-0.14-0.591 0-0.963 0.847-2.45 2.194-4.736 2.194-2.651 0-4.571-1.621-5.010-3.682h13.117c0.366 0 0.591-0.219 0.591-0.591v-0.811c0-4.864-3.17-8.917-8.546-8.917-5.79 0-9.216 3.95-9.216 8.844zM59.020 23.723c0 0.293 0.146 0.445 0.445 0.445h2.798c0.293 0 0.445-0.146 0.445-0.445v-23.357c0-0.219-0.073-0.366-0.366-0.366h-2.95c-0.293 0-0.366 0.146-0.366 0.366v23.357h-0.006zM33.085 23.723c0 0.293 0.146 0.445 0.445 0.445h2.798c0.293 0 0.445-0.146 0.445-0.445v-9.356c0-3.98-2.359-7.296-7.369-7.296h-0.073c-2.432 0-4.273 0.811-5.376 1.768v-0.884c0-0.293-0.219-0.445-0.445-0.445h-2.798c-0.293 0-0.445 0.146-0.445 0.445v15.768c0 0.293 0.146 0.445 0.445 0.445h2.798c0.293 0 0.445-0.146 0.445-0.445v-8.692c0-2.725 1.402-4.718 4.645-4.718s4.492 1.987 4.492 4.718v8.692h-0.006zM86.156 28.648c1.286 1.506 3.992 3.328 7.796 3.328 5.315 0 8.546-3.243 8.546-8.399v-15.622c0-0.293-0.146-0.445-0.445-0.445h-2.651c-0.293 0-0.445 0.146-0.445 0.445v0.884c-1.176-0.957-2.725-1.768-5.23-1.768-4.791 0-8.99 3.535-8.99 8.692 0 5.23 4.053 8.692 8.99 8.692 2.316 0 3.938-0.847 5.083-1.743v1.085c0 2.95-1.713 4.864-4.894 4.864-2.639 0-4.389-1.432-5.498-2.505-0.226-0.219-0.518-0.219-0.738 0l-1.53 1.755c-0.219 0.219-0.219 0.439 0.006 0.738zM14.147 15.762c0 2.95-2.213 5.303-5.157 5.303s-5.010-2.505-5.010-5.303v-0.146c0-2.798 2.060-5.157 5.010-5.157s5.157 2.359 5.157 5.303zM0 15.762c0 4.718 3.834 8.692 8.99 8.692s8.99-3.974 8.99-8.692v-0.146c0-4.718-3.834-8.546-8.99-8.546s-8.99 3.834-8.99 8.692zM79.067 15.762c0 2.95-2.213 5.303-5.157 5.303-2.95 0-5.010-2.505-5.010-5.303v-0.146c0-2.798 2.060-5.157 5.010-5.157 2.944 0 5.157 2.359 5.157 5.303zM64.914 15.762c0 4.718 3.834 8.692 8.99 8.692s8.99-3.98 8.99-8.692v-0.146c0-4.718-3.834-8.546-8.99-8.546s-8.99 3.834-8.99 8.692zM105.96 23.723c0 0.293 0.146 0.445 0.445 0.445h2.798c0.293 0 0.445-0.146 0.445-0.445v-15.842c0-0.219-0.073-0.366-0.366-0.366h-2.95c-0.293 0-0.366 0.146-0.366 0.366v15.842h-0.006zM105.96 3.31c0 0.293 0.146 0.445 0.445 0.445h2.798c0.293 0 0.445-0.146 0.445-0.445v-2.944c0-0.219-0.073-0.366-0.366-0.366h-2.95c-0.293 0-0.366 0.146-0.366 0.366v2.944h-0.006zM125.854 23.723c0 0.293 0.146 0.445 0.445 0.445h2.798c0.293 0 0.445-0.146 0.445-0.445v-9.356c0-3.98-2.359-7.296-7.369-7.296h-0.073c-2.432 0-4.273 0.811-5.376 1.768v-0.884c0-0.293-0.219-0.445-0.445-0.445h-2.798c-0.293 0-0.445 0.146-0.445 0.445v15.768c0 0.293 0.146 0.445 0.445 0.445h2.798c0.293 0 0.445-0.146 0.445-0.445v-8.692c0-2.725 1.402-4.718 4.645-4.718s4.492 1.987 4.492 4.718v8.692h-0.006zM98.883 15.762c0 2.95-2.213 5.303-5.157 5.303-2.95 0-5.010-2.505-5.010-5.303v-0.146c0-2.798 2.060-5.157 5.010-5.157s5.157 2.359 5.157 5.303z"
25
- />
26
- );
27
-
28
- return (
29
- <IntegrationLogoSvgWrapper viewBox={viewBox} {...rest}>
30
- <title>OneLogin integration logo</title>
31
- {path}
32
- </IntegrationLogoSvgWrapper>
33
- );
34
- };
@@ -1,39 +0,0 @@
1
- import React from "react";
2
- import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
3
-
4
- export const SalesforceSvg = ({
5
- color = "#00a1e0",
6
- square,
7
- ...rest
8
- }: SvgLogoProps) => {
9
- const viewBox = square ? "0 0 32 32" : "0 0 46 32";
10
- const path = square ? (
11
- <>
12
- <path
13
- fill={color}
14
- d="M13.31 7.2c1.034-1.071 2.475-1.748 4.063-1.748 2.118 0 3.952 1.182 4.937 2.93 0.849-0.382 1.798-0.591 2.795-0.591 3.817 0 6.895 3.115 6.895 6.957s-3.090 6.957-6.895 6.957c-0.468 0-0.923-0.049-1.354-0.136-0.862 1.539-2.512 2.586-4.408 2.586-0.788 0-1.539-0.185-2.204-0.505-0.874 2.056-2.918 3.509-5.294 3.509-2.475 0-4.593-1.564-5.405-3.768-0.357 0.074-0.726 0.111-1.096 0.111-2.955 0-5.344-2.413-5.344-5.405 0-1.995 1.071-3.743 2.672-4.679-0.332-0.751-0.517-1.588-0.517-2.475-0.012-3.411 2.783-6.193 6.205-6.193 2.019 0 3.817 0.96 4.95 2.45z"
15
- />
16
- <path
17
- fill="#fff"
18
- d="M4.011 17.030l0.135-0.357c0.025-0.062 0.062-0.037 0.086-0.025 0.037 0.025 0.062 0.037 0.111 0.074 0.382 0.246 0.739 0.246 0.85 0.246 0.283 0 0.468-0.148 0.468-0.357v-0.012c0-0.222-0.271-0.308-0.591-0.406l-0.074-0.025c-0.431-0.123-0.899-0.308-0.899-0.85v-0.012c0-0.517 0.419-0.886 1.022-0.886h0.062c0.357 0 0.689 0.098 0.936 0.259 0.025 0.012 0.049 0.037 0.037 0.074s-0.123 0.32-0.135 0.357c-0.025 0.062-0.086 0.025-0.086 0.025-0.222-0.123-0.554-0.209-0.837-0.209-0.259 0-0.419 0.135-0.419 0.32v0.012c0 0.209 0.283 0.308 0.603 0.406l0.062 0.012c0.431 0.136 0.886 0.32 0.886 0.85v0.012c0 0.566-0.406 0.911-1.059 0.911-0.32 0-0.628-0.049-0.96-0.222-0.062-0.037-0.123-0.061-0.185-0.111-0.012-0.025-0.037-0.037-0.012-0.086zM13.614 17.030l0.135-0.357c0.025-0.062 0.074-0.037 0.086-0.025 0.037 0.025 0.062 0.037 0.111 0.074 0.382 0.246 0.739 0.246 0.85 0.246 0.283 0 0.468-0.148 0.468-0.357v-0.012c0-0.222-0.271-0.308-0.591-0.406l-0.074-0.025c-0.431-0.123-0.899-0.308-0.899-0.85v-0.012c0-0.517 0.419-0.886 1.022-0.886h0.062c0.357 0 0.69 0.098 0.936 0.259 0.025 0.012 0.049 0.037 0.037 0.074s-0.123 0.32-0.136 0.357c-0.025 0.062-0.086 0.025-0.086 0.025-0.222-0.123-0.554-0.209-0.837-0.209-0.259 0-0.419 0.135-0.419 0.32v0.012c0 0.209 0.283 0.308 0.603 0.406l0.062 0.012c0.431 0.136 0.886 0.32 0.886 0.85v0.012c0 0.566-0.406 0.911-1.059 0.911-0.32 0-0.628-0.049-0.96-0.222-0.062-0.037-0.123-0.061-0.185-0.111 0-0.025-0.025-0.037-0.012-0.086zM20.731 15.343c0.049 0.185 0.086 0.382 0.086 0.591s-0.025 0.406-0.086 0.591c-0.049 0.185-0.136 0.345-0.246 0.48s-0.259 0.246-0.419 0.32c-0.172 0.074-0.369 0.111-0.591 0.111s-0.419-0.037-0.591-0.111c-0.172-0.074-0.308-0.185-0.419-0.32s-0.197-0.296-0.246-0.48c-0.049-0.185-0.086-0.382-0.086-0.591s0.025-0.406 0.086-0.591c0.049-0.185 0.135-0.345 0.246-0.48s0.259-0.246 0.419-0.32c0.172-0.074 0.369-0.123 0.591-0.123s0.419 0.037 0.591 0.123c0.172 0.074 0.308 0.185 0.419 0.32s0.197 0.296 0.246 0.48zM20.177 15.922c0-0.32-0.061-0.566-0.172-0.739s-0.296-0.258-0.529-0.258c-0.246 0-0.419 0.086-0.529 0.258s-0.172 0.419-0.172 0.739 0.062 0.566 0.172 0.751c0.111 0.172 0.283 0.259 0.529 0.259s0.419-0.086 0.529-0.259c0.123-0.172 0.172-0.431 0.172-0.751zM25.237 16.845l0.136 0.369c0.012 0.049-0.025 0.061-0.025 0.061-0.209 0.086-0.492 0.136-0.776 0.136-0.48 0-0.837-0.136-1.084-0.406s-0.369-0.64-0.369-1.096c0-0.209 0.025-0.406 0.086-0.591s0.148-0.345 0.271-0.48c0.123-0.135 0.271-0.246 0.443-0.32s0.382-0.123 0.616-0.123c0.16 0 0.296 0.012 0.406 0.025 0.123 0.025 0.296 0.062 0.369 0.098 0.012 0 0.049 0.025 0.037 0.062-0.049 0.148-0.086 0.246-0.136 0.369-0.025 0.062-0.061 0.037-0.061 0.037-0.185-0.062-0.357-0.086-0.579-0.086-0.271 0-0.48 0.086-0.603 0.271-0.136 0.172-0.209 0.406-0.209 0.726 0 0.345 0.086 0.591 0.234 0.751s0.357 0.234 0.628 0.234c0.111 0 0.209-0.012 0.296-0.025s0.172-0.037 0.259-0.074c-0.012 0.025 0.037 0.012 0.061 0.062zM28.032 15.232c0.123 0.419 0.061 0.776 0.049 0.8 0 0.049-0.049 0.049-0.049 0.049h-1.859c0.012 0.283 0.074 0.48 0.222 0.616 0.136 0.135 0.345 0.222 0.64 0.222 0.443 0 0.628-0.086 0.763-0.136 0 0 0.049-0.012 0.074 0.037l0.123 0.345c0.025 0.061 0 0.074-0.012 0.086-0.111 0.062-0.394 0.185-0.936 0.185-0.259 0-0.492-0.037-0.677-0.111s-0.345-0.172-0.468-0.308c-0.123-0.136-0.209-0.296-0.271-0.468-0.061-0.185-0.086-0.382-0.086-0.591s0.025-0.406 0.086-0.591c0.049-0.185 0.136-0.345 0.246-0.48s0.259-0.246 0.431-0.32c0.172-0.086 0.382-0.123 0.616-0.123 0.197 0 0.382 0.037 0.529 0.111 0.111 0.049 0.234 0.135 0.357 0.271 0.061 0.049 0.172 0.234 0.222 0.406zM26.185 15.626h1.317c-0.012-0.172-0.049-0.32-0.123-0.443-0.111-0.172-0.271-0.271-0.517-0.271s-0.419 0.098-0.529 0.271c-0.074 0.111-0.111 0.259-0.148 0.443zM13.171 15.232c0.123 0.419 0.062 0.776 0.062 0.8 0 0.049-0.049 0.049-0.049 0.049h-1.859c0.012 0.283 0.074 0.48 0.222 0.616 0.135 0.135 0.345 0.222 0.64 0.222 0.443 0 0.628-0.086 0.763-0.136 0 0 0.049-0.012 0.074 0.037l0.123 0.345c0.025 0.061 0 0.074-0.012 0.086-0.111 0.062-0.394 0.185-0.936 0.185-0.259 0-0.492-0.037-0.677-0.111s-0.345-0.172-0.468-0.308c-0.123-0.136-0.209-0.296-0.271-0.468-0.062-0.185-0.086-0.382-0.086-0.591s0.025-0.406 0.086-0.591c0.049-0.185 0.135-0.345 0.246-0.48s0.259-0.246 0.431-0.32c0.172-0.086 0.382-0.123 0.616-0.123 0.197 0 0.382 0.037 0.529 0.111 0.111 0.049 0.234 0.135 0.357 0.271 0.049 0.049 0.172 0.234 0.209 0.406zM11.324 15.626h1.33c-0.012-0.172-0.049-0.32-0.123-0.443-0.111-0.172-0.271-0.271-0.517-0.271s-0.419 0.098-0.529 0.271c-0.086 0.111-0.123 0.259-0.16 0.443zM8.061 15.528c0 0 0.148 0.012 0.308 0.037v-0.074c0-0.246-0.049-0.369-0.148-0.443s-0.259-0.123-0.456-0.123c0 0-0.456 0-0.813 0.185-0.012 0.012-0.025 0.012-0.025 0.012s-0.049 0.012-0.062-0.025l-0.135-0.357c-0.025-0.049 0.012-0.074 0.012-0.074 0.172-0.135 0.566-0.209 0.566-0.209 0.135-0.025 0.357-0.049 0.492-0.049 0.369 0 0.653 0.086 0.85 0.258s0.296 0.443 0.296 0.825v1.699c0 0 0 0.049-0.037 0.061 0 0-0.074 0.025-0.135 0.037s-0.283 0.061-0.468 0.086c-0.185 0.037-0.369 0.049-0.566 0.049-0.185 0-0.345-0.012-0.492-0.049s-0.271-0.086-0.382-0.16c-0.098-0.074-0.185-0.172-0.246-0.296-0.062-0.111-0.086-0.259-0.086-0.419s0.037-0.308 0.098-0.431 0.16-0.222 0.271-0.308c0.111-0.086 0.246-0.136 0.382-0.185 0.148-0.037 0.295-0.062 0.456-0.062 0.148 0.012 0.246 0.012 0.32 0.012zM7.323 16.833c0 0 0.172 0.136 0.542 0.111 0.271-0.012 0.505-0.062 0.505-0.062v-0.849c0 0-0.234-0.037-0.505-0.037-0.382 0-0.542 0.135-0.542 0.135-0.111 0.074-0.16 0.197-0.16 0.357 0 0.099 0.025 0.185 0.062 0.246 0.012 0.025 0.025 0.049 0.098 0.099zM23.021 14.58c-0.012 0.049-0.111 0.308-0.135 0.394-0.012 0.037-0.037 0.049-0.074 0.049 0 0-0.111-0.025-0.209-0.025-0.061 0-0.16 0.012-0.246 0.037s-0.16 0.074-0.234 0.136c-0.074 0.062-0.123 0.16-0.16 0.271s-0.061 0.296-0.061 0.492v1.379c0 0.037-0.025 0.061-0.062 0.061h-0.492c-0.037 0-0.061-0.025-0.061-0.061v-2.77c0-0.037 0.025-0.062 0.049-0.062h0.48c0.037 0 0.049 0.025 0.049 0.062v0.222c0.074-0.098 0.197-0.185 0.308-0.234s0.246-0.086 0.48-0.074c0.123 0.012 0.283 0.037 0.308 0.049 0.049 0.012 0.074 0.025 0.061 0.074zM18.453 13.299c0.012 0 0.049 0.025 0.037 0.062l-0.148 0.394c-0.012 0.025-0.025 0.049-0.086 0.025-0.012 0-0.037-0.012-0.099-0.025-0.037-0.012-0.099-0.012-0.148-0.012-0.074 0-0.135 0.012-0.197 0.025s-0.111 0.049-0.16 0.098-0.099 0.111-0.136 0.197c-0.074 0.197-0.099 0.406-0.099 0.419h0.591c0.049 0 0.062 0.025 0.062 0.062l-0.074 0.382c-0.012 0.062-0.062 0.049-0.062 0.049h-0.616l-0.394 2.376c-0.049 0.246-0.099 0.456-0.16 0.628s-0.136 0.296-0.246 0.419c-0.099 0.111-0.209 0.197-0.345 0.234-0.123 0.049-0.283 0.074-0.456 0.074-0.086 0-0.172 0-0.271-0.025-0.074-0.012-0.111-0.025-0.172-0.049-0.025-0.012-0.037-0.037-0.025-0.074s0.123-0.332 0.136-0.382c0.025-0.049 0.062-0.025 0.062-0.025 0.037 0.012 0.062 0.025 0.098 0.037 0.049 0.012 0.098 0.012 0.148 0.012 0.086 0 0.16-0.012 0.222-0.037 0.074-0.025 0.123-0.074 0.172-0.135s0.086-0.148 0.136-0.259c0.037-0.111 0.074-0.271 0.111-0.456l0.419-2.327h-0.406c-0.049 0-0.062-0.025-0.062-0.062l0.074-0.382c0.012-0.062 0.062-0.049 0.062-0.049h0.419l0.025-0.123c0.061-0.369 0.185-0.652 0.369-0.837s0.456-0.283 0.788-0.283c0.099 0 0.185 0.012 0.259 0.025 0.049-0.012 0.111 0 0.172 0.025zM10.154 17.301c0 0.037-0.025 0.062-0.049 0.062h-0.492c-0.037 0-0.049-0.025-0.049-0.062v-3.952c0-0.025 0.025-0.062 0.049-0.062h0.492c0.037 0 0.049 0.025 0.049 0.062v3.952z"
19
- />
20
- </>
21
- ) : (
22
- <>
23
- <path
24
- fill={color}
25
- d="M18.991 3.635c1.461-1.513 3.496-2.47 5.739-2.47 2.991 0 5.583 1.67 6.974 4.139 1.2-0.539 2.539-0.835 3.948-0.835 5.391 0 9.739 4.4 9.739 9.826s-4.365 9.826-9.739 9.826c-0.661 0-1.304-0.070-1.913-0.191-1.217 2.174-3.548 3.652-6.226 3.652-1.113 0-2.174-0.261-3.113-0.713-1.235 2.904-4.122 4.957-7.478 4.957-3.496 0-6.487-2.209-7.635-5.322-0.504 0.104-1.026 0.157-1.548 0.157-4.174 0-7.548-3.409-7.548-7.635 0-2.817 1.513-5.287 3.774-6.609-0.47-1.061-0.73-2.243-0.73-3.496-0.017-4.817 3.93-8.748 8.765-8.748 2.852 0 5.391 1.357 6.991 3.461z"
26
- />
27
- <path
28
- fill="#fff"
29
- d="M6.73 16.591l0.191-0.504c0.035-0.087 0.087-0.052 0.122-0.035 0.052 0.035 0.087 0.052 0.157 0.104 0.539 0.348 1.043 0.348 1.2 0.348 0.4 0 0.661-0.209 0.661-0.504v-0.017c0-0.313-0.383-0.435-0.835-0.574l-0.104-0.035c-0.609-0.174-1.27-0.435-1.27-1.2v-0.017c0-0.73 0.591-1.252 1.443-1.252h0.087c0.504 0 0.974 0.139 1.322 0.365 0.035 0.017 0.070 0.052 0.052 0.104s-0.174 0.452-0.191 0.504c-0.035 0.087-0.122 0.035-0.122 0.035-0.313-0.174-0.783-0.296-1.183-0.296-0.365 0-0.591 0.191-0.591 0.452v0.017c0 0.296 0.4 0.435 0.852 0.574l0.087 0.017c0.609 0.191 1.252 0.452 1.252 1.2v0.017c0 0.8-0.574 1.287-1.496 1.287-0.452 0-0.887-0.070-1.357-0.313-0.087-0.052-0.174-0.087-0.261-0.157-0.017-0.035-0.052-0.052-0.017-0.122zM20.296 16.591l0.191-0.504c0.035-0.087 0.104-0.052 0.122-0.035 0.052 0.035 0.087 0.052 0.157 0.104 0.539 0.348 1.043 0.348 1.2 0.348 0.4 0 0.661-0.209 0.661-0.504v-0.017c0-0.313-0.383-0.435-0.835-0.574l-0.104-0.035c-0.609-0.174-1.27-0.435-1.27-1.2v-0.017c0-0.73 0.591-1.252 1.443-1.252h0.087c0.504 0 0.974 0.139 1.322 0.365 0.035 0.017 0.070 0.052 0.052 0.104s-0.174 0.452-0.191 0.504c-0.035 0.087-0.122 0.035-0.122 0.035-0.313-0.174-0.783-0.296-1.183-0.296-0.365 0-0.591 0.191-0.591 0.452v0.017c0 0.296 0.4 0.435 0.852 0.574l0.087 0.017c0.609 0.191 1.252 0.452 1.252 1.2v0.017c0 0.8-0.574 1.287-1.496 1.287-0.452 0-0.887-0.070-1.357-0.313-0.087-0.052-0.174-0.087-0.261-0.157 0-0.035-0.035-0.052-0.017-0.122zM30.348 14.209c0.070 0.261 0.122 0.539 0.122 0.835s-0.035 0.574-0.122 0.835c-0.070 0.261-0.191 0.487-0.348 0.678s-0.365 0.348-0.591 0.452c-0.243 0.104-0.522 0.157-0.835 0.157s-0.591-0.052-0.835-0.157c-0.243-0.104-0.435-0.261-0.591-0.452s-0.278-0.417-0.348-0.678c-0.070-0.261-0.122-0.539-0.122-0.835s0.035-0.574 0.122-0.835c0.070-0.261 0.191-0.487 0.348-0.678s0.365-0.348 0.591-0.452c0.243-0.104 0.522-0.174 0.835-0.174s0.591 0.052 0.835 0.174c0.243 0.104 0.435 0.261 0.591 0.452s0.278 0.417 0.348 0.678zM29.565 15.026c0-0.452-0.087-0.8-0.243-1.043s-0.417-0.365-0.748-0.365c-0.348 0-0.591 0.122-0.748 0.365s-0.243 0.591-0.243 1.043c0 0.452 0.087 0.8 0.243 1.061 0.157 0.243 0.4 0.365 0.748 0.365s0.591-0.122 0.748-0.365c0.174-0.243 0.243-0.609 0.243-1.061zM36.713 16.33l0.191 0.522c0.017 0.070-0.035 0.087-0.035 0.087-0.296 0.122-0.696 0.191-1.096 0.191-0.678 0-1.183-0.191-1.53-0.574s-0.522-0.904-0.522-1.548c0-0.296 0.035-0.574 0.122-0.835s0.209-0.487 0.383-0.678c0.174-0.191 0.383-0.348 0.626-0.452s0.539-0.174 0.87-0.174c0.226 0 0.417 0.017 0.574 0.035 0.174 0.035 0.417 0.087 0.522 0.139 0.017 0 0.070 0.035 0.052 0.087-0.070 0.209-0.122 0.348-0.191 0.522-0.035 0.087-0.087 0.052-0.087 0.052-0.261-0.087-0.504-0.122-0.817-0.122-0.383 0-0.678 0.122-0.852 0.383-0.191 0.243-0.296 0.574-0.296 1.026 0 0.487 0.122 0.835 0.33 1.061s0.504 0.33 0.887 0.33c0.157 0 0.296-0.017 0.417-0.035s0.243-0.052 0.365-0.104c-0.017 0.035 0.052 0.017 0.087 0.087zM40.661 14.052c0.174 0.591 0.087 1.096 0.070 1.13 0 0.070-0.070 0.070-0.070 0.070h-2.626c0.017 0.4 0.104 0.678 0.313 0.87 0.191 0.191 0.487 0.313 0.904 0.313 0.626 0 0.887-0.122 1.078-0.191 0 0 0.070-0.017 0.104 0.052l0.174 0.487c0.035 0.087 0 0.104-0.017 0.122-0.157 0.087-0.557 0.261-1.322 0.261-0.365 0-0.696-0.052-0.957-0.157s-0.487-0.243-0.661-0.435c-0.174-0.191-0.296-0.417-0.383-0.661-0.087-0.261-0.122-0.539-0.122-0.835s0.035-0.574 0.122-0.835c0.070-0.261 0.191-0.487 0.348-0.678s0.365-0.348 0.609-0.452c0.243-0.122 0.539-0.174 0.87-0.174 0.278 0 0.539 0.052 0.748 0.157 0.157 0.070 0.33 0.191 0.504 0.383 0.087 0.070 0.243 0.33 0.313 0.574zM38.052 14.609h1.861c-0.017-0.243-0.070-0.452-0.174-0.626-0.157-0.243-0.383-0.383-0.73-0.383s-0.591 0.139-0.748 0.383c-0.104 0.157-0.157 0.365-0.209 0.626zM19.67 14.052c0.174 0.591 0.087 1.096 0.087 1.13 0 0.070-0.070 0.070-0.070 0.070h-2.626c0.017 0.4 0.104 0.678 0.313 0.87 0.191 0.191 0.487 0.313 0.904 0.313 0.626 0 0.887-0.122 1.078-0.191 0 0 0.070-0.017 0.104 0.052l0.174 0.487c0.035 0.087 0 0.104-0.017 0.122-0.157 0.087-0.557 0.261-1.322 0.261-0.365 0-0.696-0.052-0.957-0.157s-0.487-0.243-0.661-0.435c-0.174-0.191-0.296-0.417-0.383-0.661-0.087-0.261-0.122-0.539-0.122-0.835s0.035-0.574 0.122-0.835c0.070-0.261 0.191-0.487 0.348-0.678s0.365-0.348 0.609-0.452c0.243-0.122 0.539-0.174 0.87-0.174 0.278 0 0.539 0.052 0.748 0.157 0.157 0.070 0.33 0.191 0.504 0.383 0.070 0.070 0.243 0.33 0.296 0.574zM17.061 14.609h1.878c-0.017-0.243-0.070-0.452-0.174-0.626-0.157-0.243-0.383-0.383-0.73-0.383s-0.591 0.139-0.748 0.383c-0.122 0.157-0.174 0.365-0.226 0.626zM12.452 14.47c0 0 0.209 0.017 0.435 0.052v-0.104c0-0.348-0.070-0.522-0.209-0.626s-0.365-0.174-0.643-0.174c0 0-0.643 0-1.148 0.261-0.017 0.017-0.035 0.017-0.035 0.017s-0.070 0.017-0.087-0.035l-0.191-0.504c-0.035-0.070 0.017-0.104 0.017-0.104 0.243-0.191 0.8-0.296 0.8-0.296 0.191-0.035 0.504-0.070 0.696-0.070 0.522 0 0.922 0.122 1.2 0.365s0.417 0.626 0.417 1.165v2.4c0 0 0 0.070-0.052 0.087 0 0-0.104 0.035-0.191 0.052s-0.4 0.087-0.661 0.122c-0.261 0.052-0.522 0.070-0.8 0.070-0.261 0-0.487-0.017-0.696-0.070s-0.383-0.122-0.539-0.226c-0.139-0.104-0.261-0.243-0.348-0.417-0.087-0.157-0.122-0.365-0.122-0.591s0.052-0.435 0.139-0.609c0.087-0.174 0.226-0.313 0.383-0.435s0.348-0.191 0.539-0.261c0.209-0.052 0.417-0.087 0.643-0.087 0.209 0.017 0.348 0.017 0.452 0.017zM11.409 16.313c0 0 0.243 0.191 0.765 0.157 0.383-0.017 0.713-0.087 0.713-0.087v-1.2c0 0-0.33-0.052-0.713-0.052-0.539 0-0.765 0.191-0.765 0.191-0.157 0.104-0.226 0.278-0.226 0.504 0 0.139 0.035 0.261 0.087 0.348 0.017 0.035 0.035 0.070 0.139 0.139zM33.583 13.13c-0.017 0.070-0.157 0.435-0.191 0.557-0.017 0.052-0.052 0.070-0.104 0.070 0 0-0.157-0.035-0.296-0.035-0.087 0-0.226 0.017-0.348 0.052s-0.226 0.104-0.33 0.191c-0.104 0.087-0.174 0.226-0.226 0.383s-0.087 0.417-0.087 0.696v1.948c0 0.052-0.035 0.087-0.087 0.087h-0.696c-0.052 0-0.087-0.035-0.087-0.087v-3.913c0-0.052 0.035-0.087 0.070-0.087h0.678c0.052 0 0.070 0.035 0.070 0.087v0.313c0.104-0.139 0.278-0.261 0.435-0.33s0.348-0.122 0.678-0.104c0.174 0.017 0.4 0.052 0.435 0.070 0.070 0.017 0.104 0.035 0.087 0.104zM27.13 11.322c0.017 0 0.070 0.035 0.052 0.087l-0.209 0.557c-0.017 0.035-0.035 0.070-0.122 0.035-0.017 0-0.052-0.017-0.139-0.035-0.052-0.017-0.139-0.017-0.209-0.017-0.104 0-0.191 0.017-0.278 0.035s-0.157 0.070-0.226 0.139c-0.070 0.070-0.139 0.157-0.191 0.278-0.104 0.278-0.139 0.574-0.139 0.591h0.835c0.070 0 0.087 0.035 0.087 0.087l-0.104 0.539c-0.017 0.087-0.087 0.070-0.087 0.070h-0.87l-0.557 3.357c-0.070 0.348-0.139 0.643-0.226 0.887s-0.191 0.417-0.348 0.591c-0.139 0.157-0.296 0.278-0.487 0.33-0.174 0.070-0.4 0.104-0.643 0.104-0.122 0-0.243 0-0.383-0.035-0.104-0.017-0.157-0.035-0.243-0.070-0.035-0.017-0.052-0.052-0.035-0.104s0.174-0.47 0.191-0.539c0.035-0.070 0.087-0.035 0.087-0.035 0.052 0.017 0.087 0.035 0.139 0.052 0.070 0.017 0.139 0.017 0.209 0.017 0.122 0 0.226-0.017 0.313-0.052 0.104-0.035 0.174-0.104 0.243-0.191s0.122-0.209 0.191-0.365c0.052-0.157 0.104-0.383 0.157-0.643l0.591-3.287h-0.574c-0.070 0-0.087-0.035-0.087-0.087l0.104-0.539c0.017-0.087 0.087-0.070 0.087-0.070h0.591l0.035-0.174c0.087-0.522 0.261-0.922 0.522-1.183s0.643-0.4 1.113-0.4c0.139 0 0.261 0.017 0.365 0.035 0.070-0.017 0.157 0 0.243 0.035zM15.409 16.974c0 0.052-0.035 0.087-0.070 0.087h-0.696c-0.052 0-0.070-0.035-0.070-0.087v-5.583c0-0.035 0.035-0.087 0.070-0.087h0.696c0.052 0 0.070 0.035 0.070 0.087v5.583z"
30
- />
31
- </>
32
- );
33
- return (
34
- <IntegrationLogoSvgWrapper viewBox={viewBox} {...rest}>
35
- <title>Salesforce integration logo</title>
36
- {path}
37
- </IntegrationLogoSvgWrapper>
38
- );
39
- };
@@ -1,40 +0,0 @@
1
- import React from "react";
2
- import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
3
-
4
- export const SlackSvg = ({ color, ...rest }: SvgLogoProps) => (
5
- <IntegrationLogoSvgWrapper viewBox="0 0 32 32" {...rest}>
6
- <title>Slack integration logo</title>
7
- <path
8
- fill={color || "#e01e5a"}
9
- d="M6.813 20.181c0 1.832-1.497 3.329-3.329 3.329s-3.329-1.497-3.329-3.329c0-1.832 1.497-3.329 3.329-3.329h3.329v3.329z"
10
- />
11
- <path
12
- fill={color || "#e01e5a"}
13
- d="M8.49 20.181c0-1.832 1.497-3.329 3.329-3.329s3.329 1.497 3.329 3.329v8.335c0 1.832-1.497 3.329-3.329 3.329s-3.329-1.497-3.329-3.329v-8.335z"
14
- />
15
- <path
16
- fill={color || "#36c5f0"}
17
- d="M11.819 6.813c-1.832 0-3.329-1.497-3.329-3.329s1.497-3.329 3.329-3.329c1.832 0 3.329 1.497 3.329 3.329v3.329h-3.329z"
18
- />
19
- <path
20
- fill={color || "#36c5f0"}
21
- d="M11.819 8.49c1.832 0 3.329 1.497 3.329 3.329s-1.497 3.329-3.329 3.329h-8.335c-1.832 0-3.329-1.497-3.329-3.329s1.497-3.329 3.329-3.329h8.335z"
22
- />
23
- <path
24
- fill={color || "#2eb67d"}
25
- d="M25.187 11.819c0-1.832 1.497-3.329 3.329-3.329s3.329 1.497 3.329 3.329c0 1.832-1.497 3.329-3.329 3.329h-3.329v-3.329z"
26
- />
27
- <path
28
- fill={color || "#2eb67d"}
29
- d="M23.51 11.819c0 1.832-1.497 3.329-3.329 3.329s-3.329-1.497-3.329-3.329v-8.335c0-1.832 1.497-3.329 3.329-3.329s3.329 1.497 3.329 3.329v8.335z"
30
- />
31
- <path
32
- fill={color || "#ecb22e"}
33
- d="M20.181 25.187c1.832 0 3.329 1.497 3.329 3.329s-1.497 3.329-3.329 3.329c-1.832 0-3.329-1.497-3.329-3.329v-3.329h3.329z"
34
- />
35
- <path
36
- fill={color || "#ecb22e"}
37
- d="M20.181 23.51c-1.832 0-3.329-1.497-3.329-3.329s1.497-3.329 3.329-3.329h8.335c1.832 0 3.329 1.497 3.329 3.329s-1.497 3.329-3.329 3.329h-8.335z"
38
- />
39
- </IntegrationLogoSvgWrapper>
40
- );
@@ -1,35 +0,0 @@
1
- import React from "react";
2
- import { SvgProps, Svg } from "../../Svg";
3
-
4
- interface SvgWrapperProps extends SvgProps {
5
- square?: boolean;
6
- size?: number;
7
- }
8
-
9
- export interface SvgLogoProps extends SvgProps {
10
- color?: string;
11
- square?: boolean;
12
- }
13
-
14
- export const IntegrationLogoSvgWrapper = ({
15
- children,
16
- viewBox,
17
- square,
18
- size,
19
- ...rest
20
- }: SvgWrapperProps) => {
21
- const sizePx = `${size}px`;
22
- return (
23
- <Svg
24
- version="1.1"
25
- xmlns="http://www.w3.org/2000/svg"
26
- xmlnsXlink="http://www.w3.org/1999/xlink"
27
- viewBox={viewBox}
28
- height={sizePx}
29
- width={square ? sizePx : undefined}
30
- {...rest}
31
- >
32
- {children}
33
- </Svg>
34
- );
35
- };
@@ -1,51 +0,0 @@
1
- import React from "react";
2
- import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
3
-
4
- export const ZoomSvg = ({
5
- color = "#2d8cff",
6
- square,
7
- ...rest
8
- }: SvgLogoProps) => {
9
- const viewBox = square ? "0 0 32 32" : "0 0 142 32";
10
- const path = square ? (
11
- <>
12
- <path
13
- fill={color}
14
- d="M0.101 15.986c0 8.787 7.124 15.911 15.911 15.911s15.911-7.123 15.911-15.911c0-8.787-7.124-15.911-15.911-15.911s-15.911 7.124-15.911 15.911z"
15
- />
16
- <path
17
- fill="#fff"
18
- d="M19.915 21.691h-10.625c-1.969 0-3.566-1.596-3.566-3.566v-7.286c0-0.42 0.341-0.76 0.761-0.76h10.625c1.969 0 3.566 1.597 3.566 3.566v7.286c0 0.42-0.34 0.76-0.76 0.76z"
19
- />
20
- <path
21
- fill="#fff"
22
- d="M21.157 18.249l4.684 3.33c0.282 0 0.51-0.228 0.51-0.51v-10.221c0-0.282-0.228-0.51-0.51-0.51l-4.684 3.33v4.582z"
23
- />
24
- </>
25
- ) : (
26
- <>
27
- <path
28
- fill={color}
29
- d="M57.72 4.68c-3.12-3.12-7.2-4.68-11.32-4.68-4.080 0-8.2 1.56-11.32 4.68-6.24 6.24-6.24 16.36 0 22.64 6.24 6.24 16.36 6.24 22.64 0 6.24-6.24 6.24-16.4 0-22.64zM53.2 22.8c-3.76 3.76-9.84 3.76-13.56 0-3.76-3.76-3.76-9.84 0-13.56 3.76-3.76 9.84-3.76 13.56 0 3.72 3.72 3.72 9.8 0 13.56z"
30
- />
31
- <path
32
- fill={color}
33
- d="M91.32 4.68c-3.12-3.12-7.2-4.68-11.32-4.68-4.080 0-8.2 1.56-11.32 4.68-6.24 6.24-6.24 16.36 0 22.64 6.24 6.24 16.36 6.24 22.64 0 6.24-6.24 6.24-16.4 0-22.64zM86.8 22.8c-3.76 3.76-9.84 3.76-13.56 0-3.76-3.76-3.76-9.84 0-13.56 3.76-3.76 9.84-3.76 13.56 0 3.72 3.72 3.72 9.8 0 13.56z"
34
- />
35
- <path
36
- fill={color}
37
- d="M6.4 31.92l1.6 0.080h24l-0.080-1.6c-0.2-2.64-2.080-4.56-4.72-4.72l-1.6-0.080h-14.4l19.2-19.2-0.080-1.6c-0.12-2.64-2.080-4.6-4.72-4.72l-1.6-0.080h-24l0.080 1.6c0.2 2.6 2.12 4.56 4.72 4.72l1.6 0.080h14.4l-19.2 19.2 0.080 1.6c0.16 2.64 2.080 4.56 4.72 4.72z"
38
- />
39
- <path
40
- fill={color}
41
- d="M115.92 9.6c0.56 0.96 0.72 2 0.8 3.2l0.080 1.6v11.2l0.080 1.6c0.16 2.6 2.080 4.56 4.72 4.72l1.6 0.080v-17.6l0.080-1.6c0.080-1.2 0.24-2.28 0.8-3.24 1.12-1.92 3.16-3.16 5.52-3.16s4.44 1.28 5.56 3.2c0.56 0.96 0.72 2.040 0.76 3.2l0.080 1.6v11.2l0.080 1.6c0.16 2.64 2.080 4.56 4.72 4.72l1.6 0.080v-19.2c0-7.080-5.72-12.8-12.8-12.8-3.84 0-7.24 1.68-9.6 4.32-2.36-2.64-5.76-4.32-9.6-4.32-2.64 0-5.12 0.8-7.16 2.2-1.24-1.4-4.040-2.2-5.64-2.2v32l1.6-0.080c2.68-0.16 4.6-2.080 4.72-4.72l0.080-1.6v-11.2l0.080-1.6c0.080-1.2 0.24-2.28 0.8-3.2 1.12-1.92 3.16-3.2 5.52-3.2s4.44 1.28 5.52 3.2z"
42
- />
43
- </>
44
- );
45
- return (
46
- <IntegrationLogoSvgWrapper viewBox={viewBox} {...rest}>
47
- <title>Zoom integration logo</title>
48
- {path}
49
- </IntegrationLogoSvgWrapper>
50
- );
51
- };
@@ -1,14 +0,0 @@
1
- # Usage
2
-
3
- `<Meta />` …
4
-
5
- `import { Meta } from "@conveyorhq/arrow-ds"`
6
-
7
- ```jsx
8
- <Meta>{...}</Meta>
9
- ```
10
-
11
- ## Props
12
-
13
- | Prop | Type | Required | Default Value | Description |
14
- |:--- |:--- |:--- |:--- |:--- |
@@ -1,24 +0,0 @@
1
- import * as React from "react";
2
- import { storiesOf } from "@storybook/react";
3
- import Story from "../../storybook-components/Story";
4
- import { Box } from "../Box";
5
- import { Link } from "../Link";
6
- import { Meta } from "./Meta";
7
-
8
- const stories = storiesOf("Components/Data/Meta", module);
9
-
10
- stories.add("Default", () => (
11
- <Story title="Meta">
12
- <Box className="mb-4">
13
- <Meta heading="Due">November 15, 2020 (7 days)</Meta>
14
- </Box>
15
- <Box className="mb-4">
16
- <Meta heading="Asset">
17
- <Link href="/sentry">Sentry</Link>
18
- </Meta>
19
- </Box>
20
- <Box className="mb-4">
21
- <Meta heading="Status">Open</Meta>
22
- </Box>
23
- </Story>
24
- ));
@@ -1,26 +0,0 @@
1
- import React from "react";
2
- import classNames from "classnames";
3
- import { Box, BoxProps } from "../Box";
4
- import { Heading } from "../Heading";
5
- import { SmallCaps } from "../SmallCaps";
6
- import { bem } from "../../utilities/bem";
7
-
8
- const cn = "Meta";
9
-
10
- export interface MetaProps extends BoxProps {
11
- heading: string;
12
- headingAs?: string;
13
- }
14
-
15
- export const Meta = (props: MetaProps) => {
16
- const { children, heading, headingAs = "h3", className, ...rest } = props;
17
-
18
- return (
19
- <Box className={classNames(bem(cn), className)} {...rest}>
20
- <Heading as={headingAs} className="mb-1">
21
- <SmallCaps>{heading}</SmallCaps>
22
- </Heading>
23
- <Box className="font-medium text-gray-700">{children}</Box>
24
- </Box>
25
- );
26
- };
@@ -1 +0,0 @@
1
- export { Meta } from "./Meta";
@@ -1,14 +0,0 @@
1
- # Usage
2
-
3
- `<Overlay />` …
4
-
5
- `import { Overlay } from "@conveyorhq/arrow-ds"`
6
-
7
- ```jsx
8
- <Overlay>{...}</Overlay>
9
- ```
10
-
11
- ## Props
12
-
13
- | Prop | Type | Required | Default Value | Description |
14
- |:--- |:--- |:--- |:--- |:--- |
@@ -1,12 +0,0 @@
1
- import React from "react";
2
- import { storiesOf } from "@storybook/react";
3
- import Story from "../../storybook-components/Story";
4
- import { Overlay } from "./Overlay";
5
-
6
- const stories = storiesOf("Components/Layout/Overlay", module);
7
-
8
- stories.add("Default", () => (
9
- <Story title="Overlay">
10
- <Overlay />
11
- </Story>
12
- ));
@@ -1,46 +0,0 @@
1
- import { Story, Preview, Props, Meta } from "@storybook/addon-docs/blocks";
2
- import { PropertyDiff } from "./PropertyDiff";
3
-
4
- <Meta title="Components/Data/Property Diff" component={PropertyDiff} />
5
-
6
- # PropertyDiff
7
-
8
- ```jsx
9
- import { PropertyDiff } from "@conveyorhq/arrow-ds";
10
- ```
11
-
12
- <Preview>
13
- <Story name="PropertyDiff">
14
- <PropertyDiff property="Status" oldValue="Inactive" newValue="Active" />
15
- </Story>
16
- </Preview>
17
-
18
- ## Props
19
-
20
- <Props of={PropertyDiff} />
21
-
22
- ## Demos
23
-
24
- ### Without property label
25
-
26
- <Preview>
27
- <Story name="Without property label">
28
- <PropertyDiff oldValue="Inactive" newValue="Active" />
29
- </Story>
30
- </Preview>
31
-
32
- ### No old value
33
-
34
- <Preview>
35
- <Story name="Null to value">
36
- <PropertyDiff property="Status" newValue="Active" />
37
- </Story>
38
- </Preview>
39
-
40
- ### No new value
41
-
42
- <Preview>
43
- <Story name="Value to null">
44
- <PropertyDiff property="Status" oldValue="Inactive" />
45
- </Story>
46
- </Preview>
@@ -1,48 +0,0 @@
1
- import React from "react";
2
- import classNames from "classnames";
3
- import { BoxProps } from "../Box";
4
- import { Flex } from "../Flex";
5
- import { Icon, ICON_TYPE } from "../Icon";
6
- import { Text } from "../Text";
7
- import { bem } from "../../utilities/bem";
8
-
9
- const cn = "PropertyDiff";
10
-
11
- export interface PropertyDiffProps extends BoxProps {
12
- property?: string;
13
- oldValue?: string;
14
- newValue?: string;
15
- }
16
-
17
- export const PropertyDiff = (props: PropertyDiffProps) => {
18
- const { property, oldValue, newValue, className, ...rest } = props;
19
-
20
- return (
21
- <Flex className={classNames(bem(cn), className)} {...rest}>
22
- {property && (
23
- <Text as="div" className={bem(cn, { e: "property" })}>
24
- {property}
25
- </Text>
26
- )}
27
-
28
- {oldValue && (
29
- <Text as="div" className={bem(cn, { e: "oldValue" })}>
30
- {oldValue}
31
- </Text>
32
- )}
33
-
34
- {oldValue && newValue && (
35
- <Icon
36
- className={bem(cn, { e: "icon" })}
37
- icon={ICON_TYPE.LONG_ARROW_ALT_RIGHT}
38
- />
39
- )}
40
-
41
- {newValue && (
42
- <Text as="div" className={bem(cn, { e: "newValue" })}>
43
- {newValue}
44
- </Text>
45
- )}
46
- </Flex>
47
- );
48
- };
@@ -1,33 +0,0 @@
1
- .ads-PropertyDiff {
2
- @apply items-center;
3
- }
4
-
5
- .ads-PropertyDiff-property {
6
- @apply text-h5
7
- text-gray-700
8
- font-medium
9
- mr-14;
10
- }
11
-
12
- .ads-PropertyDiff-oldValue,
13
- .ads-PropertyDiff-newValue {
14
- @apply text-h5
15
- text-gray-800
16
- font-medium
17
- p-1;
18
- }
19
-
20
- .ads-PropertyDiff-oldValue {
21
- @apply bg-red-100;
22
- }
23
-
24
- .ads-PropertyDiff-newValue {
25
- @apply bg-green-100;
26
- }
27
-
28
- .ads-PropertyDiff-icon {
29
- @apply text-gray-600
30
- mx-1;
31
-
32
- font-size: 10px;
33
- }
@@ -1 +0,0 @@
1
- export * from "./PropertyDiff";
@@ -1,16 +0,0 @@
1
- # Usage
2
-
3
- `<Relative />` is used for wrapping child nodes in an relative-positioned Box.
4
-
5
- `import { Relative } from "@conveyorhq/arrow-ds"`
6
-
7
- ```jsx
8
- <Relative>
9
- {children}
10
- </Relative>
11
- ```
12
-
13
- ## Props
14
-
15
- Relative props extend `React.HTMLProps<HTMLDivElement>` via `BoxProps`,
16
- therefore any valid attributes for an HTML `div` element are accepted as props.
@@ -1,12 +0,0 @@
1
- import React from "react";
2
- import { storiesOf } from "@storybook/react";
3
- import Story from "../../storybook-components/Story";
4
- import { Relative } from "./Relative";
5
-
6
- const stories = storiesOf("Components/Positioning/Relative", module);
7
-
8
- stories.add("Default", () => (
9
- <Story title="Relative">
10
- <Relative>This is the Relative component</Relative>
11
- </Story>
12
- ));
@@ -1,9 +0,0 @@
1
- import React from "react";
2
- import classNames from "classnames";
3
- import { Box, BoxProps } from "../Box";
4
-
5
- export const Relative = (props: BoxProps) => {
6
- const { className, ...rest } = props;
7
-
8
- return <Box className={classNames("relative", className)} {...rest} />;
9
- };
@@ -1 +0,0 @@
1
- export { Relative } from "./Relative";
@@ -1,14 +0,0 @@
1
- # Usage
2
-
3
- `<SpeechBubble />` …
4
-
5
- `import { SpeechBubble } from "@conveyorhq/arrow-ds"`
6
-
7
- ```jsx
8
- <SpeechBubble>{...}</SpeechBubble>
9
- ```
10
-
11
- ## Props
12
-
13
- | Prop | Type | Required | Default Value | Description |
14
- |:--- |:--- |:--- |:--- |:--- |
@@ -1,26 +0,0 @@
1
- import React from "react";
2
- import { storiesOf } from "@storybook/react";
3
- import Story from "../../storybook-components/Story";
4
- import Examples from "../../storybook-components/Examples";
5
- import { SpeechBubble, SpeechBubblePlacement } from "./SpeechBubble";
6
-
7
- const stories = storiesOf("Components/Data/Speech Bubble", module);
8
-
9
- const placementOptions: SpeechBubblePlacement[] = [
10
- "top-start",
11
- "top-end",
12
- "bottom-start",
13
- "bottom-end",
14
- ];
15
-
16
- stories.add("Default", () => (
17
- <Story title="SpeechBubble">
18
- <Examples>
19
- {placementOptions.map((placement) => (
20
- <SpeechBubble data-placement={placement}>
21
- This is the SpeechBubble component
22
- </SpeechBubble>
23
- ))}
24
- </Examples>
25
- </Story>
26
- ));