Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First batch of pre-6.3 RC1 updates #52544

Merged
merged 28 commits into from
Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8382196
Site Editor: Restore quick inserter 'Browse all' button (#52529)
Mamaduka Jul 12, 2023
90fbe99
Patterns: update the title of Pattern block in the block inspector ca…
glendaviesnz Jul 12, 2023
3324c2a
Site Editor Pages: load the appropriate template if posts page set (#…
ramonjd Jul 10, 2023
70fb0f9
Allow editing existing footnote from formats toolbar (#52506)
mcsf Jul 11, 2023
5f76704
Block Editor: Display variation icon in the 'BlockDraggable' componen…
Mamaduka Jul 11, 2023
18ce87a
Patterns: add option to set sync status when adding from wp-admin pat…
glendaviesnz Jul 11, 2023
ee99b2a
Revise LinkControl suggestions UI to use MenuItem (#50978)
richtabor Jun 23, 2023
ca85f26
Fix LinkControl mark highlight to bold (#52517)
richtabor Jul 11, 2023
605f510
Add 'reusable' keyword to Pattern blocks (#52543)
noisysocks Jul 13, 2023
9140547
Fix missing Add Template Part button in Template Parts page (#52542)
noisysocks Jul 12, 2023
ecc1eb8
Tweak copy for the reusable block rename hint (#52581)
richtabor Jul 12, 2023
1591f04
Trim footnote anchors from excerpts (#52518)
mcsf Jul 12, 2023
21eb6d5
Site Editor: Reset device preview type when exiting the editing mode …
Mamaduka Jul 12, 2023
10ea6ae
Make "My patterns" permanently visible (#52531)
jameskoster Jul 12, 2023
ae826fd
Hide site hub when resizing frame upwards to avoid overlap (#52180)
jameskoster Jul 12, 2023
00e685b
Fix "Manage all patterns" link appearance (#52532)
jameskoster Jul 12, 2023
e65260e
Update navigation menu title size & weight in detail panels (#52477)
jameskoster Jul 12, 2023
4ce403f
Site Editor Patterns: Ensure sidebar does not shrink when long patter…
andrewserong Jul 12, 2023
298f5b1
Edit Site: Select templateType from the store inside the useSiteEdito…
arthur791004 Jul 14, 2023
0abfe17
Add width to ensure ellipsis is applied (#52575)
richtabor Jul 13, 2023
521b573
Cover Block: Fix block deprecation when fixed background is enabled (…
t-hamano Jul 13, 2023
4df1030
ResizableFrame: Make keyboard accessible (#52443)
mirka Jul 13, 2023
95363ab
Fix importing classic menus (#52573)
draganescu Jul 13, 2023
97afb26
Site Editor: Fix navigation menu sidebar actions order and label (#52…
Mamaduka Jul 13, 2023
f37e6a3
Avoid errors in Dimension visualizers when switching between iframed …
Mamaduka Jul 13, 2023
56a3806
Patterns: Add client side pagination to patterns list (#52538)
glendaviesnz Jul 13, 2023
bd02332
Site Editor: Make sidebar back button go *back* instead of *up* if po…
noisysocks Jul 13, 2023
ebbd078
Adapt template part hint copy (#52527)
richtabor Jul 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add 'reusable' keyword to Pattern blocks (#52543)
  • Loading branch information
noisysocks authored and tellthemachines committed Jul 13, 2023
commit 605f510c4932805342f12c72a7e77fb0c7c3b82e
2 changes: 1 addition & 1 deletion packages/block-editor/src/store/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ export const getInserterItems = createSelector(
title: reusableBlock.title.raw,
icon,
category: 'reusable',
keywords: [],
keywords: [ 'reusable' ],
isDisabled: false,
utility: 1, // Deprecated.
frecency,
Expand Down
2 changes: 1 addition & 1 deletion packages/block-editor/src/store/test/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -3351,7 +3351,7 @@ describe( 'selectors', () => {
id: 'core/block/1',
initialAttributes: { ref: 1 },
isDisabled: false,
keywords: [],
keywords: [ 'reusable' ],
name: 'core/block',
syncStatus: undefined,
title: 'Reusable Block 1',
Expand Down
1 change: 1 addition & 0 deletions packages/block-library/src/block/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"title": "Pattern",
"category": "reusable",
"description": "Create and save content to reuse across your site. Update the pattern, and the changes apply everywhere it’s used.",
"keywords": [ "reusable" ],
"textdomain": "default",
"attributes": {
"ref": {
Expand Down