Is there any difference between Material Web Components (link) and Material Components Web (link)?
Material Web Components doesn't have much of an explanation other than
Built on top of the Material Components Web project and LitElement, the Material Web Components enable a reliable development workflow to build beautiful and functional web projects.
Whereas material Components Web is
Material Components for the web (MDC Web) helps developers execute Material Design. Developed by a core team of engineers and UX designers at Google, these components enable a reliable development workflow to build beautiful and functional web projects.
Is it an just an re-implementation of all MDC components with web components in LitElement?
Documentation on Material Web Components is extremely sparse for now, therefore it's been hard to compare using them in test applications.
As an aside, this naming is awful, hopefully they change the name during pre-release.
<mwc-button raised label="raised"></mwc-button>
, while the other provides styles that you can apply to your standard controls (Material Components for the web) like<button class="mdc-button"></button>
– Kamala