Current section
48 Versions
Jump to
Current section
48 Versions
Compare versions
5
files changed
+7
additions
-3
deletions
| @@ -1,5 +1,9 @@ | |
| 1 1 | # Changelog |
| 2 2 | |
| 3 | + ## 0.3.0 |
| 4 | + |
| 5 | + Breaking change: `action_list_item` now always renders a checkbox group, also when `is_multiple_select` is set on the list items. This change makes handling form data in events more consistent: the data will always consist of a list of checkbox values. |
| 6 | + |
| 3 7 | ## 0.2.7 |
| 4 8 | |
| 5 9 | Fixes a bug introduced in `0.2.6` where single select `action_list_item`s did not get unique ids. |
| @@ -43,4 +43,4 @@ | |
| 43 43 | {<<"optional">>,false}, |
| 44 44 | {<<"repository">>,<<"hexpm">>}, |
| 45 45 | {<<"requirement">>,<<"~> 1.4">>}]]}. |
| 46 | - {<<"version">>,<<"0.2.7">>}. |
| 46 | + {<<"version">>,<<"0.3.0">>}. |
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.2.7", |
| 7 | + version: "0.3.0", |
| 8 8 | homepage_url: "https://github.com/ArthurClemens/primer_live", |
| 9 9 | description: description(), |
| 10 10 | package: package(), |
| @@ -1,6 +1,6 @@ | |
| 1 1 | { |
| 2 2 | "name": "primer-live", |
| 3 | - "version": "0.2.7", |
| 3 | + "version": "0.3.0", |
| 4 4 | "description": "JavaScript and CSS for PrimerLive", |
| 5 5 | "license": "MIT", |
| 6 6 | "module": "./priv/static/primer-live.esm.js", |