Skip to content

Commit

Permalink
Initial native implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZebulanStanphill committed Jul 28, 2020
1 parent b351819 commit 57c0dfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ export class BlockList extends Component {
parentWidth,
marginVertical = styles.defaultBlock.marginTop,
marginHorizontal = styles.defaultBlock.marginLeft,
__experimentalItemWrapper,
} = this.props;
return (
<BlockListItem
Expand All @@ -279,6 +280,7 @@ export class BlockList extends Component {
onCaretVerticalPositionChange={
this.onCaretVerticalPositionChange
}
__experimentalWrapper={ __experimentalItemWrapper }
/>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ function UncontrolledInnerBlocks( props ) {
marginHorizontal,
horizontalAlignment,
filterInnerBlocks,
__experimentalItemWrapper,
} = props;

const block = useSelect(
Expand Down Expand Up @@ -82,6 +83,7 @@ function UncontrolledInnerBlocks( props ) {
onAddBlock={ onAddBlock }
onDeleteBlock={ onDeleteBlock }
filterInnerBlocks={ filterInnerBlocks }
__experimentalItemWrapper={ __experimentalItemWrapper }
/>
);

Expand Down

0 comments on commit 57c0dfa

Please sign in to comment.