stencil-site icon indicating copy to clipboard operation
stencil-site copied to clipboard

Stencil site and documentation source.

Results 92 stencil-site issues
Sort by recently updated
recently updated
newest added

I wanted to bind an event from [an external component library](https://component.kitchen/elix/ListComboBox) that uses snake-case. The event is called `selected-index-changed`. I tried this: ... but it turns out that doesn't work...

I am trying to write test case for triggering button click ``` const button = await page.find('login-pad >>> .button'); button.triggerEvent('onClick'); ``` and then checking if the internal state got update...

stencil-site/src/docs/guides/redux.md thanks!

This page documents how to integrate stencil components in Vue: https://stenciljs.com/docs/vue I have tried to follow the guide, and did this: First create stencil project: `npm init stencil` selecting 'component'....

RE: https://stencil-worldwide.slack.com/archives/C7987GCA2/p1561059608268100 I feel that it would be good to make mention in the docs that runtime decorators reduce optimizations.

https://github.com/ionic-team/stencil/issues/562

Update docs for the configuration to explain how dev vs prod works. Flags force outputTargets to run in dev and prod. Configuration only runs in prod mode.

- Docs - DEEP DIVE (docs from my talk Stencil compiler: https://github.com/manucorporat/stencil-framework-to-compiler ) - Assets management - resourcesUrl - how to use them - unpkg/distribution - document multiple stylesheets and...

migrate to stencil repo

The documentation says: > The config can also provide an optional `dest` https://stenciljs.com/docs/config/ But when I do for example this on the app start seed: ```js import { Config }...

I have a simple component fetching cards and I'd like to render a spinner component while loading, so I set up my componentWillLoad method for fetching and update the loading...