-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from liip/fix-deprecation-warnings
Release 2.2.0: Fix deprecation warnings / Improve InnerBlocks handling
- Loading branch information
Showing
36 changed files
with
5,124 additions
and
2,289 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<?php return array('dependencies' => array('wp-element', 'wp-polyfill'), 'version' => '55f1fe700a808a0fd1eddc297cdb72fb'); | ||
<?php return array('dependencies' => array('wp-element', 'wp-polyfill'), 'version' => '8abd10a9ebae5707ce70cf31f11dedee'); |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 3 additions & 21 deletions
24
e2e-tests/container/__snapshots__/container-block.spec.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,7 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`container block Container block should be initialized with default attributes 1`] = ` | ||
"<!-- wp:wp-bootstrap-blocks/container --> | ||
<!-- wp:paragraph --> | ||
<p></p> | ||
<!-- /wp:paragraph --> | ||
<!-- /wp:wp-bootstrap-blocks/container -->" | ||
`; | ||
exports[`container block Container block should be initialized with default attributes 1`] = `"<!-- wp:wp-bootstrap-blocks/container /-->"`; | ||
|
||
exports[`container block Should be possible to enable fluid option 1`] = ` | ||
"<!-- wp:wp-bootstrap-blocks/container {\\"isFluid\\":true} --> | ||
<!-- wp:paragraph --> | ||
<p></p> | ||
<!-- /wp:paragraph --> | ||
<!-- /wp:wp-bootstrap-blocks/container -->" | ||
`; | ||
exports[`container block Should be possible to enable fluid option 1`] = `"<!-- wp:wp-bootstrap-blocks/container {\\"isFluid\\":true} /-->"`; | ||
|
||
exports[`container block Should be possible to enable fluid option 2`] = ` | ||
"<!-- wp:wp-bootstrap-blocks/container {\\"isFluid\\":true,\\"fluidBreakpoint\\":\\"lg\\"} --> | ||
<!-- wp:paragraph --> | ||
<p></p> | ||
<!-- /wp:paragraph --> | ||
<!-- /wp:wp-bootstrap-blocks/container -->" | ||
`; | ||
exports[`container block Should be possible to enable fluid option 2`] = `"<!-- wp:wp-bootstrap-blocks/container {\\"isFluid\\":true,\\"fluidBreakpoint\\":\\"lg\\"} /-->"`; |
16 changes: 2 additions & 14 deletions
16
e2e-tests/container/__snapshots__/container-filters.spec.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`container block filters wp_bootstrap_blocks_container_default_attributes should override default attributes 1`] = ` | ||
"<!-- wp:wp-bootstrap-blocks/container --> | ||
<!-- wp:paragraph --> | ||
<p></p> | ||
<!-- /wp:paragraph --> | ||
<!-- /wp:wp-bootstrap-blocks/container -->" | ||
`; | ||
exports[`container block filters wp_bootstrap_blocks_container_default_attributes should override default attributes 1`] = `"<!-- wp:wp-bootstrap-blocks/container /-->"`; | ||
|
||
exports[`container block filters wpBootstrapBlocks.container.marginAfterOptions should add margin option 1`] = ` | ||
"<!-- wp:wp-bootstrap-blocks/container {\\"marginAfter\\":\\"mb-8\\"} --> | ||
<!-- wp:paragraph --> | ||
<p></p> | ||
<!-- /wp:paragraph --> | ||
<!-- /wp:wp-bootstrap-blocks/container -->" | ||
`; | ||
exports[`container block filters wpBootstrapBlocks.container.marginAfterOptions should add margin option 1`] = `"<!-- wp:wp-bootstrap-blocks/container {\\"marginAfter\\":\\"mb-8\\"} /-->"`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.