Skip to content

Commit

Permalink
First pass at porting over code
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Aug 7, 2024
1 parent 2b2e7fb commit 903c0d2
Show file tree
Hide file tree
Showing 114 changed files with 8,224 additions and 645 deletions.
18 changes: 18 additions & 0 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1769,6 +1769,12 @@
"markdown_source": "../packages/media-utils/README.md",
"parent": "packages"
},
{
"title": "@wordpress/mime",
"slug": "packages-mime",
"markdown_source": "../packages/mime/README.md",
"parent": "packages"
},
{
"title": "@wordpress/notices",
"slug": "packages-notices",
Expand Down Expand Up @@ -1943,6 +1949,12 @@
"markdown_source": "../packages/undo-manager/README.md",
"parent": "packages"
},
{
"title": "@wordpress/upload-media",
"slug": "packages-upload-media",
"markdown_source": "../packages/upload-media/README.md",
"parent": "packages"
},
{
"title": "@wordpress/url",
"slug": "packages-url",
Expand All @@ -1955,6 +1967,12 @@
"markdown_source": "../packages/viewport/README.md",
"parent": "packages"
},
{
"title": "@wordpress/vips",
"slug": "packages-vips",
"markdown_source": "../packages/vips/README.md",
"parent": "packages"
},
{
"title": "@wordpress/warning",
"slug": "packages-warning",
Expand Down
3 changes: 3 additions & 0 deletions lib/experimental/editor-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ function gutenberg_enable_experiments() {
if ( $gutenberg_experiments && array_key_exists( 'gutenberg-block-bindings-ui', $gutenberg_experiments ) ) {
wp_add_inline_script( 'wp-block-editor', 'window.__experimentalBlockBindingsUI = true', 'before' );
}
if ( $gutenberg_experiments && array_key_exists( 'gutenberg-media-processing', $gutenberg_experiments ) ) {
wp_add_inline_script( 'wp-block-editor', 'window.__experimentalMediaProcessing = true', 'before' );
}
}

add_action( 'admin_init', 'gutenberg_enable_experiments' );
Expand Down
Loading

0 comments on commit 903c0d2

Please sign in to comment.