Skip to content
#

Web Components

web-components logo

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,166 public repositories matching this topic...

storybook
levelingup
levelingup commented Dec 24, 2019

I tried to follow the initial steps from here: https://www.learnstorybook.com/intro-to-storybook/react/en/get-started/

running:

npx create-react-app taskbox
cd taskbox

Then when I ran:
npx -p @storybook/cli sb init

I get the error TypeError: Cannot set property 'storybook' of undefined

This is the full message in my terminal:

 sb init - the simplest way to add a
bashmish
bashmish commented Apr 7, 2018

Description

Polymer.PropertiesMixin fails to create property accessors in IE11 for certain important names like disabled.

Live Demo

https://github.com/bashmish/bug-ie11-polymer-properties-mixin

Steps to Reproduce

Open tests and see what is failing in IE11 comparing to other browsers.

Expected Results

disabled has corresponding accessors that allow to react to ch

web-skills
alisey
alisey commented Mar 21, 2020

The following warnings appear in the console during compilation, and they are also shown by stylable intelligence:

WARNING in Stylable: "@st-scope" must receive a simple selector, but instead got: ":global(.foo)"
@st-scope :global(.foo) { }
WARNING in Stylable: "@st-scope" received an unknown symbol: "html"
@st-scope html { }

The compiled CSS works correctly, though.

fast-dna
sbatezat
sbatezat commented May 16, 2018

I'm submitting a ...
[ ] bug report
[ X] feature request
[ ] support request

Current behavior:
Splash screen not showing on iOS

Expected behavior:
Splash screen is showing on iOS, and can be generated through ionic resources

Steps to reproduce:
Launch the application on an iPhone and expect to see a splash screen

Related code:

According to [this article]

web-padawan
web-padawan commented Apr 24, 2020

Child of #186

Create a list of short code snippets for a new docs page, to be placed under TS docs.

  • event listeners

  • querySelector

  • dataProvider

Some examples:

@query decorator

👎 using any:

@query('#grid')
private grid: any;

👍 using types:

@query('#grid')
private grid!
microsoft-graph-toolkit
You can’t perform that action at this time.