@salla.sa/twilight-components
Version:
Salla Web Component
31 lines (27 loc) • 889 B
JavaScript
/*!
* Crafted with ❤ by Salla
*/
;
var index = require('./index-Oy30xVAt.js');
const SallaHook = class {
constructor(hostRef) {
index.registerInstance(this, hostRef);
}
/**
* Mounts a given HTML element into the hook position.
* @param element The element to inject.
*/
async mount(element) {
this.host.before(element);
}
render() {
return index.h(index.Host, { key: 'a887790b6c3fa466e88b0b1c90fda502f3aca812' });
}
async componentDidLoad() {
// Register this component for hooks system, already on it logic to run componentDidLoad trigger
await Salla.hooks.registerComponent('salla-hook', this);
}
get host() { return index.getElement(this); }
};
SallaHook.style = ":host {\n all: unset;\n display: none; /* marker only */\n }";
exports.salla_hook = SallaHook;