import type { CSSResultGroup } from 'lit' import { LitElement, css } from 'lit' import design from '../../design/index.pcss' export abstract class UsBaseElement extends LitElement { /* Adjusts the accessibility/visibility of elements in shadowRoot from the outside. */ static override shadowRootOptions: ShadowRootInit = { mode: 'open', delegatesFocus: true } static styles: CSSResultGroup = [ css([design] as TemplateStringsArray | any), ] }