Current section

48 Versions

Jump to

Compare versions

8 files changed
+16 additions
-4 deletions
  @@ -1,8 +1,19 @@
1 1 # Changelog
2 2
3 + ## 0.6.2
4 +
5 + ### Bug fixes
6 + - Pagination: fixes the calculation when a gap between page numbers should be shown.
7 +
8 + ### Other changes
9 + - Pagination: added `role` and improved ARIA labels.
10 +
11 +
3 12 ## 0.6.1
4 13
5 - Fixes reading the required state of input fields.
14 + Bug fixes:
15 + - Fixes reading the required state of input fields.
16 +
6 17
7 18 ## 0.6.0
  @@ -1,7 +1,7 @@
1 1 {<<"links">>,
2 2 [{<<"GitHub">>,<<"https://github.com/ArthurClemens/primer_live">>}]}.
3 3 {<<"name">>,<<"primer_live">>}.
4 - {<<"version">>,<<"0.6.1">>}.
4 + {<<"version">>,<<"0.6.2">>}.
5 5 {<<"description">>,
6 6 <<"An implementation of GitHub's Primer Design System for Phoenix LiveView.">>}.
7 7 {<<"app">>,<<"primer_live">>}.
unknownlib/component.ex
File is too large to be displayed (100 KB limit).
  @@ -4,7 +4,7 @@ defmodule PrimerLive.MixProject do
4 4 def project do
5 5 [
6 6 app: :primer_live,
7 - version: "0.6.1",
7 + version: "0.6.2",
8 8 homepage_url: "https://github.com/ArthurClemens/primer_live",
9 9 description: description(),
10 10 package: package(),
  @@ -39,6 +39,7 @@
39 39 height: 0;
40 40 width: 0;
41 41 position: absolute;
42 + border: none;
42 43 }
43 44 [data-prompt] > input[type=checkbox] {
44 45 transition-property: opacity;
Loading more files…