{"id":17491762,"url":"https://github.com/bitcrowd/bitstyles_phoenix","last_synced_at":"2026-03-01T13:03:07.117Z","repository":{"id":44728160,"uuid":"346715767","full_name":"bitcrowd/bitstyles_phoenix","owner":"bitcrowd","description":"A collection of Elixir phoenix helpers for bitstyles","archived":false,"fork":false,"pushed_at":"2026-02-16T17:01:51.000Z","size":316,"stargazers_count":12,"open_issues_count":21,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-02-16T22:06:42.587Z","etag":null,"topics":["elixir","hex","liveview","phoenix","phoenix-framework","ui","ui-components"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bitcrowd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-03-11T13:44:01.000Z","updated_at":"2025-09-09T18:12:58.000Z","dependencies_parsed_at":"2023-02-11T00:15:15.188Z","dependency_job_id":"5a92b0fe-414c-4e0e-a6ce-b5871e82b82d","html_url":"https://github.com/bitcrowd/bitstyles_phoenix","commit_stats":{"total_commits":88,"total_committers":9,"mean_commits":9.777777777777779,"dds":0.25,"last_synced_commit":"45a911f9a87c821f1d7eaf7d1229c2697cb776da"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/bitcrowd/bitstyles_phoenix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitcrowd%2Fbitstyles_phoenix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitcrowd%2Fbitstyles_phoenix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitcrowd%2Fbitstyles_phoenix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitcrowd%2Fbitstyles_phoenix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitcrowd","download_url":"https://codeload.github.com/bitcrowd/bitstyles_phoenix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitcrowd%2Fbitstyles_phoenix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29969700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T12:56:10.327Z","status":"ssl_error","status_checked_at":"2026-03-01T12:55:24.744Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["elixir","hex","liveview","phoenix","phoenix-framework","ui","ui-components"],"created_at":"2024-10-19T08:04:49.345Z","updated_at":"2026-03-01T13:03:07.112Z","avatar_url":"https://github.com/bitcrowd.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BitstylesPhoenix\n\n[![Hex pm](http://img.shields.io/hexpm/v/bitstyles_phoenix.svg?style=flat)](https://hex.pm/packages/bitstyles_phoenix)\n[![Hex docs](http://img.shields.io/badge/hex.pm-docs-green.svg?style=flat)](https://hexdocs.pm/bitstyles_phoenix)\n[![License](https://img.shields.io/hexpm/l/bitstyles_phoenix?style=flat)](./LICENSE.txt)\n\nBasic helpers for [bitstyles](https://github.com/bitcrowd/bitstyles) for elixir phoenix projects.\n\n## Requirements\n\nBitstyles must be installed separately into the asset generation. The helpers in this project just output classes for working with bitstyles.\n\nBitstyles versions from 6.0.0 down to 1.3.0 are supported.\n\n## Installation\n\nThe package can be installed by adding `bitstyles_phoenix` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:bitstyles_phoenix, \"~\u003e 3.0\"}\n  ]\nend\n```\n\nTo make use of the various `ui_*` helpers in the project, just add a use statement to the phoenix application view_helpers:\n\n```elixir\n  defp view_helpers do\n    quote do\n      # Use all HTML functionality (forms, tags, etc)\n      use Phoenix.HTML\n      use BitstylesPhoenix\n\n      # Import basic rendering functionality (render, render_layout, etc)\n      import Phoenix.View\n\n      ...\n    end\n  end\n\n```\n\n## Getting started\n\nCheck out the top level `BitstylesPhoenix` module for usage examples, for the `ui_*` helpers.\n\nDocumentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)\nand published on [HexDocs](https://hexdocs.pm). Once published, the docs can\nbe found at [https://hexdocs.pm/bitstyles_phoenix](https://hexdocs.pm/bitstyles_phoenix).\n\n## Configuration\n\nCheck out the top level `BitstylesPhoenix` module for configuration examples and documentation.\n\n## Developing bitstyles_phoenix\n\nTo live update the documentation when you change the `lib` folder you can do:\n\n```sh\nmix docs \u0026\u0026 fswatch -o lib | xargs -n1 -I {} mix docs\n```\n\nFor running the demo app \u0026 integration tests check out the [demo README](demo/README.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitcrowd%2Fbitstyles_phoenix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitcrowd%2Fbitstyles_phoenix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitcrowd%2Fbitstyles_phoenix/lists"}