@wordpress/edit-site 6.29.1-next.f34ab90e9.0 → 6.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -207,10 +207,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
207
207
  content: "";
208
208
  display: block;
209
209
  position: absolute;
210
- top: 9px;
211
- right: 9px;
212
- bottom: 9px;
213
- left: 9px;
210
+ top: $grid-unit-10 + $border-width;
211
+ right: $grid-unit-10 + $border-width;
212
+ bottom: $grid-unit-10 + $border-width;
213
+ left: $grid-unit-20 + $border-width;
214
214
  border-radius: $radius-medium;
215
215
  box-shadow: none;
216
216
 
@@ -16,6 +16,8 @@ import {
16
16
  import { focus } from '@wordpress/dom';
17
17
 
18
18
  export const SidebarNavigationContext = createContext( () => {} );
19
+ SidebarNavigationContext.displayName = 'SidebarNavigationContext';
20
+
19
21
  // Focus a sidebar element after a navigation. The element to focus is either
20
22
  // specified by `focusSelector` (when navigating back) or it is the first
21
23
  // tabbable element (usually the "Back" button).