@lax-wp/editor 0.3.24 → 0.3.26

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.
@@ -16,7 +16,7 @@ export interface RedlineChange {
16
16
  userProfilePic?: string;
17
17
  timestamp: string;
18
18
  position: number;
19
- nodeType?: 'text' | 'table' | 'tableRow' | 'tableColumn' | 'link' | 'signature' | 'variable';
19
+ nodeType?: 'text' | 'table' | 'tableRow' | 'tableColumn' | 'blockquote' | 'link' | 'signature' | 'variable';
20
20
  tableData?: string;
21
21
  tableRowData?: {
22
22
  action: 'add' | 'delete';
@@ -45,6 +45,8 @@ export interface RedlineChange {
45
45
  action: 'add' | 'remove' | 'change';
46
46
  oldUrl?: string;
47
47
  };
48
+ groupId?: string;
49
+ groupedChangeIds?: string[];
48
50
  comments?: RedlineComment[];
49
51
  }
50
52
  interface RedlineItemProps {
@@ -121,6 +121,7 @@ export interface EditorConfig {
121
121
  email?: string;
122
122
  profilePic?: string;
123
123
  color?: string;
124
+ isExternalUser?: boolean;
124
125
  };
125
126
  /** allUsers */
126
127
  allUsers?: {
@@ -128,6 +129,7 @@ export interface EditorConfig {
128
129
  name?: string;
129
130
  email?: string;
130
131
  profilePic?: string;
132
+ isExternalUser?: boolean;
131
133
  }[];
132
134
  /** Collaborative editing configuration */
133
135
  collaborativeEditing?: {
@@ -3,6 +3,7 @@ export interface RedlineBaseAttributes {
3
3
  userId: string;
4
4
  userName: string;
5
5
  timestamp: string;
6
+ groupId?: string;
6
7
  }
7
8
  export interface RedlineExtendedAttributes extends RedlineBaseAttributes {
8
9
  formatChanges?: string;