Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ アニメーション / 固定表示 / Outer ] X-T9で フル幅/ワイド配置を可能にし、全幅や幅広のブロックを該当ブロックでラップしたときに編集画面で全幅や幅広にならないのを修正しました #2444

Merged
merged 6 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ e.g.

== Changelog ==

[ Bug fix ] [ Icon ] Fixed an unwanted bottom margin appearing.
[ Add function ][ Animation (Pro) / Fixed Display (Pro) / Outer (Pro) ] Added support for layout.allowJustification: false, allowing full-width/wide alignment in block themes where wrapped blocks previously did not appear as full-width or wide in the editor.
[ Bug fix ][ Icon ] Fixed an unwanted bottom margin appearing.
[ Specification change ] Fixed the zoom-out toggle not always displaying in the editor toolbar (updated blocks.json API version from 2 to 3).

= 1.95.0 =
Expand Down
5 changes: 4 additions & 1 deletion src/blocks/_pro/animation/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
"textdomain": "vk-blocks-pro",
"supports": {
"html": false,
"className": true
"className": true,
"layout": {
"allowJustification": false
}
}
}
3 changes: 3 additions & 0 deletions src/blocks/_pro/fixed-display/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
"html": false,
"className": true,
"anchor": true,
"layout": {
"allowJustification": false
},
"color": {
"gradients": true,
"link": true,
Expand Down
3 changes: 3 additions & 0 deletions src/blocks/_pro/outer/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@
"html": false,
"className": true,
"anchor": true,
"layout": {
"allowJustification": false
},
"color": {
"text": true,
"background": false
Expand Down
Loading