{"id":21423233,"url":"https://github.com/ignoxx/bubbles","last_synced_at":"2026-01-26T07:34:35.647Z","repository":{"id":263670954,"uuid":"891059908","full_name":"ignoxx/bubbles","owner":"ignoxx","description":"some bubbletea compatible component collection","archived":false,"fork":false,"pushed_at":"2024-11-19T19:30:24.000Z","size":118,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T15:51:14.297Z","etag":null,"topics":["bubbletea","charm","cli","go","golang","huh","tui"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ignoxx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-11-19T16:51:04.000Z","updated_at":"2024-12-28T08:21:31.000Z","dependencies_parsed_at":"2024-11-19T20:41:20.386Z","dependency_job_id":null,"html_url":"https://github.com/ignoxx/bubbles","commit_stats":null,"previous_names":["ignoxx/bubbles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ignoxx/bubbles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignoxx%2Fbubbles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignoxx%2Fbubbles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignoxx%2Fbubbles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignoxx%2Fbubbles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ignoxx","download_url":"https://codeload.github.com/ignoxx/bubbles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignoxx%2Fbubbles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28769851,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T06:37:25.426Z","status":"ssl_error","status_checked_at":"2026-01-26T06:37:23.039Z","response_time":59,"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":["bubbletea","charm","cli","go","golang","huh","tui"],"created_at":"2024-11-22T21:15:11.934Z","updated_at":"2026-01-26T07:34:35.632Z","avatar_url":"https://github.com/ignoxx.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bubbles\nsome custom bubbletea components\n\n## Components\n### Multiselect with groups\nLike [huh's](https://github.com/charmbracelet/huh) Multiselect but with groups that you seamlessly jump between\n![multiselectgroup.gif](./gifs/multiselectgroup.gif)\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\ttea \"github.com/charmbracelet/bubbletea\"\n\tmg \"github.com/ignoxx/bubbles/multiselectgroup\"\n)\n\nfunc main() {\n\tms := mg.NewMultiSelectGroup(\n\t\tmg.Group[string]{\n\t\t\tID: \"Group 1\",\n\t\t\tOptions: []mg.Option[string]{\n\t\t\t\t{ID: \"s1\", Name: \"selection 1\"},\n\t\t\t\t{ID: \"s2\", Name: \"selection 2\"},\n\t\t\t\t{ID: \"s3\", Name: \"selection 3\"},\n\t\t\t\t{ID: \"s4\", Name: \"selection 4\"},\n\t\t\t},\n\t\t},\n\t\tmg.Group[string]{\n\t\t\tID: \"Group 2\",\n\t\t\tOptions: []mg.Option[string]{\n\t\t\t\t{ID: \"s5\", Name: \"selection 5\"},\n\t\t\t},\n\t\t},\n\t\tmg.Group[string]{\n\t\t\tID: \"Group 3\",\n\t\t\tOptions: []mg.Option[string]{\n\t\t\t\t{ID: \"s6\", Name: \"selection 6\"},\n\t\t\t\t{ID: \"s7\", Name: \"selection 7\"},\n\t\t\t\t{ID: \"s8\", Name: \"selection 8\"},\n\t\t\t},\n\t\t},\n\t\tmg.Group[string]{\n\t\t\tID: \"Group 4\",\n\t\t\tOptions: []mg.Option[string]{\n\t\t\t\t{ID: \"s9\", Name: \"selection 9\"},\n\t\t\t\t{ID: \"s10\", Name: \"selection 10\"},\n\t\t\t\t{ID: \"s11\", Name: \"selection 11\"},\n\t\t\t\t{ID: \"s12\", Name: \"selection 12\"},\n\t\t\t\t{ID: \"s13\", Name: \"selection 13\"},\n\t\t\t\t{ID: \"s14\", Name: \"selection 14\"},\n\t\t\t},\n\t\t},\n\t)\n\n\t// save final result\n\tvar results []mg.Option[string]\n\tms.Value(\u0026results)\n\n\tif _, err := tea.NewProgram(ms).Run(); err != nil {\n\t\tpanic(err)\n\t}\n\n\tfmt.Println(\"Result:\")\n\tfor _, option := range results {\n\t\tfmt.Printf(\"%s: %t\\n\", option.ID, option.Selected)\n\t}\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fignoxx%2Fbubbles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fignoxx%2Fbubbles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fignoxx%2Fbubbles/lists"}