Current section
48 Versions
Jump to
Current section
48 Versions
Compare versions
5
files changed
+11
additions
-5
deletions
| @@ -1,5 +1,10 @@ | |
| 1 1 | # Changelog |
| 2 2 | |
| 3 | + ## 0.1.5 |
| 4 | + |
| 5 | + Added: |
| 6 | + - `drawer` |
| 7 | + |
| 3 8 | ## 0.1.4 |
| 4 9 | |
| 5 10 | Bug fix: |
| @@ -38,4 +38,4 @@ | |
| 38 38 | {<<"optional">>,false}, |
| 39 39 | {<<"repository">>,<<"hexpm">>}, |
| 40 40 | {<<"requirement">>,<<"~> 1.0">>}]]}. |
| 41 | - {<<"version">>,<<"0.1.4">>}. |
| 41 | + {<<"version">>,<<"0.1.5">>}. |
unknownlib/component.ex
File is too large to be displayed (100 KB limit).
| @@ -16,10 +16,10 @@ defmodule PrimerLive do | |
| 16 16 | ## Versioning |
| 17 17 | |
| 18 18 | Dependencies: |
| 19 | - - [primer-live (npm)](https://www.npmjs.com/package/primer-live): `0.1.14` |
| 19 | + - [primer-live (npm)](https://www.npmjs.com/package/primer-live): `0.1.18` |
| 20 20 | - Includes: |
| 21 | - - [@primer/css](https://www.npmjs.com/package/@primer/css): `20.5.1` |
| 22 | - - [dialogic-js](https://www.npmjs.com/package/dialogic-js): `0.2.8` |
| 21 | + - [@primer/css](https://www.npmjs.com/package/@primer/css) |
| 22 | + - [dialogic-js](https://www.npmjs.com/package/dialogic-js) |
| 23 23 | |
| 24 24 | Included libraries: |
| 25 25 | - [Octicons](https://primer.style/octicons/): `17.9.0` |
| @@ -4,7 +4,7 @@ defmodule PrimerLive.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :primer_live, |
| 7 | - version: "0.1.4", |
| 7 | + version: "0.1.5", |
| 8 8 | elixir: "~> 1.13", |
| 9 9 | homepage_url: "https://github.com/ArthurClemens/primer_live", |
| 10 10 | description: description(), |
| @@ -50,6 +50,7 @@ defmodule PrimerLive.MixProject do | |
| 50 50 | Breadcrumbs: &(&1[:section] == :breadcrumbs), |
| 51 51 | Buttons: &(&1[:section] == :buttons), |
| 52 52 | Dialog: &(&1[:section] == :dialog), |
| 53 | + Drawer: &(&1[:section] == :drawer), |
| 53 54 | Forms: &(&1[:section] == :forms), |
| 54 55 | Header: &(&1[:section] == :header), |
| 55 56 | Icons: &(&1[:section] == :icons), |