UNPKG

@sutton-signwriting/sgnw-components

Version:

a javascript package of web components for use with the SignWriting script.

28 lines (27 loc) 754 B
/*! * The Sutton SignWriting Web Components */ // import { Host, h } from "@stencil/core"; import draggabilly from "draggabilly"; export class FswSymbol { componentDidLoad() { this.draggie = new draggabilly(this.el); } render() { return (h(Host, { key: '78c3286448f38aca70aff5ff1b9a374a2feea401' }, h("slot", { key: 'a6ccf2542155fb159bad405242bcd437f92c5e73' }))); } static get is() { return "fsw-spatial"; } static get encapsulation() { return "scoped"; } static get originalStyleUrls() { return { "$": ["fsw-spatial.css"] }; } static get styleUrls() { return { "$": ["fsw-spatial.css"] }; } static get elementRef() { return "el"; } }