From 4b274e1e99f8eb7065c89c80b8b3604f160068f1 Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 8 May 2026 19:20:36 +0200 Subject: [PATCH] refactor: link jsdocs to webcomponent.io docs --- src/WebComponent.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/WebComponent.js b/src/WebComponent.js index b46a1f0..a075930 100644 --- a/src/WebComponent.js +++ b/src/WebComponent.js @@ -13,7 +13,7 @@ import { /** * A minimal base class to reduce the complexity of creating reactive custom elements - * @see https://WebComponent.io + * @see https://webcomponent.io */ export class WebComponent extends HTMLElement { #host @@ -34,7 +34,7 @@ export class WebComponent extends HTMLElement { /** * Read-only string property that represents how the component will be rendered * @returns {string | any} - * @see https://www.npmjs.com/package/web-component-base#template-vs-render + * @see https://webcomponent.io/template-vs-render/ */ get template() { return '' @@ -48,8 +48,7 @@ export class WebComponent extends HTMLElement { /** * Read-only property containing camelCase counterparts of observed attributes. - * @see https://www.npmjs.com/package/web-component-base#prop-access - * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset + * @see https://webcomponent.io/prop-access/ * @type {PropStringMap} */ get props() {