@liveblocks/emails 2.15.2 → 2.16.0-toolbars2
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/index.d.mts +38 -38
- package/dist/index.d.ts +38 -38
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { detectDupes } from "@liveblocks/core";
|
|
|
3
3
|
|
|
4
4
|
// src/version.ts
|
|
5
5
|
var PKG_NAME = "@liveblocks/emails";
|
|
6
|
-
var PKG_VERSION = "2.
|
|
6
|
+
var PKG_VERSION = "2.16.0-toolbars2";
|
|
7
7
|
var PKG_FORMAT = "esm";
|
|
8
8
|
|
|
9
9
|
// ../../node_modules/lib0/map.js
|
|
@@ -763,7 +763,7 @@ var StringDecoder = class {
|
|
|
763
763
|
};
|
|
764
764
|
|
|
765
765
|
// ../../node_modules/lib0/webcrypto.node.js
|
|
766
|
-
import { webcrypto } from "crypto";
|
|
766
|
+
import { webcrypto } from "node:crypto";
|
|
767
767
|
var subtle = (
|
|
768
768
|
/** @type {any} */
|
|
769
769
|
webcrypto.subtle
|
|
@@ -7428,7 +7428,9 @@ function createSerializedLexicalElementNode(item) {
|
|
|
7428
7428
|
} else if (content instanceof YMap) {
|
|
7429
7429
|
children.push(createSerializedLexicalMapNode(content));
|
|
7430
7430
|
} else if (content instanceof YXmlElement) {
|
|
7431
|
-
children.push(
|
|
7431
|
+
children.push(
|
|
7432
|
+
createSerializedLexicalDecoratorNode(content)
|
|
7433
|
+
);
|
|
7432
7434
|
}
|
|
7433
7435
|
} else if (start.content instanceof ContentString) {
|
|
7434
7436
|
if (children.length > 0) {
|
|
@@ -7461,7 +7463,9 @@ function createSerializedLexicalRootNode(root) {
|
|
|
7461
7463
|
if (content instanceof YXmlText) {
|
|
7462
7464
|
children.push(createSerializedLexicalElementNode(content));
|
|
7463
7465
|
} else if (content instanceof YXmlElement) {
|
|
7464
|
-
children.push(
|
|
7466
|
+
children.push(
|
|
7467
|
+
createSerializedLexicalDecoratorNode(content)
|
|
7468
|
+
);
|
|
7465
7469
|
}
|
|
7466
7470
|
}
|
|
7467
7471
|
start = start.right;
|