@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
|
@@ -6,6 +6,9 @@ import {
|
|
|
6
6
|
SourceState,
|
|
7
7
|
} from "@storybook/addon-docs/blocks";
|
|
8
8
|
import { ComponentHeading } from "../../storybook-components";
|
|
9
|
+
import { useDisclosure } from "../../hooks";
|
|
10
|
+
import { Button } from "../Button";
|
|
11
|
+
import { Flex } from "../Flex";
|
|
9
12
|
import { Panel } from "../Panel";
|
|
10
13
|
import { Grid } from "./Grid";
|
|
11
14
|
|
|
@@ -17,10 +20,22 @@ import { Grid } from "./Grid";
|
|
|
17
20
|
sourcePath="src/components/Grid/Grid.tsx"
|
|
18
21
|
/>
|
|
19
22
|
|
|
23
|
+
`Grid` is just a `Box` with [grid layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout) enabled.
|
|
24
|
+
|
|
25
|
+
`Grid` also provides a `Grid.Item` child component. `Grid.Item` is not required
|
|
26
|
+
to use with `Grid`. Any child component of a `Grid` becomes a grid item.
|
|
27
|
+
`Grid.Item` just exposes some props to help you place the item within the grid.
|
|
28
|
+
Otherwise, you’ll likely need to apply a `style` prop to your grid items to
|
|
29
|
+
place them on rows or columns. There is an example below.
|
|
30
|
+
|
|
31
|
+
## Installation
|
|
32
|
+
|
|
20
33
|
```jsx
|
|
21
34
|
import { Grid } from "@conveyorhq/arrow-ds";
|
|
22
35
|
```
|
|
23
36
|
|
|
37
|
+
## Basic usage
|
|
38
|
+
|
|
24
39
|
<Preview withSource={SourceState.OPEN}>
|
|
25
40
|
<Story name="Grid">
|
|
26
41
|
<Grid columns={["repeat(2, 1fr)"]} gap="24px">
|
|
@@ -34,16 +49,18 @@ import { Grid } from "@conveyorhq/arrow-ds";
|
|
|
34
49
|
</Story>
|
|
35
50
|
</Preview>
|
|
36
51
|
|
|
37
|
-
##
|
|
38
|
-
|
|
39
|
-
Both `Grid` and `Grid.Item` extend `BoxProps`.
|
|
52
|
+
## API
|
|
40
53
|
|
|
41
54
|
### Grid
|
|
42
55
|
|
|
56
|
+
Extends `BoxProps`
|
|
57
|
+
|
|
43
58
|
<Props of={Grid} />
|
|
44
59
|
|
|
45
60
|
### Grid.Item
|
|
46
61
|
|
|
62
|
+
Extends `BoxProps`
|
|
63
|
+
|
|
47
64
|
<Props of={Grid.Item} />
|
|
48
65
|
|
|
49
66
|
## Demos
|
|
@@ -117,3 +134,188 @@ convention is to put the names inside square brackets.
|
|
|
117
134
|
</Grid>
|
|
118
135
|
</Story>
|
|
119
136
|
</Preview>
|
|
137
|
+
|
|
138
|
+
### Spacing grid items
|
|
139
|
+
|
|
140
|
+
Use the `gap` property or gap [classnames](https://tailwindcss.com/docs/gap) to
|
|
141
|
+
set space between grid items. Gap can be set vertically, horizontally or both.
|
|
142
|
+
|
|
143
|
+
You can pass up to two values to gap; the first value being x-axis (row gap) add
|
|
144
|
+
the second value being y-axis (column gap).
|
|
145
|
+
|
|
146
|
+
Gap will not add space to the beginning or end of the list of grid items.
|
|
147
|
+
|
|
148
|
+
#### Equal gap on all sides
|
|
149
|
+
|
|
150
|
+
Use `gap="8px"` or `className="gap-2"`
|
|
151
|
+
|
|
152
|
+
<Preview withSource={SourceState.OPEN}>
|
|
153
|
+
<Story name="Grid with equal gap">
|
|
154
|
+
<Grid columns="repeat(4, 1fr)" gap="8px">
|
|
155
|
+
{[...Array(12).keys()].map((item) => {
|
|
156
|
+
return (
|
|
157
|
+
<Grid.Item key={`grid-item-${item}`}>
|
|
158
|
+
<Panel className="p-8">Grid item {item + 1}</Panel>
|
|
159
|
+
</Grid.Item>
|
|
160
|
+
);
|
|
161
|
+
})}
|
|
162
|
+
</Grid>
|
|
163
|
+
</Story>
|
|
164
|
+
</Preview>
|
|
165
|
+
|
|
166
|
+
#### Unequal gap on all sides
|
|
167
|
+
|
|
168
|
+
Use `gap="16px 8px"` or `className="gap-x-4 gap-y-2"`
|
|
169
|
+
|
|
170
|
+
<Preview withSource={SourceState.OPEN}>
|
|
171
|
+
<Story name="Grid with unequal gap">
|
|
172
|
+
<Grid columns="repeat(4, 1fr)" gap="16px 8px">
|
|
173
|
+
{[...Array(12).keys()].map((item) => {
|
|
174
|
+
return (
|
|
175
|
+
<Grid.Item key={`grid-item-${item}`}>
|
|
176
|
+
<Panel className="p-8">Grid item {item + 1}</Panel>
|
|
177
|
+
</Grid.Item>
|
|
178
|
+
);
|
|
179
|
+
})}
|
|
180
|
+
</Grid>
|
|
181
|
+
</Story>
|
|
182
|
+
</Preview>
|
|
183
|
+
|
|
184
|
+
#### Column gap
|
|
185
|
+
|
|
186
|
+
Use `gap="0 8px"` or `className="gap-y-2"`
|
|
187
|
+
|
|
188
|
+
<Preview withSource={SourceState.OPEN}>
|
|
189
|
+
<Story name="Grid with column gap">
|
|
190
|
+
<Grid columns="repeat(4, 1fr)" gap="0 8px">
|
|
191
|
+
{[...Array(12).keys()].map((item) => {
|
|
192
|
+
return (
|
|
193
|
+
<Grid.Item key={`grid-item-${item}`}>
|
|
194
|
+
<Panel className="p-8">Grid item {item + 1}</Panel>
|
|
195
|
+
</Grid.Item>
|
|
196
|
+
);
|
|
197
|
+
})}
|
|
198
|
+
</Grid>
|
|
199
|
+
</Story>
|
|
200
|
+
</Preview>
|
|
201
|
+
|
|
202
|
+
#### Row gap
|
|
203
|
+
|
|
204
|
+
Use `gap="8px 0"` or `className="gap-x-2"`
|
|
205
|
+
|
|
206
|
+
<Preview withSource={SourceState.OPEN}>
|
|
207
|
+
<Story name="Grid with row gap">
|
|
208
|
+
<Grid columns="repeat(4, 1fr)" gap="8px 0">
|
|
209
|
+
{[...Array(12).keys()].map((item) => {
|
|
210
|
+
return (
|
|
211
|
+
<Grid.Item key={`grid-item-${item}`}>
|
|
212
|
+
<Panel className="p-8">Grid item {item + 1}</Panel>
|
|
213
|
+
</Grid.Item>
|
|
214
|
+
);
|
|
215
|
+
})}
|
|
216
|
+
</Grid>
|
|
217
|
+
</Story>
|
|
218
|
+
</Preview>
|
|
219
|
+
|
|
220
|
+
### Using Grid.Item
|
|
221
|
+
|
|
222
|
+
`Grid.Item` provides props to help you place the item within the grid. These
|
|
223
|
+
props are not required nor always necessary to place items on the grid. If you
|
|
224
|
+
have a complex grid layout, you might want to be explicit in setting the row and
|
|
225
|
+
column for each item, otherwise the grid will place the items implicitly. In the
|
|
226
|
+
example below, Grid Item 4 does not define its column or row, but the grid
|
|
227
|
+
places the item in the first available spot on the grid. If we had 5 items and
|
|
228
|
+
one item did not define columns or rows, it would be placed outside of the grid
|
|
229
|
+
that was defined. You can try this below.
|
|
230
|
+
|
|
231
|
+
When a `column` or `row` value has two numbers divided by `/`, this is
|
|
232
|
+
shorthand for `grid-*-start` and `grid-*-end`.
|
|
233
|
+
|
|
234
|
+
When using `area`, values that are divided by `/`, this is shorthand for
|
|
235
|
+
`grid-row-start grid-column-start grid-row-end grid-column-end`.
|
|
236
|
+
|
|
237
|
+
A `grid-*-end` value of `-1` will extend the column full-width or row
|
|
238
|
+
full-height.
|
|
239
|
+
|
|
240
|
+
<Preview withSource={SourceState.OPEN}>
|
|
241
|
+
<Story name="Grid.Item">
|
|
242
|
+
{() => {
|
|
243
|
+
const { isOpen, onToggle } = useDisclosure();
|
|
244
|
+
return (
|
|
245
|
+
<>
|
|
246
|
+
<Flex className="items-center gap-2 mb-4">
|
|
247
|
+
<Button onClick={onToggle}>
|
|
248
|
+
{isOpen ? "Remove" : "Add"} Grid Item 5
|
|
249
|
+
</Button>
|
|
250
|
+
{isOpen
|
|
251
|
+
? "That is because Grid Item 5 has explictly defined the space that Grid Item 4 implicitly occupies"
|
|
252
|
+
: "This will push Grid Item 4 outside of the explict grid and create an implicit third row"}
|
|
253
|
+
</Flex>
|
|
254
|
+
<Grid columns="1fr 2fr 1fr" rows="repeat(2, 1fr)" gap="8px">
|
|
255
|
+
<Grid.Item column="1 / 3" row="2 / auto">
|
|
256
|
+
<Panel className="p-8">Grid item 1</Panel>
|
|
257
|
+
</Grid.Item>
|
|
258
|
+
<Grid.Item column="2" row="1">
|
|
259
|
+
<Panel className="p-8">Grid item 2</Panel>
|
|
260
|
+
</Grid.Item>
|
|
261
|
+
<Grid.Item area="1 / 3 / -1 / -1">
|
|
262
|
+
<Panel className="p-8 h-full">Grid item 3</Panel>
|
|
263
|
+
</Grid.Item>
|
|
264
|
+
<Grid.Item>
|
|
265
|
+
<Panel
|
|
266
|
+
className={`p-8 ${isOpen ? "bg-red-200" : "bg-green-200"}`}
|
|
267
|
+
>
|
|
268
|
+
Grid item 4
|
|
269
|
+
</Panel>
|
|
270
|
+
</Grid.Item>
|
|
271
|
+
{isOpen && (
|
|
272
|
+
<Grid.Item area="1 / 1 / 2 / 2">
|
|
273
|
+
<Panel className="p-8 bg-gold-200">Grid item 5</Panel>
|
|
274
|
+
</Grid.Item>
|
|
275
|
+
)}
|
|
276
|
+
</Grid>
|
|
277
|
+
</>
|
|
278
|
+
);
|
|
279
|
+
}}
|
|
280
|
+
</Story>
|
|
281
|
+
</Preview>
|
|
282
|
+
|
|
283
|
+
### Opting out of Grid.Item
|
|
284
|
+
|
|
285
|
+
As stated above, `Grid.Item` is not required. Here’s how you might use
|
|
286
|
+
custom components inside of a grid.
|
|
287
|
+
|
|
288
|
+
<Preview withSource={SourceState.OPEN}>
|
|
289
|
+
<Story name="Grid without Grid.Item">
|
|
290
|
+
<Grid columns="1fr 2fr 1fr" rows="repeat(2, 1fr)" gap="8px">
|
|
291
|
+
<Panel
|
|
292
|
+
className="p-8"
|
|
293
|
+
style={{
|
|
294
|
+
gridColumn: "3",
|
|
295
|
+
gridRow: "2 / auto",
|
|
296
|
+
}}
|
|
297
|
+
>
|
|
298
|
+
Grid item 1
|
|
299
|
+
</Panel>
|
|
300
|
+
<Panel
|
|
301
|
+
className="p-8"
|
|
302
|
+
style={{
|
|
303
|
+
gridColumn: "2",
|
|
304
|
+
gridRow: "2",
|
|
305
|
+
}}
|
|
306
|
+
>
|
|
307
|
+
Grid item 2
|
|
308
|
+
</Panel>
|
|
309
|
+
<Panel
|
|
310
|
+
className="p-8"
|
|
311
|
+
style={{
|
|
312
|
+
gridColumn: "1",
|
|
313
|
+
gridRow: "1",
|
|
314
|
+
}}
|
|
315
|
+
>
|
|
316
|
+
Grid item 3
|
|
317
|
+
</Panel>
|
|
318
|
+
<Panel className="p-8 h-full">Grid item 4</Panel>
|
|
319
|
+
</Grid>
|
|
320
|
+
</Story>
|
|
321
|
+
</Preview>
|
|
@@ -1,16 +1,50 @@
|
|
|
1
1
|
import React, { ForwardRefExoticComponent, forwardRef } from "react";
|
|
2
2
|
import classNames from "classnames";
|
|
3
3
|
import { Box, BoxProps } from "../Box";
|
|
4
|
+
import { bemHOF } from "../../utilities";
|
|
5
|
+
|
|
6
|
+
const cn = bemHOF("Grid");
|
|
4
7
|
|
|
5
8
|
interface GridProps extends BoxProps {
|
|
6
|
-
|
|
7
|
-
|
|
9
|
+
/**
|
|
10
|
+
* Maps to the
|
|
11
|
+
* [`grid-template-columns` CSS property](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns)
|
|
12
|
+
* which defines the line names and track sizing functions of the grid columns.
|
|
13
|
+
*/
|
|
14
|
+
columns?: string | string[];
|
|
15
|
+
/**
|
|
16
|
+
* Maps to the
|
|
17
|
+
* [`grid-template-rows` CSS property](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows)
|
|
18
|
+
* which defines the line names and track sizing functions of the grid rows.
|
|
19
|
+
*/
|
|
20
|
+
rows?: string | string[];
|
|
21
|
+
/**
|
|
22
|
+
* Sets the gaps (gutters) between rows and columns. It can be a single value
|
|
23
|
+
* to set both row and column gaps or two values separated by a space to define
|
|
24
|
+
* separate row and column gaps.
|
|
25
|
+
*/
|
|
8
26
|
gap?: string;
|
|
9
27
|
}
|
|
10
28
|
|
|
11
29
|
interface GridItemProps extends BoxProps {
|
|
30
|
+
/**
|
|
31
|
+
* Specifies a grid item’s size and location within a grid column; internally,
|
|
32
|
+
* it sets the [`grid-column`](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column)
|
|
33
|
+
* CSS property
|
|
34
|
+
*/
|
|
12
35
|
column?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Specifies a grid item’s size and location within a grid row; internally,
|
|
38
|
+
* it sets the [`grid-row`](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row)
|
|
39
|
+
* CSS property
|
|
40
|
+
*/
|
|
13
41
|
row?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Specifies a grid item’s size and location within a grid; internally,
|
|
44
|
+
* it sets the [`grid-area`](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-area)
|
|
45
|
+
* CSS property. `grid-area` is a shorthand property that can set both column
|
|
46
|
+
* and row in a single value.
|
|
47
|
+
*/
|
|
14
48
|
area?: string;
|
|
15
49
|
}
|
|
16
50
|
|
|
@@ -53,16 +87,21 @@ export const GridItem: ForwardRefExoticComponent<GridItemProps> = forwardRef<
|
|
|
53
87
|
export const Grid = forwardRef<HTMLDivElement, GridProps>((props, ref) => {
|
|
54
88
|
const { className, style, columns = [], rows = [], gap, ...rest } = props;
|
|
55
89
|
|
|
90
|
+
const gridTemplateColumns = Array.isArray(columns)
|
|
91
|
+
? columns.join(" ")
|
|
92
|
+
: columns;
|
|
93
|
+
const gridTemplateRows = Array.isArray(rows) ? rows.join(" ") : rows;
|
|
94
|
+
|
|
56
95
|
const styles = {
|
|
57
|
-
gridTemplateColumns
|
|
58
|
-
gridTemplateRows
|
|
96
|
+
gridTemplateColumns,
|
|
97
|
+
gridTemplateRows,
|
|
59
98
|
gap,
|
|
60
99
|
...style,
|
|
61
100
|
};
|
|
62
101
|
|
|
63
102
|
return (
|
|
64
103
|
<Box
|
|
65
|
-
className={classNames(
|
|
104
|
+
className={classNames(cn(), className)}
|
|
66
105
|
ref={ref}
|
|
67
106
|
style={styles}
|
|
68
107
|
{...rest}
|
|
@@ -8,12 +8,13 @@ import { faFileAlt } from "@fortawesome/free-regular-svg-icons/faFileAlt";
|
|
|
8
8
|
import { faQuestionCircle as faQuestionCircleRegular } from "@fortawesome/free-regular-svg-icons/faQuestionCircle";
|
|
9
9
|
import { faUser as faUserRegular } from "@fortawesome/free-regular-svg-icons/faUser";
|
|
10
10
|
import { faCheckCircle as faCheckCircleRegular } from "@fortawesome/free-regular-svg-icons/faCheckCircle";
|
|
11
|
+
import { faCircle as faCircleRegular } from "@fortawesome/free-regular-svg-icons/faCircle";
|
|
11
12
|
import { faTimesCircle } from "@fortawesome/free-regular-svg-icons/faTimesCircle";
|
|
12
13
|
import { faClock } from "@fortawesome/free-regular-svg-icons/faClock";
|
|
13
14
|
import { faKeyboard } from "@fortawesome/free-regular-svg-icons/faKeyboard";
|
|
14
15
|
import { faStar } from "@fortawesome/free-regular-svg-icons/faStar";
|
|
15
|
-
import { faThumbsDown } from "@fortawesome/free-regular-svg-icons/faThumbsDown";
|
|
16
|
-
import { faThumbsUp } from "@fortawesome/free-regular-svg-icons/faThumbsUp";
|
|
16
|
+
import { faThumbsDown as faThumbsDownRegular } from "@fortawesome/free-regular-svg-icons/faThumbsDown";
|
|
17
|
+
import { faThumbsUp as faThumbsUpRegular } from "@fortawesome/free-regular-svg-icons/faThumbsUp";
|
|
17
18
|
|
|
18
19
|
// fas
|
|
19
20
|
import { faArchive } from "@fortawesome/free-solid-svg-icons/faArchive";
|
|
@@ -23,11 +24,15 @@ import { faArrowRight } from "@fortawesome/free-solid-svg-icons/faArrowRight";
|
|
|
23
24
|
import { faArrowUp } from "@fortawesome/free-solid-svg-icons/faArrowUp";
|
|
24
25
|
import { faBackward } from "@fortawesome/free-solid-svg-icons/faBackward";
|
|
25
26
|
import { faBan } from "@fortawesome/free-solid-svg-icons/faBan";
|
|
27
|
+
import { faBatteryHalf } from "@fortawesome/free-solid-svg-icons/faBatteryHalf";
|
|
28
|
+
import { faBed } from "@fortawesome/free-solid-svg-icons/faBed";
|
|
29
|
+
import { faBell } from "@fortawesome/free-solid-svg-icons/faBell";
|
|
26
30
|
import { faBolt } from "@fortawesome/free-solid-svg-icons/faBolt";
|
|
27
31
|
import { faCalculator } from "@fortawesome/free-solid-svg-icons/faCalculator";
|
|
28
32
|
import { faCalendar } from "@fortawesome/free-solid-svg-icons/faCalendar";
|
|
29
33
|
import { faCaretDown } from "@fortawesome/free-solid-svg-icons/faCaretDown";
|
|
30
34
|
import { faCaretUp } from "@fortawesome/free-solid-svg-icons/faCaretUp";
|
|
35
|
+
import { faChartLine } from "@fortawesome/free-solid-svg-icons/faChartLine";
|
|
31
36
|
import { faCheck } from "@fortawesome/free-solid-svg-icons/faCheck";
|
|
32
37
|
import { faCheckCircle } from "@fortawesome/free-solid-svg-icons/faCheckCircle";
|
|
33
38
|
import { faChevronDown } from "@fortawesome/free-solid-svg-icons/faChevronDown";
|
|
@@ -37,13 +42,16 @@ import { faChevronUp } from "@fortawesome/free-solid-svg-icons/faChevronUp";
|
|
|
37
42
|
import { faCircle } from "@fortawesome/free-solid-svg-icons/faCircle";
|
|
38
43
|
import { faCircleNotch } from "@fortawesome/free-solid-svg-icons/faCircleNotch";
|
|
39
44
|
import { faClipboard } from "@fortawesome/free-solid-svg-icons/faClipboard";
|
|
45
|
+
import { faClock as faClockSolid } from "@fortawesome/free-solid-svg-icons/faClock";
|
|
40
46
|
import { faCog } from "@fortawesome/free-solid-svg-icons/faCog";
|
|
41
47
|
import { faColumns } from "@fortawesome/free-solid-svg-icons/faColumns";
|
|
42
48
|
import { faCommentAlt } from "@fortawesome/free-solid-svg-icons/faCommentAlt";
|
|
43
49
|
import { faCompress } from "@fortawesome/free-solid-svg-icons/faCompress";
|
|
50
|
+
import { faCrown } from "@fortawesome/free-solid-svg-icons/faCrown";
|
|
44
51
|
import { faEllipsisH } from "@fortawesome/free-solid-svg-icons/faEllipsisH";
|
|
45
52
|
import { faEllipsisV } from "@fortawesome/free-solid-svg-icons/faEllipsisV";
|
|
46
53
|
import { faEnvelope } from "@fortawesome/free-solid-svg-icons/faEnvelope";
|
|
54
|
+
import { faExclamationCircle } from "@fortawesome/free-solid-svg-icons/faExclamationCircle";
|
|
47
55
|
import { faExclamationTriangle } from "@fortawesome/free-solid-svg-icons/faExclamationTriangle";
|
|
48
56
|
import { faExpand } from "@fortawesome/free-solid-svg-icons/faExpand";
|
|
49
57
|
import { faExternalLinkAlt } from "@fortawesome/free-solid-svg-icons/faExternalLinkAlt";
|
|
@@ -72,6 +80,7 @@ import { faLongArrowAltRight } from "@fortawesome/free-solid-svg-icons/faLongArr
|
|
|
72
80
|
import { faMagic } from "@fortawesome/free-solid-svg-icons/faMagic";
|
|
73
81
|
import { faMapSigns } from "@fortawesome/free-solid-svg-icons/faMapSigns";
|
|
74
82
|
import { faMinus } from "@fortawesome/free-solid-svg-icons/faMinus";
|
|
83
|
+
import { faMousePointer } from "@fortawesome/free-solid-svg-icons/faMousePointer";
|
|
75
84
|
import { faPaperclip } from "@fortawesome/free-solid-svg-icons/faPaperclip";
|
|
76
85
|
import { faPause } from "@fortawesome/free-solid-svg-icons/faPause";
|
|
77
86
|
import { faPen } from "@fortawesome/free-solid-svg-icons/faPen";
|
|
@@ -79,10 +88,14 @@ import { faPlay } from "@fortawesome/free-solid-svg-icons/faPlay";
|
|
|
79
88
|
import { faPlus } from "@fortawesome/free-solid-svg-icons/faPlus";
|
|
80
89
|
import { faPlusCircle } from "@fortawesome/free-solid-svg-icons/faPlusCircle";
|
|
81
90
|
import { faPooStorm } from "@fortawesome/free-solid-svg-icons/faPooStorm";
|
|
91
|
+
import { faQuestion } from "@fortawesome/free-solid-svg-icons/faQuestion";
|
|
82
92
|
import { faQuestionCircle } from "@fortawesome/free-solid-svg-icons/faQuestionCircle";
|
|
83
93
|
import { faScroll } from "@fortawesome/free-solid-svg-icons/faScroll";
|
|
84
94
|
import { faSearch } from "@fortawesome/free-solid-svg-icons/faSearch";
|
|
95
|
+
import { faShareAlt } from "@fortawesome/free-solid-svg-icons/faShareAlt";
|
|
85
96
|
import { faShieldAlt } from "@fortawesome/free-solid-svg-icons/faShieldAlt";
|
|
97
|
+
import { faSignOutAlt } from "@fortawesome/free-solid-svg-icons/faSignOutAlt";
|
|
98
|
+
import { faSignature } from "@fortawesome/free-solid-svg-icons/faSignature";
|
|
86
99
|
import { faSlidersH } from "@fortawesome/free-solid-svg-icons/faSlidersH";
|
|
87
100
|
import { faSort } from "@fortawesome/free-solid-svg-icons/faSort";
|
|
88
101
|
import { faSortDown } from "@fortawesome/free-solid-svg-icons/faSortDown";
|
|
@@ -93,9 +106,12 @@ import { faStar as faStarSolid } from "@fortawesome/free-solid-svg-icons/faStar"
|
|
|
93
106
|
import { faSync } from "@fortawesome/free-solid-svg-icons/faSync";
|
|
94
107
|
import { faTasks } from "@fortawesome/free-solid-svg-icons/faTasks";
|
|
95
108
|
import { faThLarge } from "@fortawesome/free-solid-svg-icons/faThLarge";
|
|
109
|
+
import { faThumbsDown as faThumbsDownSolid } from "@fortawesome/free-solid-svg-icons/faThumbsDown";
|
|
110
|
+
import { faThumbsUp as faThumbsUpSolid } from "@fortawesome/free-solid-svg-icons/faThumbsUp";
|
|
96
111
|
import { faTicketAlt } from "@fortawesome/free-solid-svg-icons/faTicketAlt";
|
|
97
112
|
import { faTimes } from "@fortawesome/free-solid-svg-icons/faTimes";
|
|
98
113
|
import { faTrash } from "@fortawesome/free-solid-svg-icons/faTrash";
|
|
114
|
+
import { faUnlock } from "@fortawesome/free-solid-svg-icons/faUnlock";
|
|
99
115
|
import { faUser } from "@fortawesome/free-solid-svg-icons/faUser";
|
|
100
116
|
import { faUserAstronaut } from "@fortawesome/free-solid-svg-icons/faUserAstronaut";
|
|
101
117
|
import { faUserPlus } from "@fortawesome/free-solid-svg-icons/faUserPlus";
|
|
@@ -103,7 +119,15 @@ import { faUsers } from "@fortawesome/free-solid-svg-icons/faUsers";
|
|
|
103
119
|
import { faUserFriends } from "@fortawesome/free-solid-svg-icons/faUserFriends";
|
|
104
120
|
|
|
105
121
|
// Custom icon SVGs
|
|
106
|
-
import {
|
|
122
|
+
import {
|
|
123
|
+
ArrowToBottom,
|
|
124
|
+
CommentAltCheck,
|
|
125
|
+
DialogCheck,
|
|
126
|
+
Scroll,
|
|
127
|
+
Sparkle,
|
|
128
|
+
TriangleDown,
|
|
129
|
+
TriangleUp,
|
|
130
|
+
} from "./svg";
|
|
107
131
|
|
|
108
132
|
import { StatusContext } from "../../contexts/status";
|
|
109
133
|
import { STATUS_VARIANT } from "../../types";
|
|
@@ -120,11 +144,15 @@ library.add(
|
|
|
120
144
|
faArrowUp,
|
|
121
145
|
faBackward,
|
|
122
146
|
faBan,
|
|
147
|
+
faBatteryHalf,
|
|
148
|
+
faBed,
|
|
149
|
+
faBell,
|
|
123
150
|
faBolt,
|
|
124
151
|
faCalculator,
|
|
125
152
|
faCalendar,
|
|
126
153
|
faCaretDown,
|
|
127
154
|
faCaretUp,
|
|
155
|
+
faChartLine,
|
|
128
156
|
faCheck,
|
|
129
157
|
faCheckCircle,
|
|
130
158
|
faCheckCircleRegular,
|
|
@@ -134,15 +162,19 @@ library.add(
|
|
|
134
162
|
faChevronUp,
|
|
135
163
|
faCircle,
|
|
136
164
|
faCircleNotch,
|
|
165
|
+
faCircleRegular,
|
|
137
166
|
faClipboard,
|
|
138
167
|
faClock,
|
|
168
|
+
faClockSolid,
|
|
139
169
|
faCog,
|
|
140
170
|
faColumns,
|
|
141
171
|
faCommentAlt,
|
|
142
172
|
faCompress,
|
|
173
|
+
faCrown,
|
|
143
174
|
faEllipsisH,
|
|
144
175
|
faEllipsisV,
|
|
145
176
|
faEnvelope,
|
|
177
|
+
faExclamationCircle,
|
|
146
178
|
faExclamationTriangle,
|
|
147
179
|
faExpand,
|
|
148
180
|
faExternalLinkAlt,
|
|
@@ -173,6 +205,7 @@ library.add(
|
|
|
173
205
|
faMagic,
|
|
174
206
|
faMapSigns,
|
|
175
207
|
faMinus,
|
|
208
|
+
faMousePointer,
|
|
176
209
|
faPaperclip,
|
|
177
210
|
faPause,
|
|
178
211
|
faPen,
|
|
@@ -180,11 +213,15 @@ library.add(
|
|
|
180
213
|
faPlus,
|
|
181
214
|
faPlusCircle,
|
|
182
215
|
faPooStorm,
|
|
216
|
+
faQuestion,
|
|
183
217
|
faQuestionCircle,
|
|
184
218
|
faQuestionCircleRegular,
|
|
185
219
|
faScroll,
|
|
186
220
|
faSearch,
|
|
221
|
+
faShareAlt,
|
|
187
222
|
faShieldAlt,
|
|
223
|
+
faSignOutAlt,
|
|
224
|
+
faSignature,
|
|
188
225
|
faSlidersH,
|
|
189
226
|
faSort,
|
|
190
227
|
faSortDown,
|
|
@@ -196,12 +233,15 @@ library.add(
|
|
|
196
233
|
faSync,
|
|
197
234
|
faTasks,
|
|
198
235
|
faThLarge,
|
|
199
|
-
|
|
200
|
-
|
|
236
|
+
faThumbsDownRegular,
|
|
237
|
+
faThumbsDownSolid,
|
|
238
|
+
faThumbsUpRegular,
|
|
239
|
+
faThumbsUpSolid,
|
|
201
240
|
faTicketAlt,
|
|
202
241
|
faTimes,
|
|
203
242
|
faTimesCircle,
|
|
204
243
|
faTrash,
|
|
244
|
+
faUnlock,
|
|
205
245
|
faUser,
|
|
206
246
|
faUserAstronaut,
|
|
207
247
|
faUserPlus,
|
|
@@ -211,6 +251,8 @@ library.add(
|
|
|
211
251
|
);
|
|
212
252
|
|
|
213
253
|
export enum CUSTOM_ICON_TYPE {
|
|
254
|
+
ARROW_TO_BOTTOM = "arrow-to-bottom",
|
|
255
|
+
COMMENT_ALT_CHECK = "comment-alt-check",
|
|
214
256
|
DIALOG_CHECK = "dialog-check",
|
|
215
257
|
SCROLL = "scroll",
|
|
216
258
|
SPARKLE = "sparkle",
|
|
@@ -223,6 +265,8 @@ type CustomIconPaths = Record<
|
|
|
223
265
|
(props: SvgProps) => JSX.Element
|
|
224
266
|
>;
|
|
225
267
|
const CustomIcons: CustomIconPaths = {
|
|
268
|
+
[CUSTOM_ICON_TYPE.ARROW_TO_BOTTOM]: ArrowToBottom,
|
|
269
|
+
[CUSTOM_ICON_TYPE.COMMENT_ALT_CHECK]: CommentAltCheck,
|
|
226
270
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: DialogCheck,
|
|
227
271
|
[CUSTOM_ICON_TYPE.SCROLL]: Scroll,
|
|
228
272
|
[CUSTOM_ICON_TYPE.SPARKLE]: Sparkle,
|
|
@@ -238,11 +282,15 @@ export enum ICON_TYPE {
|
|
|
238
282
|
ARROW_UP = "arrow-up",
|
|
239
283
|
BACKWARD = "backward",
|
|
240
284
|
BAN = "ban",
|
|
285
|
+
BATTERY_HALF = "battery-half",
|
|
286
|
+
BED = "bed",
|
|
287
|
+
BELL = "bell",
|
|
241
288
|
BOLT = "bolt",
|
|
242
289
|
CALENDAR = "calendar",
|
|
243
290
|
CALCULATOR = "calculator",
|
|
244
291
|
CARET_DOWN = "caret-down",
|
|
245
292
|
CARET_UP = "caret-up",
|
|
293
|
+
CHART_LINE = "chart-line",
|
|
246
294
|
CHECK = "check",
|
|
247
295
|
CHECK_CIRCLE = "check-circle",
|
|
248
296
|
CHEVRON_DOWN = "chevron-down",
|
|
@@ -257,9 +305,11 @@ export enum ICON_TYPE {
|
|
|
257
305
|
COLUMNS = "columns",
|
|
258
306
|
COMMENT_ALT = "comment-alt",
|
|
259
307
|
COMPRESS = "compress",
|
|
308
|
+
CROWN = "crown",
|
|
260
309
|
ELLIPSIS_H = "ellipsis-h",
|
|
261
310
|
ELLIPSIS_V = "ellipsis-v",
|
|
262
311
|
ENVELOPE = "envelope",
|
|
312
|
+
EXCLAMATION_CIRCLE = "exclamation-circle",
|
|
263
313
|
EXCLAMATION_TRIANGLE = "exclamation-triangle",
|
|
264
314
|
EXPAND = "expand",
|
|
265
315
|
EXTERNAL_LINK_ALT = "external-link-alt",
|
|
@@ -289,6 +339,7 @@ export enum ICON_TYPE {
|
|
|
289
339
|
MAGIC = "magic",
|
|
290
340
|
MAP_SIGNS = "map-signs",
|
|
291
341
|
MINUS = "minus",
|
|
342
|
+
MOUSE_POINTER = "mouse-pointer",
|
|
292
343
|
PAPERCLIP = "paperclip",
|
|
293
344
|
PAUSE = "pause",
|
|
294
345
|
PEN = "pen",
|
|
@@ -296,10 +347,14 @@ export enum ICON_TYPE {
|
|
|
296
347
|
PLUS = "plus",
|
|
297
348
|
PLUS_CIRCLE = "plus-circle",
|
|
298
349
|
POO_STORM = "poo-storm", // Use in storybook examples
|
|
350
|
+
QUESTION = "question",
|
|
299
351
|
QUESTION_CIRCLE = "question-circle",
|
|
300
352
|
SCROLL = "scroll",
|
|
301
353
|
SEARCH = "search",
|
|
354
|
+
SHARE_ALT = "share-alt",
|
|
302
355
|
SHIELD_ALT = "shield-alt",
|
|
356
|
+
SIGN_OUT_ALT = "sign-out-alt",
|
|
357
|
+
SIGNATURE = "signature",
|
|
303
358
|
SLIDERS_H = "sliders-h",
|
|
304
359
|
SORT = "sort",
|
|
305
360
|
SORT_DOWN = "sort-down",
|
|
@@ -316,6 +371,7 @@ export enum ICON_TYPE {
|
|
|
316
371
|
THUMBS_DOWN = "thumbs-down",
|
|
317
372
|
THUMBS_UP = "thumbs-up",
|
|
318
373
|
TRASH = "trash",
|
|
374
|
+
UNLOCK = "unlock",
|
|
319
375
|
USER = "user",
|
|
320
376
|
USER_ASTRONAUT = "user-astronaut",
|
|
321
377
|
USER_PLUS = "user-plus",
|
|
@@ -465,3 +521,5 @@ export const StatusIcon = forwardRef<HTMLSpanElement, StatusIconProps>(
|
|
|
465
521
|
return <Icon ref={ref} icon={icon} {...rest} />;
|
|
466
522
|
},
|
|
467
523
|
);
|
|
524
|
+
|
|
525
|
+
export type IconType = ICON_TYPE | CUSTOM_ICON_TYPE;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg, SvgProps } from "../../Svg";
|
|
3
|
+
|
|
4
|
+
export const ArrowToBottom = (props: SvgProps) => {
|
|
5
|
+
return (
|
|
6
|
+
<Svg width="27" height="32" viewBox="0 0 27 32" fill="none" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M1.671 26.82h24.063c0.923 0 1.671 0.748 1.671 1.671v1.838c0 0.923-0.748 1.671-1.671 1.671h-24.063c-0.923 0-1.671-0.748-1.671-1.671v-1.838c0-0.923 0.748-1.671 1.671-1.671z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M23.047 11.777l1.613 1.609c0.541 0.54 0.541 1.413 0 1.947l-9.853 9.996c-0.541 0.54-1.751 0.54-2.286 0l-9.858-9.996c-0.541-0.54-0.541-1.413 0-1.947l1.613-1.609c0.547-0.546 1.44-0.534 1.975 0.023l4.94 4.832-0.084-15.254c0-0.764 0.616-1.378 1.382-1.378h2.428c0.766 0 1.382 0.615 1.382 1.378v15.254l4.773-4.832c0.536-0.563 1.428-0.574 1.975-0.023z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
);
|
|
17
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg, SvgProps } from "../../Svg";
|
|
3
|
+
|
|
4
|
+
export const CommentAltCheck = (props: SvgProps) => {
|
|
5
|
+
return (
|
|
6
|
+
<Svg width="30" height="32" viewBox="0 0 30 32" fill="none" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M26.133 1.067h-22.4c-2.1 0-3.733 1.692-3.733 3.733v16.8c0 2.1 1.633 3.733 3.733 3.733h5.6v4.9c0 0.583 0.642 0.933 1.108 0.583l7.292-5.483h8.4c2.042 0 3.733-1.633 3.733-3.733v-16.8c0-2.042-1.692-3.733-3.733-3.733zM21.583 10.633l-7.642 7.583c-0.292 0.292-0.7 0.292-0.933 0l-4.433-4.433c-0.233-0.233-0.233-0.642 0-0.933l1.517-1.517c0.292-0.233 0.7-0.233 0.933 0.058l2.45 2.45 5.658-5.6c0.292-0.292 0.7-0.292 0.933 0l1.517 1.517c0.233 0.233 0.233 0.642 0 0.875z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</Svg>
|
|
12
|
+
);
|
|
13
|
+
};
|