Skip to content

Commit 5a23c41

Browse files
committed
Update version and CHANGELOG
1 parent c15a4c1 commit 5a23c41

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@
22

33
All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).
44

5-
## [Unreleased]
5+
## [0.3.0] - 2023-09-01
66

77
### Added
88

9-
- 'Cover' block to list of allowed blocks.
9+
- 'Cover' and 'Quote' blocks to list of allowed blocks.
1010
- CODEOWNERS file
1111

12+
### Fixed
13+
14+
- Browser support (props [@xipasduarte](https://github.com/xipasduarte) via #6).
15+
- PostCSS nesting deprecation.
16+
1217
### Changed
1318

1419
- Settings panel label.

accordion-block.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=plugin-uri
66
* Requires at least: 6.1
77
* Requires PHP: 7.4
8-
* Version: 0.2.1
8+
* Version: 0.3.0
99
* Author: Pixel Albatross
1010
* Author URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=author-uri
1111
* License: GPL-2.0-or-later

build/accordion-item/index.asset.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '3346455fbfa31e30122e');
1+
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '43c81634be587df37cd3');

build/accordion-item/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/accordion/style-index.css

+7-4
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,18 @@
2929
}
3030
.js .wp-block-pixelalbatross-accordion .accordion-button::before {
3131
transform: translateY(-60%) rotate(45deg);
32-
}
32+
}
3333
.js .wp-block-pixelalbatross-accordion .accordion-button[aria-expanded="true"]::before {
3434
transform: translateY(-50%) rotate(-135deg);
35-
}
35+
}
3636
.wp-block-pixelalbatross-accordion .accordion-title {
3737
display: block;
3838
pointer-events: none;
3939
}
40+
.wp-block-pixelalbatross-accordion .accordion-panel {
41+
display: block;
42+
}
4043
.js .wp-block-pixelalbatross-accordion .accordion-panel[hidden] {
41-
content-visibility: hidden;
42-
}
44+
display: none;
45+
}
4346

0 commit comments

Comments
 (0)