Skip to content

Commit a708164

Browse files
committed
Add support for aligning text to the left
1 parent 2f784e0 commit a708164

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 3.4.1 (13. March 2024)
8+
9+
+ [#84](https://github.com/nadar/quill-delta-parser/issues/84) Allow align `left` as possible value.
10+
711
## 3.4.0 (14. September 2023)
812

913
> Please be aware that this release may impact the way Quill data is displayed in your frontend. Checkout the [upgrade document](UPGRADE.md) for more details.

src/listener/Align.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Align extends BlockListener
1818
/**
1919
* @var array<string> Supported alignments.
2020
*/
21-
public $alignments = ['center', 'right', 'justify'];
21+
public $alignments = ['center', 'right', 'justify', 'left'];
2222

2323
/**
2424
* {@inheritDoc}

0 commit comments

Comments
 (0)