diff --git a/src/js/_enqueues/wp/customize/controls.js b/src/js/_enqueues/wp/customize/controls.js index 1d402bc1c3273..7a6e69cf3eb9c 100644 --- a/src/js/_enqueues/wp/customize/controls.js +++ b/src/js/_enqueues/wp/customize/controls.js @@ -1530,7 +1530,7 @@ } // Expand/Collapse accordion sections on click. - section.container.find( '.accordion-section-title button, .customize-section-back' ).on( 'click keydown', function( event ) { + section.container.find( '.accordion-section-title button, .customize-section-back, .accordion-section-title[tabindex]' ).on( 'click keydown', function( event ) { if ( api.utils.isKeydownButNotEnterEvent( event ) ) { return; } @@ -1605,7 +1605,7 @@ content = section.contentContainer, overlay = section.headContainer.closest( '.wp-full-overlay' ), backBtn = content.find( '.customize-section-back' ), - sectionTitle = section.headContainer.find( '.accordion-section-title button' ).first(), + sectionTitle = section.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ).first(), expand, panel; if ( expanded && ! content.hasClass( 'open' ) ) { @@ -2694,7 +2694,7 @@ container = section.headContainer.closest( '.wp-full-overlay-sidebar-content' ), content = section.contentContainer, backBtn = content.find( '.customize-section-back' ), - sectionTitle = section.headContainer.find( '.accordion-section-title button' ).first(), + sectionTitle = section.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ).first(), body = $( document.body ), expand, panel; @@ -2833,7 +2833,7 @@ var meta, panel = this; // Expand/Collapse accordion sections on click. - panel.headContainer.find( '.accordion-section-title button' ).on( 'click keydown', function( event ) { + panel.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ).on( 'click keydown', function( event ) { if ( api.utils.isKeydownButNotEnterEvent( event ) ) { return; } @@ -2937,7 +2937,7 @@ accordionSection = panel.contentContainer, overlay = accordionSection.closest( '.wp-full-overlay' ), container = accordionSection.closest( '.wp-full-overlay-sidebar-content' ), - topPanel = panel.headContainer.find( '.accordion-section-title button' ), + topPanel = panel.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ), backBtn = accordionSection.find( '.customize-panel-back' ), childSections = panel.sections(), skipTransition; diff --git a/src/wp-content/themes/twentytwentyfive/styles/01-evening.json b/src/wp-content/themes/twentytwentyfive/styles/01-evening.json index e270f9fe9b93d..6b9a11aa98589 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/01-evening.json +++ b/src/wp-content/themes/twentytwentyfive/styles/01-evening.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Evening", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/02-noon.json b/src/wp-content/themes/twentytwentyfive/styles/02-noon.json index aac33a46cfda1..32bed51c79303 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/02-noon.json +++ b/src/wp-content/themes/twentytwentyfive/styles/02-noon.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Noon", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/03-dusk.json b/src/wp-content/themes/twentytwentyfive/styles/03-dusk.json index 41ed777abdc11..bbcdf63a196e0 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/03-dusk.json +++ b/src/wp-content/themes/twentytwentyfive/styles/03-dusk.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Dusk", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/04-afternoon.json b/src/wp-content/themes/twentytwentyfive/styles/04-afternoon.json index 6a2840194b3a0..d1edf014d54b5 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/04-afternoon.json +++ b/src/wp-content/themes/twentytwentyfive/styles/04-afternoon.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Afternoon", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/05-twilight.json b/src/wp-content/themes/twentytwentyfive/styles/05-twilight.json index fede67ebd934c..833b4f313365b 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/05-twilight.json +++ b/src/wp-content/themes/twentytwentyfive/styles/05-twilight.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Twilight", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/06-morning.json b/src/wp-content/themes/twentytwentyfive/styles/06-morning.json index cb7ec98e4a73c..60d11737258c1 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/06-morning.json +++ b/src/wp-content/themes/twentytwentyfive/styles/06-morning.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Morning", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/07-sunrise.json b/src/wp-content/themes/twentytwentyfive/styles/07-sunrise.json index ed60e26b87d07..fa5b100370c4d 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/07-sunrise.json +++ b/src/wp-content/themes/twentytwentyfive/styles/07-sunrise.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Sunrise", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/08-midnight.json b/src/wp-content/themes/twentytwentyfive/styles/08-midnight.json index 48019bf2ae0a7..9272d14ef8cd4 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/08-midnight.json +++ b/src/wp-content/themes/twentytwentyfive/styles/08-midnight.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Midnight", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/blocks/01-display.json b/src/wp-content/themes/twentytwentyfive/styles/blocks/01-display.json index 253e45db48fe6..ff8eaae681406 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/blocks/01-display.json +++ b/src/wp-content/themes/twentytwentyfive/styles/blocks/01-display.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Display", "slug": "text-display", diff --git a/src/wp-content/themes/twentytwentyfive/styles/blocks/02-subtitle.json b/src/wp-content/themes/twentytwentyfive/styles/blocks/02-subtitle.json index 216f3b82750e3..bd9640c9d23d4 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/blocks/02-subtitle.json +++ b/src/wp-content/themes/twentytwentyfive/styles/blocks/02-subtitle.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Subtitle", "slug": "text-subtitle", diff --git a/src/wp-content/themes/twentytwentyfive/styles/blocks/03-annotation.json b/src/wp-content/themes/twentytwentyfive/styles/blocks/03-annotation.json index 6d29a840bc599..41391e3cefd18 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/blocks/03-annotation.json +++ b/src/wp-content/themes/twentytwentyfive/styles/blocks/03-annotation.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Annotation", "slug": "text-annotation", diff --git a/src/wp-content/themes/twentytwentyfive/styles/blocks/post-terms-1.json b/src/wp-content/themes/twentytwentyfive/styles/blocks/post-terms-1.json index 77430dcd9f037..5995fbb05c09d 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/blocks/post-terms-1.json +++ b/src/wp-content/themes/twentytwentyfive/styles/blocks/post-terms-1.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Pill shaped", "slug": "post-terms-1", "blockTypes": ["core/post-terms"], diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/01-evening.json b/src/wp-content/themes/twentytwentyfive/styles/colors/01-evening.json index 02acc8ba363e3..56c88fb4be342 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/01-evening.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/01-evening.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Evening", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/02-noon.json b/src/wp-content/themes/twentytwentyfive/styles/colors/02-noon.json index 555b25890ae6d..97b12a57d7e91 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/02-noon.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/02-noon.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Noon", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/03-dusk.json b/src/wp-content/themes/twentytwentyfive/styles/colors/03-dusk.json index 7bbc63355bc61..705c827e19b43 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/03-dusk.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/03-dusk.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Dusk", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/04-afternoon.json b/src/wp-content/themes/twentytwentyfive/styles/colors/04-afternoon.json index 2a5321a649a24..60da74976255d 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/04-afternoon.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/04-afternoon.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Afternoon", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/05-twilight.json b/src/wp-content/themes/twentytwentyfive/styles/colors/05-twilight.json index e54b834d692c2..329164dae1d78 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/05-twilight.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/05-twilight.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Twilight", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/06-morning.json b/src/wp-content/themes/twentytwentyfive/styles/colors/06-morning.json index 98f929904f3f7..43300455c6e4e 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/06-morning.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/06-morning.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Morning", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/07-sunrise.json b/src/wp-content/themes/twentytwentyfive/styles/colors/07-sunrise.json index b320026d09c03..ee39df91eace7 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/07-sunrise.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/07-sunrise.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Sunrise", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/colors/08-midnight.json b/src/wp-content/themes/twentytwentyfive/styles/colors/08-midnight.json index 28151874b63d8..c995e2e7118d4 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/colors/08-midnight.json +++ b/src/wp-content/themes/twentytwentyfive/styles/colors/08-midnight.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "title": "Midnight", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/sections/section-1.json b/src/wp-content/themes/twentytwentyfive/styles/sections/section-1.json index fa153a40f7dae..642f3b2c838bf 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/sections/section-1.json +++ b/src/wp-content/themes/twentytwentyfive/styles/sections/section-1.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "slug": "section-1", "title": "Style 1", diff --git a/src/wp-content/themes/twentytwentyfive/styles/sections/section-2.json b/src/wp-content/themes/twentytwentyfive/styles/sections/section-2.json index e8608327a02c1..81459c04b1a8d 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/sections/section-2.json +++ b/src/wp-content/themes/twentytwentyfive/styles/sections/section-2.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "slug": "section-2", "title": "Style 2", diff --git a/src/wp-content/themes/twentytwentyfive/styles/sections/section-3.json b/src/wp-content/themes/twentytwentyfive/styles/sections/section-3.json index b706a319fc7c4..3d1c0a6e62ddd 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/sections/section-3.json +++ b/src/wp-content/themes/twentytwentyfive/styles/sections/section-3.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "slug": "section-3", "title": "Style 3", diff --git a/src/wp-content/themes/twentytwentyfive/styles/sections/section-4.json b/src/wp-content/themes/twentytwentyfive/styles/sections/section-4.json index 47208dc913fa3..226779b46c2db 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/sections/section-4.json +++ b/src/wp-content/themes/twentytwentyfive/styles/sections/section-4.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "slug": "section-4", "title": "Style 4", diff --git a/src/wp-content/themes/twentytwentyfive/styles/sections/section-5.json b/src/wp-content/themes/twentytwentyfive/styles/sections/section-5.json index c616a4258dc87..c9b37a8ad019a 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/sections/section-5.json +++ b/src/wp-content/themes/twentytwentyfive/styles/sections/section-5.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "slug": "section-5", "title": "Style 5", diff --git a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-1.json b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-1.json index 574fc1f49b7cd..ad6c6cd12cb59 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-1.json +++ b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-1.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Beiruti & Literata", "slug": "typography-preset-1", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-2.json b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-2.json index 1278ded18c108..e3e26b3aa40df 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-2.json +++ b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-2.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Vollkorn & Fira Code", "slug": "typography-preset-2", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-3.json b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-3.json index b149377508750..6d64153e70100 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-3.json +++ b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-3.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Platypi & Ysabeau Office", "slug": "typography-preset-3", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-4.json b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-4.json index b9f32698a5dc9..62a6362d25b4a 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-4.json +++ b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-4.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Roboto Slab & Manrope", "slug": "typography-preset-4", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-5.json b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-5.json index afea028456d62..e30d03ebc392e 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-5.json +++ b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-5.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Literata & Ysabeau Office", "slug": "typography-preset-5", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-6.json b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-6.json index 7abbadb278c5f..d9eb663e847b0 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-6.json +++ b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-6.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Platypi & Literata", "slug": "typography-preset-6", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-7.json b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-7.json index 1378aae692a40..69b1740ae6717 100644 --- a/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-7.json +++ b/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-7.json @@ -1,6 +1,6 @@ { "version": 3, - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "title": "Literata & Fira Sans", "slug": "typography-preset-7", "settings": { diff --git a/src/wp-content/themes/twentytwentyfive/theme.json b/src/wp-content/themes/twentytwentyfive/theme.json index e43b5888af2aa..a8307078653da 100644 --- a/src/wp-content/themes/twentytwentyfive/theme.json +++ b/src/wp-content/themes/twentytwentyfive/theme.json @@ -1,5 +1,5 @@ { - "$schema": "https://schemas.wp.org/trunk/theme.json", + "$schema": "https://schemas.wp.org/wp/6.7/theme.json", "version": 3, "settings": { "appearanceTools": true,