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

Mobile Release v1.101.2 #53936

Merged
merged 14 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
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
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 @@ -1972,7 +1972,7 @@ export const getInserterItems = createSelector(
id,
name: 'core/block',
initialAttributes: { ref: reusableBlock.id },
title: reusableBlock.title.raw,
title: reusableBlock.title?.raw,
icon,
category: 'reusable',
keywords: [ 'reusable' ],
Expand Down
184 changes: 106 additions & 78 deletions packages/block-library/src/audio/test/__snapshots__/edit.native.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ exports[`Audio block renders audio block error state without crashing 1`] = `
]
}
>
<RCTAztecView
<View
accessibilityState={
{
"busy": undefined,
Expand All @@ -143,59 +143,73 @@ exports[`Audio block renders audio block error state without crashing 1`] = `
"selected": undefined,
}
}
accessible={true}
activeFormats={[]}
blockType={
accessibilityValue={
{
"tag": "p",
"max": undefined,
"min": undefined,
"now": undefined,
"text": undefined,
}
}
deleteEnter={true}
disableEditingMenu={false}
accessible={false}
collapsable={false}
focusable={true}
fontFamily="serif"
fontSize={14}
isMultiline={false}
maxImagesWidth={200}
onBackspace={[Function]}
onBlur={[Function]}
onChange={[Function]}
onClick={[Function]}
onContentSizeChange={[Function]}
onEnter={[Function]}
onFocus={[Function]}
onHTMLContentWithCursor={[Function]}
onKeyDown={[Function]}
onPaste={[Function]}
onResponderGrant={[Function]}
onResponderMove={[Function]}
onResponderRelease={[Function]}
onResponderTerminate={[Function]}
onResponderTerminationRequest={[Function]}
onSelectionChange={[Function]}
onStartShouldSetResponder={[Function]}
placeholder="Add caption"
placeholderTextColor="gray"
selectionColor="black"
style={
{
"backgroundColor": undefined,
"maxWidth": undefined,
"minHeight": 0,
>
<RCTAztecView
activeFormats={[]}
blockType={
{
"tag": "p",
}
}
}
text={
{
"eventCount": undefined,
"linkTextColor": undefined,
"selection": null,
"tag": "p",
"text": "",
deleteEnter={true}
disableEditingMenu={false}
fontFamily="serif"
fontSize={14}
isMultiline={false}
maxImagesWidth={200}
onBackspace={[Function]}
onBlur={[Function]}
onChange={[Function]}
onContentSizeChange={[Function]}
onEnter={[Function]}
onFocus={[Function]}
onHTMLContentWithCursor={[Function]}
onKeyDown={[Function]}
onPaste={[Function]}
onSelectionChange={[Function]}
placeholder="Add caption"
placeholderTextColor="gray"
selectionColor="black"
style={
{
"backgroundColor": undefined,
"maxWidth": undefined,
"minHeight": 0,
}
}
}
textAlign="center"
triggerKeyCodes={[]}
/>
text={
{
"eventCount": undefined,
"linkTextColor": undefined,
"selection": null,
"tag": "p",
"text": "",
}
}
textAlign="center"
triggerKeyCodes={[]}
/>
</View>
</View>
</View>
</View>
Expand Down Expand Up @@ -359,7 +373,7 @@ exports[`Audio block renders audio file without crashing 1`] = `
]
}
>
<RCTAztecView
<View
accessibilityState={
{
"busy": undefined,
Expand All @@ -369,59 +383,73 @@ exports[`Audio block renders audio file without crashing 1`] = `
"selected": undefined,
}
}
accessible={true}
activeFormats={[]}
blockType={
accessibilityValue={
{
"tag": "p",
"max": undefined,
"min": undefined,
"now": undefined,
"text": undefined,
}
}
deleteEnter={true}
disableEditingMenu={false}
accessible={false}
collapsable={false}
focusable={true}
fontFamily="serif"
fontSize={14}
isMultiline={false}
maxImagesWidth={200}
onBackspace={[Function]}
onBlur={[Function]}
onChange={[Function]}
onClick={[Function]}
onContentSizeChange={[Function]}
onEnter={[Function]}
onFocus={[Function]}
onHTMLContentWithCursor={[Function]}
onKeyDown={[Function]}
onPaste={[Function]}
onResponderGrant={[Function]}
onResponderMove={[Function]}
onResponderRelease={[Function]}
onResponderTerminate={[Function]}
onResponderTerminationRequest={[Function]}
onSelectionChange={[Function]}
onStartShouldSetResponder={[Function]}
placeholder="Add caption"
placeholderTextColor="gray"
selectionColor="black"
style={
{
"backgroundColor": undefined,
"maxWidth": undefined,
"minHeight": 0,
>
<RCTAztecView
activeFormats={[]}
blockType={
{
"tag": "p",
}
}
}
text={
{
"eventCount": undefined,
"linkTextColor": undefined,
"selection": null,
"tag": "p",
"text": "",
deleteEnter={true}
disableEditingMenu={false}
fontFamily="serif"
fontSize={14}
isMultiline={false}
maxImagesWidth={200}
onBackspace={[Function]}
onBlur={[Function]}
onChange={[Function]}
onContentSizeChange={[Function]}
onEnter={[Function]}
onFocus={[Function]}
onHTMLContentWithCursor={[Function]}
onKeyDown={[Function]}
onPaste={[Function]}
onSelectionChange={[Function]}
placeholder="Add caption"
placeholderTextColor="gray"
selectionColor="black"
style={
{
"backgroundColor": undefined,
"maxWidth": undefined,
"minHeight": 0,
}
}
}
textAlign="center"
triggerKeyCodes={[]}
/>
text={
{
"eventCount": undefined,
"linkTextColor": undefined,
"selection": null,
"tag": "p",
"text": "",
}
}
textAlign="center"
triggerKeyCodes={[]}
/>
</View>
</View>
</View>
</View>
Expand Down
Loading
Loading