-
Notifications
You must be signed in to change notification settings - Fork 603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(Table): Remove the CSS modules feature flag from the Table component #5788
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 7071d53 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
👋 Hi, this pull request contains changes to the source code that github/github depends on. If you are GitHub staff, we recommend testing these changes with github/github using the integration workflow. Thanks! |
size-limit report 📦
|
id={id} | ||
ref={ref} | ||
> | ||
<Box as={as} className={clsx('TableTitle', classes.TableTitle)} id={id} ref={ref}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like there should be a simpler way of doing this? Can I avoid Box as=
when not using sx
? @joshblack What do I need to change here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I bet you could just render whatever as
is directly, specifically:
const TableTitle = React.forwardRef<HTMLElement, TableTitleProps>(function TableTitle({as: BaseComponent = 'h2', children, id}, ref) {
return (
<BaseComponent className={clsx('TableTitle', classes.TableTitle)} id={id} ref={ref}>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typescript not happy about that
src/DataTable/Table.tsx:268:6 - error TS2322: Type '{ children: ReactNode; className: string; id: string; ref: ForwardedRef<HTMLElement>; }' is not assignable to type 'SVGProps<SVGSymbolElement>'.
Types of property 'ref' are incompatible.
Type 'ForwardedRef<HTMLElement>' is not assignable to type 'LegacyRef<SVGSymbolElement> | undefined'.
Type '(instance: HTMLElement | null) => void' is not assignable to type 'LegacyRef<SVGSymbolElement> | undefined'.
Type '(instance: HTMLElement | null) => void' is not assignable to type '(instance: SVGSymbolElement | null) => void'.
Types of parameters 'instance' and 'instance' are incompatible.
Type 'SVGSymbolElement | null' is not assignable to type 'HTMLElement | null'.
Type 'SVGSymbolElement' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, dir, and 25 more.
268 <BaseComponent className={clsx('TableTitle', classes.TableTitle)} id={id} ref={ref}>
~~~~~~~~~~~~~
src/DataTable/Table.tsx:268:20 - error TS2590: Expression produces a union type that is too complex to represent.
268 <BaseComponent className={clsx('TableTitle', classes.TableTitle)} id={id} ref={ref}>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I think as?: keyof JSX.IntrinsicElements | React.ComponentType
is including SVG but the forwardRef
is saying HTMLElement
We could extend that for now if we want:
const TableTitle = React.forwardRef<HTMLElement | SVGSymbolElement, TableTitleProps>
Or we could restrict the as?
prop to omit things. Let me know what you think 👀
👋 Hi from github/github! Your integration PR is ready: https://github.com/github/github/pull/371527 |
🔴 golden-jobs completed with status |
This PR removes the CSS modules feature flag from the
Table
component. The component Table and sub components are used19
times in dotcom.Changelog
New
Changed
Removed
Removes the CSS modules feature flag from the
Table
components.Rollout strategy
Testing & Reviewing
Using Integration testing.
Merge checklist