Skip to content

Commit ea2bca2

Browse files
author
deployment_bot
committed
Refresh WordPress Nightly
1 parent 47112d1 commit ea2bca2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+10780
-25727
lines changed

packages/playground/wordpress-builds/public/wp-nightly/wordpress-remote-asset-paths

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,10 @@ wp-includes/blocks/query-pagination/editor.css
802802
wp-includes/blocks/query-pagination/editor-rtl.min.css
803803
wp-includes/blocks/query-pagination/style-rtl.min.css
804804
wp-includes/blocks/math/block.json
805+
wp-includes/blocks/math/editor-rtl.css
806+
wp-includes/blocks/math/editor.min.css
807+
wp-includes/blocks/math/editor.css
808+
wp-includes/blocks/math/editor-rtl.min.css
805809
wp-includes/blocks/gallery/block.json
806810
wp-includes/blocks/gallery/style.min.css
807811
wp-includes/blocks/gallery/style.css
Binary file not shown.

packages/playground/wordpress-builds/public/wp-nightly/wp-includes/blocks/accordion-heading/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "core/accordion-heading",
55
"title": "Accordion Heading",
66
"category": "design",
7-
"description": "Displays an accordion heading.",
7+
"description": "Toggles the accordion panel.",
88
"parent": [ "core/accordion-item" ],
99
"usesContext": [
1010
"core/accordion-icon-position",

packages/playground/wordpress-builds/public/wp-nightly/wp-includes/blocks/accordion-item/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "core/accordion-item",
55
"title": "Accordion Item",
66
"category": "design",
7-
"description": "Displays a section of content in an accordion, including a heading and expandable content.",
7+
"description": "Wraps the heading and panel in one unit.",
88
"parent": [ "core/accordion" ],
99
"allowedBlocks": [ "core/accordion-heading", "core/accordion-panel" ],
1010
"supports": {

packages/playground/wordpress-builds/public/wp-nightly/wp-includes/blocks/accordion-panel/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "core/accordion-panel",
55
"title": "Accordion Panel",
66
"category": "design",
7-
"description": "Displays an accordion panel.",
7+
"description": "Contains the hidden or revealed content beneath the heading.",
88
"parent": [ "core/accordion-item" ],
99
"supports": {
1010
"html": false,

packages/playground/wordpress-builds/public/wp-nightly/wp-includes/blocks/accordion/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "core/accordion",
55
"title": "Accordion",
66
"category": "design",
7-
"description": "Displays a group of accordion headings and associated expandable content.",
7+
"description": "Displays a foldable layout that groups content in collapsible sections.",
88
"example": {},
99
"supports": {
1010
"anchor": true,

packages/playground/wordpress-builds/public/wp-nightly/wp-includes/blocks/home-link/block.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"textdomain": "default",
1010
"attributes": {
1111
"label": {
12-
"type": "string"
12+
"type": "string",
13+
"role": "content"
1314
}
1415
},
1516
"usesContext": [

packages/playground/wordpress-builds/public/wp-nightly/wp-includes/blocks/image/view.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,11 @@ const { state, actions, callbacks } = (0,interactivity_namespaceObject.store)(
248248
`;
249249
},
250250
setButtonStyles() {
251-
const { imageId } = (0,interactivity_namespaceObject.getContext)();
252251
const { ref } = (0,interactivity_namespaceObject.getElement)();
252+
if (!ref) {
253+
return;
254+
}
255+
const { imageId } = (0,interactivity_namespaceObject.getContext)();
253256
state.metadata[imageId].imageRef = ref;
254257
state.metadata[imageId].currentSrc = ref.currentSrc;
255258
const {

packages/playground/wordpress-builds/public/wp-nightly/wp-includes/blocks/image/view.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.wp-block-math__textarea-control textarea{
2+
direction:ltr;
3+
font-family:Menlo,Consolas,monaco,monospace;
4+
}

0 commit comments

Comments
 (0)