Releases: premail/mjml-bullet-list
v1.2.2
v1.2.1
This is a minor but critical documentation update. While in the past you could use MJML custom components by simply including them in .mjmlconfig
, newer versions require you to import the npm package itself. Add to your build script:
const mjmlBulletList = require('mjml-bullet-list')
or
import mjmlBulletList from mjml-bullet-list
See https://github.com/premail/mjml-bullet-list#adding-this-to-your-emails
There are no functional changes in this update, but the usage change was critical enough that it warranted pushing a patch to npm so that the updated documentation would be present there.
v1.2.0
This version modernizes some of the syntax to prevent breakage in newer versions of MJML and bumps dependencies.
Full list of changes: v1.1.7...v1.2.0
v1.1.7
Highlights
- License change from GPL to AGPL. But remember this license only covers the component's code, not any content you generate using it.
- Added standard open-source documentation.
- Added some standard GitHub workflows to help with issue/PR maintenance.
All changes
- removing npmignore in favor of 'files' 87f4301
- updating 'files' list in package.json 3e527a7
- update test to reflect new structure b1c5813
- updating agpl license badge b9c904a
- Adding .github to npmignore 10a214f
- Adding Alex action 6449977
- correcting link 4af0679
- Moving examples into docs 93924eb
- add link 25636c3
- image tweak 2c38f5d
- image tweak 8c17623
- Updating readme 0cbcb57
- Adding docs folder 8222a49
- Typo bd68325
- Typo 5d70fe3
- Typo 0c24bd8
- Correction 54dcf53
- Typo a27ca30
- Updating issue templates d4b9b8e
- Updating readme 9705094
- Updating readme 63a06e7
- Correct syntax d9419ab
- Whitelist Premail security page 05a460c
- Update GH-related config, actions, etc. 48fd13b
- Updating package with license 0413b9d
- Updating license 36f5a3c
- Adding note to readme for consistency 6030697
v1.1.6
v1.1.5
Trying another method for ES6 export
v1.1.4
Adding ES6 source index.js
v1.1.2
Adding ES6 source index.js
v1.1.1...v1.1.2
v1.1.1
Besides some minor documentation updates, this is really just about adding a proper index.js
file.
v1.1.0
As the initial commit was marked in the package and on npm as v1.0.0 and this contains some important fixes, I'm tagging this as a minor release here and on npm.
- Corrected valid
<mj-list>
/<mj-li>
dependencies - Added a default
padding-left
value to ensure that bullet icons don't overflow their container - Added a default
gutter
value - Added
<mj-head>
code for a11y - Removed unimplemented custom bullet icon code #1
- Fixed syntax in
.mjmlconfig
- Docs: General updates and clarifications
- Docs: Added screenshot and example output code #2
- Dev: Added sheerun/modern-node for development
- Dev: Formatted and linted project
- Dev: Added some basic tests
- Dev: Added a couple of simple GitHub Actions