ZIm/crates/collab_ui/src
Marshall Bowers f658af5903
Make border methods always require an explicit width (#11450)
This PR makes the `border` methods require an explicit width instead of
defaulting to 1px.

This breaks convention with Tailwind, but it makes GPUI more consistent
with itself. We already have an edge case where the parameterized method
had to be named `border_width`, since `border` was taken up by an alias
for the 1px variant.

### Before

```rs
div()
    .border()
    .border_t()
    .border_r()
    .border_b()
    .border_l()
    .border_width(px(7.))
```

### After

```rs
div()
    .border_1()
    .border_t_1()
    .border_r_1()
    .border_b_1()
    .border_l_1()
    .border(px(7.))
```

Release Notes:

- N/A
2024-05-06 13:22:47 -04:00
..
chat_panel typescript: Complete function calls with snippets (#11157) 2024-05-02 10:50:01 +02:00
collab_panel remote projects per user (#10594) 2024-04-23 15:33:09 -06:00
notifications Rust 1.78 (#11314) 2024-05-05 15:02:50 +02:00
channel_view.rs remote projects per user (#10594) 2024-04-23 15:33:09 -06:00
chat_panel.rs Break typography styles out of StyledExt (#11013) 2024-04-25 17:42:53 -04:00
collab_panel.rs Make border methods always require an explicit width (#11450) 2024-05-06 13:22:47 -04:00
collab_titlebar_item.rs Rename RemoteProject -> DevServerProject (#11301) 2024-05-02 11:00:08 -06:00
collab_ui.rs Tie the Zed application ID to the release channel (#11335) 2024-05-03 10:48:35 +02:00
face_pile.rs Fix flickering (#9012) 2024-03-11 10:45:57 +01:00
notification_panel.rs Refactor workspace notifications to use explicit NotificationId type (#10342) 2024-04-10 17:21:23 -04:00
notifications.rs Add stories for collab notifications (#3967) 2024-01-08 21:54:59 -05:00
panel_settings.rs Add the ability for extensions to provide language settings (#10296) 2024-04-08 19:17:12 -04:00