feat: Refactors / renames some modules.

This commit is contained in:
2025-02-26 08:27:39 -05:00
parent 30cfde9f30
commit cce99ce5e9
12 changed files with 32 additions and 53 deletions

View File

@@ -0,0 +1,13 @@
import Elementary
extension HTMLAttribute where Tag == HTMLTag.input {
static func min(_ value: String) -> Self {
.init(name: "min", value: value)
}
static func step(_ value: String) -> Self {
.init(name: "step", value: value)
}
}