diff options
| author | Noel Peden <[email protected]> | 2022-10-21 04:19:01 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-21 04:19:01 -0700 |
| commit | 315c3f04224ba2f4b44fe2ce633315a6e79f62cb (patch) | |
| tree | d67454ea279e19f25b37b05fee0a43a80d19a158 /CHANGELOG.md | |
| parent | bcc88ca556b3b8527ba0ad56424f93ef170b9c31 (diff) | |
| parent | 449056492f8c9fd44684dbf7bbe18f401fe5e6ad (diff) | |
| download | caxlsx-315c3f04224ba2f4b44fe2ce633315a6e79f62cb.tar.gz caxlsx-315c3f04224ba2f4b44fe2ce633315a6e79f62cb.zip | |
Merge pull request #168 from westonganger/merge_axlsx_styler
Merge axlsx_styler gem into caxlsx
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6791d637..95bb0781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ CHANGELOG --------- +- **Unreleased - Axlsx Styler** + - [PR #xx](https://github.com/caxlsx/caxlsx/pull/xx)Merge in the gem [`axlsx_styler`](https://github.com/axlsx-styler-gem/axlsx_styler) + - Add ability to both apply or append to existing styles after rows have been created using `worksheet.add_style` + - `worksheet.add_style "A1", {b: true}` + - `worksheet.add_style "A1:B2", {b: true}` + - `worksheet.add_style ["A1", "B2:C7", "D8:E9"], {b: true}` + - Add ability to create borders upon specific areas of the page using `worksheet.add_border` + - `worksheet.add_border "A1", {style: :thin}` + - `worksheet.add_border "A1:B2", {style: :thin}` + - `worksheet.add_border ["A1", "B2:C7", "D8:E9"], {style: :thin}` + - Add `Axlsx::BorderCreator` the class used under the hood for `worksheet.add_border` + - Allow specifying `:all` in `border: {edges: :all}` which is a shortcut for `border: {edges: [:left, :right, :top, :bottom]}` + - **Unreleased** - [PR #155](https://github.com/caxlsx/caxlsx/pull/155) - Add `hideDropDown` alias for `showDropDown` setting, as the latter is confusing to use (because its logic seems inverted). - [PR #143](https://github.com/caxlsx/caxlsx/pull/143) - Add setting `sort_on_headers` for pivot tables |
