Skip to content

Icons: Add APIs for collection and icon registration#77260

Merged
t-hamano merged 58 commits into
trunkfrom
icons-api-regstration
Jun 27, 2026
Merged

Icons: Add APIs for collection and icon registration#77260
t-hamano merged 58 commits into
trunkfrom
icons-api-regstration

Conversation

@t-hamano

@t-hamano t-hamano commented Apr 13, 2026

Copy link
Copy Markdown
Contributor

Note: I understand that this PR is large. However, I believe this is the minimum implementation required to correctly expose the API for registering icons.

What?

This PR exposes basic APIs for registering SVG icons.

The approach proposed by this PR is as follows. Please share your thoughts on this approach:

  • Icons must always be associated with a single "collection." Collections include, for example, Font Awesome, Google Material Icons, etc.
  • The default icon collection is core (WordPress).
  • When a collection is deleted, all icons belonging to it are implicitly deleted as well.
  • If the collections are different, icons can be registered with the same name.
  • The icon is uniquely identified by {collection-slug}/{icon-slug}, as before.

In the future, we might also support "categories," similar to font collections. That is, something like this:

Font Awesome > Symbol > Arrow Left

Classes

I added and extended classes to allow custom icon registration.

WP_Icon_Collections_Registry

New. Singleton that stores icon collections. It supports basic methods such as registering, unregistering, and retrieving items from a collection.

WP_Icons_Registry_Gutenberg

  • Extend the register method to accept a collection slug as a parameter.
  • The registration of core icons via the constructor will be removed and registered in gutenberg_register_default_icons instead.

WP_REST_Icons_Controller_Gutenberg

Add an endpoint to retrieve only the icons belonging to a specific collection.

  • /wp/v2/icons: Unchanged. Lists all registered icons.
  • /wp/v2/icons/<namespace>: New. Lists icons belonging to the given collection slug
  • /wp/v2/icons/<namespace>/<name>: Unchanged. Single-item lookup.

PHP functions

These are new wrapper functions for managing collections and icons.

  • wp_register_icon_collection( $slug, $args )
  • wp_unregister_icon_collection( $slug )
  • wp_register_icon( $icon_name, $args )
  • wp_unregister_icon( $icon_name )

Testing Instructions

Verify that the main APIs are functioning correctly. Below are code examples.

Register icons:

add_action( 'init', function () {
    wp_register_icon_collection( 'my-icons', array(
        'label'       => 'My Icons',
        'description' => 'Icons provided by my plugin.',
    ) );
  wp_register_icon( 'my-icons/star', array(
      'label'   => 'Star',
      'content' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2l3 7h7l-5.5 4.5L18 21l-6-4-6 4 1.5-7.5L2 9h7z"/></svg>',
  ) );
}, 20 );

Confirm registered icons:

wp.apiFetch( { path: '/wp/v2/icons/my-icons' } ).then( console.log );
wp.apiFetch( { path: '/wp/v2/icons/my-icons/star' } ).then( console.log );

Unregister icons and collections

add_action( 'init', function () {
    wp_unregister_icon( 'my-icons/star' );
    wp_unregister_icon_collection( 'my-icons' );
}, 100 );

Screenshot

As you can see, the icon picker modal does not currently support filtering by collection. This will be addressed in a follow-up update.

image

Use of AI Tools

Parts of this PR (code refactoring, commit messages, PR description) were drafted with assistance from Claude Code. All generated changes were reviewed and adjusted manually before committing.

@t-hamano t-hamano changed the title Icons: Add collections registry, public registration API, and REST endpoints Icons: Add APIs for collection and icon registration Apr 13, 2026
@github-actions github-actions Bot added the [Package] Block library /packages/block-library label Apr 13, 2026
Comment thread packages/block-library/src/icon/edit.js Outdated
@t-hamano t-hamano requested a review from Copilot April 13, 2026 09:31
@t-hamano t-hamano added [Type] Enhancement A suggestion for improvement. Needs Dev Note Requires a developer note for a major WordPress release cycle [Block] Icon Affects the Icon block [Feature] Icons Related to Icon registration API and Icon REST API labels Apr 13, 2026

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds a collection-based registration layer to the Icons API, enabling plugins/themes to register their own SVG icon collections and icons, and extends the REST API to query icons by collection.

Changes:

  • Introduces an icon collections registry and public wrapper functions for registering/unregistering icon collections and icons.
  • Refactors WP_Icons_Registry_Gutenberg to require a collection for icon registration and to qualify stored icon names as {collection}/{icon}.
  • Extends the icons REST controller with a collection-scoped listing route and updates the Icon block to request all icons when opening the inserter.

Reviewed changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 10 comments.

Show a summary per file
File Description
phpunit/experimental/class-wp-icons-registry-gutenberg-test.php Updates/extends registry tests for collection-aware registration behavior.
packages/block-library/src/icon/edit.js Changes icon list fetching parameters when inserter is open.
lib/load.php Loads new 7.1 compat files for collections + icons API wrappers.
lib/compat/wordpress-7.1/icons.php Adds public wrapper functions and default collection/icon registration hooks.
lib/compat/wordpress-7.1/class-wp-icon-collections-registry.php New singleton registry for icon collections with basic CRUD.
lib/class-wp-rest-icons-controller-gutenberg.php Adds collection-scoped icons route and includes collection in REST schema/response.
lib/class-wp-icons-registry-gutenberg.php Refactors registration to be collection-based and adds unregister().
Comments suppressed due to low confidence (1)

phpunit/experimental/class-wp-icons-registry-gutenberg-test.php:57

  • The helper comment says it invokes register "despite it being private", but WP_Icons_Registry_Gutenberg::register() is now public. Either update the comment (and consider calling the method directly instead of using reflection) to keep the test intent clear.
	/**
	 * Invokes WP_Icons_Registry_Gutenberg::register despite it being private
	 *
	 * @param string $icon_name       Icon name (without namespace prefix).
	 * @param array  $icon_properties Icon properties (label, content, filePath, collection).
	 * @return bool True if the icon was registered successfully.
	 */
	private function register( $icon_name, $icon_properties ) {
		$method = new ReflectionMethod( $this->registry, 'register' );

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread packages/block-library/src/icon/edit.js Outdated
Comment thread lib/class-wp-icons-registry-gutenberg.php Outdated
Comment thread lib/class-wp-icons-registry-gutenberg.php
Comment on lines +40 to +57
* Registers a new icon.
*
* @param string $icon_name Icon name including namespace.
* @param array $args {
* List of properties for the icon.
*
* @type string $label Required. A human-readable label for the icon.
* @type string $collection Required. The slug of a registered icon collection that this icon belongs to.
* @type string $content Optional. SVG markup for the icon.
* If not provided, the content will be retrieved from the `filePath` if set.
* If both `content` and `filePath` are not set, the icon will not be registered.
* @type string $filePath Optional. The full path to the file containing the icon content.
* }
* @return bool True if the icon was registered successfully, else false.
*/
function wp_register_icon( $icon_name, $args ) {
return WP_Icons_Registry::get_instance()->register( $icon_name, $args );
}

Copilot AI Apr 13, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The wp_register_icon() docblock says $icon_name includes a namespace, but the exposed API and the registry implementation now expect an unqualified icon slug (with the collection provided in $args['collection']). Update the param docs to match the actual accepted format to avoid consumers passing collection/icon and getting _doing_it_wrong failures.

Copilot uses AI. Check for mistakes.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 7922ab9

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not keep registration the same and just require collection from $args? The wp_unregister_icon can remain the same as it is now.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 69a5551

Furthermore, based on #77260 (comment), I have made the parameter optional.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Furthermore, based on #77260 (comment), I have made the parameter optional.

So it would default to core if collection is omitted?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. I don't have a strong opinion on whether the collection should be a required parameter. What do you think?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As long as intent and results are documented, I also don't have a strong opinion here.

What happens if I re-register the star icon with the default collection? Will the core icon be replaced, or do I get a "doing it wrong" warning?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We get a "doing it wrong" warning.

https://github.com/WordPress/gutenberg/pull/77260/changes#diff-c3a30a5f9d3630527de63b40eb26939f07634027c61731c14f75b1090823520eR140-R147

https://github.com/WordPress/gutenberg/pull/77260/changes#diff-8e356e508706e19c2da341bf7a5f03b0c7750ca09e0483a5b00fd3252f978e8cR110-R118

register_block_type outputs "doing it wrong", but register_block_pattern has its pattern replaced. I'm a little unsure about which pattern to follow for the icon registration.

Comment thread lib/compat/wordpress-7.1/icons.php Outdated
Comment thread lib/compat/wordpress-7.1/icons.php Outdated
Comment thread lib/compat/wordpress-7.1/class-wp-icon-collections-registry.php Outdated
Comment thread lib/compat/wordpress-7.1/class-wp-icon-collections-registry.php Outdated
Comment thread phpunit/experimental/class-wp-icons-registry-gutenberg-test.php Outdated
Comment thread lib/class-wp-rest-icons-controller-gutenberg.php
@github-actions

github-actions Bot commented Apr 13, 2026

Copy link
Copy Markdown

Size Change: +9 B (0%)

Total Size: 7.82 MB

📦 View Changed
Filename Size Change
build/scripts/block-library/index.min.js 319 kB +9 B (0%)
ℹ️ View Unchanged
Filename Size
build/modules/a11y/index.min.js 355 B
build/modules/abilities/index.min.js 42.3 kB
build/modules/block-editor/utils/fit-text-frontend.min.js 617 B
build/modules/block-library/accordion/view.min.js 595 B
build/modules/block-library/file/view.min.js 346 B
build/modules/block-library/form/view.min.js 528 B
build/modules/block-library/image/view.min.js 2.64 kB
build/modules/block-library/navigation/view.min.js 1.14 kB
build/modules/block-library/playlist/view.min.js 10.9 kB
build/modules/block-library/query/view.min.js 518 B
build/modules/block-library/search/view.min.js 498 B
build/modules/block-library/tabs/view.min.js 946 B
build/modules/boot/index.min.js 18.6 kB
build/modules/connectors/index.min.js 2.05 kB
build/modules/core-abilities/index.min.js 907 B
build/modules/edit-site-init/index.min.js 1.4 kB
build/modules/interactivity-router/full-page.min.js 451 B
build/modules/interactivity-router/index.min.js 11.6 kB
build/modules/interactivity/index.min.js 15.1 kB
build/modules/latex-to-mathml/index.min.js 56.5 kB
build/modules/latex-to-mathml/loader.min.js 131 B
build/modules/lazy-editor/index.min.js 13.9 kB
build/modules/route/index.min.js 25.2 kB
build/modules/user-taxonomies/index.min.js 48.2 kB
build/modules/vips/loader.min.js 127 B
build/modules/vips/worker.min.js 4.56 MB
build/modules/workflow/index.min.js 19.9 kB
build/scripts/a11y/index.min.js 1.06 kB
build/scripts/annotations/index.min.js 2.49 kB
build/scripts/api-fetch/index.min.js 2.83 kB
build/scripts/autop/index.min.js 2.18 kB
build/scripts/base-styles/index.min.js 98 B
build/scripts/blob/index.min.js 631 B
build/scripts/block-directory/index.min.js 9.98 kB
build/scripts/block-editor/index.min.js 341 kB
build/scripts/block-serialization-default-parser/index.min.js 1.16 kB
build/scripts/block-serialization-spec-parser/index.min.js 3.08 kB
build/scripts/blocks/index.min.js 56.9 kB
build/scripts/commands/index.min.js 21 kB
build/scripts/components/index.min.js 266 kB
build/scripts/compose/index.min.js 11.1 kB
build/scripts/core-commands/index.min.js 4.33 kB
build/scripts/core-data/index.min.js 30.8 kB
build/scripts/customize-widgets/index.min.js 14.3 kB
build/scripts/data-controls/index.min.js 795 B
build/scripts/data/index.min.js 9.66 kB
build/scripts/date/index.min.js 23.6 kB
build/scripts/deprecated/index.min.js 756 B
build/scripts/dom-ready/index.min.js 476 B
build/scripts/dom/index.min.js 5 kB
build/scripts/edit-post/index.min.js 18.4 kB
build/scripts/edit-site/index.min.js 264 kB
build/scripts/edit-widgets/index.min.js 21.9 kB
build/scripts/editor/index.min.js 424 kB
build/scripts/element/index.min.js 5.17 kB
build/scripts/escape-html/index.min.js 587 B
build/scripts/format-library/index.min.js 12.8 kB
build/scripts/hooks/index.min.js 1.83 kB
build/scripts/html-entities/index.min.js 494 B
build/scripts/i18n/index.min.js 2.47 kB
build/scripts/is-shallow-equal/index.min.js 572 B
build/scripts/keyboard-shortcuts/index.min.js 1.61 kB
build/scripts/keycodes/index.min.js 1.56 kB
build/scripts/list-reusable-blocks/index.min.js 2.49 kB
build/scripts/media-utils/index.min.js 79.4 kB
build/scripts/notices/index.min.js 1.85 kB
build/scripts/nux/index.min.js 1.89 kB
build/scripts/patterns/index.min.js 7.96 kB
build/scripts/plugins/index.min.js 2.15 kB
build/scripts/preferences-persistence/index.min.js 2.15 kB
build/scripts/preferences/index.min.js 3.3 kB
build/scripts/primitives/index.min.js 1.01 kB
build/scripts/priority-queue/index.min.js 1.62 kB
build/scripts/private-apis/index.min.js 1.1 kB
build/scripts/react-i18n/index.min.js 833 B
build/scripts/redux-routine/index.min.js 3.37 kB
build/scripts/reusable-blocks/index.min.js 3.1 kB
build/scripts/rich-text/index.min.js 14 kB
build/scripts/router/index.min.js 5.96 kB
build/scripts/server-side-render/index.min.js 1.91 kB
build/scripts/shortcode/index.min.js 1.59 kB
build/scripts/style-engine/index.min.js 2.42 kB
build/scripts/sync/index.min.js 38.8 kB
build/scripts/theme/index.min.js 22 kB
build/scripts/token-list/index.min.js 739 B
build/scripts/undo-manager/index.min.js 918 B
build/scripts/upload-media/index.min.js 11.2 kB
build/scripts/url/index.min.js 3.98 kB
build/scripts/vendors/react-dom.min.js 43.3 kB
build/scripts/vendors/react-jsx-runtime.min.js 667 B
build/scripts/vendors/react.min.js 2.77 kB
build/scripts/viewport/index.min.js 1.22 kB
build/scripts/warning/index.min.js 454 B
build/scripts/widgets/index.min.js 7.8 kB
build/scripts/wordcount/index.min.js 1.04 kB
build/styles/base-styles/admin-schemes-rtl.css 1.71 kB
build/styles/base-styles/admin-schemes-rtl.min.css 775 B
build/styles/base-styles/admin-schemes.css 1.71 kB
build/styles/base-styles/admin-schemes.min.css 775 B
build/styles/block-directory/style-rtl.css 1.97 kB
build/styles/block-directory/style-rtl.min.css 1.06 kB
build/styles/block-directory/style.css 1.98 kB
build/styles/block-directory/style.min.css 1.06 kB
build/styles/block-editor/content-rtl.css 5.46 kB
build/styles/block-editor/content-rtl.min.css 4.03 kB
build/styles/block-editor/content.css 5.46 kB
build/styles/block-editor/content.min.css 4.02 kB
build/styles/block-editor/default-editor-styles-rtl.css 697 B
build/styles/block-editor/default-editor-styles-rtl.min.css 224 B
build/styles/block-editor/default-editor-styles.css 697 B
build/styles/block-editor/default-editor-styles.min.css 224 B
build/styles/block-editor/style-rtl.css 18.6 kB
build/styles/block-editor/style-rtl.min.css 15.8 kB
build/styles/block-editor/style.css 18.6 kB
build/styles/block-editor/style.min.css 15.8 kB
build/styles/block-library/accordion-heading/style-rtl.css 346 B
build/styles/block-library/accordion-heading/style-rtl.min.css 325 B
build/styles/block-library/accordion-heading/style.css 346 B
build/styles/block-library/accordion-heading/style.min.css 325 B
build/styles/block-library/accordion-item/style-rtl.css 239 B
build/styles/block-library/accordion-item/style-rtl.min.css 180 B
build/styles/block-library/accordion-item/style.css 238 B
build/styles/block-library/accordion-item/style.min.css 180 B
build/styles/block-library/accordion-panel/style-rtl.css 110 B
build/styles/block-library/accordion-panel/style-rtl.min.css 99 B
build/styles/block-library/accordion-panel/style.css 110 B
build/styles/block-library/accordion-panel/style.min.css 99 B
build/styles/block-library/accordion/style-rtl.css 69 B
build/styles/block-library/accordion/style-rtl.min.css 62 B
build/styles/block-library/accordion/style.css 69 B
build/styles/block-library/accordion/style.min.css 62 B
build/styles/block-library/archives/style-rtl.css 101 B
build/styles/block-library/archives/style-rtl.min.css 90 B
build/styles/block-library/archives/style.css 101 B
build/styles/block-library/archives/style.min.css 90 B
build/styles/block-library/audio/editor-rtl.css 166 B
build/styles/block-library/audio/editor-rtl.min.css 149 B
build/styles/block-library/audio/editor.css 166 B
build/styles/block-library/audio/editor.min.css 151 B
build/styles/block-library/audio/style-rtl.css 945 B
build/styles/block-library/audio/style-rtl.min.css 132 B
build/styles/block-library/audio/style.css 945 B
build/styles/block-library/audio/style.min.css 132 B
build/styles/block-library/audio/theme-rtl.css 967 B
build/styles/block-library/audio/theme-rtl.min.css 134 B
build/styles/block-library/audio/theme.css 967 B
build/styles/block-library/audio/theme.min.css 134 B
build/styles/block-library/avatar/editor-rtl.css 127 B
build/styles/block-library/avatar/editor-rtl.min.css 115 B
build/styles/block-library/avatar/editor.css 127 B
build/styles/block-library/avatar/editor.min.css 115 B
build/styles/block-library/avatar/style-rtl.css 117 B
build/styles/block-library/avatar/style-rtl.min.css 104 B
build/styles/block-library/avatar/style.css 117 B
build/styles/block-library/avatar/style.min.css 104 B
build/styles/block-library/breadcrumbs/style-rtl.css 233 B
build/styles/block-library/breadcrumbs/style-rtl.min.css 203 B
build/styles/block-library/breadcrumbs/style.css 233 B
build/styles/block-library/breadcrumbs/style.min.css 203 B
build/styles/block-library/button/editor-rtl.css 306 B
build/styles/block-library/button/editor-rtl.min.css 265 B
build/styles/block-library/button/editor.css 317 B
build/styles/block-library/button/editor.min.css 265 B
build/styles/block-library/button/style-rtl.css 651 B
build/styles/block-library/button/style-rtl.min.css 596 B
build/styles/block-library/button/style.css 662 B
build/styles/block-library/button/style.min.css 596 B
build/styles/block-library/buttons/editor-rtl.css 391 B
build/styles/block-library/buttons/editor-rtl.min.css 291 B
build/styles/block-library/buttons/editor.css 391 B
build/styles/block-library/buttons/editor.min.css 291 B
build/styles/block-library/buttons/style-rtl.css 452 B
build/styles/block-library/buttons/style-rtl.min.css 349 B
build/styles/block-library/buttons/style.css 453 B
build/styles/block-library/buttons/style.min.css 349 B
build/styles/block-library/calendar/style-rtl.css 271 B
build/styles/block-library/calendar/style-rtl.min.css 239 B
build/styles/block-library/calendar/style.css 271 B
build/styles/block-library/calendar/style.min.css 239 B
build/styles/block-library/categories/editor-rtl.css 171 B
build/styles/block-library/categories/editor-rtl.min.css 132 B
build/styles/block-library/categories/editor.css 170 B
build/styles/block-library/categories/editor.min.css 131 B
build/styles/block-library/categories/style-rtl.css 226 B
build/styles/block-library/categories/style-rtl.min.css 169 B
build/styles/block-library/categories/style.css 235 B
build/styles/block-library/categories/style.min.css 169 B
build/styles/block-library/classic-rtl.css 402 B
build/styles/block-library/classic-rtl.min.css 358 B
build/styles/block-library/classic.css 402 B
build/styles/block-library/classic.min.css 358 B
build/styles/block-library/code/editor-rtl.css 59 B
build/styles/block-library/code/editor-rtl.min.css 53 B
build/styles/block-library/code/editor.css 59 B
build/styles/block-library/code/editor.min.css 53 B
build/styles/block-library/code/style-rtl.css 158 B
build/styles/block-library/code/style-rtl.min.css 140 B
build/styles/block-library/code/style.css 178 B
build/styles/block-library/code/style.min.css 140 B
build/styles/block-library/code/theme-rtl.css 135 B
build/styles/block-library/code/theme-rtl.min.css 122 B
build/styles/block-library/code/theme.css 135 B
build/styles/block-library/code/theme.min.css 122 B
build/styles/block-library/columns/editor-rtl.css 119 B
build/styles/block-library/columns/editor-rtl.min.css 108 B
build/styles/block-library/columns/editor.css 119 B
build/styles/block-library/columns/editor.min.css 108 B
build/styles/block-library/columns/style-rtl.css 1.3 kB
build/styles/block-library/columns/style-rtl.min.css 421 B
build/styles/block-library/columns/style.css 1.3 kB
build/styles/block-library/columns/style.min.css 421 B
build/styles/block-library/comment-author-avatar/editor-rtl.css 136 B
build/styles/block-library/comment-author-avatar/editor-rtl.min.css 124 B
build/styles/block-library/comment-author-avatar/editor.css 136 B
build/styles/block-library/comment-author-avatar/editor.min.css 124 B
build/styles/block-library/comment-author-name/style-rtl.css 79 B
build/styles/block-library/comment-author-name/style-rtl.min.css 72 B
build/styles/block-library/comment-author-name/style.css 79 B
build/styles/block-library/comment-author-name/style.min.css 72 B
build/styles/block-library/comment-content/style-rtl.css 137 B
build/styles/block-library/comment-content/style-rtl.min.css 120 B
build/styles/block-library/comment-content/style.css 137 B
build/styles/block-library/comment-content/style.min.css 120 B
build/styles/block-library/comment-date/style-rtl.css 72 B
build/styles/block-library/comment-date/style-rtl.min.css 65 B
build/styles/block-library/comment-date/style.css 72 B
build/styles/block-library/comment-date/style.min.css 65 B
build/styles/block-library/comment-edit-link/style-rtl.css 77 B
build/styles/block-library/comment-edit-link/style-rtl.min.css 70 B
build/styles/block-library/comment-edit-link/style.css 77 B
build/styles/block-library/comment-edit-link/style.min.css 70 B
build/styles/block-library/comment-reply-link/style-rtl.css 78 B
build/styles/block-library/comment-reply-link/style-rtl.min.css 71 B
build/styles/block-library/comment-reply-link/style.css 78 B
build/styles/block-library/comment-reply-link/style.min.css 71 B
build/styles/block-library/comment-template/style-rtl.css 213 B
build/styles/block-library/comment-template/style-rtl.min.css 191 B
build/styles/block-library/comment-template/style.css 213 B
build/styles/block-library/comment-template/style.min.css 191 B
build/styles/block-library/comments-pagination-numbers/editor-rtl.css 135 B
build/styles/block-library/comments-pagination-numbers/editor-rtl.min.css 122 B
build/styles/block-library/comments-pagination-numbers/editor.css 144 B
build/styles/block-library/comments-pagination-numbers/editor.min.css 121 B
build/styles/block-library/comments-pagination/editor-rtl.css 184 B
build/styles/block-library/comments-pagination/editor-rtl.min.css 168 B
build/styles/block-library/comments-pagination/editor.css 184 B
build/styles/block-library/comments-pagination/editor.min.css 168 B
build/styles/block-library/comments-pagination/style-rtl.css 224 B
build/styles/block-library/comments-pagination/style-rtl.min.css 201 B
build/styles/block-library/comments-pagination/style.css 236 B
build/styles/block-library/comments-pagination/style.min.css 201 B
build/styles/block-library/comments-title/editor-rtl.css 83 B
build/styles/block-library/comments-title/editor-rtl.min.css 75 B
build/styles/block-library/comments-title/editor.css 83 B
build/styles/block-library/comments-title/editor.min.css 75 B
build/styles/block-library/comments/editor-rtl.css 968 B
build/styles/block-library/comments/editor-rtl.min.css 842 B
build/styles/block-library/comments/editor.css 968 B
build/styles/block-library/comments/editor.min.css 842 B
build/styles/block-library/comments/style-rtl.css 754 B
build/styles/block-library/comments/style-rtl.min.css 637 B
build/styles/block-library/comments/style.css 752 B
build/styles/block-library/comments/style.min.css 637 B
build/styles/block-library/common-rtl.css 2.48 kB
build/styles/block-library/common-rtl.min.css 1.12 kB
build/styles/block-library/common.css 2.5 kB
build/styles/block-library/common.min.css 1.12 kB
build/styles/block-library/cover/editor-rtl.css 1.05 kB
build/styles/block-library/cover/editor-rtl.min.css 631 B
build/styles/block-library/cover/editor.css 1.05 kB
build/styles/block-library/cover/editor.min.css 631 B
build/styles/block-library/cover/style-rtl.css 2.5 kB
build/styles/block-library/cover/style-rtl.min.css 1.82 kB
build/styles/block-library/cover/style.css 2.51 kB
build/styles/block-library/cover/style.min.css 1.81 kB
build/styles/block-library/details/editor-rtl.css 72 B
build/styles/block-library/details/editor-rtl.min.css 65 B
build/styles/block-library/details/editor.css 72 B
build/styles/block-library/details/editor.min.css 65 B
build/styles/block-library/details/style-rtl.css 97 B
build/styles/block-library/details/style-rtl.min.css 86 B
build/styles/block-library/details/style.css 97 B
build/styles/block-library/details/style.min.css 86 B
build/styles/block-library/editor-elements-rtl.css 117 B
build/styles/block-library/editor-elements-rtl.min.css 75 B
build/styles/block-library/editor-elements.css 117 B
build/styles/block-library/editor-elements.min.css 75 B
build/styles/block-library/editor-rtl.css 12.5 kB
build/styles/block-library/editor-rtl.min.css 10.3 kB
build/styles/block-library/editor.css 12.5 kB
build/styles/block-library/editor.min.css 10.3 kB
build/styles/block-library/elements-rtl.css 84 B
build/styles/block-library/elements-rtl.min.css 54 B
build/styles/block-library/elements.css 84 B
build/styles/block-library/elements.min.css 54 B
build/styles/block-library/embed/editor-rtl.css 391 B
build/styles/block-library/embed/editor-rtl.min.css 331 B
build/styles/block-library/embed/editor.css 390 B
build/styles/block-library/embed/editor.min.css 331 B
build/styles/block-library/embed/style-rtl.css 1.29 kB
build/styles/block-library/embed/style-rtl.min.css 448 B
build/styles/block-library/embed/style.css 1.29 kB
build/styles/block-library/embed/style.min.css 448 B
build/styles/block-library/embed/theme-rtl.css 967 B
build/styles/block-library/embed/theme-rtl.min.css 133 B
build/styles/block-library/embed/theme.css 967 B
build/styles/block-library/embed/theme.min.css 133 B
build/styles/block-library/file/editor-rtl.css 352 B
build/styles/block-library/file/editor-rtl.min.css 324 B
build/styles/block-library/file/editor.css 353 B
build/styles/block-library/file/editor.min.css 324 B
build/styles/block-library/file/style-rtl.css 318 B
build/styles/block-library/file/style-rtl.min.css 278 B
build/styles/block-library/file/style.css 331 B
build/styles/block-library/file/style.min.css 278 B
build/styles/block-library/footnotes/style-rtl.css 220 B
build/styles/block-library/footnotes/style-rtl.min.css 198 B
build/styles/block-library/footnotes/style.css 219 B
build/styles/block-library/footnotes/style.min.css 197 B
build/styles/block-library/form-input/editor-rtl.css 286 B
build/styles/block-library/form-input/editor-rtl.min.css 265 B
build/styles/block-library/form-input/editor.css 285 B
build/styles/block-library/form-input/editor.min.css 264 B
build/styles/block-library/form-input/style-rtl.css 467 B
build/styles/block-library/form-input/style-rtl.min.css 366 B
build/styles/block-library/form-input/style.css 467 B
build/styles/block-library/form-input/style.min.css 366 B
build/styles/block-library/form-submission-notification/editor-rtl.css 368 B
build/styles/block-library/form-submission-notification/editor-rtl.min.css 344 B
build/styles/block-library/form-submission-notification/editor.css 368 B
build/styles/block-library/form-submission-notification/editor.min.css 341 B
build/styles/block-library/form-submit-button/style-rtl.css 77 B
build/styles/block-library/form-submit-button/style-rtl.min.css 69 B
build/styles/block-library/form-submit-button/style.css 77 B
build/styles/block-library/form-submit-button/style.min.css 69 B
build/styles/block-library/freeform/editor-rtl.css 1.12 kB
build/styles/block-library/freeform/editor-rtl.min.css 288 B
build/styles/block-library/freeform/editor.css 1.12 kB
build/styles/block-library/freeform/editor.min.css 288 B
build/styles/block-library/gallery/editor-rtl.css 1.52 kB
build/styles/block-library/gallery/editor-rtl.min.css 615 B
build/styles/block-library/gallery/editor.css 1.52 kB
build/styles/block-library/gallery/editor.min.css 616 B
build/styles/block-library/gallery/style-rtl.css 2.84 kB
build/styles/block-library/gallery/style-rtl.min.css 1.84 kB
build/styles/block-library/gallery/style.css 2.84 kB
build/styles/block-library/gallery/style.min.css 1.84 kB
build/styles/block-library/gallery/theme-rtl.css 941 B
build/styles/block-library/gallery/theme-rtl.min.css 108 B
build/styles/block-library/gallery/theme.css 941 B
build/styles/block-library/gallery/theme.min.css 108 B
build/styles/block-library/group/editor-rtl.css 772 B
build/styles/block-library/group/editor-rtl.min.css 335 B
build/styles/block-library/group/editor.css 772 B
build/styles/block-library/group/editor.min.css 335 B
build/styles/block-library/group/style-rtl.css 120 B
build/styles/block-library/group/style-rtl.min.css 103 B
build/styles/block-library/group/style.css 120 B
build/styles/block-library/group/style.min.css 103 B
build/styles/block-library/group/theme-rtl.css 468 B
build/styles/block-library/group/theme-rtl.min.css 79 B
build/styles/block-library/group/theme.css 468 B
build/styles/block-library/group/theme.min.css 79 B
build/styles/block-library/heading/style-rtl.css 604 B
build/styles/block-library/heading/style-rtl.min.css 205 B
build/styles/block-library/heading/style.css 604 B
build/styles/block-library/heading/style.min.css 205 B
build/styles/block-library/html/editor-rtl.css 1.29 kB
build/styles/block-library/html/editor-rtl.min.css 464 B
build/styles/block-library/html/editor.css 1.3 kB
build/styles/block-library/html/editor.min.css 464 B
build/styles/block-library/icon/editor-rtl.css 776 B
build/styles/block-library/icon/editor-rtl.min.css 377 B
build/styles/block-library/icon/editor.css 776 B
build/styles/block-library/icon/editor.min.css 377 B
build/styles/block-library/icon/style-rtl.css 218 B
build/styles/block-library/icon/style-rtl.min.css 154 B
build/styles/block-library/icon/style.css 218 B
build/styles/block-library/icon/style.min.css 154 B
build/styles/block-library/image/editor-rtl.css 1.64 kB
build/styles/block-library/image/editor-rtl.min.css 782 B
build/styles/block-library/image/editor.css 1.64 kB
build/styles/block-library/image/editor.min.css 780 B
build/styles/block-library/image/style-rtl.css 2.92 kB
build/styles/block-library/image/style-rtl.min.css 1.86 kB
build/styles/block-library/image/style.css 2.92 kB
build/styles/block-library/image/style.min.css 1.85 kB
build/styles/block-library/image/theme-rtl.css 971 B
build/styles/block-library/image/theme-rtl.min.css 137 B
build/styles/block-library/image/theme.css 971 B
build/styles/block-library/image/theme.min.css 137 B
build/styles/block-library/latest-comments/style-rtl.css 392 B
build/styles/block-library/latest-comments/style-rtl.min.css 352 B
build/styles/block-library/latest-comments/style.css 390 B
build/styles/block-library/latest-comments/style.min.css 352 B
build/styles/block-library/latest-posts/editor-rtl.css 154 B
build/styles/block-library/latest-posts/editor-rtl.min.css 139 B
build/styles/block-library/latest-posts/editor.css 153 B
build/styles/block-library/latest-posts/editor.min.css 138 B
build/styles/block-library/latest-posts/style-rtl.css 1.36 kB
build/styles/block-library/latest-posts/style-rtl.min.css 520 B
build/styles/block-library/latest-posts/style.css 1.37 kB
build/styles/block-library/latest-posts/style.min.css 520 B
build/styles/block-library/list/style-rtl.css 498 B
build/styles/block-library/list/style-rtl.min.css 107 B
build/styles/block-library/list/style.css 498 B
build/styles/block-library/list/style.min.css 107 B
build/styles/block-library/loginout/style-rtl.css 68 B
build/styles/block-library/loginout/style-rtl.min.css 61 B
build/styles/block-library/loginout/style.css 68 B
build/styles/block-library/loginout/style.min.css 61 B
build/styles/block-library/math/editor-rtl.css 491 B
build/styles/block-library/math/editor-rtl.min.css 105 B
build/styles/block-library/math/editor.css 502 B
build/styles/block-library/math/editor.min.css 105 B
build/styles/block-library/math/style-rtl.css 70 B
build/styles/block-library/math/style-rtl.min.css 61 B
build/styles/block-library/math/style.css 70 B
build/styles/block-library/math/style.min.css 61 B
build/styles/block-library/media-text/editor-rtl.css 389 B
build/styles/block-library/media-text/editor-rtl.min.css 321 B
build/styles/block-library/media-text/editor.css 389 B
build/styles/block-library/media-text/editor.min.css 320 B
build/styles/block-library/media-text/style-rtl.css 873 B
build/styles/block-library/media-text/style-rtl.min.css 552 B
build/styles/block-library/media-text/style.css 901 B
build/styles/block-library/media-text/style.min.css 550 B
build/styles/block-library/more/editor-rtl.css 796 B
build/styles/block-library/more/editor-rtl.min.css 393 B
build/styles/block-library/more/editor.css 798 B
build/styles/block-library/more/editor.min.css 393 B
build/styles/block-library/navigation-link/editor-rtl.css 1.28 kB
build/styles/block-library/navigation-link/editor-rtl.min.css 710 B
build/styles/block-library/navigation-link/editor.css 1.27 kB
build/styles/block-library/navigation-link/editor.min.css 713 B
build/styles/block-library/navigation-link/style-rtl.css 579 B
build/styles/block-library/navigation-link/style-rtl.min.css 190 B
build/styles/block-library/navigation-link/style.css 579 B
build/styles/block-library/navigation-link/style.min.css 188 B
build/styles/block-library/navigation-overlay-close/style-rtl.css 260 B
build/styles/block-library/navigation-overlay-close/style-rtl.min.css 237 B
build/styles/block-library/navigation-overlay-close/style.css 260 B
build/styles/block-library/navigation-overlay-close/style.min.css 237 B
build/styles/block-library/navigation-submenu/editor-rtl.css 1.12 kB
build/styles/block-library/navigation-submenu/editor-rtl.min.css 295 B
build/styles/block-library/navigation-submenu/editor.css 1.12 kB
build/styles/block-library/navigation-submenu/editor.min.css 294 B
build/styles/block-library/navigation/editor-rtl.css 3.28 kB
build/styles/block-library/navigation/editor-rtl.min.css 2.28 kB
build/styles/block-library/navigation/editor.css 3.29 kB
build/styles/block-library/navigation/editor.min.css 2.28 kB
build/styles/block-library/navigation/style-rtl.css 3.59 kB
build/styles/block-library/navigation/style-rtl.min.css 2.52 kB
build/styles/block-library/navigation/style.css 3.59 kB
build/styles/block-library/navigation/style.min.css 2.5 kB
build/styles/block-library/nextpage/editor-rtl.css 799 B
build/styles/block-library/nextpage/editor-rtl.min.css 392 B
build/styles/block-library/nextpage/editor.css 800 B
build/styles/block-library/nextpage/editor.min.css 392 B
build/styles/block-library/page-list/editor-rtl.css 1.18 kB
build/styles/block-library/page-list/editor-rtl.min.css 356 B
build/styles/block-library/page-list/editor.css 1.18 kB
build/styles/block-library/page-list/editor.min.css 356 B
build/styles/block-library/page-list/style-rtl.css 207 B
build/styles/block-library/page-list/style-rtl.min.css 192 B
build/styles/block-library/page-list/style.css 207 B
build/styles/block-library/page-list/style.min.css 192 B
build/styles/block-library/paragraph/editor-rtl.css 315 B
build/styles/block-library/paragraph/editor-rtl.min.css 292 B
build/styles/block-library/paragraph/editor.css 314 B
build/styles/block-library/paragraph/editor.min.css 292 B
build/styles/block-library/paragraph/style-rtl.css 746 B
build/styles/block-library/paragraph/style-rtl.min.css 341 B
build/styles/block-library/paragraph/style.css 752 B
build/styles/block-library/paragraph/style.min.css 340 B
build/styles/block-library/playlist-track/style-rtl.css 453 B
build/styles/block-library/playlist-track/style-rtl.min.css 420 B
build/styles/block-library/playlist-track/style.css 453 B
build/styles/block-library/playlist-track/style.min.css 420 B
build/styles/block-library/playlist/editor-rtl.css 120 B
build/styles/block-library/playlist/editor-rtl.min.css 112 B
build/styles/block-library/playlist/editor.css 120 B
build/styles/block-library/playlist/editor.min.css 112 B
build/styles/block-library/playlist/style-rtl.css 1.52 kB
build/styles/block-library/playlist/style-rtl.min.css 1.42 kB
build/styles/block-library/playlist/style.css 1.52 kB
build/styles/block-library/playlist/style.min.css 1.42 kB
build/styles/block-library/post-author-biography/style-rtl.css 96 B
build/styles/block-library/post-author-biography/style-rtl.min.css 86 B
build/styles/block-library/post-author-biography/style.css 96 B
build/styles/block-library/post-author-biography/style.min.css 86 B
build/styles/block-library/post-author-name/style-rtl.css 76 B
build/styles/block-library/post-author-name/style-rtl.min.css 69 B
build/styles/block-library/post-author-name/style.css 76 B
build/styles/block-library/post-author-name/style.min.css 69 B
build/styles/block-library/post-author/editor-rtl.css 490 B
build/styles/block-library/post-author/editor-rtl.min.css 104 B
build/styles/block-library/post-author/editor.css 490 B
build/styles/block-library/post-author/editor.min.css 104 B
build/styles/block-library/post-author/style-rtl.css 213 B
build/styles/block-library/post-author/style-rtl.min.css 188 B
build/styles/block-library/post-author/style.css 214 B
build/styles/block-library/post-author/style.min.css 189 B
build/styles/block-library/post-comments-count/style-rtl.css 79 B
build/styles/block-library/post-comments-count/style-rtl.min.css 72 B
build/styles/block-library/post-comments-count/style.css 79 B
build/styles/block-library/post-comments-count/style.min.css 72 B
build/styles/block-library/post-comments-form/editor-rtl.css 104 B
build/styles/block-library/post-comments-form/editor-rtl.min.css 96 B
build/styles/block-library/post-comments-form/editor.css 104 B
build/styles/block-library/post-comments-form/editor.min.css 96 B
build/styles/block-library/post-comments-form/style-rtl.css 585 B
build/styles/block-library/post-comments-form/style-rtl.min.css 525 B
build/styles/block-library/post-comments-form/style.css 584 B
build/styles/block-library/post-comments-form/style.min.css 525 B
build/styles/block-library/post-comments-link/style-rtl.css 78 B
build/styles/block-library/post-comments-link/style-rtl.min.css 71 B
build/styles/block-library/post-comments-link/style.css 78 B
build/styles/block-library/post-comments-link/style.min.css 71 B
build/styles/block-library/post-content/style-rtl.css 68 B
build/styles/block-library/post-content/style-rtl.min.css 61 B
build/styles/block-library/post-content/style.css 68 B
build/styles/block-library/post-content/style.min.css 61 B
build/styles/block-library/post-date/style-rtl.css 69 B
build/styles/block-library/post-date/style-rtl.min.css 62 B
build/styles/block-library/post-date/style.css 69 B
build/styles/block-library/post-date/style.min.css 62 B
build/styles/block-library/post-excerpt/editor-rtl.css 78 B
build/styles/block-library/post-excerpt/editor-rtl.min.css 71 B
build/styles/block-library/post-excerpt/editor.css 78 B
build/styles/block-library/post-excerpt/editor.min.css 71 B
build/styles/block-library/post-excerpt/style-rtl.css 171 B
build/styles/block-library/post-excerpt/style-rtl.min.css 155 B
build/styles/block-library/post-excerpt/style.css 171 B
build/styles/block-library/post-excerpt/style.min.css 155 B
build/styles/block-library/post-featured-image/editor-rtl.css 1.14 kB
build/styles/block-library/post-featured-image/editor-rtl.min.css 719 B
build/styles/block-library/post-featured-image/editor.css 1.14 kB
build/styles/block-library/post-featured-image/editor.min.css 717 B
build/styles/block-library/post-featured-image/style-rtl.css 392 B
build/styles/block-library/post-featured-image/style-rtl.min.css 347 B
build/styles/block-library/post-featured-image/style.css 392 B
build/styles/block-library/post-featured-image/style.min.css 347 B
build/styles/block-library/post-navigation-link/style-rtl.css 234 B
build/styles/block-library/post-navigation-link/style-rtl.min.css 215 B
build/styles/block-library/post-navigation-link/style.css 245 B
build/styles/block-library/post-navigation-link/style.min.css 214 B
build/styles/block-library/post-template/style-rtl.css 1.27 kB
build/styles/block-library/post-template/style-rtl.min.css 441 B
build/styles/block-library/post-template/style.css 1.27 kB
build/styles/block-library/post-template/style.min.css 441 B
build/styles/block-library/post-terms/style-rtl.css 108 B
build/styles/block-library/post-terms/style-rtl.min.css 96 B
build/styles/block-library/post-terms/style.css 108 B
build/styles/block-library/post-terms/style.min.css 96 B
build/styles/block-library/post-time-to-read/style-rtl.css 77 B
build/styles/block-library/post-time-to-read/style-rtl.min.css 70 B
build/styles/block-library/post-time-to-read/style.css 77 B
build/styles/block-library/post-time-to-read/style.min.css 70 B
build/styles/block-library/post-title/style-rtl.css 175 B
build/styles/block-library/post-title/style-rtl.min.css 162 B
build/styles/block-library/post-title/style.css 175 B
build/styles/block-library/post-title/style.min.css 162 B
build/styles/block-library/preformatted/style-rtl.css 511 B
build/styles/block-library/preformatted/style-rtl.min.css 125 B
build/styles/block-library/preformatted/style.css 511 B
build/styles/block-library/preformatted/style.min.css 125 B
build/styles/block-library/pullquote/editor-rtl.css 146 B
build/styles/block-library/pullquote/editor-rtl.min.css 133 B
build/styles/block-library/pullquote/editor.css 146 B
build/styles/block-library/pullquote/editor.min.css 133 B
build/styles/block-library/pullquote/style-rtl.css 765 B
build/styles/block-library/pullquote/style-rtl.min.css 365 B
build/styles/block-library/pullquote/style.css 764 B
build/styles/block-library/pullquote/style.min.css 365 B
build/styles/block-library/pullquote/theme-rtl.css 195 B
build/styles/block-library/pullquote/theme-rtl.min.css 176 B
build/styles/block-library/pullquote/theme.css 195 B
build/styles/block-library/pullquote/theme.min.css 176 B
build/styles/block-library/query-pagination-numbers/editor-rtl.css 134 B
build/styles/block-library/query-pagination-numbers/editor-rtl.min.css 121 B
build/styles/block-library/query-pagination-numbers/editor.css 144 B
build/styles/block-library/query-pagination-numbers/editor.min.css 118 B
build/styles/block-library/query-pagination/editor-rtl.css 168 B
build/styles/block-library/query-pagination/editor-rtl.min.css 154 B
build/styles/block-library/query-pagination/editor.css 168 B
build/styles/block-library/query-pagination/editor.min.css 154 B
build/styles/block-library/query-pagination/style-rtl.css 254 B
build/styles/block-library/query-pagination/style-rtl.min.css 237 B
build/styles/block-library/query-pagination/style.css 265 B
build/styles/block-library/query-pagination/style.min.css 237 B
build/styles/block-library/query-title/style-rtl.css 71 B
build/styles/block-library/query-title/style-rtl.min.css 64 B
build/styles/block-library/query-title/style.css 71 B
build/styles/block-library/query-title/style.min.css 64 B
build/styles/block-library/query-total/style-rtl.css 71 B
build/styles/block-library/query-total/style-rtl.min.css 64 B
build/styles/block-library/query-total/style.css 71 B
build/styles/block-library/query-total/style.min.css 64 B
build/styles/block-library/query/editor-rtl.css 1.28 kB
build/styles/block-library/query/editor-rtl.min.css 438 B
build/styles/block-library/query/editor.css 1.28 kB
build/styles/block-library/query/editor.min.css 438 B
build/styles/block-library/quote/style-rtl.css 255 B
build/styles/block-library/quote/style-rtl.min.css 238 B
build/styles/block-library/quote/style.css 256 B
build/styles/block-library/quote/style.min.css 238 B
build/styles/block-library/quote/theme-rtl.css 253 B
build/styles/block-library/quote/theme-rtl.min.css 233 B
build/styles/block-library/quote/theme.css 254 B
build/styles/block-library/quote/theme.min.css 236 B
build/styles/block-library/read-more/style-rtl.css 146 B
build/styles/block-library/read-more/style-rtl.min.css 131 B
build/styles/block-library/read-more/style.css 146 B
build/styles/block-library/read-more/style.min.css 131 B
build/styles/block-library/reset-rtl.css 936 B
build/styles/block-library/reset-rtl.min.css 467 B
build/styles/block-library/reset.css 936 B
build/styles/block-library/reset.min.css 467 B
build/styles/block-library/rss/editor-rtl.css 144 B
build/styles/block-library/rss/editor-rtl.min.css 126 B
build/styles/block-library/rss/editor.css 144 B
build/styles/block-library/rss/editor.min.css 126 B
build/styles/block-library/rss/style-rtl.css 1.11 kB
build/styles/block-library/rss/style-rtl.min.css 284 B
build/styles/block-library/rss/style.css 1.12 kB
build/styles/block-library/rss/style.min.css 283 B
build/styles/block-library/search/editor-rtl.css 217 B
build/styles/block-library/search/editor-rtl.min.css 199 B
build/styles/block-library/search/editor.css 217 B
build/styles/block-library/search/editor.min.css 199 B
build/styles/block-library/search/style-rtl.css 1.1 kB
build/styles/block-library/search/style-rtl.min.css 665 B
build/styles/block-library/search/style.css 1.1 kB
build/styles/block-library/search/style.min.css 666 B
build/styles/block-library/search/theme-rtl.css 130 B
build/styles/block-library/search/theme-rtl.min.css 113 B
build/styles/block-library/search/theme.css 130 B
build/styles/block-library/search/theme.min.css 113 B
build/styles/block-library/separator/editor-rtl.css 106 B
build/styles/block-library/separator/editor-rtl.min.css 100 B
build/styles/block-library/separator/editor.css 106 B
build/styles/block-library/separator/editor.min.css 100 B
build/styles/block-library/separator/style-rtl.css 284 B
build/styles/block-library/separator/style-rtl.min.css 248 B
build/styles/block-library/separator/style.css 297 B
build/styles/block-library/separator/style.min.css 248 B
build/styles/block-library/separator/theme-rtl.css 226 B
build/styles/block-library/separator/theme-rtl.min.css 195 B
build/styles/block-library/separator/theme.css 226 B
build/styles/block-library/separator/theme.min.css 195 B
build/styles/block-library/shortcode/editor-rtl.css 1.1 kB
build/styles/block-library/shortcode/editor-rtl.min.css 286 B
build/styles/block-library/shortcode/editor.css 1.1 kB
build/styles/block-library/shortcode/editor.min.css 286 B
build/styles/block-library/site-logo/editor-rtl.css 1.12 kB
build/styles/block-library/site-logo/editor-rtl.min.css 696 B
build/styles/block-library/site-logo/editor.css 1.12 kB
build/styles/block-library/site-logo/editor.min.css 692 B
build/styles/block-library/site-logo/style-rtl.css 239 B
build/styles/block-library/site-logo/style-rtl.min.css 218 B
build/styles/block-library/site-logo/style.css 238 B
build/styles/block-library/site-logo/style.min.css 218 B
build/styles/block-library/site-tagline/editor-rtl.css 94 B
build/styles/block-library/site-tagline/editor-rtl.min.css 87 B
build/styles/block-library/site-tagline/editor.css 94 B
build/styles/block-library/site-tagline/editor.min.css 87 B
build/styles/block-library/site-tagline/style-rtl.css 72 B
build/styles/block-library/site-tagline/style-rtl.min.css 65 B
build/styles/block-library/site-tagline/style.css 72 B
build/styles/block-library/site-tagline/style.min.css 65 B
build/styles/block-library/site-title/editor-rtl.css 93 B
build/styles/block-library/site-title/editor-rtl.min.css 85 B
build/styles/block-library/site-title/editor.css 93 B
build/styles/block-library/site-title/editor.min.css 85 B
build/styles/block-library/site-title/style-rtl.css 153 B
build/styles/block-library/site-title/style-rtl.min.css 143 B
build/styles/block-library/site-title/style.css 153 B
build/styles/block-library/site-title/style.min.css 143 B
build/styles/block-library/social-link/editor-rtl.css 346 B
build/styles/block-library/social-link/editor-rtl.min.css 314 B
build/styles/block-library/social-link/editor.css 348 B
build/styles/block-library/social-link/editor.min.css 314 B
build/styles/block-library/social-links/editor-rtl.css 737 B
build/styles/block-library/social-links/editor-rtl.min.css 339 B
build/styles/block-library/social-links/editor.css 738 B
build/styles/block-library/social-links/editor.min.css 338 B
build/styles/block-library/social-links/style-rtl.css 1.57 kB
build/styles/block-library/social-links/style-rtl.min.css 1.51 kB
build/styles/block-library/social-links/style.css 1.57 kB
build/styles/block-library/social-links/style.min.css 1.51 kB
build/styles/block-library/spacer/editor-rtl.css 774 B
build/styles/block-library/spacer/editor-rtl.min.css 346 B
build/styles/block-library/spacer/editor.css 774 B
build/styles/block-library/spacer/editor.min.css 346 B
build/styles/block-library/spacer/style-rtl.css 55 B
build/styles/block-library/spacer/style-rtl.min.css 48 B
build/styles/block-library/spacer/style.css 55 B
build/styles/block-library/spacer/style.min.css 48 B
build/styles/block-library/style-rtl.css 21.5 kB
build/styles/block-library/style-rtl.min.css 18 kB
build/styles/block-library/style.css 21.6 kB
build/styles/block-library/style.min.css 18 kB
build/styles/block-library/tab-list/editor-rtl.css 107 B
build/styles/block-library/tab-list/editor-rtl.min.css 97 B
build/styles/block-library/tab-list/editor.css 107 B
build/styles/block-library/tab-list/editor.min.css 97 B
build/styles/block-library/tab-panel/style-rtl.css 238 B
build/styles/block-library/tab-panel/style-rtl.min.css 215 B
build/styles/block-library/tab-panel/style.css 238 B
build/styles/block-library/tab-panel/style.min.css 215 B
build/styles/block-library/tab-panels/style-rtl.css 76 B
build/styles/block-library/tab-panels/style-rtl.min.css 65 B
build/styles/block-library/tab-panels/style.css 76 B
build/styles/block-library/tab-panels/style.min.css 65 B
build/styles/block-library/tab/editor-rtl.css 160 B
build/styles/block-library/tab/editor-rtl.min.css 148 B
build/styles/block-library/tab/editor.css 160 B
build/styles/block-library/tab/editor.min.css 148 B
build/styles/block-library/tab/style-rtl.css 397 B
build/styles/block-library/tab/style-rtl.min.css 352 B
build/styles/block-library/tab/style.css 398 B
build/styles/block-library/tab/style.min.css 356 B
build/styles/block-library/table-of-contents/style-rtl.css 89 B
build/styles/block-library/table-of-contents/style-rtl.min.css 83 B
build/styles/block-library/table-of-contents/style.css 89 B
build/styles/block-library/table-of-contents/style.min.css 83 B
build/styles/block-library/table/editor-rtl.css 1.25 kB
build/styles/block-library/table/editor-rtl.min.css 394 B
build/styles/block-library/table/editor.css 1.25 kB
build/styles/block-library/table/editor.min.css 394 B
build/styles/block-library/table/style-rtl.css 1.06 kB
build/styles/block-library/table/style-rtl.min.css 641 B
build/styles/block-library/table/style.css 1.06 kB
build/styles/block-library/table/style.min.css 640 B
build/styles/block-library/table/theme-rtl.css 985 B
build/styles/block-library/table/theme-rtl.min.css 152 B
build/styles/block-library/table/theme.css 985 B
build/styles/block-library/table/theme.min.css 152 B
build/styles/block-library/tabs/style-rtl.css 64 B
build/styles/block-library/tabs/style-rtl.min.css 57 B
build/styles/block-library/tabs/style.css 64 B
build/styles/block-library/tabs/style.min.css 57 B
build/styles/block-library/tag-cloud/style-rtl.css 283 B
build/styles/block-library/tag-cloud/style-rtl.min.css 248 B
build/styles/block-library/tag-cloud/style.css 283 B
build/styles/block-library/tag-cloud/style.min.css 248 B
build/styles/block-library/template-part/editor-rtl.css 1.2 kB
build/styles/block-library/template-part/editor-rtl.min.css 368 B
build/styles/block-library/template-part/editor.css 1.2 kB
build/styles/block-library/template-part/editor.min.css 368 B
build/styles/block-library/template-part/theme-rtl.css 492 B
build/styles/block-library/template-part/theme-rtl.min.css 113 B
build/styles/block-library/template-part/theme.css 492 B
build/styles/block-library/template-part/theme.min.css 113 B
build/styles/block-library/term-count/style-rtl.css 70 B
build/styles/block-library/term-count/style-rtl.min.css 63 B
build/styles/block-library/term-count/style.css 70 B
build/styles/block-library/term-count/style.min.css 63 B
build/styles/block-library/term-description/style-rtl.css 138 B
build/styles/block-library/term-description/style-rtl.min.css 126 B
build/styles/block-library/term-description/style.css 138 B
build/styles/block-library/term-description/style.min.css 126 B
build/styles/block-library/term-name/style-rtl.css 69 B
build/styles/block-library/term-name/style-rtl.min.css 62 B
build/styles/block-library/term-name/style.css 69 B
build/styles/block-library/term-name/style.min.css 62 B
build/styles/block-library/term-template/editor-rtl.css 267 B
build/styles/block-library/term-template/editor-rtl.min.css 225 B
build/styles/block-library/term-template/editor.css 267 B
build/styles/block-library/term-template/editor.min.css 225 B
build/styles/block-library/term-template/style-rtl.css 124 B
build/styles/block-library/term-template/style-rtl.min.css 114 B
build/styles/block-library/term-template/style.css 124 B
build/styles/block-library/term-template/style.min.css 114 B
build/styles/block-library/text-columns/editor-rtl.css 481 B
build/styles/block-library/text-columns/editor-rtl.min.css 95 B
build/styles/block-library/text-columns/editor.css 481 B
build/styles/block-library/text-columns/editor.min.css 95 B
build/styles/block-library/text-columns/style-rtl.css 177 B
build/styles/block-library/text-columns/style-rtl.min.css 165 B
build/styles/block-library/text-columns/style.css 177 B
build/styles/block-library/text-columns/style.min.css 165 B
build/styles/block-library/theme-rtl.css 1.59 kB
build/styles/block-library/theme-rtl.min.css 715 B
build/styles/block-library/theme.css 1.6 kB
build/styles/block-library/theme.min.css 719 B
build/styles/block-library/verse/style-rtl.css 155 B
build/styles/block-library/verse/style-rtl.min.css 137 B
build/styles/block-library/verse/style.css 155 B
build/styles/block-library/verse/style.min.css 137 B
build/styles/block-library/video/editor-rtl.css 839 B
build/styles/block-library/video/editor-rtl.min.css 428 B
build/styles/block-library/video/editor.css 840 B
build/styles/block-library/video/editor.min.css 428 B
build/styles/block-library/video/style-rtl.css 1.02 kB
build/styles/block-library/video/style-rtl.min.css 202 B
build/styles/block-library/video/style.css 1.02 kB
build/styles/block-library/video/style.min.css 202 B
build/styles/block-library/video/theme-rtl.css 967 B
build/styles/block-library/video/theme-rtl.min.css 134 B
build/styles/block-library/video/theme.css 967 B
build/styles/block-library/video/theme.min.css 134 B
build/styles/commands/style-rtl.css 2.07 kB
build/styles/commands/style-rtl.min.css 1.17 kB
build/styles/commands/style.css 2.06 kB
build/styles/commands/style.min.css 1.17 kB
build/styles/components/style-rtl.css 17.3 kB
build/styles/components/style-rtl.min.css 14.1 kB
build/styles/components/style.css 17.4 kB
build/styles/components/style.min.css 14.2 kB
build/styles/customize-widgets/style-rtl.css 2.35 kB
build/styles/customize-widgets/style-rtl.min.css 1.44 kB
build/styles/customize-widgets/style.css 2.35 kB
build/styles/customize-widgets/style.min.css 1.44 kB
build/styles/edit-post/classic-rtl.css 1.29 kB
build/styles/edit-post/classic-rtl.min.css 425 B
build/styles/edit-post/classic.css 1.31 kB
build/styles/edit-post/classic.min.css 428 B
build/styles/edit-post/style-rtl.css 3.51 kB
build/styles/edit-post/style-rtl.min.css 2.21 kB
build/styles/edit-post/style.css 3.51 kB
build/styles/edit-post/style.min.css 2.21 kB
build/styles/edit-site/style-rtl.css 20.3 kB
build/styles/edit-site/style-rtl.min.css 16.5 kB
build/styles/edit-site/style.css 20.4 kB
build/styles/edit-site/style.min.css 16.5 kB
build/styles/edit-widgets/style-rtl.css 4.85 kB
build/styles/edit-widgets/style-rtl.min.css 3.52 kB
build/styles/edit-widgets/style.css 4.85 kB
build/styles/edit-widgets/style.min.css 3.52 kB
build/styles/editor/style-rtl.css 27.2 kB
build/styles/editor/style-rtl.min.css 22.9 kB
build/styles/editor/style.css 27.3 kB
build/styles/editor/style.min.css 22.9 kB
build/styles/format-library/style-rtl.css 735 B
build/styles/format-library/style-rtl.min.css 326 B
build/styles/format-library/style.css 746 B
build/styles/format-library/style.min.css 326 B
build/styles/list-reusable-blocks/style-rtl.css 1.07 kB
build/styles/list-reusable-blocks/style-rtl.min.css 250 B
build/styles/list-reusable-blocks/style.css 1.07 kB
build/styles/list-reusable-blocks/style.min.css 249 B
build/styles/media-utils/style-rtl.css 2.08 kB
build/styles/media-utils/style-rtl.min.css 1.17 kB
build/styles/media-utils/style.css 2.08 kB
build/styles/media-utils/style.min.css 1.17 kB
build/styles/nux/style-rtl.css 1.48 kB
build/styles/nux/style-rtl.min.css 622 B
build/styles/nux/style.css 1.5 kB
build/styles/nux/style.min.css 618 B
build/styles/patterns/style-rtl.css 1.46 kB
build/styles/patterns/style-rtl.min.css 611 B
build/styles/patterns/style.css 1.46 kB
build/styles/patterns/style.min.css 611 B
build/styles/preferences/style-rtl.css 1.26 kB
build/styles/preferences/style-rtl.min.css 415 B
build/styles/preferences/style.css 1.26 kB
build/styles/preferences/style.min.css 415 B
build/styles/reusable-blocks/style-rtl.css 1.11 kB
build/styles/reusable-blocks/style-rtl.min.css 275 B
build/styles/reusable-blocks/style.css 1.11 kB
build/styles/reusable-blocks/style.min.css 275 B
build/styles/widgets/style-rtl.css 2.05 kB
build/styles/widgets/style-rtl.min.css 1.16 kB
build/styles/widgets/style.css 2.06 kB
build/styles/widgets/style.min.css 1.16 kB

compressed-size-action

* Arguments for registering an icon collection.
*
* @type string $label Required. A human-readable label for the icon collection.
* @type string $description Optional. A human-readable description for the icon collection.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I haven't decided yet whether to visually display the collection description, but it probably won't cause any problems if it's included.

t-hamano added a commit to t-hamano/wordpress-develop that referenced this pull request Apr 13, 2026
Expose public APIs for registering third-party SVG icons by grouping them
into collections. Every icon is associated with a single collection
(defaulting to `core`), and icons are uniquely identified by
`{collection-slug}/{icon-slug}`. Unregistering a collection cascades to
all icons within it, and the same icon slug may coexist across different
collections.

New `WP_Icon_Collections_Registry` singleton stores collections.
`WP_Icons_Registry::register()` becomes public, requires a `collection`
property, and gains a matching `unregister()` method. Wrapper functions
`wp_register_icon_collection()`, `wp_unregister_icon_collection()`,
`wp_register_icon()`, and `wp_unregister_icon()` are introduced, and the
default `core` collection plus bundled icons are registered on `init`.
The REST controller gains a `/wp/v2/icons/<namespace>` route for
collection-scoped listings and exposes a `collection` field in responses.

Ports the equivalent functionality from the Gutenberg plugin
(WordPress/gutenberg#77260) to Core, along with covering unit tests.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@t-hamano t-hamano self-assigned this Apr 13, 2026
@t-hamano t-hamano marked this pull request as ready for review April 13, 2026 11:06
@github-actions

github-actions Bot commented Apr 13, 2026

Copy link
Copy Markdown

The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the props-bot label.

If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.

Co-authored-by: t-hamano <wildworks@git.wordpress.org>
Co-authored-by: mcsf <mcsf@git.wordpress.org>
Co-authored-by: Mamaduka <mamaduka@git.wordpress.org>
Co-authored-by: tyxla <tyxla@git.wordpress.org>
Co-authored-by: jsnajdr <jsnajdr@git.wordpress.org>

To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook.

@t-hamano t-hamano requested review from Mamaduka and mcsf April 13, 2026 11:08
@github-actions

github-actions Bot commented Apr 13, 2026

Copy link
Copy Markdown

Flaky tests detected in 306ac80.
Some tests passed with failed attempts. The failures may not be related to this commit but are still reported for visibility. See the documentation for more information.

🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/28235261307
📝 Reported issues:

t-hamano and others added 7 commits April 29, 2026 19:12
Introduce a singleton registry class that lets plugins register icon
collections with a label, description, and categories. This provides the
foundation for a `wp_register_icon_collection()` wrapper and for grouping
icons in the editor UI.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Expose wp_register_icon_collection() / wp_unregister_icon_collection()
as the public API for plugins, and register a default 'wordpress'
collection on init so the registry is populated out of the box. Wire
the new files into lib/load.php so they run under the WP 7.1 compat
layer.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Ensures every icon belongs to a registered collection so the collections
registry can be relied on as the source of truth. Default icon collection
registration runs at init priority 0 so collections exist before the
Gutenberg registry override replays registered icons.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…hooks

Moves core icon registration out of the registry constructor into a
`gutenberg_register_icons` action and registers default collections via
`gutenberg_register_icon_collections`. Both hooks remove the matching
core actions (`_wp_register_default_icons` /
`_wp_register_default_icon_collections`) when present, so the Gutenberg
plugin owns registration end-to-end and stays in sync with future core
registration hooks without double-registering.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Exposes a public registration API on top of the icons registry by
widening `register` visibility and adding a matching `unregister` method
on `WP_Icons_Registry_Gutenberg`. This lets plugins register icons
without reaching into reflection and lets the Gutenberg registration
paths call the public API directly. `gutenberg_register_icons` runs at
the default priority so the registry override at priority 1 has already
replaced the core singleton, allowing the wrapper to resolve the
Gutenberg instance through `WP_Icons_Registry::get_instance()`.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Removes the 'categories' property from the collection registration API
and its validation. Category support adds a second axis of grouping on
top of collections and is best introduced as a follow-up once the base
collection/icon registration API has settled, rather than landing both
at once.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Allow clients to request icons limited to a specific registered collection
via /wp/v2/icons?collection=<slug>. Without this, fetching icons for a given
collection would require downloading all registered icons and filtering on
the client, which scales poorly once large third-party collections are
registered.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Base automatically changed from icons/snake-case to trunk June 22, 2026 12:23
t-hamano and others added 2 commits June 22, 2026 22:23
# Conflicts:
#	lib/class-wp-icons-registry-gutenberg.php
#	lib/compat/wordpress-7.0/class-wp-icons-registry.php
#	phpunit/experimental/class-wp-icons-registry-gutenberg-test.php
The trunk merge pulled in file_path registration tests that used an
unregistered 'test-plugin' collection and a non-.svg temp file. After
the icons API refactor, register() rejects unregistered collections and
get_content() requires a .svg extension, so these tests failed. Use the
registered 'test-collection' and the create_temp_icon_file helper.

Co-Authored-By: Claude <noreply@anthropic.com>
@tyxla

tyxla commented Jun 24, 2026

Copy link
Copy Markdown
Member

What is missing / necessary to move this one forward?

@t-hamano

Copy link
Copy Markdown
Contributor Author

I believe this PR has been approved and is ready for release, but I have one concern. If custom icons are registered through this new API, they will all become selectable in the Icon block.

What if consumers want to centrally manage their own icon sets through this API but do not want to expose them in the icon block? If we ship this PR, I believe we need to consider this point simultaneously.

I am thinking that we may need to implement some kind of parameters, for example, as follows.

// Only icons with "show_in_rest" set to true will be available in the Icon block.
wp_register_icon( 'my-icons/star', array(
    'label'   => 'Star',
    'content' => '<svg/></svg>',
    'show_in_rest' _> true,
) );

// Icons other than these are not exposed to the REST API, but can be retrieved using `wp_get_icon()`.
wp_register_icon( 'my-icons/cog', array(
    'label'   => 'Cog',
    'content' => '<svg/></svg>',
) );

I believe this option would be beneficial for us as well. The @wordpress/icons library was not originally intended as an icon set for post content, which is why we are intentionally limiting the icons exposed to the Icon block, meaning those registered in the icon registry. However, if we want to replace Dashicons with SVG icons in the future, we may need to register icons for the dashboard that we do not want to expose to the Icon block in the icon registry.

@jsnajdr

jsnajdr commented Jun 25, 2026

Copy link
Copy Markdown
Member

If we want to hide an icon from the Icon block, then show_in_rest is a too broad condition. REST API can be used for many other purposes.

We could add a very specific show_in_icon_block flag, there is a lot of prior art for that. Post types have flags like show_in_menu, show_in_nav_menus, show_in_admin_bar. Taxonomies have similar flags, like show_in_quick_edit. Blocks have a JS-only supports.inserter flag that can hide the block from UI inserters.

@tyxla

tyxla commented Jun 25, 2026

Copy link
Copy Markdown
Member

If we want to hide an icon from the Icon block, then show_in_rest is a too broad condition. REST API can be used for many other purposes.

We could add a very specific show_in_icon_block flag, there is a lot of prior art for that. Post types have flags like show_in_menu, show_in_nav_menus, show_in_admin_bar. Taxonomies have similar flags, like show_in_quick_edit. Blocks have a JS-only supports.inserter flag that can hide the block from UI inserters.

I feel like these specific declarations could be done in an iteration. I don't see why they would block the first version of icon registration API. On the contrary - if we open the icon registration API we would get feedback from developers about what additional registration flags they're missing.

@t-hamano

Copy link
Copy Markdown
Contributor Author

Thanks for the feedback! So, shall I smoke test this PR again and if there are no issues, we can ship it?

@tyxla

tyxla commented Jun 25, 2026

Copy link
Copy Markdown
Member

Yes, I'm personally fine with iterating separately with these flags.

@mcsf WDYT?

@mcsf

mcsf commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

Yes, I'm personally fine with iterating separately with these flags.

@mcsf WDYT?

Fine with me too!

I'd like us to have a good look at flags well before 7.1, but — yes — it's fine to iterate. :)

t-hamano and others added 2 commits June 26, 2026 17:48
The trunk merge left two require statements for the WordPress 7.1
icons.php compat file: one inside the WP_REST_Controller block and one
at the top level. Because gutenberg_register_default_icon_collections()
is not guarded by function_exists(), loading the file twice triggered a
fatal "Cannot redeclare" error. Keep the unconditional top-level require
(matching trunk) and drop the duplicate inside the REST block.

Co-Authored-By: Claude <noreply@anthropic.com>
@t-hamano t-hamano merged commit a839793 into trunk Jun 27, 2026
41 checks passed
@t-hamano t-hamano deleted the icons-api-regstration branch June 27, 2026 02:12
@github-actions github-actions Bot added this to the Gutenberg 23.6 milestone Jun 27, 2026
@t-hamano

Copy link
Copy Markdown
Contributor Author

If we want to hide an icon from the Icon block, then show_in_rest is a too broad condition. REST API can be used for many other purposes.

We could add a very specific show_in_icon_block flag, there is a lot of prior art for that. Post types have flags like show_in_menu, show_in_nav_menus, show_in_admin_bar. Taxonomies have similar flags, like show_in_quick_edit. Blocks have a JS-only supports.inserter flag that can hide the block from UI inserters.

I'm considering what name would be best, but icons aren't just used in the Icon block. The icon picker might be introduced in the future to change icons in the Navigation block, Details block, and so on. With that in mind, show_in_icon_block might be too narrow in scope.

Some of my ideas:

  • public
  • show_in_inserter
  • show_in_picker
  • selectable
  • inserter

@mcsf

mcsf commented Jun 29, 2026

Copy link
Copy Markdown
Contributor

It's tricky...

show_in_editor? show_to_users? ¯\_(ツ)_/¯

@jsnajdr

jsnajdr commented Jun 29, 2026

Copy link
Copy Markdown
Member

Some of my ideas:

There should be the show_in_* prefix, because there is established existing usage. Personally I like show_in_picker, show_in_ui or show_in_editor.

SainathPoojary pushed a commit to SainathPoojary/gutenberg that referenced this pull request Jun 29, 2026
* Icons: Add WP_Icon_Collections_Registry for icon collection registration

Introduce a singleton registry class that lets plugins register icon
collections with a label, description, and categories. This provides the
foundation for a `wp_register_icon_collection()` wrapper and for grouping
icons in the editor UI.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Add wrapper functions and default icon collection registration

Expose wp_register_icon_collection() / wp_unregister_icon_collection()
as the public API for plugins, and register a default 'wordpress'
collection on init so the registry is populated out of the box. Wire
the new files into lib/load.php so they run under the WP 7.1 compat
layer.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Require collection when registering icons in Gutenberg registry

Ensures every icon belongs to a registered collection so the collections
registry can be relied on as the source of truth. Default icon collection
registration runs at init priority 0 so collections exist before the
Gutenberg registry override replays registered icons.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Register default icons and collections via Gutenberg-specific hooks

Moves core icon registration out of the registry constructor into a
`gutenberg_register_icons` action and registers default collections via
`gutenberg_register_icon_collections`. Both hooks remove the matching
core actions (`_wp_register_default_icons` /
`_wp_register_default_icon_collections`) when present, so the Gutenberg
plugin owns registration end-to-end and stays in sync with future core
registration hooks without double-registering.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Add wp_register_icon / wp_unregister_icon public API

Exposes a public registration API on top of the icons registry by
widening `register` visibility and adding a matching `unregister` method
on `WP_Icons_Registry_Gutenberg`. This lets plugins register icons
without reaching into reflection and lets the Gutenberg registration
paths call the public API directly. `gutenberg_register_icons` runs at
the default priority so the registry override at priority 1 has already
replaced the core singleton, allowing the wrapper to resolve the
Gutenberg instance through `WP_Icons_Registry::get_instance()`.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Drop category support from icon collections

Removes the 'categories' property from the collection registration API
and its validation. Category support adds a second axis of grouping on
top of collections and is best introduced as a follow-up once the base
collection/icon registration API has settled, rather than landing both
at once.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Filter REST icons endpoint by collection slug

Allow clients to request icons limited to a specific registered collection
via /wp/v2/icons?collection=<slug>. Without this, fetching icons for a given
collection would require downloading all registered icons and filtering on
the client, which scales poorly once large third-party collections are
registered.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Add collection-scoped REST route and unify default slug to "core"

Exposes `/wp/v2/icons/<namespace>` alongside the existing list and
single-item routes, mirroring the hierarchical URL style used by
block-types. The same `get_items` handler serves both the global list
and the collection-scoped listing via the URL-captured `namespace`
parameter, which is also formally declared in `get_collection_params`.

The default icon collection slug is renamed from `wordpress` to `core`
so that it matches the namespace prefix (`core/`) used by bundled
icons, removing the confusing split between namespace and collection
identifiers.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Decouple icon name from collection slug at the public API layer

Callers of `wp_register_icon` now pass an unqualified icon name (e.g.
`arrow-left`) together with a `collection` slug, instead of encoding
both into a single namespaced string (`core/arrow-left`). The registry
continues to key storage by `<collection>/<name>` internally so that
the existing single-item REST route, cross-collection name-collision
protection, and `is_registered`/`get_registered_icon` lookups keep
working without broader changes.

The REST response is reshaped to match: icons now expose separate
`collection` and `name` fields instead of a single namespaced `name`,
which lines up with the hierarchical `/icons/<collection>` route added
earlier and avoids clients having to parse the slash-delimited form.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Keep namespaced name in REST response and delegate to parent

The previous commit reshaped the icon response to return an unqualified
`name` plus a separate `collection` field, but that diverges from the
namespaced identifier clients already use to address single items via
`/icons/<collection>/<name>`. Restore the namespaced `name` so the
response value can be used as-is for lookups, and keep `collection` as
an additional field for convenience. Reimplement the override as a
thin wrapper around the parent method to avoid duplicating the base
field-filtering logic.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Update registry tests for unqualified-name registration

Rework the existing tests to match the current registration contract:
callers pass an unqualified icon name together with a `collection`
slug, and the registry stores items under a `<collection>/<name>` key.
Set up a test collection in `set_up`/`tear_down` so the registration
path has a valid collection to target, and refresh the invalid-name
fixtures to reflect that slashes are now rejected at input rather than
required.

Add coverage for the collection requirement itself (missing /
non-string / unregistered collection) and for cross-collection name
reuse, since the split between name and collection is the core
behavior that differs from the previous namespaced-name design.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Rename gutenberg_register_icons to gutenberg_register_default_icons

Makes the bootstrap function's intent explicit: it specifically seeds
the default `core` collection from the bundled manifest, mirroring the
naming of `gutenberg_register_icon_collections` which seeds the
default collection itself. The prior generic name was easy to mistake
for a public registration helper.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Rename gutenberg_register_icon_collections for naming parity

Matches the earlier rename of the icon bootstrap function to
`gutenberg_register_default_icons`, so both helpers that seed the
bundled defaults share a `_default_` marker and read as clearly
internal rather than part of the public registration API.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icon block: Request full icon list without pagination

The inserter needs every registered icon to populate its picker, but
the default `getEntityRecords` request paginates to the first page
only, which silently truncates the list once more than a page's worth
of icons are registered (e.g. once plugins contribute their own
collections). Passing `per_page: -1` forces the resolver's chunked
fetch path so the picker always reflects the full registry.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Align variable assignment formatting with WPCS

Matches the WordPress coding standard's variable-alignment rule, so
phpcbf no longer rewrites these lines on contributors' pre-commit
runs.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Cascade icon removal when unregistering a collection

Unregistering a collection previously left its icons in the icons
registry, which produced orphaned entries still reachable through
`/wp/v2/icons` and `/wp/v2/icons/<collection>/<name>` even though the
collection-scoped route returned 404. Cascade the removal so the two
registries stay consistent, and add a regression test covering both
the cascade and the fact that icons in unrelated collections are left
alone.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Take collection as a separate argument in register/unregister

Lifts the collection slug out of the `$args` array and the qualified
`<collection>/<name>` string into its own required parameter on both
`wp_register_icon`/`wp_unregister_icon` and the underlying registry
methods. The symmetric `( $icon_name, $collection, ... )` shape makes
the dependency between an icon and its collection explicit at the
call site, avoids callers having to manually concatenate the
qualified name just to remove an icon, and keeps the public API in
line with the internal storage convention where the two values are
always tracked separately.

The collection-cascade in `WP_Icon_Collections_Registry::unregister`
is updated accordingly to pass the unqualified name and slug to the
new signature.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Use __() for the default collection label

`_x()` takes a context string as its second argument, but the call was
passing the text domain, so the string was being registered with an
unintended context and never picking up the translation. Switch to
`__()` so the label is translatable via the `gutenberg` text domain
the same way as the surrounding strings.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Fix word order in manifest validation error message

The existing message read "valid a \"filePath\"" due to a transposed
article. Correct it to "a valid \"filePath\"" so the error is readable
and translatable in a natural form.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Use matching version in collection unregister _doing_it_wrong

The `_doing_it_wrong` call in `WP_Icon_Collections_Registry::unregister`
referenced a future `21.4.0` marker, but the rest of this class (and
the surrounding icons API it ships with) consistently reports `7.1.0`
as the introduction version. Align the version argument so all
`_doing_it_wrong` notices from this file point at the same release.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Guard collection registration against non-array properties

Without this check, passing anything other than an array as the second
argument (e.g. null, a string, or a forgotten argument from a partial
refactor) reached `array_keys` / `array_fill_keys` and produced a
PHP type error or warning instead of a clean `_doing_it_wrong`
notice. Fail early with the same pattern used for the other
validation branches so misuse is surfaced as a developer warning and
the registration simply returns false.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Validate the namespace query param shape at the REST boundary

The URL-segment route already restricts the capture to the collection
slug pattern, but the same parameter as a query string had only a
`string` type check. Adding the matching `pattern` lets
`rest_validate_request_arg` reject malformed input with a 400 before
the handler runs, instead of funnelling everything through the
404-on-unregistered-collection path.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Exercise each invalid-name case individually in the data provider

`test_register_invalid_name` was annotated with `@dataProvider` but
ignored the argument and looped over the provider manually, so every
run received an array (e.g. `[ 'Plus' ]`) as the name and only the
non-string branch of the validator was actually hit. Accept `$name`
from the provider and drop the manual loop so each case — slash,
uppercase, leading underscore, non-string — is covered as a separate
assertion in the failure output.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Target the Gutenberg icons registry directly in cascade removal

The cascade fetched the icons registry via the base class singleton,
which stays in sync with the Gutenberg subclass only after
`gutenberg_override_wp_icons_registry()` has run. Anything that
resets the subclass singleton on its own (notably the PHPUnit
`tear_down` between tests) leaves the two pointers diverged, and the
cascade then iterates a stale instance and silently no-ops -- which
is exactly what made `test_unregister_collection_cascades_to_icons`
fail intermittently.

The collections registry is shipped only with Gutenberg and only
Gutenberg-registered icons carry a `collection` field for the cascade
to match on, so resolving to `WP_Icons_Registry_Gutenberg` directly
is both accurate and removes the singleton-sync dependency.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Add backport changelog entry for 7.1

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Add unregister tests and relocate cascade test

Cover unregister() success and unknown-icon paths in the icons registry
test, and move the collection-cascade test out to the collections suite
where it belongs.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icons: Add unit tests for WP_Icon_Collections_Registry

Mirror the coverage in core's tests/phpunit/tests/icons/wpIconCollectionsRegistry.php
so the Gutenberg copy of the collections registry is exercised the same
way, including the cascade-to-icons behavior via the Gutenberg icons
registry.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Icon block: Drop unused per_page query arg

The icons REST controller does not paginate, so passing { per_page: -1 } has no effect and only adds a redundant query parameter.

* Icon collections registry: Use a plain list for allowed property keys

Replace the array_fill_keys/array_key_exists pair with a plain list
checked via in_array, since only two keys are permitted and the
indirection adds no value at this scale.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Fix incorrect WP version

Co-authored-by: Miguel Fonseca <150562+mcsf@users.noreply.github.com>

* Icons: Keep collection inside $args on wp_register_icon

Reverts the public registration wrapper to the original
`wp_register_icon( $icon_name, $args )` shape and lets `collection`
travel as a required key inside `$args`, alongside `label`, `content`,
and `filePath`. The unqualified-name benefit of the previous change
only applied to `wp_unregister_icon`, where callers no longer have to
concatenate `<collection>/<name>` themselves; on the registration
side the qualified-name issue never existed, so splitting `collection`
out as a positional parameter just for symmetry was unnecessary
churn for callers.

`wp_unregister_icon( $icon_name, $collection )` and the underlying
registry methods are left as is.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Icons: Default collection to "core" when omitted on register

Treat the `collection` property of `WP_Icons_Registry::register()` as
optional and fall back to the built-in `core` collection when callers
do not specify one. The validation that previously rejected a missing
collection now only fires when a non-string value is passed; an
unregistered collection slug still triggers `_doing_it_wrong`.

Plugin authors registering a small number of icons no longer need to
know about the collection concept at all — they can register icons
directly into `core` by omitting the field. Authors that want their
own namespace can still pass `collection` explicitly after registering
a collection through `wp_register_icon_collection()`.

The internal docblock and the `wp_register_icon` wrapper docblock are
updated to mark `collection` as optional with the new default. The
`test_register_requires_collection` test is replaced with
`test_register_defaults_collection_to_core`, which asserts that an
omitted collection lands the icon under `core/<name>`.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Icon collections registry: Use strict comparison in in_array

Adds the `true` strict-mode argument to the allowed-keys check so
that property names are compared by both type and value, satisfying
WPCS WordPress.PHP.StrictInArray and matching the rest of the file's
strict-typed validation.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Icons: Clarify default collection description as "Core"

Aligns the wording with the slug ("core") so the description reflects
the collection identity rather than its default-registration status.

* Icons: Use snake_case `file_path` key in PHP icon manifest and registry

The generated `manifest.php` and the PHP icon registry exposed the icon
path under a camelCase `filePath` key, which is inconsistent with PHP/WP
array-key conventions. Rename it to `file_path` across the manifest PHP
generator, both registry classes, and the test docblock. The
`manifest.json` source intentionally keeps `filePath` (JS convention).

Because the Gutenberg override inherits `get_content()` from the base
class, also override `get_content()` in `WP_Icons_Registry_Gutenberg` so
content is read from the `file_path` property even when the base class
comes from WordPress core (which may still use `filePath`), preventing a
key mismatch that would silently break icon content retrieval.

Co-Authored-By: Claude <noreply@anthropic.com>

* Add backport changelog

* Icons: Keep camelCase filePath in manifest, convert to file_path only in registry

The previous commit renamed the icon path key to snake_case file_path
across both the generated manifest.php and its generator. The manifest
mirrors the JS manifest.json, which uses camelCase filePath, so the
generated PHP manifest should keep filePath for consistency with its
source. Revert the generator and manifest.php back to filePath.

The PHP registry still exposes the path as file_path (PHP/WP array-key
convention), so register_collection now reads the camelCase filePath
from the manifest and converts it to file_path when registering. This
confines the filePath-to-file_path conversion to the registry boundary.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Rename icon registration property from filePath to file_path

Align the icon registration API property with WordPress snake_case
conventions following the base branch change. The manifest JSON key
(`$icon_data['filePath']`) stays camelCase since it mirrors the JS
manifest format.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Register icons by namespaced "collection/name" string

Replace the separate icon name and collection arguments with a single
namespaced name in the form "collection/icon-name" (e.g. "core/arrow-left"),
mirroring how block types are named. The collection is now derived from the
name string instead of a `collection` property, and `wp_unregister_icon`
takes the same namespaced name so the register/unregister pair stays
symmetric. Names without a prefix still default to the "core" collection.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Validate icon file path before reading content

Custom icons can be registered with a `file_path`, but the path was never
checked before `file_get_contents()`, so a missing, unreadable, non-SVG, or
non-string path emitted a raw PHP warning and a misleading "invalid SVG
markup" error. Guard `get_content()` with the same validation core uses in
`WP_Block_Patterns_Registry`: resolve via `realpath()`, then require an
`.svg` extension, a regular file, and readability, returning null with a
clear message otherwise.

Override `get_content()` in `WP_Icons_Registry_Gutenberg` as well so the
validation applies when the base `WP_Icons_Registry` is provided by core
instead of the compat shim. Add tests covering valid and invalid file paths.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Preserve original priority when removing core init actions

has_action() returns the registered priority (or false), which is 0
for the priority-0 hooks. The previous truthy check skipped removal at
priority 0, and remove_action() assumed the default priority 10. Capture
the returned priority, compare with !== false, and pass it to
remove_action() so the core actions are removed regardless of priority.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Allow digits in icon collection slugs

Mirror register_block_type's name validation by accepting lowercase
alphanumeric characters and hyphens. The previous rule rejected digits,
which blocked legitimate slugs such as "i18n" or icon variations that
include numbers. Update the slug tests accordingly: digit-containing
slugs are now valid, and underscores remain rejected.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Add unit tests for the `file_path` icon property

The registry rename to snake_case `file_path` only updated test docblocks
without exercising the property. Cover registering via `file_path`, reading
content from the referenced file, and rejecting icons that supply both or
neither of `content`/`file_path`.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Require namespaced "collection/name" for icon registration

Previously, registering an icon without a collection prefix silently
defaulted to the "core" collection, letting third-party code register
icons under the reserved core namespace by omitting the prefix. Require
an explicit "collection/icon-name" form and reject non-namespaced names.

Co-Authored-By: Claude <noreply@anthropic.com>

* Icons: Drop redundant comments in icon name validation

Co-Authored-By: Claude <noreply@anthropic.com>

* Tests: align merged icon file_path tests with collection requirement

The trunk merge pulled in file_path registration tests that used an
unregistered 'test-plugin' collection and a non-.svg temp file. After
the icons API refactor, register() rejects unregistered collections and
get_content() requires a .svg extension, so these tests failed. Use the
registered 'test-collection' and the create_temp_icon_file helper.

Co-Authored-By: Claude <noreply@anthropic.com>

* Fix duplicate icons.php require causing fatal redeclare error

The trunk merge left two require statements for the WordPress 7.1
icons.php compat file: one inside the WP_REST_Controller block and one
at the top level. Because gutenberg_register_default_icon_collections()
is not guarded by function_exists(), loading the file twice triggered a
fatal "Cannot redeclare" error. Keep the unconditional top-level require
(matching trunk) and drop the duplicate inside the REST block.

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: t-hamano <wildworks@git.wordpress.org>
Co-authored-by: mcsf <mcsf@git.wordpress.org>
Co-authored-by: Mamaduka <mamaduka@git.wordpress.org>
Co-authored-by: tyxla <tyxla@git.wordpress.org>
Co-authored-by: jsnajdr <jsnajdr@git.wordpress.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

[Block] Icon Affects the Icon block [Feature] Icons Related to Icon registration API and Icon REST API Needs Dev Note Requires a developer note for a major WordPress release cycle [Type] Enhancement A suggestion for improvement.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants