npm.io
0.700.0 • Published 2 weeks ago

@holochain-open-dev/elements

Licence
Version
0.700.0
Deps
10
Size
245 kB
Vulns
0
Weekly
0
Stars
7

@holochain-open-dev/elements

Common elements and element related utilities to build Holochain web applications.

Elements

HoloIdenticon

Import it like this:

import "@holochain-open-dev/elements/dist/elements/holo-identicon.js";

And then you can use it like this in your html:

<holo-identicon
  hash="uhCEkBsnnW9JSVhGQx4AE2m0lSlWLrioEHP-7Uj4ZnbI0W-M"
></holo-identicon>
DisplayError

Import it like this:

import "@holochain-open-dev/elements/dist/elements/display-error.js";

And then you can use it like this in your html:

<display-error headline="Error fetching data" error="500"></display-error>
SelectAvatar

Import it like this:

import "@holochain-open-dev/elements/dist/elements/select-avatar.js";

And then you can use it like this in your html:

<select-avatar></select-avatar>

Utils

wrapPathInSvg

Function to convert paths from the @mdi/js library to inline SVG sources.

Example usage:

import { mdiAlertCircleOutline } from "@mdi/js";
import { wrapPathInSvg } from "@holochain-open-dev/elements";

function renderIcon() {
  return html`
    <sl-icon
      style="color: red; height: 64px; width: 64px;"
      src="${wrapPathInSvg(mdiAlertCircleOutline)}"
    ></sl-icon>
  `;
}