{"id":26681339,"url":"https://github.com/callumbwhyte/super-value-converters","last_synced_at":"2026-03-17T08:34:42.071Z","repository":{"id":34080484,"uuid":"168127008","full_name":"callumbwhyte/super-value-converters","owner":"callumbwhyte","description":"A collection of powerful property value converters for cleaner code in Umbraco","archived":false,"fork":false,"pushed_at":"2024-05-30T19:33:22.000Z","size":342,"stargazers_count":14,"open_issues_count":2,"forks_count":12,"subscribers_count":2,"default_branch":"v9/dev","last_synced_at":"2025-10-23T05:51:24.293Z","etag":null,"topics":["converters","dotnet","models-builder","umbraco"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/callumbwhyte.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-01-29T09:25:34.000Z","updated_at":"2024-05-30T19:32:48.000Z","dependencies_parsed_at":"2024-05-30T22:18:14.870Z","dependency_job_id":"12020249-1a19-4645-9ce6-0bc5f29a652b","html_url":"https://github.com/callumbwhyte/super-value-converters","commit_stats":{"total_commits":119,"total_committers":6,"mean_commits":"19.833333333333332","dds":0.09243697478991597,"last_synced_commit":"608a867592b237c662d6527299fa4d64ee4e4097"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/callumbwhyte/super-value-converters","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callumbwhyte%2Fsuper-value-converters","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callumbwhyte%2Fsuper-value-converters/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callumbwhyte%2Fsuper-value-converters/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callumbwhyte%2Fsuper-value-converters/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/callumbwhyte","download_url":"https://codeload.github.com/callumbwhyte/super-value-converters/tar.gz/refs/heads/v9/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callumbwhyte%2Fsuper-value-converters/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30619216,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T08:10:05.930Z","status":"ssl_error","status_checked_at":"2026-03-17T08:10:04.972Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["converters","dotnet","models-builder","umbraco"],"created_at":"2025-03-26T07:15:24.967Z","updated_at":"2026-03-17T08:34:42.038Z","avatar_url":"https://github.com/callumbwhyte.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Umbraco SuperValueConverters\n\n\u003cimg src=\"docs/img/logo.png?raw=true\" alt=\"Umbraco SuperValueConverters\" width=\"250\" align=\"right\" /\u003e\n\n[![NuGet release](https://img.shields.io/nuget/v/Our.Umbraco.SuperValueConverters.svg)](https://www.nuget.org/packages/Our.Umbraco.SuperValueConverters/)\n\n_Looking for SuperValueConverters for **Umbraco 8**? Check the [v8/dev](https://github.com/callumbwhyte/super-value-converters/tree/v8/dev) branch._\n\nSuperValueConverters is a collection of powerful property value converters for Umbraco, eliminating the need for casting and null checks on Umbraco picker values in views or controllers and helping to keep code cleaner.\n\n## Getting started\n\nThis package is supported on Umbraco v10-v12 and v13\n\nOnce installed you don't need to do anything to activate SuperValueConverters.\n\n### Installation\n\nSuperValueConverters is available via [NuGet](https://www.nuget.org/packages/Our.Umbraco.SuperValueConverters/).\n\nTo install with the .NET CLI, run the following command:\n\n    $ dotnet add package Our.Umbraco.SuperValueConverters\n\nTo install from within Visual Studio, use the NuGet Package Manager UI or run the following command:\n\n    PM\u003e Install-Package Our.Umbraco.SuperValueConverters\n\n## Usage\n\nWhere a picker that returns multiple items _(such as [MNTP](https://our.umbraco.com/documentation/Getting-Started/Backoffice/Property-Editors/Built-in-Property-Editors/Multinode-Treepicker2) or [Nested Content](https://our.umbraco.com/documentation/Getting-Started/Backoffice/Property-Editors/Built-in-Property-Editors/Nested-Content))_ has been configured to only allow a single item to be selected _(via it's \"maxItems\" setting)_, the returned value will now be a single `IPublishedContent` rather than `IEnumerable\u003cIPublishedContent\u003e`.\n\nSupported value converters will no longer return `null` if no value has been picked - an empty collection will be returned instead, preventing the need for null checks.\n\nCurrently the following datatypes are supported:\n\n* Multi-Node Tree Picker\n* Nested Content\n\n### Models Builder\n\nSuperValueConverters works seamlessly with [Models Builder](https://our.umbraco.com/documentation/Reference/Templating/Modelsbuilder/) _(if you're using it)_ to return the correct model types from pickers rather than `IPublishedContent`.\n\nWhere a picker has been configured to only allow items of a specific doctype, the returned value will be already cast to the relevant Models Builder generated model.\n\nIn cases where an allowed doctype uses [compositions](https://our.umbraco.com/Documentation/Reference/Templating/Modelsbuilder/Using-Interfaces) Models Builder will generate an interface for that model. If more than one allowed doctype on a given picker implements the same interface, the returned value will be cast to the shared interface rather than the default `IPublishedContent`.\n\n## Contribution guidelines\n\nTo raise a new bug, create an issue on the GitHub repository. To fix a bug or add new features, fork the repository and send a pull request with your changes. Feel free to add ideas to the repository's issues list if you would to discuss anything related to the library.\n\n### Who do I talk to?\n\nThis project is maintained by [Callum Whyte](https://callumwhyte.com/) and contributors. If you have any questions about the project please get in touch on [Twitter](https://twitter.com/callumbwhyte), or by raising an issue on GitHub.\n\n## Credits\n\nThe logo uses the [Energy](https://thenounproject.com/term/search/1603715/) icon from the [Noun Project](https://thenounproject.com) by [Scarlett McKay](https://thenounproject.com/scarlett.mckay/), licensed under [CC BY 3.0 US](https://creativecommons.org/licenses/by/3.0/us/).\n\n### A special #h5yr to our contributors\n\n* [Lee Kelleher](https://github.com/leekelleher)\n* [Robert Foster](https://github.com/robertjf)\n* [Lukasz Koruba](https://github.com/lkoruba)\n* [Nik Rimington](https://github.com/NikRimington)\n* [Alejandro Ocampo](https://github.com/ja0b)\n* [Richard Thompson](https://github.com/richarth)\n\n## License\n\nCopyright \u0026copy; 2024 [Callum Whyte](https://callumwhyte.com/), and other contributors\n\nLicensed under the [MIT License](LICENSE.md).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallumbwhyte%2Fsuper-value-converters","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcallumbwhyte%2Fsuper-value-converters","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallumbwhyte%2Fsuper-value-converters/lists"}