feat: Begins room-pressure calculator

This commit is contained in:
2025-02-28 16:27:39 -05:00
parent d08e4b0839
commit 49af734a97
15 changed files with 548 additions and 50 deletions

View File

@@ -2,6 +2,10 @@ import Elementary
extension HTMLAttribute where Tag == HTMLTag.input {
static func max(_ value: String) -> Self {
.init(name: "max", value: value)
}
static func min(_ value: String) -> Self {
.init(name: "min", value: value)
}