I’m migrating my app from Polaris React to Polaris Web Components.
I have an issue with the s-popover component.
It already exists in the Docs: Popover. The code that uses this component also works fine when using app-bridge-ui-experimental.js, but there are no type definitions for it in the latest version of @shopify/app-bridge-ui-types (0.2.1).
I figured I could get rid of linter errors by adding something like:
declare module 'react' {
namespace JSX {
interface IntrinsicElements {
's-popover': any;
}
}
}
But this is not a great long-term solution.
My question is, when are you guys planning to release the new version of @shopify/app-bridge-ui-types that will have type definitions for the s-popover component?
