Skip to content
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

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

jonrohan
Copy link
Member

@jonrohan jonrohan commented Mar 18, 2025

This PR removes the CSS modules feature flag from the Table component. The component Table and sub components are used 19 times in dotcom.

Changelog

New

Changed

Removed

Removes the CSS modules feature flag from the Table components.

Rollout strategy

  • Patch release
  • Minor release
  • Major release; if selected, include a written rollout or migration plan
  • None; if selected, include a brief description as to why

Testing & Reviewing

Using Integration testing.

Merge checklist

Copy link

changeset-bot bot commented Mar 18, 2025

🦋 Changeset detected

Latest commit: 7071d53

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@primer/react Minor

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

@github-actions github-actions bot added staff Author is a staff member integration-tests: recommended This change needs to be tested for breaking changes. See https://arc.net/l/quote/tdmpakpm labels Mar 18, 2025
Copy link
Contributor

👋 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!

Copy link
Contributor

github-actions bot commented Mar 18, 2025

size-limit report 📦

Path Size
packages/react/dist/browser.esm.js 104.57 KB (+0.1% 🔺)
packages/react/dist/browser.umd.js 104.99 KB (+0.09% 🔺)

id={id}
ref={ref}
>
<Box as={as} className={clsx('TableTitle', classes.TableTitle)} id={id} ref={ref}>
Copy link
Member Author

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?

Copy link
Member

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}>

Copy link
Member Author

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}>
                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Copy link
Member

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 👀

@jonrohan jonrohan changed the title Remove the CSS modules feature flag from Table chore(Table): Remove the CSS modules feature flag from the Table component Apr 4, 2025
@github-actions github-actions bot temporarily deployed to storybook-preview-5788 April 4, 2025 23:59 Inactive
@primer-integration
Copy link

👋 Hi from github/github! Your integration PR is ready: https://github.com/github/github/pull/371527

@primer-integration
Copy link

🔴 golden-jobs completed with status failure.

@github-actions github-actions bot added integration-tests: failing Changes in this PR cause breaking changes in gh/gh and removed integration-tests: recommended This change needs to be tested for breaking changes. See https://arc.net/l/quote/tdmpakpm labels Apr 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
integration-tests: failing Changes in this PR cause breaking changes in gh/gh staff Author is a staff member
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants