Current section
48 Versions
Jump to
Current section
48 Versions
Compare versions
7
files changed
+55
additions
-10
deletions
| @@ -1,5 +1,5 @@ | |
| 1 1 | # Changelog |
| 2 2 | |
| 3 | - ## 0.1.0 |
| 3 | + ## 0.1.1 |
| 4 4 | |
| 5 5 | First release. |
| @@ -1,3 +1,7 @@ | |
| 1 | - # Primer Live |
| 1 | + # PrimerLive |
| 2 2 | |
| 3 | - Primer Live is a collection of function components that implements [GitHub's Primer Design System](https://primer.style/). It is intended for usage in Phoenix LiveView pages and conventional (non-LiveView) views. |
| 3 | + PrimerLive is a collection of function components that implements <a href="https://primer.style/" target="_blank">GitHub's Primer Design System</a>. It is intended for usage in <a href="https://github.com/phoenixframework/phoenix_live_view" target="_blank">Phoenix LiveView pages</a> and regular (non-LiveView) views in Phoenix applications. |
| 4 | + |
| 5 | + Since this implementation closely adheres to the <a href="https://primer.style/css/" target="_blank">Primer CSS documentation</a>, extending components with <a href="https://primer.style/css/utilities" target="blank">Primer's utility classes</a> should be simple. |
| 6 | + |
| 7 | + [Documentation at Hexdocs](https://hexdocs.pm/primer_live/PrimerLive.html) |
| \ No newline at end of file |
| @@ -10,7 +10,9 @@ | |
| 10 10 | <<"lib/helpers/schema_helpers.ex">>,<<"lib/helpers/test_helpers.ex">>, |
| 11 11 | <<"lib/helpers/component_helpers.ex">>,<<"lib/helpers/octicons.ex">>, |
| 12 12 | <<"lib/ui_icons.ex">>,<<"lib/octicons.ex">>,<<".formatter.exs">>, |
| 13 | - <<"mix.exs">>,<<"README.md">>,<<"LICENSE.md">>,<<"CHANGELOG.md">>]}. |
| 13 | + <<"mix.exs">>,<<"README.md">>,<<"LICENSE.md">>, |
| 14 | + <<"priv/octicon_builder/PrimerLive.Octicons.template.eex">>, |
| 15 | + <<"priv/octicon_builder/build.exs">>,<<"CHANGELOG.md">>]}. |
| 14 16 | {<<"licenses">>,[<<"MIT">>]}. |
| 15 17 | {<<"links">>, |
| 16 18 | [{<<"GitHub">>,<<"https://github.com/ArthurClemens/primer_live">>}]}. |
| @@ -31,4 +33,4 @@ | |
| 31 33 | {<<"optional">>,false}, |
| 32 34 | {<<"repository">>,<<"hexpm">>}, |
| 33 35 | {<<"requirement">>,<<"~> 0.18.3">>}]]}. |
| 34 | - {<<"version">>,<<"0.1.0">>}. |
| 36 | + {<<"version">>,<<"0.1.1">>}. |
| @@ -2,7 +2,7 @@ defmodule PrimerLive do | |
| 2 2 | @moduledoc ~S''' |
| 3 3 | |
| 4 4 | <p> |
| 5 | - Primer Live is a collection of function components that implements <a href="https://primer.style/" target="_blank">GitHub's Primer Design System</a>. It is intended for usage in <a href="https://github.com/phoenixframework/phoenix_live_view" target="_blank">Phoenix LiveView pages</a> and regular (non-LiveView) views in Phoenix applications. |
| 5 | + PrimerLive is a collection of function components that implements <a href="https://primer.style/" target="_blank">GitHub's Primer Design System</a>. It is intended for usage in <a href="https://github.com/phoenixframework/phoenix_live_view" target="_blank">Phoenix LiveView pages</a> and regular (non-LiveView) views in Phoenix applications. |
| 6 6 | </p> |
| 7 7 | |
| 8 8 | <p> |
| @@ -4,13 +4,13 @@ defmodule PrimerLive.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :primer_live, |
| 7 | - version: "0.1.0", |
| 7 | + version: "0.1.1", |
| 8 8 | elixir: "~> 1.13", |
| 9 9 | homepage_url: "https://github.com/ArthurClemens/primer_live", |
| 10 10 | description: description(), |
| 11 11 | package: package(), |
| 12 12 | aliases: aliases(), |
| 13 | - name: "Primer Live", |
| 13 | + name: "PrimerLive", |
| 14 14 | deps: deps(), |
| 15 15 | docs: docs() |
| 16 16 | ] |
| @@ -39,7 +39,7 @@ defmodule PrimerLive.MixProject do | |
| 39 39 | |
| 40 40 | defp docs do |
| 41 41 | [ |
| 42 | - main: "Primer Live", |
| 42 | + main: "PrimerLive", |
| 43 43 | groups_for_functions: [ |
| 44 44 | Alerts: &(&1[:section] == :alerts), |
| 45 45 | Avatars: &(&1[:section] == :avatars), |
| @@ -82,7 +82,8 @@ defmodule PrimerLive.MixProject do | |
| 82 82 | links: %{ |
| 83 83 | GitHub: "https://github.com/ArthurClemens/primer_live" |
| 84 84 | }, |
| 85 | - files: ~w(lib .formatter.exs mix.exs README* LICENSE* |
| 85 | + files: |
| 86 | + ~w(lib .formatter.exs mix.exs README* LICENSE* priv/octicon_builder/PrimerLive.Octicons.template.eex priv/octicon_builder/build.exs |
| 86 87 | CHANGELOG*) |
| 87 88 | ] |
| 88 89 | end |
Loading more files…