@cldn/components - v4.1.0
    Preparing search index...

    Class SvgComponent

    An SVG component (<svg>)

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    This component's node

    Methods

    • Run a function in the context of this component

      Parameters

      • fn: (this: this, component: this) => any

        Provides this component as the first argument and this.

      Returns this

    • Check if component has class

      Parameters

      • ...classes: string[]

      Returns boolean

      true if component has all the specified classes

    • Append HTML.

      Any components (provided as ${...} inside the HTML string literal) remain fully functional and are appended (not just as HTML).

      Parameters

      • strings: TemplateStringsArray
      • ...components: any[]

      Returns this

      component.html`<div>${new Component("button")
      .text("Click me")
      .on("click", () => console.log("clicked"))
      }</div>`
      // Event listeners etc. are preserved.
      // Note the lack of parentheses.
    • Add event listener

      Type Parameters

      • K extends keyof ElementEventMap

      Parameters

      • type: K

        A case-sensitive string representing the event type to listen for.

      • listener: (ev: ElementEventMap[K], component: this) => any

        The function that is called when an event of the specified type occurs.

      Returns SvgComponent

    • Add event listener

      Type Parameters

      • K extends keyof ElementEventMap

      Parameters

      • type: K

        A case-sensitive string representing the event type to listen for.

      • listener: (ev: ElementEventMap[K], component: this) => any

        The function that is called when an event of the specified type occurs.

      • options: AddEventListenerOptions

        An object that specifies characteristics about the event listener. See options on MDN

      Returns SvgComponent

    • Add event listener

      Type Parameters

      • K extends keyof ElementEventMap

      Parameters

      • type: K

        A case-sensitive string representing the event type to listen for.

      • listener: (ev: ElementEventMap[K], component: this) => any

        The function that is called when an event of the specified type occurs.

      • useCapture: boolean

      Returns SvgComponent

    • Render this component in the place of a <slot name="…"></slot>.

      Parameters

      • slot: string

        The slot name

      • Optionalparent: ParentNode = document

        The parent element within to search for slots. Defaults to document

      Returns SvgComponent

      DOMException When the slot is not found