@zebra-fed/zeta-web
    Preparing search index...

    Class ZetaDroppable

    Zeta Droppable is a container that can be opened and closed and can be attached to an anchor which will determine it's position.

    Hierarchy

    • ContourableInterface<this> & LitElement<this>
      • ZetaDroppable
    Index

    Other

    • Returns ZetaDroppable

    alignment?: "center" | "start" | "end"

    The alignment of the droppable relative to the anchor

    anchor?: HTMLElement

    The anchor element to position the droppable

    direction?: "left" | "right" | "top" | "bottom" = "bottom"

    The direction of the droppable relative to the anchor

    matchParentWidth: boolean = false

    Controls whether the droppable is fit to the width of the anchor

    open: boolean = false

    Controls the open state of the droppable.

    rounded: boolean
    slottedElements: HTMLElement[]
    styles: CSSResultGroup[] = ...

    lifecycle

    • Invoked when the component is added to the document's DOM.

      In connectedCallback() you should setup tasks that should only occur when the element is connected to the document. The most common of these is adding event listeners to nodes external to the element, like a keydown event handler added to the window.

      connectedCallback() {
      super.connectedCallback();
      addEventListener('keydown', this._handleKeydown);
      }

      Typically, anything done in connectedCallback() should be undone when the element is disconnected, in disconnectedCallback().

      Returns void

    • Invoked when the component is removed from the document's DOM.

      This callback is the main signal to the element that it may no longer be used. disconnectedCallback() should ensure that nothing is holding a reference to the element (such as event listeners added to nodes external to the element), so that it is free to be garbage collected.

      disconnectedCallback() {
      super.disconnectedCallback();
      window.removeEventListener('keydown', this._handleKeydown);
      }

      An element may be re-connected after being disconnected.

      Returns void

    rendering

    • Invoked on each update to perform rendering tasks. This method may return any value renderable by lit-html's ChildPart - typically a TemplateResult. Setting properties inside this method will not trigger the element to update.

      Returns TemplateResult<1> | typeof nothing

    updates

    • Invoked whenever the element is updated. Implement to perform post-updating tasks via DOM APIs, for example, focusing an element.

      Setting properties inside this method will trigger the element to update again after this update cycle completes.

      Returns void