@textbus/xnote 0.0.8 → 0.0.9
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/bundles/index.esm.js +4 -1
- package/bundles/index.js +4 -1
- package/package.json +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -6433,7 +6433,7 @@ class Editor extends Textbus {
|
|
|
6433
6433
|
provide: CollaborateSelectionAwarenessDelegate,
|
|
6434
6434
|
useClass: TableSelectionAwarenessDelegate
|
|
6435
6435
|
}, {
|
|
6436
|
-
provide:
|
|
6436
|
+
provide: XNoteMessageBug,
|
|
6437
6437
|
useFactory: (selection, collaborateCursor) => {
|
|
6438
6438
|
return new XNoteMessageBug(selection, collaborateCursor, editorConfig.collaborateConfig.userinfo);
|
|
6439
6439
|
},
|
|
@@ -6441,6 +6441,9 @@ class Editor extends Textbus {
|
|
|
6441
6441
|
Selection,
|
|
6442
6442
|
CollaborateCursor
|
|
6443
6443
|
]
|
|
6444
|
+
}, {
|
|
6445
|
+
provide: MessageBus,
|
|
6446
|
+
useExisting: XNoteMessageBug
|
|
6444
6447
|
}]
|
|
6445
6448
|
});
|
|
6446
6449
|
}
|
package/bundles/index.js
CHANGED
|
@@ -6435,7 +6435,7 @@ class Editor extends core$1.Textbus {
|
|
|
6435
6435
|
provide: platformBrowser.CollaborateSelectionAwarenessDelegate,
|
|
6436
6436
|
useClass: TableSelectionAwarenessDelegate
|
|
6437
6437
|
}, {
|
|
6438
|
-
provide:
|
|
6438
|
+
provide: XNoteMessageBug,
|
|
6439
6439
|
useFactory: (selection, collaborateCursor) => {
|
|
6440
6440
|
return new XNoteMessageBug(selection, collaborateCursor, editorConfig.collaborateConfig.userinfo);
|
|
6441
6441
|
},
|
|
@@ -6443,6 +6443,9 @@ class Editor extends core$1.Textbus {
|
|
|
6443
6443
|
core$1.Selection,
|
|
6444
6444
|
platformBrowser.CollaborateCursor
|
|
6445
6445
|
]
|
|
6446
|
+
}, {
|
|
6447
|
+
provide: collaborate.MessageBus,
|
|
6448
|
+
useExisting: XNoteMessageBug
|
|
6446
6449
|
}]
|
|
6447
6450
|
});
|
|
6448
6451
|
}
|
package/package.json
CHANGED