@lax-wp/editor 0.2.2 → 0.2.4

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.
@@ -1,3 +1 @@
1
- export declare const RedlinePanel: ({ showFullRedlineItem }: {
2
- showFullRedlineItem: boolean;
3
- }) => import("react/jsx-runtime").JSX.Element | null;
1
+ export declare const RedlinePanel: () => import("react/jsx-runtime").JSX.Element | null;
@@ -6,6 +6,7 @@ export interface SidebarTool {
6
6
  notVisible?: boolean;
7
7
  }
8
8
  export interface ExpandableSidebarProps {
9
+ id: string;
9
10
  tools: SidebarTool[];
10
11
  position?: 'left' | 'right';
11
12
  isExpanded?: boolean;
@@ -13,4 +14,4 @@ export interface ExpandableSidebarProps {
13
14
  expandedWidth?: number;
14
15
  toggleToolbar?: (isExpanded: boolean) => void;
15
16
  }
16
- export declare const ExpandableSidebar: ({ tools, position, isExpanded, defaultActiveTool, expandedWidth, toggleToolbar, }: ExpandableSidebarProps) => import("react/jsx-runtime").JSX.Element;
17
+ export declare const ExpandableSidebar: ({ id, tools, position, isExpanded, defaultActiveTool, expandedWidth, toggleToolbar, }: ExpandableSidebarProps) => import("react/jsx-runtime").JSX.Element;