This release focused on css properties and their usage. As well, creating more unique syntax separating sailor from swiftUIs syntax.
- more css properties support
- more "swifty" css properties redesign
- minor bug fixes/improvements
- syntax changes from swiftui-like State/StateObject to Signal/Store
Example:
...
H1("Welcome to my \(testObject.num)")
.style {
CSS.textEmphasis(style: .character(">"))
CSS.textEmphasis(color: .red)
CSS.object(fit: .fill)
CSS.object(position: .with(.left, .in(10), .bottom, .ch(10)))
CSS.margin(.auto)
}
...