Andreas Johansson

Results 13 issues of Andreas Johansson

### Please answer the questions below, it helps us to track the issue. 1. Which driver are you using and version of it (Ex: PostgreSQL 10.0): PostgreSQL 14.0 2. Which...

### Please answer the questions below, it helps us to track the issue. 1. Which driver are you using and version of it (Ex: PostgreSQL 10.0): PostgreSQL 15 3. Which...

This can be used to fetch various string metadata such as the `vips-loader`, which in turn can be used to determine the image type. See: https://www.libvips.org/API/current/libvips-header.html#vips-image-get-string Fixes #43

This adds `key` and `meta` to the route context, and re-exports the beforeEach routing handlers from `$app/index` to allow the developer to override these methods. Also adds an i18n example...

This fixes the `Locates` => `Locales` typo ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have...

Would it be possible to set the trait cx to `Context` for `render_td` and `render_th` instead of `App` like in `move_column` for example? This would allow `cx.listener` usage inside of...

Fixes #1643 and partially #1489 Adds `.context_menu` for `ListItem`

ListItem doesn't have `on_secondary_mouse_down`, docs: https://github.com/longbridge/gpui-component/blob/main/docs/docs/components/tree.md?plain=1#L154-L166 Should it be added to ListItem? ```rust .when_some(self.on_secondary_mouse_down, |this, on_mouse_down| { this.on_mouse_down(MouseButton::Right, move |event, window, cx| { (on_mouse_down)(event, window, cx) }) }) ```

When using `.context_menu` on a parent element, the `window.on_mouse_event` would fire before, for example, the tables `on_mouse_down` so it'd be like this: 1. First right click = no context menu,...