Thijs Louisse
Thijs Louisse
Hi, Thanks for this great plugin. When I run it (with `--fix`) it works pretty well, but sometimes it doesn't bring along a leading comment block. For instance, when I...
When I use `import { createTestServer } from '@web/dev-server-core/test-helpers';`, `createTestServer` returns `undefined`. This is because it tries to get it from `./dist/index.js`, which should be `./dist/test-helpers.js`: https://github.com/modernweb-dev/web/blob/master/packages/dev-server-core/test-helpers.mjs#L2 It can be...
### Problem Right now we can't opt-out of IE support, but transpiling to this lowest common denominator can lead to breaking code in all browsers. Currently you would have to...
When I have a hybrid application with: - a set of components based on lit2 (using ScopedElementMixin v2) - a set of components based on lit1 (using ScopedElemetnMixin v1) with...
Working POC that uses dialog element for top layer functionality of all overlays.
closes https://github.com/ing-bank/lion/issues/1580 TODO: - [ ] write tests - [ ] explain the edge case we solved here: https://github.com/ing-bank/lion/pull/1743/files#diff-7865f08c1843c058f0e3d42527103e04a8195755f0919c458438aae0bcd32647R64 - [ ] see if `_calculateValues({source: 'model'})` can/should be called in...
When options are rendered (async), their dom order should reflect their '`aria-posinset` position'. This also affects navigation behavior. Here, it currently goes wrong: https://lion-web.netlify.app/components/input-tel-dropdown/examples/ We probably should add an extra...
## Expected behavior will not become dirty bc/o model-value-changed event of child FormControl (SelectRich).. ## Solution Needs to be fixed in FormControlMixin for all FormControls that are "endpoints" (cq. repropagationRole...
wip for https://github.com/ing-bank/lion/issues/1718 TODO: - [ ] rebase against master after https://github.com/ing-bank/lion/pull/1710/files is merged - [ ] fix all faling checkbox-indeterminate tests - [ ] fix failing FormControl tests
Test cases that illustrate the issue addressed here: https://github.com/ing-bank/lion/issues/1578 ```js it('supports js content', async () => { const result = await executeMd( [ // "```js ::importBlockContent('./fixtures/js-simple.md', '## Simple')", '```', ].join('\n'),...