From b6104ad1a15e0e8c5fb573f988e5addf205148b4 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Mon, 7 Apr 2025 15:26:34 +0100 Subject: [PATCH] feat(docs): clarify & emphasize alternative options --- docs/src/content/docs/guides/getting-started.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/src/content/docs/guides/getting-started.mdx b/docs/src/content/docs/guides/getting-started.mdx index 61c1388..067ae0a 100644 --- a/docs/src/content/docs/guides/getting-started.mdx +++ b/docs/src/content/docs/guides/getting-started.mdx @@ -12,7 +12,7 @@ When you extend the WebComponent class for your custom element, you only have to The result is a reactive UI on property changes. -There's a trade off between productivity & lightweight-ness here and it is somewhere between [Microsoft's FASTElement](https://fast.design/) & [Google's LitElement](https://lit.dev/). +Note that there's a trade off between productivity & lightweight-ness here, and the project aims to help in writing custom elements in the same way more mature and better maintained projects already do. Please look into popular options such as [Microsoft's FASTElement](https://fast.design/) & [Google's LitElement](https://lit.dev/) as well. ## Project Status @@ -26,8 +26,6 @@ For building advanced interactions, there is an in-progress work on smart diffin If you have some complex needs, we recommend using the `WebComponent` base class with a more mature rendering approach like `lit-html`, and here's a demo for that: [View on CodePen](https://codepen.io/ayoayco-the-styleful/pen/ZEwNJBR?editors=1010). -...or you can even [use just parts](/just-parts) of it for your own base class. - ## Installation The library is distributed as complete ECMAScript Modules (ESM) and published on [NPM](https://ayco.io/n/web-component-base). Please