Hi! It is possible to hide white space for composite states if they not contain inner states, except outputPin, inputPin, etc.? For example:
@startuml
hide empty description
state SimpleOutput {
SimpleOutput: description
state out <<outputPin>>
}
state SimpleInput {
state in <<inputPin>>
}
out --> in
@enduml
I would like to hide white space in this diagram for composite states.