this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

add path to repository line in gleam.tomls

also fix bug in readme example

+14 -14
+3 -3
README.md
··· 29 29 30 30 ```gleam 31 31 import formz 32 - import formz_string/definitions 32 + import formz_string/definition 33 33 34 34 pub fn make_form() { 35 - use username <- formz.field(formz.named("username"), definitions.text_field()) 36 - use password <- formz.field(formz.named("password"), definitions.password_field()) 35 + use username <- formz.field(formz.named("username"), definition.text_field()) 36 + use password <- formz.field(formz.named("password"), definition.password_field()) 37 37 38 38 formz.create_form(#(username, password)) 39 39 }
+3 -3
formz/README.md
··· 29 29 30 30 ```gleam 31 31 import formz 32 - import formz_string/definitions 32 + import formz_string/definition 33 33 34 34 pub fn make_form() { 35 - use username <- formz.field(formz.named("username"), definitions.text_field()) 36 - use password <- formz.field(formz.named("password"), definitions.password_field()) 35 + use username <- formz.field(formz.named("username"), definition.text_field()) 36 + use password <- formz.field(formz.named("password"), definition.password_field()) 37 37 38 38 formz.create_form(#(username, password)) 39 39 }
+2 -2
formz/gleam.toml
··· 1 1 # For a full reference of all the available options, you can have a look at 2 2 # https://gleam.run/writing-gleam/gleam-toml/. 3 3 name = "formz" 4 - version = "2.0.0" 4 + version = "2.0.1" 5 5 description = "Accessible, type safe form parsing and generating for Gleam" 6 6 licences = ["Unlicense"] 7 - repository = { type = "github", user = "bentomas", repo = "formz" } 7 + repository = { type = "github", user = "bentomas", repo = "formz", path = "formz" } 8 8 gleam = ">= 1.6.0" 9 9 10 10 [dependencies]
+2 -2
formz_lustre/gleam.toml
··· 1 1 # For a full reference of all the available options, you can have a look at 2 2 # https://gleam.run/writing-gleam/gleam-toml/. 3 3 name = "formz_lustre" 4 - version = "2.0.0" 4 + version = "2.0.1" 5 5 description = "Lustre widgets and field definitions for the formz library." 6 6 licences = ["Unlicense"] 7 - repository = { type = "github", user = "bentomas", repo = "formz" } 7 + repository = { type = "github", user = "bentomas", repo = "formz", path = "formz_lustre" } 8 8 9 9 [dependencies] 10 10 # formz = { path = "../formz" }
+2 -2
formz_nakai/gleam.toml
··· 1 1 # For a full reference of all the available options, you can have a look at 2 2 # https://gleam.run/writing-gleam/gleam-toml/. 3 3 name = "formz_nakai" 4 - version = "2.0.0" 4 + version = "2.0.1" 5 5 description = "Nakai widgets and field definitions for the formz library." 6 6 licences = ["Unlicense"] 7 - repository = { type = "github", user = "bentomas", repo = "formz" } 7 + repository = { type = "github", user = "bentomas", repo = "formz", path = "formz_nakai" } 8 8 9 9 [dependencies] 10 10 # formz = { path = "../formz" }
+2 -2
formz_string/gleam.toml
··· 1 1 # For a full reference of all the available options, you can have a look at 2 2 # https://gleam.run/writing-gleam/gleam-toml/. 3 3 name = "formz_string" 4 - version = "2.0.0" 4 + version = "2.0.1" 5 5 description = "String widgets and field definitions for the formz library." 6 6 licences = ["Unlicense"] 7 - repository = { type = "github", user = "bentomas", repo = "formz" } 7 + repository = { type = "github", user = "bentomas", repo = "formz", path = "formz_string" } 8 8 9 9 [dependencies] 10 10 # formz = { path = "../formz" }