0.500.0 • Published 6 months ago
@darksoil-studio/holochain-elements v0.500.0
@darksoil-studio/holochain-elements
Common elements and element related utilities to build Holochain web applications.
Elements
HoloIdenticon
Import it like this:
import "@darksoil-studio/holochain-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 "@darksoil-studio/holochain-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 "@darksoil-studio/holochain-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 '@darksoil-studio/holochain-elements';
function  renderIcon() {
  return html`
    <sl-icon
      style="color: red; height: 64px; width: 64px;"
      src="${wrapPathInSvg(mdiAlertCircleOutline)}"
    ></sl-icon>
  `;
}0.500.0
6 months ago