Web Components

Developers can create custom, reusable, encapsulated HTML tags for the web using Web Components. Components use the Custom Element standard, frequently in combination with the Shadow DOM, HTML Templates, and ES Modules.
Here are 1,644 public repositories matching this topic...
-
Updated
Nov 15, 2021 - JavaScript
-
Updated
Nov 2, 2021 - TypeScript
-
Updated
Apr 6, 2022 - TypeScript
-
Updated
Mar 28, 2022 - TypeScript
-
Updated
Mar 24, 2022 - JavaScript
-
Updated
Feb 26, 2022 - JavaScript
-
Updated
Mar 2, 2022 - JavaScript
-
Updated
Mar 25, 2022 - TypeScript
It's important, I think, if the goal is to communicate that this can replace React in more ways than function.
-
Updated
Apr 21, 2021 - JavaScript
I have an podcast with episode uploaded to Mixcloud. I also have my music uploaded to Soundcloud. I'd like to see Mixcloud and Soundcloud added as providers with Vime.js
Also I endorse the feature request for playlist.
I plan to use this with an Svelte app.
Twitch Support
-
Updated
Apr 6, 2022 - JavaScript
-
Updated
Mar 17, 2021 - JavaScript
The semantic dom diff plugin uses some global variables like __mocha_context__
and __snapshot__
which are only available in a karma mocha context. When it's user in other test runners, or karma without mocha, it crashes with an unhelpful message.
We should check for these variables, and throw a helpful error to the user that explains this plugin can only be used in Karma.
-
Updated
Apr 6, 2022 - JavaScript
-
Updated
Apr 6, 2022 - JavaScript
-
Updated
Apr 4, 2022 - TypeScript
-
Updated
Nov 9, 2021 - JavaScript
-
Updated
Apr 5, 2022 - JavaScript
-
Updated
Mar 30, 2022 - C#
-
Updated
Feb 14, 2022 - JavaScript
-
Updated
Mar 27, 2022 - JavaScript
and ensure that all libs are importable via the following browser ESM code.
import('//unpkg.com/lume?module').then(console.log)
import('//cdn.skypack.dev/lume').then(console.log)
import('//jspm.dev/lume').then(console.log)
At the moment they all fail with network errors for various reasons, namely some dependencies aren't in ESM format.
-
Updated
Mar 28, 2022 - JavaScript
-
Updated
Feb 7, 2022 - TypeScript
Created by Alex Russell
Released 2011
- Organization
- webcomponents
- Website
- www.webcomponents.org
- Wikipedia
- Wikipedia
Describe the bug
In Firefox, the zoom feature uses
transform
styles (see storybookjs/storybook#12845) - unfortunately this breaks positioning on elements that requireposition: fixed
when in the "Docs" view.Normally a
position: fixed
element's position would correspond to the viewport but in Firefox it corresponds to the element with thetransform
style.