All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental2.dom.CustomElementRegistry Maven / Gradle / Ivy

package elemental2.dom;

import elemental2.promise.Promise;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
import jsinterop.base.Js;
import jsinterop.base.JsConstructorFn;
import jsinterop.base.JsPropertyMap;

@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class CustomElementRegistry {
  @JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
  public interface DefineOptionsType {
    @JsOverlay
    static CustomElementRegistry.DefineOptionsType create() {
      return Js.uncheckedCast(JsPropertyMap.of());
    }

    @JsProperty
    String getExtends();

    @JsProperty
    void setExtends(String extends_);
  }

  @JsOverlay
  public final void define(
      String tagName,
      Class klass,
      CustomElementRegistry.DefineOptionsType options) {
    define(tagName, Js.asConstructorFn(klass), options);
  }

  @JsOverlay
  public final void define(String tagName, Class klass) {
    define(tagName, Js.asConstructorFn(klass));
  }

  public native void define(
      String tagName,
      JsConstructorFn klass,
      CustomElementRegistry.DefineOptionsType options);

  public native void define(String tagName, JsConstructorFn klass);

  public native JsConstructorFn get(String tagName);

  public native Promise> whenDefined(String tagName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy