Forge components requiring new props?

Hello, I have a simple Forge application, when I encountered an issue after upgrading forge/react from 10.10.2 to 10.11.1.
Here is my list of dependencies:

"dependencies": {
    "@forge/api": "^4.2.0",
    "@forge/bridge": "4.3.0",
    "@forge/react": "10.11.1",
    "@forge/resolver": "1.6.4",
    "@tanstack/react-query": "^5.64.2",
    "react": "18.3.1",
    "zod": "^3.24.1"
  }

I have a component as follows:

return (
    <Box>
      <DynamicTable
        caption="Caption Text"
        rows={rows}
        head={head}
      />
    </Box>
  );

However after I bumped the forge/react version, I encounter this error for which was not here.

I encountered a TS error requiring ref and testId, which are not listed in the documentation.

Am I missing anything?

forge/react uses BoxProps from @atlaskit/forge-react-types, and in package-lock.json, the atlaskit/forge-react-types is 0.35.12.