Max Koretskyi

Results 9 issues of Max Koretskyi

The current version allows importing as if the source code provided a default, producing no TS error even when the `esModuleInterop` is not enabled. Furthermore, it prevents scenarios that to...

### Bug description: STR: 1) Hover over the modal dialog 2) Press left mouse button down 3) Move mouse outside the modal window 4) Release the button ER: Modal dialog...

type: enhancement
component: modal
severity: inconvenient

### Minimal, reproducible example ```TypeScript const browser = await puppeteer.launch({ headless: 'new', executablePath: 'google-chrome', args: [ '--accept-lang=en-GB', '--no-sandbox', '--disable-setuid-sandbox', '--disable-dev-shm-usage', ], }); const url = `http://...`; const page = await...

bug
confirmed
P3

### Minimal, reproducible example ```TypeScript const browser = await puppeteer.launch({ headless: 'new', executablePath: 'google-chrome', args: [ '--accept-lang=en-GB', '--no-sandbox', '--disable-setuid-sandbox', '--disable-dev-shm-usage', ], }); const page = await browser.newPage(); await page.setRequestInterception(true); page.on('request',...

bug
confirmed
P3

[This example](https://gitlab.com/DGothrek/ipyaggrid/-/blob/master/docs/notebooks/demo-build-dataframe-output-html.ipynb) of how to use ipyaggrid shows the initialization of the agGrid with a fully loaded data (frame), which corresponds to the [client-side row model](https://www.ag-grid.com/javascript-data-grid/client-side-model/). ``` g = Grid(grid_data...

The library is great in that it can drop unncessary parentheses for operators with different precedence, e.g. `'1+(2*3)' -> 1+2*3`. I'm wondering though, if there is any way to enable...

question

RAG infra support similar to Assistants API tools. We've used LangChain before, now using Assistants API tools, but are very keen to try multi-agent-orchestrator. But the key for us is...

enhancement
triage

Let's say I have this very basic command: ``` async function setupSMPT() { let smtpUsername = "NA"; let smtpPassword = "NA"; const confirm = await Confirm.prompt( "Do you want to...

### Which project does this relate to? Router ### Describe the bug I see this super weird behavior, I have extremely basic route definition: ``` import { createRootRoute, createRoute, createRouter,...