Edit: I also just noticed that the opt block doesn't expand the width based on the title length nor its content. It does work if I put another grp inside the opt (in my case a loop inside of opt). But not if I use _seq.
```
unknown variable: grp
┌─ @preview/chronos:0.2.1/src/group.typ:41:25
│
41 │ #let _opt(desc, elmts) = grp("opt", desc: desc, type: "opt", elmts)
```
__Edit:__ I also just noticed that the opt block doesn't expand the width based on the title length nor its content. It does work if I put another grp inside the opt (in my case a loop inside of opt). But not if I use _seq.

I noticed this when refactoring the package for styling in d6aeb33fa5
I don't know if this is worth a patch release or not though, especially since it is only an alias
I noticed this when refactoring the package for styling in d6aeb33fa5
I don't know if this is worth a patch release or not though, especially since it is only an alias
Edit: I also just noticed that the opt block doesn't expand the width based on the title length nor its content
Yes this was also a know bug that should be fixed in the dev branch (see #16)
> **Edit:** I also just noticed that the opt block doesn't expand the width based on the title length nor its content
Yes this was also a know bug that should be fixed in the dev branch (see #16)
Edit: I also just noticed that the opt block doesn't expand the width based on the title length nor its content
Yes this was also a know bug that should be fixed in the dev branch (see #16)
Can I use the dev branch somehow? Or do I have to clone the repo and include the file manually?
I noticed this when refactoring the package for styling in d6aeb33fa5
I don't know if this is worth a patch release or not though, especially since it is only an alias
At the end of the day, that's what patch releases are for :D
> > **Edit:** I also just noticed that the opt block doesn't expand the width based on the title length nor its content
>
> Yes this was also a know bug that should be fixed in the dev branch (see #16)
Can I use the dev branch somehow? Or do I have to clone the repo and include the file manually?
> I noticed this when refactoring the package for styling in d6aeb33fa5
> I don't know if this is worth a patch release or not though, especially since it is only an alias
At the end of the day, that's what patch releases are for :D
Here is a screenshot with a comparison between the self-call and a sequence between A and B:
> > **Edit:** I also just noticed that the opt block doesn't expand the width based on the title length nor its content
>
> Yes this was also a know bug that should be fixed in the dev branch (see #16)
Hey! I figured out how to use the dev branch (@local packages). However, the above code doesn't work with self-calls. The MRE is this:
```typ
#import "@local/chronos:0.2.2"
#chronos.diagram({
import chronos: *
_par("A")
_par("B")
_opt("Test", {
_seq("A", "A")
})
})
```
Here is a screenshot with a comparison between the self-call and a sequence between A and B:

Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Edit: I also just noticed that the opt block doesn't expand the width based on the title length nor its content. It does work if I put another grp inside the opt (in my case a loop inside of opt). But not if I use _seq.
I noticed this when refactoring the package for styling in
d6aeb33fa5I don't know if this is worth a patch release or not though, especially since it is only an alias
Yes this was also a know bug that should be fixed in the dev branch (see #16)
Can I use the dev branch somehow? Or do I have to clone the repo and include the file manually?
At the end of the day, that's what patch releases are for :D
Hey! I figured out how to use the dev branch (@local packages). However, the above code doesn't work with self-calls. The MRE is this:
Here is a screenshot with a comparison between the self-call and a sequence between A and B:

Indeed, this should affect all groups :(
Edit: I opened a separate issue for this