@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.
- package/package.json +31 -23
- package/public/components/Accordion/Accordion.d.ts +29 -17
- package/public/components/Accordion/Accordion.js +73 -53
- package/public/components/Accordion/context.d.ts +12 -0
- package/public/components/Accordion/context.js +30 -0
- package/public/components/Accordion/index.d.ts +1 -0
- package/public/components/Accordion/index.js +1 -0
- package/public/components/Accordion/types.d.ts +17 -0
- package/public/components/Accordion/types.js +2 -0
- package/public/components/Avatar/Avatar.d.ts +1 -1
- package/public/components/Avatar/Avatar.js +20 -19
- package/public/components/Avatar/AvatarGroup.d.ts +1 -1
- package/public/components/Avatar/AvatarGroup.js +11 -1
- package/public/components/Button/Button.d.ts +3 -2
- package/public/components/Button/Button.js +5 -2
- package/public/components/CloseButton/CloseButton.d.ts +1 -2
- package/public/components/ConveyorLogo/ConveyorLogo.js +7 -7
- package/public/components/Divider/Divider.d.ts +1 -9
- package/public/components/Divider/Divider.js +13 -24
- package/public/components/Drawer/Drawer.js +4 -2
- package/public/components/Flex/Flex.js +3 -4
- package/public/components/Frame/Frame.d.ts +1 -1
- package/public/components/Grid/Grid.d.ts +2 -2
- package/public/components/Grid/Grid.js +9 -3
- package/public/components/Icon/Icon.d.ts +15 -0
- package/public/components/Icon/Icon.js +34 -2
- package/public/components/Icon/svg/ArrowToBottom.d.ts +2 -0
- package/public/components/Icon/svg/ArrowToBottom.js +14 -0
- package/public/components/Icon/svg/CommentAltCheck.d.ts +2 -0
- package/public/components/Icon/svg/CommentAltCheck.js +13 -0
- package/public/components/Icon/svg/index.d.ts +2 -0
- package/public/components/Icon/svg/index.js +2 -0
- package/public/components/Input/Input.d.ts +3 -2
- package/public/components/Input/Input.js +7 -6
- package/public/components/Loading/Loading.d.ts +3 -2
- package/public/components/Loading/Loading.js +4 -7
- package/public/components/Markdown/Markdown.d.ts +1 -1
- package/public/components/Markdown/Markdown.js +3 -3
- package/public/components/MarkdownEditor/MarkdownEditor.js +1 -2
- package/public/components/MarkdownEditor/MarkdownHelp.js +4 -7
- package/public/components/Modal/Modal.d.ts +6 -0
- package/public/components/Modal/Modal.js +30 -20
- package/public/components/Modal/context.d.ts +6 -0
- package/public/components/Modal/context.js +15 -0
- package/public/components/Modal/index.d.ts +1 -0
- package/public/components/Modal/index.js +1 -0
- package/public/components/OptionButton/OptionButton.d.ts +28 -1
- package/public/components/OptionButton/OptionButton.js +65 -13
- package/public/components/OptionButton/context.d.ts +11 -0
- package/public/components/OptionButton/context.js +16 -0
- package/public/components/Overlay/Overlay.js +2 -2
- package/public/components/Paragraph/Paragraph.js +3 -7
- package/public/components/Reference/Reference.d.ts +2 -2
- package/public/components/Select/Select.d.ts +1 -0
- package/public/components/Select/Select.js +15 -10
- package/public/components/Select/SelectPopover.js +6 -6
- package/public/components/Select/index.d.ts +2 -0
- package/public/components/Select/index.js +3 -0
- package/public/components/Select/theme.js +22 -22
- package/public/components/Snackbar/Snackbar.d.ts +14 -22
- package/public/components/Snackbar/Snackbar.js +28 -85
- package/public/components/Snackbar/SnackbarProvider.d.ts +2 -0
- package/public/components/Snackbar/SnackbarProvider.js +21 -0
- package/public/components/Snackbar/constants.d.ts +2 -0
- package/public/components/Snackbar/constants.js +5 -0
- package/public/components/Snackbar/context.d.ts +4 -0
- package/public/components/Snackbar/context.js +17 -0
- package/public/components/Snackbar/helpers.d.ts +3 -0
- package/public/components/Snackbar/helpers.js +31 -0
- package/public/components/Snackbar/hooks.d.ts +2 -0
- package/public/components/Snackbar/hooks.js +47 -0
- package/public/components/Snackbar/index.d.ts +6 -0
- package/public/components/Snackbar/index.js +6 -0
- package/public/components/Snackbar/types.d.ts +43 -0
- package/public/components/Snackbar/types.js +2 -0
- package/public/components/SpeechBubble/SpeechBubble.d.ts +1 -0
- package/public/components/SpeechBubble/SpeechBubble.js +9 -2
- package/public/components/Svg/Svg.d.ts +3 -3
- package/public/components/Svg/Svg.js +1 -2
- package/public/components/Table/Table.d.ts +5 -2
- package/public/components/Table/Table.js +11 -4
- package/public/components/Table/TableCell.d.ts +1 -0
- package/public/components/Table/TableCell.js +4 -2
- package/public/components/Table/TableHeaderCell.d.ts +2 -1
- package/public/components/Table/TableHeaderCell.js +24 -7
- package/public/components/Table/index.d.ts +3 -0
- package/public/components/Tag/Tag.d.ts +2 -2
- package/public/components/Toast/Toast.d.ts +3 -3
- package/public/components/Toast/Toast.js +6 -2
- package/public/components/Tooltip/Tooltip.js +24 -31
- package/public/components/VisuallyHidden/VisuallyHidden.d.ts +2 -1
- package/public/components/VisuallyHidden/VisuallyHidden.js +3 -5
- package/public/css/styles.css +4542 -33010
- package/public/css/styles.min.css +1 -1
- package/public/css/styles.min.css.map +1 -1
- package/public/hooks/index.d.ts +3 -0
- package/public/hooks/index.js +7 -1
- package/public/hooks/useMatchMedia.d.ts +1 -0
- package/public/hooks/useMatchMedia.js +27 -0
- package/public/hooks/usePrefersReducedMotion.d.ts +1 -0
- package/public/hooks/usePrefersReducedMotion.js +9 -0
- package/public/hooks/useScreenOrientation.d.ts +1 -0
- package/public/hooks/useScreenOrientation.js +24 -0
- package/public/index.d.ts +0 -15
- package/public/index.js +0 -15
- package/public/src/style-dictionary/dist/tokens.css +378 -0
- package/public/src/style-dictionary/dist/tokens.d.ts +428 -0
- package/public/src/style-dictionary/dist/tokens.js +428 -0
- package/public/src/style-dictionary/dist/tokens.module.js +428 -0
- package/public/src/style-dictionary/tailwind.config.js +87 -0
- package/public/storybook-components/ComponentHeading.js +3 -5
- package/public/storybook-components/ComponentStatus.d.ts +1 -0
- package/public/storybook-components/ComponentStatus.js +4 -0
- package/public/storybook-components/EnumTable.js +2 -1
- package/public/storybook-components/Story.d.ts +2 -1
- package/public/storybook-components/Story.js +4 -1
- package/public/storybook-components/index.d.ts +1 -1
- package/public/storybook-components/index.js +1 -1
- package/public/style-dictionary/dist/tokens.d.ts +433 -0
- package/public/style-dictionary/dist/tokens.js +426 -0
- package/public/style-dictionary/dist/tokens.module.d.ts +431 -0
- package/public/style-dictionary/dist/tokens.module.js +424 -0
- package/public/style-dictionary/src/border-radius.d.ts +31 -0
- package/public/style-dictionary/src/border-radius.js +12 -0
- package/public/style-dictionary/src/border-width.d.ts +21 -0
- package/public/style-dictionary/src/border-width.js +11 -0
- package/public/style-dictionary/src/color.d.ts +249 -0
- package/public/style-dictionary/src/color.js +99 -0
- package/public/style-dictionary/src/font-size.d.ts +45 -0
- package/public/style-dictionary/src/font-size.js +16 -0
- package/public/style-dictionary/src/font-weight.d.ts +13 -0
- package/public/style-dictionary/src/font-weight.js +8 -0
- package/public/style-dictionary/src/height.d.ts +215 -0
- package/public/style-dictionary/src/height.js +13 -0
- package/public/style-dictionary/src/leading.d.ts +17 -0
- package/public/style-dictionary/src/leading.js +9 -0
- package/public/style-dictionary/src/screen-width.d.ts +17 -0
- package/public/style-dictionary/src/screen-width.js +9 -0
- package/public/style-dictionary/src/shadow.d.ts +63 -0
- package/public/style-dictionary/src/shadow.js +20 -0
- package/public/style-dictionary/src/spacing.d.ts +197 -0
- package/public/style-dictionary/src/spacing.js +70 -0
- package/public/style-dictionary/src/tracking.d.ts +13 -0
- package/public/style-dictionary/src/tracking.js +8 -0
- package/public/style-dictionary/src/type.d.ts +13 -0
- package/public/style-dictionary/src/type.js +35 -0
- package/public/style-dictionary/src/width.d.ts +287 -0
- package/public/style-dictionary/src/width.js +32 -0
- package/public/style-dictionary/src/z-index.d.ts +53 -0
- package/public/style-dictionary/src/z-index.js +22 -0
- package/public/style-dictionary/tailwind.config.d.ts +392 -0
- package/public/style-dictionary/tailwind.config.js +66 -0
- package/public/tokens/box-shadow.d.ts +1 -0
- package/public/tokens/box-shadow.js +1 -0
- package/public/tokens/font-family.js +1 -1
- package/public/tokens/height.d.ts +65 -43
- package/public/tokens/height.js +3 -44
- package/public/tokens/index.d.ts +526 -173
- package/public/tokens/index.js +1 -1
- package/public/tokens/margin.d.ts +129 -47
- package/public/tokens/margin.js +3 -47
- package/public/tokens/padding.d.ts +65 -24
- package/public/tokens/padding.js +2 -24
- package/public/tokens/sizing-scale.d.ts +133 -0
- package/public/tokens/sizing-scale.js +136 -0
- package/public/tokens/width.d.ts +197 -63
- package/public/tokens/width.js +6 -63
- package/public/types/index.d.ts +14 -6
- package/public/types/index.js +3 -10
- package/public/utilities/index.d.ts +1 -0
- package/public/utilities/index.js +3 -1
- package/public/utilities/mergeEventHandlers.d.ts +3 -0
- package/public/utilities/mergeEventHandlers.js +13 -0
- package/src/components/Accordion/Accordion.story.mdx +232 -22
- package/src/components/Accordion/Accordion.tsx +237 -114
- package/src/components/Accordion/context.ts +60 -0
- package/src/components/Accordion/index.css +0 -5
- package/src/components/Accordion/index.ts +1 -0
- package/src/components/Accordion/types.ts +55 -0
- package/src/components/Avatar/Avatar.story.mdx +60 -0
- package/src/components/Avatar/Avatar.tsx +20 -19
- package/src/components/Avatar/AvatarGroup.tsx +11 -9
- package/src/components/Avatar/index.css +8 -0
- package/src/components/Button/Button.story.mdx +116 -1
- package/src/components/Button/Button.tsx +13 -7
- package/src/components/Button/index.css +12 -1
- package/src/components/Button/product.css +12 -0
- package/src/components/Card/Card.story.mdx +56 -73
- package/src/components/CloseButton/CloseButton.tsx +1 -1
- package/src/components/ConveyorLogo/ConveyorLogo.tsx +7 -6
- package/src/components/Divider/Divider.tsx +26 -40
- package/src/components/Divider/index.css +16 -0
- package/src/components/Drawer/Drawer.story.mdx +68 -70
- package/src/components/Drawer/Drawer.tsx +9 -8
- package/src/components/Drawer/index.css +26 -1
- package/src/components/Flex/Flex.story.mdx +130 -0
- package/src/components/Flex/Flex.tsx +7 -6
- package/src/components/Flex/index.css +3 -0
- package/src/components/Frame/Frame.story.mdx +146 -6
- package/src/components/Frame/Frame.tsx +1 -1
- package/src/components/Frame/index.css +8 -13
- package/src/components/Grid/Grid.story.mdx +205 -3
- package/src/components/Grid/Grid.tsx +44 -5
- package/src/components/Grid/index.css +3 -0
- package/src/components/Icon/Icon.tsx +63 -5
- package/src/components/Icon/svg/ArrowToBottom.tsx +17 -0
- package/src/components/Icon/svg/CommentAltCheck.tsx +13 -0
- package/src/components/Icon/svg/index.ts +2 -0
- package/src/components/Input/Input.story.mdx +199 -13
- package/src/components/Input/Input.tsx +39 -6
- package/src/components/Input/brand.css +7 -7
- package/src/components/Input/index.css +30 -0
- package/src/components/Input/product.css +12 -48
- package/src/components/Loading/Loading.story.mdx +16 -9
- package/src/components/Loading/Loading.tsx +17 -8
- package/src/components/Loading/index.css +1 -67
- package/src/components/Markdown/Markdown.story.mdx +67 -0
- package/src/components/Markdown/Markdown.tsx +3 -2
- package/src/components/MarkdownEditor/MarkdownEditor.tsx +2 -3
- package/src/components/MarkdownEditor/MarkdownHelp.tsx +7 -10
- package/src/components/MarkdownEditor/index.css +5 -1
- package/src/components/Modal/Modal.story.mdx +26 -0
- package/src/components/Modal/Modal.tsx +61 -43
- package/src/components/Modal/context.ts +20 -0
- package/src/components/Modal/index.css +8 -3
- package/src/components/Modal/index.ts +1 -0
- package/src/components/OptionButton/OptionButton.story.mdx +175 -21
- package/src/components/OptionButton/OptionButton.tsx +215 -26
- package/src/components/OptionButton/context.ts +22 -0
- package/src/components/OptionButton/index.css +14 -2
- package/src/components/Overlay/Overlay.story.mdx +26 -0
- package/src/components/Overlay/Overlay.tsx +2 -3
- package/src/components/Overlay/index.css +1 -0
- package/src/components/Paragraph/Paragraph.story.mdx +16 -2
- package/src/components/Paragraph/Paragraph.tsx +5 -13
- package/src/components/Paragraph/index.css +6 -0
- package/src/components/Popover/index.css +5 -6
- package/src/components/Reference/Reference.tsx +2 -2
- package/src/components/Select/Select.story.mdx +23 -10
- package/src/components/Select/Select.tsx +35 -10
- package/src/components/Select/SelectPopover.tsx +6 -6
- package/src/components/Select/index.ts +14 -0
- package/src/components/Select/theme.ts +22 -22
- package/src/components/Snackbar/Snackbar.story.mdx +96 -9
- package/src/components/Snackbar/Snackbar.tsx +56 -145
- package/src/components/Snackbar/SnackbarProvider.tsx +31 -0
- package/src/components/Snackbar/constants.ts +2 -0
- package/src/components/Snackbar/context.ts +20 -0
- package/src/components/Snackbar/helpers.tsx +52 -0
- package/src/components/Snackbar/hooks.ts +57 -0
- package/src/components/Snackbar/index.ts +6 -0
- package/src/components/Snackbar/types.ts +180 -0
- package/src/components/SpeechBubble/SpeechBubble.story.mdx +76 -0
- package/src/components/SpeechBubble/SpeechBubble.tsx +22 -1
- package/src/components/SpeechBubble/index.css +7 -4
- package/src/components/Svg/Svg.story.mdx +36 -0
- package/src/components/Svg/Svg.tsx +6 -4
- package/src/components/Table/Table.story.mdx +243 -0
- package/src/components/Table/Table.tsx +36 -1
- package/src/components/Table/TableCell.tsx +24 -1
- package/src/components/Table/TableHeaderCell.tsx +64 -11
- package/src/components/Table/index.css +138 -10
- package/src/components/Table/index.ts +3 -0
- package/src/components/Tag/Tag.tsx +2 -2
- package/src/components/Text/Text.story.mdx +34 -0
- package/src/components/Toast/Toast.story.mdx +1 -1
- package/src/components/Toast/Toast.tsx +14 -10
- package/src/components/Toast/index.css +4 -2
- package/src/components/Toggle/index.css +2 -3
- package/src/components/Tooltip/Tooltip.story.mdx +71 -1
- package/src/components/Tooltip/Tooltip.tsx +40 -35
- package/src/components/Tooltip/index.css +31 -0
- package/src/components/VisuallyHidden/VisuallyHidden.story.mdx +54 -0
- package/src/components/VisuallyHidden/VisuallyHidden.tsx +10 -5
- package/src/components/VisuallyHidden/index.css +3 -0
- package/src/css/base.css +6 -561
- package/src/css/components.css +6 -9
- package/src/css/fonts.css +13 -10
- package/src/css/styles.css +0 -1
- package/src/css/utilities/animations.css +13 -0
- package/src/docs/Colors.story.mdx +13 -13
- package/src/docs/Spacing.story.mdx +4 -20
- package/src/docs/Tokens.story.mdx +230 -0
- package/src/docs/Typography.story.mdx +27 -101
- package/src/docs/hooks/useDisclosureHook.story.mdx +58 -0
- package/src/docs/hooks/useKeyPressHook.story.mdx +54 -0
- package/src/docs/hooks/useMatchMediaHook.story.mdx +42 -0
- package/src/docs/hooks/useOutsideClickHook.story.mdx +56 -0
- package/src/docs/hooks/usePrefersReducedMotion.story.mdx +61 -0
- package/src/docs/hooks/useScreenOrientationHook.story.mdx +56 -0
- package/src/docs/hooks/useStepHook.story.mdx +102 -0
- package/src/hooks/index.ts +3 -0
- package/src/hooks/useMatchMedia.ts +40 -0
- package/src/hooks/usePrefersReducedMotion.ts +9 -0
- package/src/hooks/useScreenOrientation.ts +27 -0
- package/src/index.ts +0 -15
- package/src/storybook-components/ComponentHeading.tsx +4 -19
- package/src/storybook-components/ComponentStatus.tsx +4 -0
- package/src/storybook-components/EnumTable.tsx +3 -2
- package/src/storybook-components/Story.tsx +13 -1
- package/src/storybook-components/index.tsx +1 -1
- package/src/style-dictionary/dist/tokens.css +378 -0
- package/src/style-dictionary/dist/tokens.d.ts +428 -0
- package/src/style-dictionary/dist/tokens.js +428 -0
- package/src/style-dictionary/dist/tokens.module.js +428 -0
- package/src/style-dictionary/src/border-radius.js +11 -0
- package/src/style-dictionary/src/border-width.js +10 -0
- package/src/style-dictionary/src/color.js +98 -0
- package/src/style-dictionary/src/font-size.js +15 -0
- package/src/style-dictionary/src/font-weight.js +7 -0
- package/src/style-dictionary/src/height.js +13 -0
- package/src/style-dictionary/src/leading.js +8 -0
- package/src/style-dictionary/src/screen-width.js +8 -0
- package/src/style-dictionary/src/shadow.js +19 -0
- package/src/style-dictionary/src/spacing.js +69 -0
- package/src/style-dictionary/src/tracking.js +7 -0
- package/src/style-dictionary/src/type.js +34 -0
- package/src/style-dictionary/src/width.js +32 -0
- package/src/style-dictionary/src/z-index.js +21 -0
- package/src/style-dictionary/tailwind.config.js +87 -0
- package/src/tokens/borders.ts +6 -0
- package/src/tokens/box-shadow.ts +4 -0
- package/src/tokens/colors.ts +6 -0
- package/src/tokens/font-family.ts +4 -1
- package/src/tokens/font-size.ts +3 -0
- package/src/tokens/font-weight.ts +3 -0
- package/src/tokens/height.ts +6 -44
- package/src/tokens/index.ts +5 -4
- package/src/tokens/letter-spacing.ts +3 -0
- package/src/tokens/line-height.ts +3 -0
- package/src/tokens/margin.ts +7 -47
- package/src/tokens/padding.ts +6 -24
- package/src/tokens/screens.ts +3 -0
- package/src/tokens/sizing-scale.ts +140 -0
- package/src/tokens/width.ts +16 -63
- package/src/tokens/will-change.ts +3 -0
- package/src/tokens/z-index.ts +3 -0
- package/src/types/index.ts +37 -10
- package/src/utilities/index.ts +1 -0
- package/src/utilities/mergeEventHandlers.ts +20 -0
- package/public/components/Absolute/Absolute.d.ts +0 -2
- package/public/components/Absolute/Absolute.js +0 -14
- package/public/components/Absolute/index.d.ts +0 -1
- package/public/components/Absolute/index.js +0 -5
- package/public/components/Appbar/Appbar.d.ts +0 -60
- package/public/components/Appbar/Appbar.js +0 -42
- package/public/components/Appbar/AppbarClaimProfileButton.d.ts +0 -2
- package/public/components/Appbar/AppbarClaimProfileButton.js +0 -10
- package/public/components/Appbar/AppbarDropdownIcon.d.ts +0 -1
- package/public/components/Appbar/AppbarDropdownIcon.js +0 -10
- package/public/components/Appbar/AppbarLogInButton.d.ts +0 -2
- package/public/components/Appbar/AppbarLogInButton.js +0 -26
- package/public/components/Appbar/AppbarLogo.d.ts +0 -2
- package/public/components/Appbar/AppbarLogo.js +0 -19
- package/public/components/Appbar/AppbarOrganization.d.ts +0 -17
- package/public/components/Appbar/AppbarOrganization.js +0 -35
- package/public/components/Appbar/AppbarTabMarker.d.ts +0 -1
- package/public/components/Appbar/AppbarTabMarker.js +0 -11
- package/public/components/Appbar/AppbarTabs.d.ts +0 -10
- package/public/components/Appbar/AppbarTabs.js +0 -42
- package/public/components/Appbar/AppbarUser.d.ts +0 -27
- package/public/components/Appbar/AppbarUser.js +0 -76
- package/public/components/Appbar/config.d.ts +0 -7
- package/public/components/Appbar/config.js +0 -13
- package/public/components/Appbar/context.d.ts +0 -10
- package/public/components/Appbar/context.js +0 -16
- package/public/components/Appbar/index.d.ts +0 -1
- package/public/components/Appbar/index.js +0 -13
- package/public/components/ArrowButton/ArrowButton.d.ts +0 -9
- package/public/components/ArrowButton/ArrowButton.js +0 -22
- package/public/components/ArrowButton/index.d.ts +0 -1
- package/public/components/ArrowButton/index.js +0 -13
- package/public/components/ArrowLink/ArrowLink.d.ts +0 -9
- package/public/components/ArrowLink/ArrowLink.js +0 -21
- package/public/components/ArrowLink/index.d.ts +0 -1
- package/public/components/ArrowLink/index.js +0 -13
- package/public/components/Aside/Aside.d.ts +0 -14
- package/public/components/Aside/Aside.js +0 -28
- package/public/components/Aside/index.d.ts +0 -1
- package/public/components/Aside/index.js +0 -13
- package/public/components/Fixed/Fixed.d.ts +0 -2
- package/public/components/Fixed/Fixed.js +0 -14
- package/public/components/Fixed/Fixed.story.d.ts +0 -1
- package/public/components/Fixed/Fixed.story.js +0 -12
- package/public/components/Fixed/index.d.ts +0 -1
- package/public/components/Fixed/index.js +0 -5
- package/public/components/Flex/Flex.story.d.ts +0 -1
- package/public/components/Flex/Flex.story.js +0 -12
- package/public/components/IntegrationLogo/IntegrationLogo.d.ts +0 -10
- package/public/components/IntegrationLogo/IntegrationLogo.js +0 -33
- package/public/components/IntegrationLogo/IntegrationLogoSvg.d.ts +0 -9
- package/public/components/IntegrationLogo/IntegrationLogoSvg.js +0 -52
- package/public/components/IntegrationLogo/index.d.ts +0 -1
- package/public/components/IntegrationLogo/index.js +0 -13
- package/public/components/IntegrationLogo/svg/addigy.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/addigy.js +0 -17
- package/public/components/IntegrationLogo/svg/aws.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/aws.js +0 -22
- package/public/components/IntegrationLogo/svg/bamboohr.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/bamboohr.js +0 -18
- package/public/components/IntegrationLogo/svg/bitbucket.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/bitbucket.js +0 -18
- package/public/components/IntegrationLogo/svg/conveyor.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/conveyor.js +0 -20
- package/public/components/IntegrationLogo/svg/default.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/default.js +0 -13
- package/public/components/IntegrationLogo/svg/deploy.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/deploy.js +0 -17
- package/public/components/IntegrationLogo/svg/events-api.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/events-api.js +0 -26
- package/public/components/IntegrationLogo/svg/gcp.d.ts +0 -3
- package/public/components/IntegrationLogo/svg/gcp.js +0 -15
- package/public/components/IntegrationLogo/svg/github.d.ts +0 -3
- package/public/components/IntegrationLogo/svg/github.js +0 -12
- package/public/components/IntegrationLogo/svg/gitlab.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/gitlab.js +0 -19
- package/public/components/IntegrationLogo/svg/gsuite.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/gsuite.js +0 -15
- package/public/components/IntegrationLogo/svg/index.d.ts +0 -21
- package/public/components/IntegrationLogo/svg/index.js +0 -54
- package/public/components/IntegrationLogo/svg/jamf.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/jamf.js +0 -20
- package/public/components/IntegrationLogo/svg/jira.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/jira.js +0 -21
- package/public/components/IntegrationLogo/svg/jumpcloud.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/jumpcloud.js +0 -28
- package/public/components/IntegrationLogo/svg/okta.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/okta.js +0 -16
- package/public/components/IntegrationLogo/svg/onelogin.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/onelogin.js +0 -18
- package/public/components/IntegrationLogo/svg/salesforce.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/salesforce.js +0 -20
- package/public/components/IntegrationLogo/svg/slack.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/slack.js +0 -19
- package/public/components/IntegrationLogo/svg/wrapper.d.ts +0 -11
- package/public/components/IntegrationLogo/svg/wrapper.js +0 -13
- package/public/components/IntegrationLogo/svg/zoom.d.ts +0 -2
- package/public/components/IntegrationLogo/svg/zoom.js +0 -23
- package/public/components/Meta/Meta.d.ts +0 -6
- package/public/components/Meta/Meta.js +0 -21
- package/public/components/Meta/Meta.story.d.ts +0 -1
- package/public/components/Meta/Meta.story.js +0 -39
- package/public/components/Meta/index.d.ts +0 -1
- package/public/components/Meta/index.js +0 -5
- package/public/components/Overlay/Overlay.story.d.ts +0 -1
- package/public/components/Overlay/Overlay.story.js +0 -12
- package/public/components/PropertyDiff/PropertyDiff.d.ts +0 -7
- package/public/components/PropertyDiff/PropertyDiff.js +0 -22
- package/public/components/PropertyDiff/index.d.ts +0 -1
- package/public/components/PropertyDiff/index.js +0 -13
- package/public/components/Relative/Relative.d.ts +0 -2
- package/public/components/Relative/Relative.js +0 -14
- package/public/components/Relative/Relative.story.d.ts +0 -1
- package/public/components/Relative/Relative.story.js +0 -12
- package/public/components/Relative/index.d.ts +0 -1
- package/public/components/Relative/index.js +0 -5
- package/public/components/SpeechBubble/SpeechBubble.story.d.ts +0 -1
- package/public/components/SpeechBubble/SpeechBubble.story.js +0 -19
- package/public/components/StatusLabel/StatusLabel.d.ts +0 -16
- package/public/components/StatusLabel/StatusLabel.js +0 -40
- package/public/components/StatusLabel/index.d.ts +0 -1
- package/public/components/StatusLabel/index.js +0 -13
- package/public/components/StatusPanel/StatusPanel.d.ts +0 -11
- package/public/components/StatusPanel/StatusPanel.js +0 -24
- package/public/components/StatusPanel/index.d.ts +0 -1
- package/public/components/StatusPanel/index.js +0 -13
- package/public/components/Sticky/Sticky.d.ts +0 -2
- package/public/components/Sticky/Sticky.js +0 -14
- package/public/components/Sticky/Sticky.story.d.ts +0 -1
- package/public/components/Sticky/Sticky.story.js +0 -12
- package/public/components/Sticky/index.d.ts +0 -1
- package/public/components/Sticky/index.js +0 -5
- package/public/components/Svg/Svg.story.d.ts +0 -1
- package/public/components/Svg/Svg.story.js +0 -14
- package/public/components/Text/Text.story.d.ts +0 -1
- package/public/components/Text/Text.story.js +0 -31
- package/public/components/TopBar/TopBar.d.ts +0 -14
- package/public/components/TopBar/TopBar.js +0 -24
- package/public/components/TopBar/TopBarBreadcrumbs.d.ts +0 -10
- package/public/components/TopBar/TopBarBreadcrumbs.js +0 -34
- package/public/components/TopBar/TopBarSubNav.d.ts +0 -2
- package/public/components/TopBar/TopBarSubNav.js +0 -16
- package/public/components/TopBar/TopBarSubNavItem.d.ts +0 -5
- package/public/components/TopBar/TopBarSubNavItem.js +0 -17
- package/public/components/TopBar/index.d.ts +0 -1
- package/public/components/TopBar/index.js +0 -13
- package/public/components/VendorLogo/VendorLogo.d.ts +0 -20
- package/public/components/VendorLogo/VendorLogo.js +0 -57
- package/public/components/VendorLogo/index.d.ts +0 -1
- package/public/components/VendorLogo/index.js +0 -13
- package/public/components/VisuallyHidden/VisuallyHidden.story.d.ts +0 -1
- package/public/components/VisuallyHidden/VisuallyHidden.story.js +0 -36
- package/public/components/useStep/ExampleSetupWizard.d.ts +0 -4
- package/public/components/useStep/ExampleSetupWizard.js +0 -33
- package/public/storybook-components/TailwindPropertyClasses.d.ts +0 -9
- package/public/storybook-components/TailwindPropertyClasses.js +0 -194
- package/public/tailwind.config.d.ts +0 -1
- package/public/tailwind.config.js +0 -4
- package/public/tokens/_tailwind-config.d.ts +0 -810
- package/public/tokens/_tailwind-config.js +0 -50
- package/src/components/Absolute/Absolute.story.mdx +0 -26
- package/src/components/Absolute/Absolute.tsx +0 -9
- package/src/components/Absolute/index.ts +0 -1
- package/src/components/Appbar/Appbar.story.mdx +0 -185
- package/src/components/Appbar/Appbar.tsx +0 -108
- package/src/components/Appbar/AppbarClaimProfileButton.tsx +0 -13
- package/src/components/Appbar/AppbarDropdownIcon.tsx +0 -6
- package/src/components/Appbar/AppbarLogInButton.tsx +0 -28
- package/src/components/Appbar/AppbarLogo.tsx +0 -29
- package/src/components/Appbar/AppbarOrganization.tsx +0 -96
- package/src/components/Appbar/AppbarTabMarker.tsx +0 -5
- package/src/components/Appbar/AppbarTabs.tsx +0 -46
- package/src/components/Appbar/AppbarUser.tsx +0 -179
- package/src/components/Appbar/config.ts +0 -12
- package/src/components/Appbar/context.ts +0 -20
- package/src/components/Appbar/index.css +0 -324
- package/src/components/Appbar/index.ts +0 -1
- package/src/components/ArrowButton/ArrowButton.story.mdx +0 -110
- package/src/components/ArrowButton/ArrowButton.tsx +0 -54
- package/src/components/ArrowButton/index.css +0 -42
- package/src/components/ArrowButton/index.ts +0 -1
- package/src/components/ArrowLink/ArrowLink.story.mdx +0 -65
- package/src/components/ArrowLink/ArrowLink.tsx +0 -42
- package/src/components/ArrowLink/index.ts +0 -1
- package/src/components/Aside/Aside.story.mdx +0 -65
- package/src/components/Aside/Aside.tsx +0 -59
- package/src/components/Aside/index.css +0 -11
- package/src/components/Aside/index.ts +0 -1
- package/src/components/Fixed/Fixed.md +0 -16
- package/src/components/Fixed/Fixed.story.tsx +0 -12
- package/src/components/Fixed/Fixed.tsx +0 -9
- package/src/components/Fixed/index.ts +0 -1
- package/src/components/Flex/Flex.md +0 -14
- package/src/components/Flex/Flex.story.tsx +0 -12
- package/src/components/IntegrationLogo/IntegrationLogo.story.mdx +0 -159
- package/src/components/IntegrationLogo/IntegrationLogo.tsx +0 -54
- package/src/components/IntegrationLogo/IntegrationLogoSvg.tsx +0 -79
- package/src/components/IntegrationLogo/index.ts +0 -1
- package/src/components/IntegrationLogo/svg/addigy.tsx +0 -23
- package/src/components/IntegrationLogo/svg/aws.tsx +0 -52
- package/src/components/IntegrationLogo/svg/bamboohr.tsx +0 -34
- package/src/components/IntegrationLogo/svg/bitbucket.tsx +0 -37
- package/src/components/IntegrationLogo/svg/conveyor.tsx +0 -41
- package/src/components/IntegrationLogo/svg/default.tsx +0 -11
- package/src/components/IntegrationLogo/svg/deploy.tsx +0 -29
- package/src/components/IntegrationLogo/svg/events-api.tsx +0 -75
- package/src/components/IntegrationLogo/svg/gcp.tsx +0 -26
- package/src/components/IntegrationLogo/svg/github.tsx +0 -14
- package/src/components/IntegrationLogo/svg/gitlab.tsx +0 -40
- package/src/components/IntegrationLogo/svg/gsuite.tsx +0 -24
- package/src/components/IntegrationLogo/svg/index.ts +0 -21
- package/src/components/IntegrationLogo/svg/jamf.tsx +0 -36
- package/src/components/IntegrationLogo/svg/jira.tsx +0 -44
- package/src/components/IntegrationLogo/svg/jumpcloud.tsx +0 -86
- package/src/components/IntegrationLogo/svg/okta.tsx +0 -28
- package/src/components/IntegrationLogo/svg/onelogin.tsx +0 -34
- package/src/components/IntegrationLogo/svg/salesforce.tsx +0 -39
- package/src/components/IntegrationLogo/svg/slack.tsx +0 -40
- package/src/components/IntegrationLogo/svg/wrapper.tsx +0 -35
- package/src/components/IntegrationLogo/svg/zoom.tsx +0 -51
- package/src/components/Meta/Meta.md +0 -14
- package/src/components/Meta/Meta.story.tsx +0 -24
- package/src/components/Meta/Meta.tsx +0 -26
- package/src/components/Meta/index.ts +0 -1
- package/src/components/Overlay/Overlay.md +0 -14
- package/src/components/Overlay/Overlay.story.tsx +0 -12
- package/src/components/PropertyDiff/PropertDiff.story.mdx +0 -46
- package/src/components/PropertyDiff/PropertyDiff.tsx +0 -48
- package/src/components/PropertyDiff/index.css +0 -33
- package/src/components/PropertyDiff/index.ts +0 -1
- package/src/components/Relative/Relative.md +0 -16
- package/src/components/Relative/Relative.story.tsx +0 -12
- package/src/components/Relative/Relative.tsx +0 -9
- package/src/components/Relative/index.ts +0 -1
- package/src/components/SpeechBubble/SpeechBubble.md +0 -14
- package/src/components/SpeechBubble/SpeechBubble.story.tsx +0 -26
- package/src/components/StatusLabel/StatusLabel.story.mdx +0 -316
- package/src/components/StatusLabel/StatusLabel.tsx +0 -112
- package/src/components/StatusLabel/index.css +0 -23
- package/src/components/StatusLabel/index.ts +0 -1
- package/src/components/StatusPanel/StatusPanel.story.mdx +0 -109
- package/src/components/StatusPanel/StatusPanel.tsx +0 -51
- package/src/components/StatusPanel/index.css +0 -52
- package/src/components/StatusPanel/index.ts +0 -1
- package/src/components/Sticky/Sticky.md +0 -16
- package/src/components/Sticky/Sticky.story.tsx +0 -12
- package/src/components/Sticky/Sticky.tsx +0 -9
- package/src/components/Sticky/index.ts +0 -1
- package/src/components/Svg/Svg.md +0 -14
- package/src/components/Svg/Svg.story.tsx +0 -15
- package/src/components/Text/Text.md +0 -14
- package/src/components/Text/Text.story.tsx +0 -12
- package/src/components/TopBar/TopBar.story.mdx +0 -154
- package/src/components/TopBar/TopBar.tsx +0 -40
- package/src/components/TopBar/TopBarBreadcrumbs.tsx +0 -79
- package/src/components/TopBar/TopBarSubNav.tsx +0 -19
- package/src/components/TopBar/TopBarSubNavItem.tsx +0 -21
- package/src/components/TopBar/index.css +0 -102
- package/src/components/TopBar/index.ts +0 -1
- package/src/components/VendorLogo/VendorLogo.story.mdx +0 -209
- package/src/components/VendorLogo/VendorLogo.tsx +0 -110
- package/src/components/VendorLogo/index.css +0 -46
- package/src/components/VendorLogo/index.ts +0 -1
- package/src/components/VisuallyHidden/VisuallyHidden.md +0 -23
- package/src/components/VisuallyHidden/VisuallyHidden.story.tsx +0 -19
- package/src/components/useStep/ExampleSetupWizard.tsx +0 -63
- package/src/components/useStep/useStep.story.mdx +0 -76
- package/src/docs/TailwindClasses.story.mdx +0 -15
- package/src/docs/brand-components/BrandButton.story.mdx +0 -103
- package/src/docs/brand-components/BrandCheckbox.story.mdx +0 -63
- package/src/docs/brand-components/BrandFormGroup.story.mdx +0 -76
- package/src/docs/brand-components/BrandInput.story.mdx +0 -41
- package/src/docs/brand-components/BrandRadio.story.mdx +0 -45
- package/src/docs/brand-components/BrandTextArea.story.mdx +0 -41
- package/src/storybook-components/TailwindPropertyClasses.tsx +0 -285
- package/src/tailwind.config.ts +0 -6
- package/src/tokens/_tailwind-config.ts +0 -69
|
@@ -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.BitbucketSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const BitbucketSvg = ({ color, square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 32 32" }, rest),
|
|
10
|
-
react_1.default.createElement("title", null, "Bitbucket integration logo"),
|
|
11
|
-
react_1.default.createElement("svg", { width: "32", height: "32", viewBox: "0 0 32 32", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
12
|
-
react_1.default.createElement("path", { d: "M4.77044 5C4.29089 5 3.93123 5.43959 4.01115 5.87918L7.24814 25.7007C7.32806 26.2203 7.76766 26.5799 8.28717 26.5799H23.9526C24.3123 26.5799 24.632 26.3002 24.7119 25.9405L27.9888 5.91915C28.0688 5.43959 27.7091 5.03997 27.2296 5.03997L4.77044 5ZM18.5177 19.3067H13.5223L12.2035 12.2333H19.7565L18.5177 19.3067Z", fill: color || "#2684ff" }),
|
|
13
|
-
react_1.default.createElement("path", { d: "M26.9098 12.2333H19.7165L18.5176 19.3067H13.5222L7.64771 26.3002C7.64771 26.3002 7.92744 26.54 8.32707 26.54H23.9925C24.3522 26.54 24.6719 26.2602 24.7518 25.9005L26.9098 12.2333Z", fill: color || "url(#paint0_linear)" }),
|
|
14
|
-
react_1.default.createElement("defs", null,
|
|
15
|
-
react_1.default.createElement("linearGradient", { id: "paint0_linear", x1: "28.5925", y1: "14.2265", x2: "16.672", y2: "23.5316", gradientUnits: "userSpaceOnUse" },
|
|
16
|
-
react_1.default.createElement("stop", { offset: "0.176", stopColor: "#0052cc" }),
|
|
17
|
-
react_1.default.createElement("stop", { offset: "1", stopColor: "#2684ff" }))))));
|
|
18
|
-
exports.BitbucketSvg = BitbucketSvg;
|
|
@@ -1,20 +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.ConveyorSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const tokens_1 = require("../../../tokens");
|
|
10
|
-
const ConveyorSvg = ({ color = tokens_1.colors.brandGreen["400"], square, ...rest }) => {
|
|
11
|
-
const viewBox = "0 0 32 32";
|
|
12
|
-
const path = (react_1.default.createElement(react_1.default.Fragment, null,
|
|
13
|
-
react_1.default.createElement("path", { fill: color, d: "M19.042 31.58c-1.17 0.275-2.389 0.42-3.642 0.42-0.24 0-0.479-0.005-0.716-0.016v-2.851c0-1.318-1.285-2.25-2.533-1.843-1.934 0.63-3.873 1.249-5.809 1.872-1.371-0.954-2.586-2.118-3.598-3.447l7.94-2.602c1.96-0.637 4.054-0.299 5.721 0.918s2.633 3.115 2.637 5.186l0.001 2.362z" }),
|
|
14
|
-
react_1.default.createElement("path", { fill: color, d: "M20.856 31.037l0.004-8.342c-0.003-2.071 0.95-3.969 2.636-5.191 1.647-1.216 3.736-1.548 5.716-0.909l2.066 0.675c-0.117 1.502-0.441 2.946-0.943 4.302-0.876-0.286-1.751-0.576-2.627-0.861-1.23-0.401-2.48 0.525-2.48 1.824v6.057c-1.308 1.032-2.781 1.862-4.372 2.445z" }),
|
|
15
|
-
react_1.default.createElement("path", { fill: color, d: "M31.314 15.338l-7.709-2.523c-1.98-0.64-3.471-2.149-4.105-4.12s-0.299-4.075 0.911-5.75l1.212-1.677c1.363 0.582 2.629 1.349 3.767 2.27-0.512 0.704-1.032 1.403-1.555 2.099-0.802 1.066-0.321 2.608 0.946 3.015l5.558 1.785c0.567 1.536 0.906 3.184 0.976 4.901z" }),
|
|
16
|
-
react_1.default.createElement("path", { fill: color, d: "M14.89 0.008c0.169-0.005 0.339-0.008 0.509-0.008 1.534 0 3.017 0.218 4.421 0.624l-4.725 6.537c-1.211 1.675-3.098 2.645-5.159 2.648s-3.949-0.956-5.166-2.651l-1.287-1.776c0.971-1.099 2.091-2.063 3.327-2.859l1.565 2.223c0.764 1.085 2.365 1.090 3.135 0.008l3.379-4.747z" }),
|
|
17
|
-
react_1.default.createElement("path", { fill: color, d: "M0.145 11.383c0.487-1.624 1.223-3.14 2.165-4.502l4.823 6.663c1.217 1.695 1.548 3.795 0.906 5.745-0.636 1.99-2.137 3.487-4.097 4.124l-2.253 0.733c-0.737-1.249-1.31-2.608-1.689-4.046l2.681-0.912c1.244-0.423 1.711-1.948 0.93-3.009-1.168-1.589-2.318-3.193-3.466-4.797z" })));
|
|
18
|
-
return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest), path));
|
|
19
|
-
};
|
|
20
|
-
exports.ConveyorSvg = ConveyorSvg;
|
|
@@ -1,13 +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.DefaultSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const conveyor_1 = require("./conveyor");
|
|
9
|
-
const tokens_1 = require("../../../tokens");
|
|
10
|
-
const DefaultSvg = ({ color = tokens_1.colors.gray["500"], ...rest }) => {
|
|
11
|
-
return react_1.default.createElement(conveyor_1.ConveyorSvg, Object.assign({ color: color }, rest));
|
|
12
|
-
};
|
|
13
|
-
exports.DefaultSvg = DefaultSvg;
|
|
@@ -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.DeploySvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const tokens_1 = require("../../../tokens");
|
|
10
|
-
const DeploySvg = ({ color = tokens_1.colors.gold["400"], square, ...rest }) => {
|
|
11
|
-
const viewBox = square ? "0 0 32 32" : "0 0 32 28";
|
|
12
|
-
const path = square ? (react_1.default.createElement("path", { fill: color, d: "M32 22.9362V29.3368L22.3991 19.7359V29.6124H17.5994V8.53555L32 22.9362ZM22.3991 2.39999H16L32 18.4V11.9964L22.3991 2.39999ZM14.3991 8.52646L0 22.9271V29.3262L9.59636 19.7207V29.6064H14.3961V8.52646H14.3991ZM0 11.9964V18.3954L16 2.39999H9.54033L0 11.9964Z" })) : (react_1.default.createElement("path", { fill: color, d: "M32 20.5362V26.9368L22.3991 17.3359V27.2124H17.5994V6.13555L32 20.5362ZM22.3991 0H16L32 16V9.59636L22.3991 0ZM14.3991 6.12647L0 20.5271V26.9262L9.59636 17.3207V27.2064H14.3961V6.12647H14.3991ZM0 9.59636V15.9955L16 0H9.54033L0 9.59636Z" }));
|
|
13
|
-
return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
|
|
14
|
-
react_1.default.createElement("title", null, "Aptible Deploy integration logo"),
|
|
15
|
-
path));
|
|
16
|
-
};
|
|
17
|
-
exports.DeploySvg = DeploySvg;
|
|
@@ -1,26 +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.EventsAPI = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const tokens_1 = require("../../../tokens");
|
|
10
|
-
const EventsAPI = ({ color, square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 32 32" }, rest),
|
|
11
|
-
react_1.default.createElement("title", null, "Events API logo"),
|
|
12
|
-
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 27.9585C22.6045 27.9585 27.9585 22.6045 27.9585 16C27.9585 9.39556 22.6045 4.04157 16 4.04157C9.39554 4.04157 4.04156 9.39556 4.04156 16C4.04156 22.6045 9.39554 27.9585 16 27.9585ZM16 29.6728C23.5513 29.6728 29.6728 23.5513 29.6728 16C29.6728 8.44878 23.5513 2.32729 16 2.32729C8.44876 2.32729 2.32727 8.44878 2.32727 16C2.32727 23.5513 8.44876 29.6728 16 29.6728Z", fill: color || tokens_1.colors.gray["500"] }),
|
|
13
|
-
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.90908 15.1429L29.0909 15.1429V16.8572L2.90908 16.8572V15.1429Z", fill: color || tokens_1.colors.gray["500"] }),
|
|
14
|
-
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.8572 3.49092L16.8572 29.6728L15.1429 29.6728L15.1429 3.49092L16.8572 3.49092Z", fill: color || tokens_1.colors.gray["500"] }),
|
|
15
|
-
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M25.1429 8.00002L7.42855 25.7143L6.21637 24.5021L23.9307 6.78783L25.1429 8.00002Z", fill: color || tokens_1.colors.gray["500"] }),
|
|
16
|
-
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M25.881 27.1429L6.45243 7.71429L7.66461 6.50211L27.0932 25.9307L25.881 27.1429Z", fill: color || tokens_1.colors.gray["500"] }),
|
|
17
|
-
react_1.default.createElement("path", { d: "M22.8572 16C22.8572 19.7871 19.7871 22.8572 16 22.8572C12.2129 22.8572 9.14288 19.7871 9.14288 16C9.14288 12.2129 12.2129 9.14287 16 9.14287C19.7871 9.14287 22.8572 12.2129 22.8572 16Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
18
|
-
react_1.default.createElement("path", { d: "M4.74075 16C4.74075 17.3091 3.6795 18.3703 2.37037 18.3703C1.06125 18.3703 0 17.3091 0 16C0 14.6908 1.06125 13.6296 2.37037 13.6296C3.6795 13.6296 4.74075 14.6908 4.74075 16Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
19
|
-
react_1.default.createElement("path", { d: "M32 16.0847C32 17.3938 30.9388 18.4551 29.6297 18.4551C28.3205 18.4551 27.2593 17.3938 27.2593 16.0847C27.2593 14.7756 28.3205 13.7143 29.6297 13.7143C30.9388 13.7143 32 14.7756 32 16.0847Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
20
|
-
react_1.default.createElement("path", { d: "M16 4.74075C14.6909 4.74075 13.6297 3.67949 13.6297 2.37037C13.6297 1.06125 14.6909 -1.57964e-07 16 -1.01762e-07C17.3092 -4.55604e-08 18.3704 1.06125 18.3704 2.37037C18.3704 3.67949 17.3092 4.74075 16 4.74075Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
21
|
-
react_1.default.createElement("path", { d: "M16 32.0001C14.6909 32.0001 13.6297 30.9388 13.6297 29.6297C13.6297 28.3206 14.6909 27.2593 16 27.2593C17.3092 27.2593 18.3704 28.3206 18.3704 29.6297C18.3704 30.9388 17.3092 32.0001 16 32.0001Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
22
|
-
react_1.default.createElement("path", { d: "M23.9615 8.03856C23.0358 7.11288 23.0358 5.61204 23.9615 4.68635C24.8872 3.76066 26.388 3.76066 27.3137 4.68635C28.2394 5.61204 28.2394 7.11288 27.3137 8.03856C26.388 8.96425 24.8872 8.96425 23.9615 8.03856Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
23
|
-
react_1.default.createElement("path", { d: "M4.68634 27.3137C3.76065 26.388 3.76065 24.8872 4.68634 23.9615C5.61203 23.0358 7.11286 23.0358 8.03855 23.9615C8.96424 24.8872 8.96424 26.388 8.03855 27.3137C7.11286 28.2394 5.61203 28.2394 4.68634 27.3137Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
24
|
-
react_1.default.createElement("path", { d: "M23.9616 23.9616C24.8873 23.0359 26.3881 23.0359 27.3138 23.9616C28.2395 24.8873 28.2395 26.3881 27.3138 27.3138C26.3881 28.2395 24.8873 28.2395 23.9616 27.3138C23.0359 26.3881 23.0359 24.8873 23.9616 23.9616Z", fill: color || tokens_1.colors.gray["700"] }),
|
|
25
|
-
react_1.default.createElement("path", { d: "M4.68632 4.68633C5.61201 3.76064 7.11284 3.76064 8.03853 4.68633C8.96422 5.61201 8.96422 7.11285 8.03853 8.03854C7.11285 8.96423 5.61201 8.96423 4.68632 8.03854C3.76063 7.11285 3.76063 5.61201 4.68632 4.68633Z", fill: color || tokens_1.colors.gray["700"] })));
|
|
26
|
-
exports.EventsAPI = EventsAPI;
|
|
@@ -1,15 +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.GcpSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const GcpSvg = ({ color, square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 64 64" }, rest),
|
|
10
|
-
react_1.default.createElement("title", null, "GCP integration logo"),
|
|
11
|
-
react_1.default.createElement("path", { d: "M40.728 20.488l2.05.035 5.57-5.57.27-2.36C44.2 8.657 38.367 6.26 31.993 6.26c-11.54 0-21.28 7.852-24.163 18.488.608-.424 1.908-.106 1.908-.106l11.13-1.83s.572-.947.862-.9A13.88 13.88 0 0 1 32 17.375c3.3.007 6.34 1.173 8.728 3.102z", fill: "#ea4335" }),
|
|
12
|
-
react_1.default.createElement("path", { d: "M56.17 24.77c-1.293-4.77-3.958-8.982-7.555-12.177l-7.887 7.887c3.16 2.55 5.187 6.452 5.187 10.82v1.392c3.837 0 6.954 3.124 6.954 6.954 0 3.837-3.124 6.954-6.954 6.954H32.007L30.615 48v8.346l1.392 1.385h13.908A18.11 18.11 0 0 0 64 39.647c-.007-6.155-3.1-11.6-7.83-14.876z", fill: "#4285f4" }),
|
|
13
|
-
react_1.default.createElement("path", { d: "M18.085 57.74h13.9V46.6h-13.9a6.89 6.89 0 0 1-2.862-.622l-2.007.615-5.57 5.57-.488 1.88a18 18 0 0 0 10.926 3.689z", fill: "#34a853" }),
|
|
14
|
-
react_1.default.createElement("path", { d: "M18.085 21.57A18.11 18.11 0 0 0 0 39.654c0 5.873 2.813 11.095 7.166 14.403l8.064-8.064a6.96 6.96 0 0 1-4.099-6.339c0-3.837 3.124-6.954 6.954-6.954 2.82 0 5.244 1.7 6.34 4.1l8.064-8.064c-3.307-4.353-8.53-7.166-14.403-7.166z", fill: "#fbbc05" })));
|
|
15
|
-
exports.GcpSvg = GcpSvg;
|
|
@@ -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
|
-
exports.GithubSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const GithubSvg = ({ color = "#161514", square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 32 32" }, rest),
|
|
10
|
-
react_1.default.createElement("title", null, "Github integration logo"),
|
|
11
|
-
react_1.default.createElement("path", { fill: color, d: "M16 0.399994C7.16 0.399994 0 7.56399 0 16.4C0 23.4707 4.584 29.4667 10.94 31.58C11.74 31.7307 12.0333 31.236 12.0333 30.8107C12.0333 30.4307 12.02 29.424 12.0133 28.0907C7.56267 29.056 6.624 25.944 6.624 25.944C5.896 24.0973 4.844 23.604 4.844 23.604C3.39467 22.612 4.956 22.632 4.956 22.632C6.56267 22.744 7.40667 24.28 7.40667 24.28C8.83333 26.7267 11.152 26.02 12.0667 25.6107C12.2107 24.576 12.6227 23.8707 13.08 23.4707C9.52667 23.0707 5.792 21.6947 5.792 15.564C5.792 13.8173 6.412 12.3907 7.43867 11.2707C7.25867 10.8667 6.71867 9.23999 7.57867 7.03599C7.57867 7.03599 8.91867 6.60666 11.9787 8.67599C13.2587 8.31999 14.6187 8.14399 15.9787 8.13599C17.3387 8.14399 18.6987 8.31999 19.9787 8.67599C23.0187 6.60666 24.3587 7.03599 24.3587 7.03599C25.2187 9.23999 24.6787 10.8667 24.5187 11.2707C25.5387 12.3907 26.1587 13.8173 26.1587 15.564C26.1587 21.7107 22.4187 23.064 18.8587 23.4573C19.4187 23.9373 19.9387 24.9187 19.9387 26.4173C19.9387 28.5587 19.9187 30.2787 19.9187 30.7987C19.9187 31.2187 20.1987 31.7187 21.0187 31.5587C27.42 29.46 32 23.46 32 16.4C32 7.56399 24.836 0.399994 16 0.399994" })));
|
|
12
|
-
exports.GithubSvg = GithubSvg;
|
|
@@ -1,19 +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.GitlabSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const GitlabSvg = ({ color, square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 32 32" }, rest),
|
|
10
|
-
react_1.default.createElement("title", null, "Gitlab integration logo"),
|
|
11
|
-
react_1.default.createElement("path", { d: "M31.9415 17.8289L30.149 12.3285L26.6019 1.41847C26.561 1.29675 26.4829 1.19092 26.3786 1.11594C26.2742 1.04097 26.1489 1.00063 26.0203 1.00063C25.8917 1.00063 25.7664 1.04097 25.6621 1.11594C25.5577 1.19092 25.4796 1.29675 25.4388 1.41847L21.8916 12.3219H10.106L6.55885 1.41847C6.51827 1.29663 6.4403 1.19064 6.336 1.11553C6.23171 1.04042 6.10637 1 5.97777 1C5.84917 1 5.72383 1.04042 5.61953 1.11553C5.51523 1.19064 5.43726 1.29663 5.39669 1.41847L1.85522 12.3219L0.06269 17.8289C-0.0169457 18.0735 -0.0171059 18.3368 0.0622329 18.5814C0.141572 18.826 0.296346 19.0393 0.504425 19.1908L16.0002 30.4321L31.4932 19.1908C31.7022 19.04 31.8581 18.8271 31.9386 18.5825C32.0192 18.3379 32.0202 18.0742 31.9415 17.8289", fill: color || "#fc6d26" }),
|
|
12
|
-
react_1.default.createElement("path", { d: "M16.0002 30.4236L21.8926 12.3209H10.1107L16.0002 30.4236Z", fill: color || "#e24329" }),
|
|
13
|
-
react_1.default.createElement("path", { d: "M16.0002 30.4236L10.106 12.3209H1.85902L16.0002 30.4236Z", fill: color || "#fc6d26" }),
|
|
14
|
-
react_1.default.createElement("path", { d: "M1.85238 12.3266L0.0598438 17.8271C-0.0197918 18.0716 -0.0199513 18.3349 0.0593875 18.5795C0.138726 18.8241 0.293501 19.0374 0.501579 19.1889L16.0002 30.4321L1.85238 12.3266Z", fill: color || "#fca326" }),
|
|
15
|
-
react_1.default.createElement("path", { d: "M1.85522 12.3266H10.1126L6.55885 1.42414C6.51801 1.30243 6.4399 1.1966 6.33554 1.12162C6.23119 1.04664 6.10586 1.0063 5.97729 1.0063C5.84872 1.0063 5.7234 1.04664 5.61905 1.12162C5.51469 1.1966 5.43658 1.30243 5.39574 1.42414L1.85522 12.3266Z", fill: color || "#e24329" }),
|
|
16
|
-
react_1.default.createElement("path", { d: "M16.0002 30.4236L21.8925 12.3209H30.1528L16.0002 30.4236Z", fill: color || "#fc6d26" }),
|
|
17
|
-
react_1.default.createElement("path", { d: "M30.1471 12.3266L31.9397 17.8271C32.0197 18.0715 32.0201 18.3351 31.9408 18.5798C31.8614 18.8245 31.7063 19.0377 31.4979 19.1889L16.0002 30.4236L30.1433 12.3266H30.1471Z", fill: color || "#fca326" }),
|
|
18
|
-
react_1.default.createElement("path", { d: "M30.1509 12.3266H21.8944L25.4416 1.42414C25.4822 1.30231 25.5601 1.19632 25.6644 1.12121C25.7687 1.0461 25.8941 1.00568 26.0227 1.00568C26.1513 1.00568 26.2766 1.0461 26.3809 1.12121C26.4852 1.19632 26.5632 1.30231 26.6038 1.42414L30.1509 12.3266Z", fill: color || "#e24329" })));
|
|
19
|
-
exports.GitlabSvg = GitlabSvg;
|
|
@@ -1,15 +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.GsuiteSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const GsuiteSvg = ({ color, square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 32 32" }, rest),
|
|
10
|
-
react_1.default.createElement("title", null, "GSuite integration logo"),
|
|
11
|
-
react_1.default.createElement("path", { fill: color || "#4285f4", d: "M31.7526 16.3674C31.7526 15.2798 31.664 14.1863 31.4751 13.1163H16.3172V19.2776H24.9974C24.6372 21.2647 23.4799 23.0226 21.7851 24.1396V28.1374H26.9637C30.0048 25.3507 31.7526 21.2354 31.7526 16.3674Z" }),
|
|
12
|
-
react_1.default.createElement("path", { fill: color || "#34a853", d: "M16.3172 32C20.6514 32 24.3065 30.5831 26.9696 28.1374L21.791 24.1396C20.3502 25.1156 18.4902 25.6682 16.3231 25.6682C12.1306 25.6682 8.57589 22.8521 7.30044 19.0659H1.95651V23.1872C4.68457 28.5901 10.2411 32 16.3172 32V32Z" }),
|
|
13
|
-
react_1.default.createElement("path", { fill: color || "#fbbc04", d: "M7.29454 19.066C6.62138 17.0788 6.62138 14.9271 7.29454 12.9399V8.81866H1.95652C-0.322767 13.3397 -0.322767 18.6662 1.95652 23.1872L7.29454 19.066V19.066Z" }),
|
|
14
|
-
react_1.default.createElement("path", { fill: color || "#ea4335", d: "M16.3172 6.3318C18.6083 6.29652 20.8226 7.15487 22.4819 8.73047L27.07 4.16241C24.1648 1.44626 20.3089 -0.047038 16.3172 -5.15278e-06C10.2411 -5.15278e-06 4.68457 3.40988 1.95651 8.81866L7.29453 12.9399C8.56408 9.14789 12.1247 6.3318 16.3172 6.3318V6.3318Z" })));
|
|
15
|
-
exports.GsuiteSvg = GsuiteSvg;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export { AddigySvg } from "./addigy";
|
|
2
|
-
export { AwsSvg } from "./aws";
|
|
3
|
-
export { BambooHrSvg } from "./bamboohr";
|
|
4
|
-
export { BitbucketSvg } from "./bitbucket";
|
|
5
|
-
export { ConveyorSvg } from "./conveyor";
|
|
6
|
-
export { DefaultSvg } from "./default";
|
|
7
|
-
export { DeploySvg } from "./deploy";
|
|
8
|
-
export { EventsAPI } from "./events-api";
|
|
9
|
-
export { GcpSvg } from "./gcp";
|
|
10
|
-
export { GithubSvg } from "./github";
|
|
11
|
-
export { GitlabSvg } from "./gitlab";
|
|
12
|
-
export { GsuiteSvg } from "./gsuite";
|
|
13
|
-
export { JamfSvg } from "./jamf";
|
|
14
|
-
export { JiraSvg } from "./jira";
|
|
15
|
-
export { JumpcloudSvg } from "./jumpcloud";
|
|
16
|
-
export { OktaSvg } from "./okta";
|
|
17
|
-
export { OneLoginSvg } from "./onelogin";
|
|
18
|
-
export { SalesforceSvg } from "./salesforce";
|
|
19
|
-
export { SlackSvg } from "./slack";
|
|
20
|
-
export { ZoomSvg } from "./zoom";
|
|
21
|
-
export * from "./wrapper";
|
|
@@ -1,54 +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
|
-
exports.ZoomSvg = exports.SlackSvg = exports.SalesforceSvg = exports.OneLoginSvg = exports.OktaSvg = exports.JumpcloudSvg = exports.JiraSvg = exports.JamfSvg = exports.GsuiteSvg = exports.GitlabSvg = exports.GithubSvg = exports.GcpSvg = exports.EventsAPI = exports.DeploySvg = exports.DefaultSvg = exports.ConveyorSvg = exports.BitbucketSvg = exports.BambooHrSvg = exports.AwsSvg = exports.AddigySvg = void 0;
|
|
14
|
-
var addigy_1 = require("./addigy");
|
|
15
|
-
Object.defineProperty(exports, "AddigySvg", { enumerable: true, get: function () { return addigy_1.AddigySvg; } });
|
|
16
|
-
var aws_1 = require("./aws");
|
|
17
|
-
Object.defineProperty(exports, "AwsSvg", { enumerable: true, get: function () { return aws_1.AwsSvg; } });
|
|
18
|
-
var bamboohr_1 = require("./bamboohr");
|
|
19
|
-
Object.defineProperty(exports, "BambooHrSvg", { enumerable: true, get: function () { return bamboohr_1.BambooHrSvg; } });
|
|
20
|
-
var bitbucket_1 = require("./bitbucket");
|
|
21
|
-
Object.defineProperty(exports, "BitbucketSvg", { enumerable: true, get: function () { return bitbucket_1.BitbucketSvg; } });
|
|
22
|
-
var conveyor_1 = require("./conveyor");
|
|
23
|
-
Object.defineProperty(exports, "ConveyorSvg", { enumerable: true, get: function () { return conveyor_1.ConveyorSvg; } });
|
|
24
|
-
var default_1 = require("./default");
|
|
25
|
-
Object.defineProperty(exports, "DefaultSvg", { enumerable: true, get: function () { return default_1.DefaultSvg; } });
|
|
26
|
-
var deploy_1 = require("./deploy");
|
|
27
|
-
Object.defineProperty(exports, "DeploySvg", { enumerable: true, get: function () { return deploy_1.DeploySvg; } });
|
|
28
|
-
var events_api_1 = require("./events-api");
|
|
29
|
-
Object.defineProperty(exports, "EventsAPI", { enumerable: true, get: function () { return events_api_1.EventsAPI; } });
|
|
30
|
-
var gcp_1 = require("./gcp");
|
|
31
|
-
Object.defineProperty(exports, "GcpSvg", { enumerable: true, get: function () { return gcp_1.GcpSvg; } });
|
|
32
|
-
var github_1 = require("./github");
|
|
33
|
-
Object.defineProperty(exports, "GithubSvg", { enumerable: true, get: function () { return github_1.GithubSvg; } });
|
|
34
|
-
var gitlab_1 = require("./gitlab");
|
|
35
|
-
Object.defineProperty(exports, "GitlabSvg", { enumerable: true, get: function () { return gitlab_1.GitlabSvg; } });
|
|
36
|
-
var gsuite_1 = require("./gsuite");
|
|
37
|
-
Object.defineProperty(exports, "GsuiteSvg", { enumerable: true, get: function () { return gsuite_1.GsuiteSvg; } });
|
|
38
|
-
var jamf_1 = require("./jamf");
|
|
39
|
-
Object.defineProperty(exports, "JamfSvg", { enumerable: true, get: function () { return jamf_1.JamfSvg; } });
|
|
40
|
-
var jira_1 = require("./jira");
|
|
41
|
-
Object.defineProperty(exports, "JiraSvg", { enumerable: true, get: function () { return jira_1.JiraSvg; } });
|
|
42
|
-
var jumpcloud_1 = require("./jumpcloud");
|
|
43
|
-
Object.defineProperty(exports, "JumpcloudSvg", { enumerable: true, get: function () { return jumpcloud_1.JumpcloudSvg; } });
|
|
44
|
-
var okta_1 = require("./okta");
|
|
45
|
-
Object.defineProperty(exports, "OktaSvg", { enumerable: true, get: function () { return okta_1.OktaSvg; } });
|
|
46
|
-
var onelogin_1 = require("./onelogin");
|
|
47
|
-
Object.defineProperty(exports, "OneLoginSvg", { enumerable: true, get: function () { return onelogin_1.OneLoginSvg; } });
|
|
48
|
-
var salesforce_1 = require("./salesforce");
|
|
49
|
-
Object.defineProperty(exports, "SalesforceSvg", { enumerable: true, get: function () { return salesforce_1.SalesforceSvg; } });
|
|
50
|
-
var slack_1 = require("./slack");
|
|
51
|
-
Object.defineProperty(exports, "SlackSvg", { enumerable: true, get: function () { return slack_1.SlackSvg; } });
|
|
52
|
-
var zoom_1 = require("./zoom");
|
|
53
|
-
Object.defineProperty(exports, "ZoomSvg", { enumerable: true, get: function () { return zoom_1.ZoomSvg; } });
|
|
54
|
-
__exportStar(require("./wrapper"), exports);
|
|
@@ -1,20 +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.JamfSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const JamfSvg = ({ color, square, ...rest }) => {
|
|
10
|
-
const viewBox = square ? "0 0 32 32" : "0 0 93 32";
|
|
11
|
-
const path = square ? (react_1.default.createElement(react_1.default.Fragment, null,
|
|
12
|
-
react_1.default.createElement("path", { fill: color || "#778eb1", d: "M2.342 0.332c-0.949 0-1.718 0.77-1.718 1.72v11.893c0 0.925 0.75 1.677 1.675 1.677h5.989c2.742 0 6.505-0.564 7.539-5.436 0.001-0.001 1.027-4.879 1.636-7.77 0.227-1.075-0.594-2.083-1.692-2.083h-13.429z" }),
|
|
13
|
-
react_1.default.createElement("path", { fill: color || "#778eb1", d: "M25.262 5.973c-4.044 0-6.434 1.704-7.523 5.362 0.002-0.007-2.817 8.711-2.817 8.711-1.033 2.863-2.695 4.043-5.73 4.043h-6.961c-0.888 0-1.608 0.721-1.608 1.609v4.443c0 0.85 0.688 1.539 1.538 1.539h28.256c0.886 0 1.605-0.718 1.605-1.605v-22.553c0-0.856-0.693-1.548-1.547-1.548h-5.212z" }))) : (react_1.default.createElement(react_1.default.Fragment, null,
|
|
14
|
-
react_1.default.createElement("path", { fill: color || "#778eb1", d: "M19.2 4c-3.143 0-5.029 1.314-5.886 4.171l-2.171 6.8c-0.8 2.229-2.114 3.143-4.457 3.143h-5.429c-0.686 0-1.257 0.571-1.257 1.257v3.486c0 0.629 0.514 1.143 1.2 1.143h22.057c0.686 0 1.257-0.571 1.257-1.257v-17.543c0-0.686-0.514-1.2-1.2-1.2h-4.114zM1.314 0c-0.686 0-1.314 0.629-1.314 1.314v9.257c0 0.743 0.571 1.314 1.314 1.314h4.686c2.114 0 5.086-0.457 5.886-4.229 0 0 0.8-3.829 1.257-6.057 0.171-0.857-0.457-1.6-1.314-1.6h-10.514z" }),
|
|
15
|
-
react_1.default.createElement("path", { fill: color || "#204156", d: "M87.371 7.6c0-3.143 2.114-4.629 5.086-4.743v2.571h-0.514c-1.314 0-2 1.086-2 2.4v2.057h2.4v2.286h-2.4v12.686h-2.571v-12.743h-2.229v-2.286h2.229v-2.229zM78.457 15.829c0-2.571-1.486-3.714-3.257-3.714-2.114 0-3.714 1.371-3.714 3.829v9.029h-2.571v-9.143c0-2.571-1.486-3.714-3.257-3.714-2.114 0-3.714 1.371-3.714 3.829v9.029h-2.514v-14.914h2.571v1.771h0.057c0.686-1.543 2.514-2.114 4.057-2.114 1.486 0 3.143 0.4 4.343 2.571 0.914-1.886 2.857-2.571 4.8-2.571 3.2 0 5.657 1.943 5.657 5.829v9.429h-2.571v-9.143h0.114zM47.485 17.086c-3.143 0-4.171 1.543-4.171 2.971s1.029 2.971 4.171 2.971c3.143 0 4.171-1.543 4.171-2.971s-1.086-2.971-4.171-2.971zM51.543 14.971c0-2.457-2.457-3.029-4.4-3.029-1.371 0-2.686 0.343-4.057 1.029l-1.143-2.114c2.229-0.971 4-1.143 5.314-1.143 3.543 0 6.857 1.543 6.857 5.086v10.171h-2.4v-1.6c-1.314 1.371-2.743 1.943-4.686 1.943-3.6 0-6.457-2-6.457-5.371 0-2.743 2.286-5.143 6.4-5.143 1.543 0 3.2 0.457 4.571 1.714v-1.543zM35.714 3.429c0.971 0 1.771 0.8 1.771 1.771 0 1.029-0.8 1.829-1.771 1.829s-1.771-0.8-1.771-1.771c0-1.029 0.8-1.829 1.771-1.829zM34.514 9.943h2.571l0.057 16.857c0 3.886-2.514 5.2-5.314 5.2h-0.971v-2.4h0.971c2.514 0 2.743-1.371 2.743-2.686l-0.057-16.971z" })));
|
|
16
|
-
return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
|
|
17
|
-
react_1.default.createElement("title", null, "Jamf integration logo"),
|
|
18
|
-
path));
|
|
19
|
-
};
|
|
20
|
-
exports.JamfSvg = JamfSvg;
|
|
@@ -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.JiraSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const JiraSvg = ({ color, square, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 32 32" }, rest),
|
|
10
|
-
react_1.default.createElement("title", null, "Jira integration logo"),
|
|
11
|
-
react_1.default.createElement("path", { d: "M31.1047 15.1045L17.3349 1.33474L16.0001 0L5.63475 10.3654L0.895579 15.1045C0.658281 15.3421 0.524994 15.6642 0.524994 16C0.524994 16.3358 0.658281 16.6579 0.895579 16.8955L10.3655 26.3654L16.0001 32L26.3655 21.6346L26.526 21.4741L31.1047 16.8955C31.342 16.6579 31.4752 16.3358 31.4752 16C31.4752 15.6642 31.342 15.3421 31.1047 15.1045V15.1045ZM16.0001 20.7307L11.2694 16L16.0001 11.2693L20.7308 16L16.0001 20.7307Z", fill: color || "#2684ff" }),
|
|
12
|
-
react_1.default.createElement("path", { d: "M16.0001 11.2693C14.5122 9.78121 13.6736 7.7649 13.6672 5.6606C13.6609 3.55631 14.4874 1.53499 15.9663 0.0380096L5.61362 10.3865L11.2483 16.0211L16.0001 11.2693Z", fill: color || "url(#jira_paint0_linear)" }),
|
|
13
|
-
react_1.default.createElement("path", { d: "M20.7435 15.9873L16.0001 20.7307C16.7404 21.4705 17.3276 22.3489 17.7282 23.3157C18.1288 24.2825 18.335 25.3188 18.335 26.3654C18.335 27.4119 18.1288 28.4482 17.7282 29.415C17.3276 30.3818 16.7404 31.2602 16.0001 32V32L26.3782 21.622L20.7435 15.9873Z", fill: color || "url(#jira_paint1_linear)" }),
|
|
14
|
-
react_1.default.createElement("defs", null,
|
|
15
|
-
react_1.default.createElement("linearGradient", { id: "jira_paint0_linear", x1: "15.1553", y1: "6.48363", x2: "8.5492", y2: "13.0897", gradientUnits: "userSpaceOnUse" },
|
|
16
|
-
react_1.default.createElement("stop", { offset: "0.18", stopColor: "#0052cc" }),
|
|
17
|
-
react_1.default.createElement("stop", { offset: "1", stopColor: "#2684ff" })),
|
|
18
|
-
react_1.default.createElement("linearGradient", { id: "jira_paint1_linear", x1: "418.46", y1: "981.231", x2: "646.623", y2: "833.356", gradientUnits: "userSpaceOnUse" },
|
|
19
|
-
react_1.default.createElement("stop", { offset: "0.18", stopColor: "#0052cc" }),
|
|
20
|
-
react_1.default.createElement("stop", { offset: "1", stopColor: "#2684ff" })))));
|
|
21
|
-
exports.JiraSvg = JiraSvg;
|
|
@@ -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.JumpcloudSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const JumpcloudSvg = ({ color = "#1e8194", square, ...rest }) => {
|
|
10
|
-
const viewBox = square ? "0 0 32 32" : "0 0 67 32";
|
|
11
|
-
const path = square ? (react_1.default.createElement(react_1.default.Fragment, null,
|
|
12
|
-
react_1.default.createElement("path", { fill: color, fillRule: "evenodd", clipRule: "evenodd", d: "M8.26074 20.808C7.07373 21.2503 6.10694 22.0136 5.51967 22.9633C5.39958 23.1571 5.53428 23.4084 5.76199 23.4084H8.18734H13.3067C13.4257 23.4084 13.5448 23.3132 13.579 23.1995C13.7518 22.6226 14.0643 22.0923 14.4449 21.5942C14.0362 21.2916 13.5815 21.0308 13.0779 20.8351C12.8987 20.7656 12.8573 20.5301 12.9988 20.3997C13.8626 19.6004 14.3237 18.3741 14.0276 17.0507C13.7379 15.7574 12.6852 14.719 11.3885 14.4468C9.13488 13.9739 7.14999 15.6808 7.14999 17.851C7.14999 18.8926 7.61111 19.8234 8.33665 20.461C8.45496 20.5647 8.40827 20.7532 8.26074 20.808Z" }),
|
|
13
|
-
react_1.default.createElement("path", { fill: color, fillRule: "evenodd", clipRule: "evenodd", d: "M18.176 20.0194C17.1886 20.3658 16.3237 20.9018 15.6505 21.5724C15.4585 21.7634 15.2871 21.968 15.1278 22.1797C14.93 22.4427 14.7625 22.7217 14.6242 23.0125C14.5369 23.1967 14.683 23.4084 14.8869 23.4084H23.5373H26.6651C26.8803 23.4084 27.0146 23.1824 26.9209 22.9886C26.6893 22.5075 26.3821 22.0585 25.9969 21.6587C25.3148 20.9502 24.4225 20.3844 23.3973 20.0234C23.2369 19.9667 23.1895 19.7607 23.3217 19.6535C24.4321 18.748 25.0504 17.2631 24.7108 15.658C24.5565 14.9307 24.1684 14.2665 23.6453 13.7387C22.7983 12.8849 21.9758 12.6126 21.189 12.5353C21.1377 12.5303 21.0871 12.5303 21.0354 12.5275C20.9345 12.5211 20.8337 12.5154 20.7343 12.5164C20.6787 12.5171 20.6245 12.5218 20.5696 12.5246C20.4777 12.5296 20.3858 12.5353 20.2952 12.546C20.2375 12.5531 20.1801 12.5631 20.1231 12.5727C20.038 12.5866 19.9531 12.6023 19.8701 12.6216C19.8131 12.6347 19.7564 12.6497 19.6998 12.6654C19.6185 12.6882 19.5383 12.7135 19.4596 12.7409C19.4051 12.7598 19.3509 12.7791 19.2975 12.8001C19.218 12.8318 19.1403 12.8671 19.0633 12.9034C19.0145 12.9266 18.965 12.9487 18.9172 12.974C18.8353 13.0167 18.7558 13.0645 18.6774 13.113C18.6382 13.1368 18.5979 13.1589 18.5598 13.1842C18.4568 13.2527 18.3574 13.3261 18.2612 13.4034C18.2501 13.4123 18.238 13.4201 18.227 13.429C18.1204 13.5171 18.0189 13.6108 17.9216 13.7091C17.8934 13.7373 17.8685 13.7683 17.8414 13.7975C17.7744 13.8688 17.7088 13.9411 17.6479 14.0174C17.6158 14.0573 17.5862 14.0993 17.5556 14.1403C17.5036 14.2102 17.453 14.2807 17.4056 14.3538C17.3753 14.3998 17.3475 14.4479 17.3197 14.4953C17.2773 14.5672 17.2359 14.6403 17.1982 14.7148C17.1725 14.7657 17.1476 14.817 17.1237 14.8691C17.0891 14.945 17.0571 15.0227 17.0271 15.1007C17.0068 15.1542 16.9865 15.2076 16.9683 15.2618C16.9409 15.3437 16.9177 15.4278 16.8953 15.5123C16.8814 15.5654 16.8661 15.6178 16.8543 15.6719C16.8336 15.7657 16.8187 15.8615 16.8048 15.9577C16.7983 16.0044 16.7887 16.0504 16.7837 16.0974C16.7681 16.2417 16.7584 16.3882 16.7584 16.5368C16.7584 17.7997 17.3414 18.9258 18.2526 19.6627C18.3791 19.7654 18.33 19.9656 18.176 20.0194Z" }),
|
|
14
|
-
react_1.default.createElement("mask", { id: "jumpcloud-square-mask0", "mask-type": "alpha", maskUnits: "userSpaceOnUse", x: "0", y: "8", width: "32", height: "16" },
|
|
15
|
-
react_1.default.createElement("path", { d: "M0 8H32V23.4746H0V8Z", fill: "white" })),
|
|
16
|
-
react_1.default.createElement("g", { mask: "url(#jumpcloud-square-mask0)" },
|
|
17
|
-
react_1.default.createElement("path", { fill: color, fillRule: "evenodd", clipRule: "evenodd", d: "M31.9998 19.2283C31.9998 16.9113 30.1215 15.0326 27.8041 15.0326C27.441 15.0326 27.0914 15.0835 26.7554 15.1698C26.5038 12.4818 24.2431 10.3775 21.4892 10.3775C21.244 10.3775 21.0052 10.4 20.769 10.4321C19.6511 8.9571 17.8854 7.99994 15.8919 7.99994C13.189 7.99994 10.8994 9.7532 10.0873 12.1828C8.30837 12.305 6.75894 13.2562 5.82744 14.6588C5.41122 14.5319 4.96934 14.4624 4.51178 14.4624C2.0198 14.4624 -0.000366211 16.4826 -0.000366211 18.9746C-0.000366211 21.386 1.8933 23.3499 4.27374 23.4746C4.71526 22.2063 5.74084 21.0767 7.05151 20.3693C6.5348 19.6374 6.24972 18.7593 6.24972 17.851C6.24972 15.4338 8.21643 13.4671 10.6336 13.4671C10.9429 13.4671 11.2561 13.4999 11.5651 13.564C13.2856 13.9222 14.6458 15.3323 14.949 17.0731C15.1546 18.2529 14.8842 19.4275 14.2164 20.37C14.5125 20.5297 14.784 20.7139 15.0434 20.9085C15.5758 20.3843 16.2094 19.9335 16.9122 19.58C16.234 18.7208 15.8584 17.656 15.8584 16.5367C15.8584 13.8224 18.0664 11.6141 20.7811 11.6141C21.1314 11.6141 21.4863 11.6511 21.8359 11.7242C23.6857 12.1119 25.1938 13.6139 25.589 15.4616C25.9047 16.9391 25.548 18.4375 24.649 19.5793C25.408 19.9613 26.0868 20.4545 26.6452 21.0343C27.3024 21.7167 27.7902 22.5687 28.0632 23.4112C30.259 23.2765 31.9998 21.458 31.9998 19.2283Z" })))) : (react_1.default.createElement(react_1.default.Fragment, null,
|
|
18
|
-
react_1.default.createElement("path", { fill: color, fillRule: "evenodd", clipRule: "evenodd", d: "M17.5024 26.4858C15.0478 27.4003 13.0486 28.9788 11.8341 30.9426C11.5858 31.3435 11.8644 31.863 12.3352 31.863H17.3506H27.937C28.1831 31.863 28.4292 31.6663 28.5 31.4312C28.8574 30.2381 29.5036 29.1416 30.2906 28.1114C29.4454 27.4858 28.5051 26.9464 27.4639 26.5418C27.0932 26.3981 27.0077 25.911 27.3003 25.6413C29.0865 23.9885 30.0401 21.4528 29.4277 18.7159C28.8286 16.0417 26.6518 13.8943 23.9702 13.3313C19.31 12.3535 15.2055 15.8832 15.2055 20.371C15.2055 22.525 16.159 24.4498 17.6594 25.7681C17.904 25.9825 17.8075 26.3723 17.5024 26.4858Z" }),
|
|
19
|
-
react_1.default.createElement("path", { fill: color, fillRule: "evenodd", clipRule: "evenodd", d: "M38.0063 24.8551C35.9643 25.5714 34.1758 26.6797 32.7838 28.0665C32.3866 28.4615 32.0322 28.8845 31.7028 29.3222C31.2938 29.866 30.9475 30.443 30.6615 31.0444C30.481 31.4253 30.7831 31.8631 31.2046 31.8631H49.093H55.5608C56.0059 31.8631 56.2837 31.3959 56.0899 30.995C55.6109 30.0002 54.9757 29.0717 54.1791 28.2449C52.7687 26.7799 50.9235 25.6097 48.8034 24.8632C48.4718 24.746 48.3738 24.3201 48.6472 24.0983C50.9434 22.2258 52.2219 19.1551 51.5196 15.8361C51.2005 14.3321 50.398 12.9585 49.3163 11.8672C47.5646 10.1015 45.8639 9.53854 44.2368 9.37863C44.1307 9.36832 44.026 9.36832 43.9192 9.36242C43.7106 9.34916 43.5021 9.33737 43.2965 9.33958C43.1815 9.34105 43.0695 9.35063 42.956 9.35653C42.7659 9.36684 42.5758 9.37863 42.3886 9.40074C42.2693 9.41548 42.1506 9.43611 42.0327 9.45601C41.8566 9.48475 41.6812 9.51717 41.5095 9.55696C41.3916 9.58423 41.2744 9.61518 41.1573 9.6476C40.9892 9.69477 40.8234 9.74709 40.6606 9.80383C40.5478 9.84288 40.4358 9.88268 40.3253 9.92615C40.161 9.99174 40.0003 10.0647 39.8412 10.1399C39.7402 10.1878 39.6378 10.2334 39.539 10.2858C39.3695 10.3742 39.2052 10.4729 39.0431 10.5732C38.962 10.6225 38.8788 10.6682 38.7999 10.7205C38.5869 10.862 38.3813 11.0138 38.1824 11.1737C38.1595 11.1922 38.1345 11.2084 38.1116 11.2268C37.8913 11.4088 37.6813 11.6026 37.4801 11.806C37.4219 11.8642 37.3703 11.9283 37.3143 11.9887C37.1758 12.1361 37.0402 12.2857 36.9142 12.4434C36.8478 12.526 36.7867 12.6129 36.7233 12.6977C36.6157 12.8421 36.5111 12.988 36.4131 13.1391C36.3504 13.2341 36.293 13.3336 36.2355 13.4316C36.1478 13.5805 36.0623 13.7315 35.9842 13.8855C35.9311 13.9909 35.8796 14.097 35.8302 14.2046C35.7587 14.3616 35.6924 14.5222 35.6305 14.6836C35.5885 14.7941 35.5465 14.9047 35.5089 15.0167C35.4521 15.1862 35.4043 15.3601 35.3578 15.5347C35.3291 15.6445 35.2974 15.7529 35.2731 15.8649C35.2303 16.0587 35.1994 16.2569 35.1707 16.4559C35.1574 16.5524 35.1375 16.6475 35.1272 16.7447C35.0947 17.0432 35.0749 17.346 35.0749 17.6533C35.0749 20.2649 36.2804 22.5935 38.1647 24.1175C38.4263 24.3297 38.3246 24.7438 38.0063 24.8551Z" }),
|
|
20
|
-
react_1.default.createElement("mask", { id: "jumpcloud-mask0", "mask-type": "alpha", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "67", height: "32" },
|
|
21
|
-
react_1.default.createElement("path", { d: "M0.420013 0H66.5929V32H0.420013V0Z", fill: "white" })),
|
|
22
|
-
react_1.default.createElement("g", { mask: "url(#jumpcloud-mask0)" },
|
|
23
|
-
react_1.default.createElement("path", { fill: color, fillRule: "evenodd", clipRule: "evenodd", d: "M66.5929 23.219C66.5929 18.4277 62.7087 14.5427 57.9166 14.5427C57.1657 14.5427 56.4428 14.6481 55.7479 14.8264C55.2276 9.26797 50.5527 4.91655 44.8579 4.91655C44.3509 4.91655 43.8572 4.96298 43.3686 5.0293C41.057 1.97925 37.4056 -7.62939e-05 33.2834 -7.62939e-05C27.694 -7.62939e-05 22.9593 3.62549 21.2799 8.64971C17.6013 8.90247 14.3972 10.8693 12.471 13.7697C11.6103 13.5074 10.6965 13.3637 9.75033 13.3637C4.59716 13.3637 0.419647 17.5412 0.419647 22.6944C0.419647 27.681 4.33556 31.7421 9.25808 32C10.1711 29.3774 12.2919 27.0414 15.0022 25.5786C13.9337 24.065 13.3442 22.2493 13.3442 20.3709C13.3442 15.3725 17.4112 11.3055 22.4096 11.3055C23.0492 11.3055 23.697 11.3733 24.3359 11.5059C27.8937 12.2465 30.7064 15.1625 31.3335 18.7622C31.7587 21.2021 31.1994 23.631 29.8184 25.5801C30.4308 25.9102 30.9923 26.2912 31.5288 26.6935C32.6297 25.6096 33.94 24.6774 35.3931 23.9464C33.9908 22.1697 33.2141 19.9678 33.2141 17.6532C33.2141 12.0402 37.78 7.47361 43.3937 7.47361C44.1181 7.47361 44.852 7.55025 45.5749 7.70131C49.4002 8.50306 52.5188 11.6091 53.336 15.43C53.9889 18.4852 53.2513 21.5839 51.3921 23.9449C52.9617 24.7349 54.3655 25.7547 55.5202 26.9537C56.8791 28.3648 57.8879 30.1268 58.4523 31.8688C62.9931 31.5903 66.5929 27.8299 66.5929 23.219Z" }))));
|
|
24
|
-
return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
|
|
25
|
-
react_1.default.createElement("title", null, "Jumpcloud integration logo"),
|
|
26
|
-
path));
|
|
27
|
-
};
|
|
28
|
-
exports.JumpcloudSvg = JumpcloudSvg;
|
|
@@ -1,16 +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.OktaSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const OktaSvg = ({ color = "#007dc1", square, ...rest }) => {
|
|
10
|
-
const viewBox = square ? "0 0 32 32" : "0 0 95 32";
|
|
11
|
-
const path = square ? (react_1.default.createElement("path", { fill: color, 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" })) : (react_1.default.createElement("path", { fill: color, 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" }));
|
|
12
|
-
return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
|
|
13
|
-
react_1.default.createElement("title", null, "Okta integration logo"),
|
|
14
|
-
path));
|
|
15
|
-
};
|
|
16
|
-
exports.OktaSvg = OktaSvg;
|
|
@@ -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.OneLoginSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const OneLoginSvg = ({ color = "#1c1f2a", square, ...rest }) => {
|
|
10
|
-
const viewBox = square ? "0 0 32 32" : "0 0 130 32";
|
|
11
|
-
const path = square ? (react_1.default.createElement(react_1.default.Fragment, null,
|
|
12
|
-
react_1.default.createElement("path", { fill: color, 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" }),
|
|
13
|
-
react_1.default.createElement("path", { fill: "#fff", 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" }))) : (react_1.default.createElement("path", { fill: color, 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" }));
|
|
14
|
-
return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
|
|
15
|
-
react_1.default.createElement("title", null, "OneLogin integration logo"),
|
|
16
|
-
path));
|
|
17
|
-
};
|
|
18
|
-
exports.OneLoginSvg = OneLoginSvg;
|
|
@@ -1,20 +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.SalesforceSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const SalesforceSvg = ({ color = "#00a1e0", square, ...rest }) => {
|
|
10
|
-
const viewBox = square ? "0 0 32 32" : "0 0 46 32";
|
|
11
|
-
const path = square ? (react_1.default.createElement(react_1.default.Fragment, null,
|
|
12
|
-
react_1.default.createElement("path", { fill: color, 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" }),
|
|
13
|
-
react_1.default.createElement("path", { fill: "#fff", 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" }))) : (react_1.default.createElement(react_1.default.Fragment, null,
|
|
14
|
-
react_1.default.createElement("path", { fill: color, 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" }),
|
|
15
|
-
react_1.default.createElement("path", { fill: "#fff", 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" })));
|
|
16
|
-
return (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: viewBox }, rest),
|
|
17
|
-
react_1.default.createElement("title", null, "Salesforce integration logo"),
|
|
18
|
-
path));
|
|
19
|
-
};
|
|
20
|
-
exports.SalesforceSvg = SalesforceSvg;
|
|
@@ -1,19 +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.SlackSvg = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const wrapper_1 = require("./wrapper");
|
|
9
|
-
const SlackSvg = ({ color, ...rest }) => (react_1.default.createElement(wrapper_1.IntegrationLogoSvgWrapper, Object.assign({ viewBox: "0 0 32 32" }, rest),
|
|
10
|
-
react_1.default.createElement("title", null, "Slack integration logo"),
|
|
11
|
-
react_1.default.createElement("path", { fill: color || "#e01e5a", 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" }),
|
|
12
|
-
react_1.default.createElement("path", { fill: color || "#e01e5a", 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" }),
|
|
13
|
-
react_1.default.createElement("path", { fill: color || "#36c5f0", 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" }),
|
|
14
|
-
react_1.default.createElement("path", { fill: color || "#36c5f0", 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" }),
|
|
15
|
-
react_1.default.createElement("path", { fill: color || "#2eb67d", 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" }),
|
|
16
|
-
react_1.default.createElement("path", { fill: color || "#2eb67d", 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" }),
|
|
17
|
-
react_1.default.createElement("path", { fill: color || "#ecb22e", 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" }),
|
|
18
|
-
react_1.default.createElement("path", { fill: color || "#ecb22e", 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" })));
|
|
19
|
-
exports.SlackSvg = SlackSvg;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { SvgProps } from "../../Svg";
|
|
2
|
-
interface SvgWrapperProps extends SvgProps {
|
|
3
|
-
square?: boolean;
|
|
4
|
-
size?: number;
|
|
5
|
-
}
|
|
6
|
-
export interface SvgLogoProps extends SvgProps {
|
|
7
|
-
color?: string;
|
|
8
|
-
square?: boolean;
|
|
9
|
-
}
|
|
10
|
-
export declare const IntegrationLogoSvgWrapper: ({ children, viewBox, square, size, ...rest }: SvgWrapperProps) => JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,13 +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.IntegrationLogoSvgWrapper = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("../../Svg");
|
|
9
|
-
const IntegrationLogoSvgWrapper = ({ children, viewBox, square, size, ...rest }) => {
|
|
10
|
-
const sizePx = `${size}px`;
|
|
11
|
-
return (react_1.default.createElement(Svg_1.Svg, Object.assign({ version: "1.1", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", viewBox: viewBox, height: sizePx, width: square ? sizePx : undefined }, rest), children));
|
|
12
|
-
};
|
|
13
|
-
exports.IntegrationLogoSvgWrapper = IntegrationLogoSvgWrapper;
|