feat: Adds hydronic system pressure calculator.
Some checks are pending
CI / macOS (debug, 16.2) (push) Waiting to run
CI / macOS (release, 16.2) (push) Waiting to run
CI / ubuntu (push) Successful in 6m58s

This commit is contained in:
2025-03-07 15:15:28 -05:00
parent bdbe89e101
commit 159031a023
15 changed files with 358 additions and 2 deletions

View File

@@ -59,6 +59,17 @@ public struct Input: HTML, Sendable {
}
}
public extension Input {
init<Key>(
id: Key,
name: String? = nil,
placeholder: String
) where Key: RawRepresentable, Key.RawValue == String {
self.init(id: id.rawValue, name: name, placeholder: placeholder)
}
}
/// A style form input label.
public struct InputLabel<InputLabel: HTML>: HTML {