···11+# For a full reference of all the available options, you can have a look at
22+# https://gleam.run/writing-gleam/gleam-toml/.
13name = "formz"
22-version = "0.1.0"
44+version = "0.1.1"
35description = "Accessible, type safe form parsing and generating for Gleam"
46licences = ["Unlicense"]
55-66-# Fill out these fields if you intend to generate HTML documentation or publish
77-# your project to the Hex package manager.
88-#
99-# description = ""
1010-# licences = ["Apache-2.0"]
1111-# repository = { type = "github", user = "", repo = "" }
1212-# links = [{ title = "Website", href = "" }]
1313-#
1414-# For a full reference of all the available options, you can have a look at
1515-# https://gleam.run/writing-gleam/gleam-toml/.
77+repository = { type = "github", user = "bentomas", repo = "formz" }
168179[dependencies]
1810gleam_stdlib = ">= 0.34.0 and < 2.0.0"
+2-19
formz_lustre/README.md
···33[](https://hex.pm/packages/formz_lustre)
44[](https://hexdocs.pm/formz_lustre/)
5566-```sh
77-gleam add formz_lustre@1
88-```
99-```gleam
1010-import formz_lustre
1111-1212-pub fn main() {
1313- // TODO: An example of the project in use
1414-}
1515-```
1616-1717-Further documentation can be found at <https://hexdocs.pm/formz_lustre>.
1818-1919-## Development
2020-2121-```sh
2222-gleam run # Run the project
2323-gleam test # Run the tests
2424-```
66+Lustre widgets and field definitions for the formz library. See [formz](https://hexdocs.pm/formz/)
77+for details on how to use these.
+6-14
formz_lustre/gleam.toml
···11+# For a full reference of all the available options, you can have a look at
22+# https://gleam.run/writing-gleam/gleam-toml/.
13name = "formz_lustre"
22-version = "0.1.0"
44+version = "0.1.1"
35description = "Lustre widgets and field definitions for the formz library."
46licences = ["Unlicense"]
55-66-# Fill out these fields if you intend to generate HTML documentation or publish
77-# your project to the Hex package manager.
88-#
99-# description = ""
1010-# licences = ["Apache-2.0"]
1111-# repository = { type = "github", user = "", repo = "" }
1212-# links = [{ title = "Website", href = "" }]
1313-#
1414-# For a full reference of all the available options, you can have a look at
1515-# https://gleam.run/writing-gleam/gleam-toml/.
77+repository = { type = "github", user = "bentomas", repo = "formz" }
168179[dependencies]
1818-formz = { path = "../formz" }
1010+formz = ">= 0.1.1 and < 1.0.0"
1911gleam_stdlib = ">= 0.34.0 and < 2.0.0"
2012lustre = ">= 4.5.1 and < 5.0.0"
21132214[dev-dependencies]
2315gleeunit = ">= 1.0.0 and < 2.0.0"
2424-formz_string = { path = "../formz_string" }
1616+formz_string = ">= 0.1.0 and < 1.0.0"
+4-4
formz_lustre/manifest.toml
···22# You typically do not need to edit this file
3344packages = [
55- { name = "formz", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], source = "local", path = "../formz" },
66- { name = "formz_string", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], source = "local", path = "../formz_string" },
55+ { name = "formz", version = "0.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], otp_app = "formz", source = "hex", outer_checksum = "A44D63EDEEB05775EE04817090C193B03DBF23BF9395F25595DE71A556FACB1D" },
66+ { name = "formz_string", version = "0.1.0", build_tools = ["gleam"], requirements = ["formz", "gleam_stdlib"], otp_app = "formz_string", source = "hex", outer_checksum = "8260E5730329887E3A6E35B1B24EA1F71AE10054DAA7775281109DCA52778EA8" },
77 { name = "gleam_erlang", version = "0.27.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "DE468F676D71B313C6C8C5334425CFCF827837333F8AB47B64D8A6D7AA40185D" },
88 { name = "gleam_json", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "thoas"], otp_app = "gleam_json", source = "hex", outer_checksum = "9063D14D25406326C0255BDA0021541E797D8A7A12573D849462CAFED459F6EB" },
99 { name = "gleam_otp", version = "0.12.1", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_stdlib"], otp_app = "gleam_otp", source = "hex", outer_checksum = "BFACC1513410DF5A1617169A9CD7EA334973AC71D860A17574BA7B2EADD89A6F" },
···1515]
16161717[requirements]
1818-formz = { path = "../formz" }
1919-formz_string = { path = "../formz_string" }
1818+formz = { version = ">= 0.1.1 and < 1.0.0" }
1919+formz_string = { version = ">= 0.1.0 and < 1.0.0" }
2020gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" }
2121gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
2222lustre = { version = ">= 4.5.1 and < 5.0.0" }
+2-19
formz_nakai/README.md
···33[](https://hex.pm/packages/formz_nakai)
44[](https://hexdocs.pm/formz_nakai/)
5566-```sh
77-gleam add formz_nakai@1
88-```
99-```gleam
1010-import formz_nakai
1111-1212-pub fn main() {
1313- // TODO: An example of the project in use
1414-}
1515-```
1616-1717-Further documentation can be found at <https://hexdocs.pm/formz_nakai>.
1818-1919-## Development
2020-2121-```sh
2222-gleam run # Run the project
2323-gleam test # Run the tests
2424-```
66+Nakai widgets and field definitions for the formz library. See [formz](https://hexdocs.pm/formz/)
77+for details on how to use these.
+6-14
formz_nakai/gleam.toml
···11+# For a full reference of all the available options, you can have a look at
22+# https://gleam.run/writing-gleam/gleam-toml/.
13name = "formz_nakai"
22-version = "0.1.0"
44+version = "0.1.1"
35description = "Nakai widgets and field definitions for the formz library."
46licences = ["Unlicense"]
55-66-# Fill out these fields if you intend to generate HTML documentation or publish
77-# your project to the Hex package manager.
88-#
99-# description = ""
1010-# licences = ["Apache-2.0"]
1111-# repository = { type = "github", user = "", repo = "" }
1212-# links = [{ title = "Website", href = "" }]
1313-#
1414-# For a full reference of all the available options, you can have a look at
1515-# https://gleam.run/writing-gleam/gleam-toml/.
77+repository = { type = "github", user = "bentomas", repo = "formz" }
168179[dependencies]
1818-formz = { path = "../formz" }
1010+formz = ">= 0.1.1 and < 1.0.0"
1911gleam_stdlib = ">= 0.34.0 and < 2.0.0"
2012nakai = ">= 1.0.0 and < 2.0.0"
21132214[dev-dependencies]
2315gleeunit = ">= 1.0.0 and < 2.0.0"
2424-formz_string = { path = "../formz_string" }
1616+formz_string = ">= 0.1.0 and < 1.0.0"
+4-4
formz_nakai/manifest.toml
···22# You typically do not need to edit this file
3344packages = [
55- { name = "formz", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], source = "local", path = "../formz" },
66- { name = "formz_string", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], source = "local", path = "../formz_string" },
55+ { name = "formz", version = "0.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], otp_app = "formz", source = "hex", outer_checksum = "A44D63EDEEB05775EE04817090C193B03DBF23BF9395F25595DE71A556FACB1D" },
66+ { name = "formz_string", version = "0.1.0", build_tools = ["gleam"], requirements = ["formz", "gleam_stdlib"], otp_app = "formz_string", source = "hex", outer_checksum = "8260E5730329887E3A6E35B1B24EA1F71AE10054DAA7775281109DCA52778EA8" },
77 { name = "gleam_stdlib", version = "0.40.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "86606B75A600BBD05E539EB59FABC6E307EEEA7B1E5865AFB6D980A93BCB2181" },
88 { name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" },
99 { name = "justin", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "justin", source = "hex", outer_checksum = "7FA0C6DB78640C6DC5FBFD59BF3456009F3F8B485BF6825E97E1EB44E9A1E2CD" },
···1111]
12121313[requirements]
1414-formz = { path = "../formz" }
1515-formz_string = { path = "../formz_string" }
1414+formz = { version = ">= 0.1.1 and < 1.0.0" }
1515+formz_string = { version = ">= 0.1.0 and < 1.0.0" }
1616gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" }
1717gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
1818nakai = { version = ">= 1.0.0 and < 2.0.0" }
+2-19
formz_string/README.md
···33[](https://hex.pm/packages/formz_string)
44[](https://hexdocs.pm/formz_string/)
5566-```sh
77-gleam add formz_string@1
88-```
99-```gleam
1010-import formz_string
1111-1212-pub fn main() {
1313- // TODO: An example of the project in use
1414-}
1515-```
1616-1717-Further documentation can be found at <https://hexdocs.pm/formz_string>.
1818-1919-## Development
2020-2121-```sh
2222-gleam run # Run the project
2323-gleam test # Run the tests
2424-```
66+String widgets and field definitions for the formz library. See [formz](https://hexdocs.pm/formz/)
77+for details on how to use these.
+5-13
formz_string/gleam.toml
···11+# For a full reference of all the available options, you can have a look at
22+# https://gleam.run/writing-gleam/gleam-toml/.
13name = "formz_string"
22-version = "0.1.0"
44+version = "0.1.1"
35description = "String widgets and field definitions for the formz library."
46licences = ["Unlicense"]
55-66-# Fill out these fields if you intend to generate HTML documentation or publish
77-# your project to the Hex package manager.
88-#
99-# description = ""
1010-# licences = ["Apache-2.0"]
1111-# repository = { type = "github", user = "", repo = "" }
1212-# links = [{ title = "Website", href = "" }]
1313-#
1414-# For a full reference of all the available options, you can have a look at
1515-# https://gleam.run/writing-gleam/gleam-toml/.
77+repository = { type = "github", user = "bentomas", repo = "formz" }
168179[dependencies]
1818-formz = { path = "../formz" }
1010+formz = ">= 0.1.0 and < 1.0.0"
1911gleam_stdlib = ">= 0.34.0 and < 2.0.0"
20122113[dev-dependencies]