Skip to content

Commit

Permalink
fix(ui): inherited class fix
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 4, 2024
1 parent 39294bd commit 5d5343a
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,9 @@ interface WrapperProps {
shadowRootMode?: ShadowRootMode
}

export interface AppShellProviderProps {
/** Whether the app is rendered inside a ShadowRoot. Only choose false if the app is meant to run as a stand-alone application. */
shadowRoot?: boolean
/** Shadow root mode */
shadowRootMode?: ShadowRootMode
export interface AppShellProviderProps extends WrapperProps {
/** Where app stylesheets are imported. This is only relevant if shadowRoot === false. If you use a ShadowRoot the styles must be inline. */
stylesWrapper?: AppShellStyleWrapper
/** theme: theme-dark or theme-light */
theme?: "theme-dark" | "theme-light"
children?: React.ReactNode
}

0 comments on commit 5d5343a

Please sign in to comment.