@lax-wp/editor 0.3.23 → 0.3.25
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.
- package/dist/components/redline/RedlineItem.d.ts +1 -1
- package/dist/config/EditorConfig.d.ts +2 -0
- package/dist/index.es.js +1964 -1952
- package/dist/index.umd.js +44 -44
- package/package.json +1 -1
|
@@ -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?: {
|