eight
eight
https://github.com/Elderjs/elderjs/blob/6d2cd150bcb7bf76aca3007190923916a00d4774/src/utils/svelteComponent.ts#L39 When rendering a component, sub hydrate-components are collected and added to the current page. Ideally, they should be processed after the entire HTML page is built. With the current...
Fixes #244 With this PR, you can nest `hydrate-client={props}` directive. Elderjs converts them into `{...props}` automatically if hydration is not applicable.
- [x] I have searched the issue tracker and believe that this is not a duplicate. **Make sure you run commands with `-v` flag before pasting the output.** ## Steps...
### Issue I have a database containing documents like this: ```js { items: [ // some items ] } ``` I want to know how many items in total, so...
``` Error while handling server request. TypeError: Cannot destructure property 'skipSelf' of 'options' as it is undefined. at Object.resolve (C:\Users\eight04\dev\linkify-plus-plus-core\node_modules\@web\dev-server-rollup\dist\createRollupPluginContextAdapter.js:66:21) at Object.importStyle (C:\Users\eight04\dev\linkify-plus-plus-core\node_modules\rollup-plugin-cjs-es\index.js:174:35) at context.isImportPreferDefault (C:\Users\eight04\dev\linkify-plus-plus-core\node_modules\cjs-es\lib\context.js:17:38) at writeImport (C:\Users\eight04\dev\linkify-plus-plus-core\node_modules\cjs-es\lib\import-writer.js:33:15) at...
https://github.com/openstyles/stylus/pull/1565#discussion_r1133124966 Currently, usercss live preview is not very efficient. It has to: 1. Send source code to background. 2. Compile usercss. 3. Send result back to editor. 4. Send the...
**What**: Fix backtrack hell pattern in the lexer. **Why**: The backtrack hell freezes the browser. **How**: Remove backtrack patterns. **Checklist**: - [ ] Documentation N/A - [x] Unit Tests -...
https://github.com/stylus/stylus/blob/1a85088e225001234a70b32a56f9764dd3358e75/lib/lexer.js#L85 When the input includes many lines of whitespaces, this expression eats up all CPU. For example: ```js ((" ".repeat(2000) + "\n").repeat(100) + ".").match(/\s*\n[ \t]*([,)])/g) ``` A real world example:...
Fixes #118 This PR adds two features: 1. `ByteScreen` - a screen that accepts any char, including unprintable/zero-width chars e.g. (`\xad`). 2. A new argument `ByteStream(screen, use_c1=False)` - allowing us...
**To Reproduce** Steps to reproduce the behavior: 1. Enable `Detect images from links` option 2. Create a page with an `` to the image and an `` of the image....