UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

12 lines (11 loc) 327 B
import { setAssetPath } from "./index"; export function commitAssetPath(path) { setAssetPath(path); } export function register(tagToConstructor) { Object.keys(tagToConstructor).forEach((tag) => { if (!customElements.get(tag)) { customElements.define(tag, tagToConstructor[tag]); } }); }