Current section

48 Versions

Jump to

Compare versions

5 files changed
+13 additions
-4 deletions
  @@ -1,5 +1,15 @@
1 1 # Changelog
2 2
3 + ## 0.1.11
4 +
5 + Added:
6 + - `theme`
7 +
8 + ## 0.1.10
9 +
10 + Updated:
11 + - Prevent attribute open on select menu
12 +
3 13 ## 0.1.9
4 14
5 15 Added:
  @@ -37,4 +37,4 @@
37 37 {<<"optional">>,false},
38 38 {<<"repository">>,<<"hexpm">>},
39 39 {<<"requirement">>,<<"~> 1.0">>}]]}.
40 - {<<"version">>,<<"0.1.10">>}.
40 + {<<"version">>,<<"0.1.11">>}.
unknownlib/component.ex
File is too large to be displayed (100 KB limit).
  @@ -31,7 +31,6 @@ defmodule PrimerLive.UIIcons do
31 31 width="16"
32 32 height="16"
33 33 viewBox="0 0 16 16"
34 - fill="none"
35 34 xmlns="http://www.w3.org/2000/svg"
36 35 aria-hidden="true"
37 36 focusable="false"
  @@ -41,7 +40,6 @@ defmodule PrimerLive.UIIcons do
41 40 fill-rule="evenodd"
42 41 clip-rule="evenodd"
43 42 d="M13.7799 4.22001C13.9203 4.36063 13.9992 4.55126 13.9992 4.75001C13.9992 4.94876 13.9203 5.13938 13.7799 5.28001L6.52985 12.53C6.38922 12.6704 6.1986 12.7493 5.99985 12.7493C5.8011 12.7493 5.61047 12.6704 5.46985 12.53L2.21985 9.28001C2.08737 9.13783 2.01525 8.94979 2.01867 8.75548C2.0221 8.56118 2.10081 8.3758 2.23823 8.23838C2.37564 8.10097 2.56103 8.02226 2.75533 8.01883C2.94963 8.0154 3.13767 8.08753 3.27985 8.22001L5.99985 10.94L12.7199 4.22001C12.8605 4.07956 13.0511 4.00067 13.2499 4.00067C13.4486 4.00067 13.6393 4.07956 13.7799 4.22001Z"
44 - fill="#24292F"
45 43 />
46 44 </svg>
47 45 """,
  @@ -4,7 +4,7 @@ defmodule PrimerLive.MixProject do
4 4 def project do
5 5 [
6 6 app: :primer_live,
7 - version: "0.1.10",
7 + version: "0.1.11",
8 8 homepage_url: "https://github.com/ArthurClemens/primer_live",
9 9 description: description(),
10 10 package: package(),
  @@ -65,6 +65,7 @@ defmodule PrimerLive.MixProject do
65 65 Popover: &(&1[:section] == :popover),
66 66 Progress: &(&1[:section] == :progress),
67 67 Subhead: &(&1[:section] == :subhead),
68 + Theme: &(&1[:section] == :theme),
68 69 Timeline: &(&1[:section] == :timeline),
69 70 Toasts: &(&1[:section] == :toasts),
70 71 Tooltips: &(&1[:section] == :tooltips),