-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(component): Add an action prop for columns whose type is number …
…or text (#1621) * feat(component): add number-unlimited column type to worksheet * chore(all): create release lazy-zebras-dance.md
- Loading branch information
1 parent
e1f9e3c
commit 98fbd46
Showing
15 changed files
with
384 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@bigcommerce/big-design-icons": patch | ||
"@bigcommerce/big-design": patch | ||
"@bigcommerce/docs": patch | ||
--- | ||
|
||
feat(component): Add an action prop for columns whose type is number or text |
37 changes: 37 additions & 0 deletions
37
packages/big-design-icons/src/components/AllInclusiveIcon.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// ********************************** | ||
// Auto-generated file, do NOT modify | ||
// ********************************** | ||
import React, { forwardRef, memo, useId } from 'react'; | ||
|
||
import { createStyledIcon, IconProps, PrivateIconProps } from '../base'; | ||
|
||
const Icon: React.FC<IconProps & PrivateIconProps> = ({ svgRef, title, theme, ...props }) => { | ||
const uniqueTitleId = useId(); | ||
const titleId = title ? props.titleId || uniqueTitleId : undefined; | ||
const ariaHidden = titleId ? undefined : true; | ||
|
||
return ( | ||
<svg | ||
aria-hidden={ariaHidden} | ||
aria-labelledby={titleId} | ||
fill="currentColor" | ||
height={24} | ||
ref={svgRef} | ||
stroke="currentColor" | ||
strokeWidth="0" | ||
viewBox="0 0 24 24" | ||
width={24} | ||
{...props} | ||
> | ||
{title ? <title id={titleId}>{title}</title> : null} | ||
<path d="M0 0h24v24H0z" fill="none" /> | ||
<path d="M20.22 6.86c-2-.6-4.06-.04-5.39 1.29L12 10.66 10.48 12h.01L7.8 14.39c-.81.81-1.95 1.15-3.12.92a3.35 3.35 0 0 1-2.57-2.49 3.39 3.39 0 0 1 3.29-4.2c.91 0 1.76.35 2.44 1.03l.47.41c.38.34.95.34 1.33 0 .45-.4.45-1.1 0-1.5l-.42-.36A5.37 5.37 0 0 0 5.4 6.62C2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.81-.81 1.95-1.15 3.12-.92 1.25.25 2.28 1.25 2.57 2.49a3.39 3.39 0 0 1-3.29 4.2c-.9 0-1.76-.35-2.44-1.03l-.48-.42a.995.995 0 0 0-1.33 0c-.45.4-.45 1.1 0 1.5l.42.37a5.39 5.39 0 0 0 3.82 1.57c3.27 0 5.86-2.9 5.33-6.25-.3-1.99-1.77-3.69-3.7-4.26" /> | ||
</svg> | ||
); | ||
}; | ||
const IconWithForwardedRef = forwardRef<SVGSVGElement, IconProps>((iconProps, ref) => ( | ||
<Icon {...iconProps} svgRef={ref} /> | ||
)); | ||
|
||
export const AllInclusiveIcon = memo(createStyledIcon(IconWithForwardedRef)); | ||
AllInclusiveIcon.displayName = 'AllInclusiveIcon'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.