-
Notifications
You must be signed in to change notification settings - Fork 804
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into fix/social-use-proper-char-limits
- Loading branch information
Showing
120 changed files
with
2,541 additions
and
1,000 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
/** | ||
* Stubs automatically generated from Gutenberg 20.1.0 | ||
* using the definition file `tools/stubs/gutenberg-stub-defs.php` in the Jetpack monorepo. | ||
* | ||
* Do not edit this directly! Run tools/stubs/update-stubs.sh to regenerate it. | ||
*/ | ||
|
||
/** | ||
* Retrieves the root plugin path. | ||
* | ||
* @since 0.1.0 | ||
* | ||
* @return string Root path to the gutenberg plugin. | ||
*/ | ||
function gutenberg_dir_path() | ||
{ | ||
} | ||
/** | ||
* Registers a script according to `wp_register_script`. Honors this request by | ||
* reassigning internal dependency properties of any script handle already | ||
* registered by that name. It does not deregister the original script, to | ||
* avoid losing inline scripts which may have been attached. | ||
* | ||
* @since 4.1.0 | ||
* | ||
* @param WP_Scripts $scripts WP_Scripts instance. | ||
* @param string $handle Name of the script. Should be unique. | ||
* @param string $src Full URL of the script, or path of the script relative to the WordPress root directory. | ||
* @param array $deps Optional. An array of registered script handles this script depends on. Default empty array. | ||
* @param string|bool|null $ver Optional. String specifying script version number, if it has one, which is added to the URL | ||
* as a query string for cache busting purposes. If version is set to false, a version | ||
* number is automatically added equal to current installed WordPress version. | ||
* If set to null, no version is added. | ||
* @param bool $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>. | ||
* Default 'false'. | ||
*/ | ||
function gutenberg_override_script($scripts, $handle, $src, $deps = array(), $ver = \false, $in_footer = \false) | ||
{ | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
projects/js-packages/charts/changelog/add-chart-library-test-bar-chart
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: minor | ||
Type: added | ||
|
||
Charts: adds tests and fixes to bar chart component |
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.