@tldraw/sync-core 4.4.0-next.f181afb0ab39 → 4.4.0-next.f2df7e20ec7b
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-cjs/index.js +1 -1
- package/dist-esm/index.mjs +1 -1
- package/package.json +7 -8
- package/src/test/FuzzEditor.ts +6 -4
package/dist-cjs/index.js
CHANGED
|
@@ -61,7 +61,7 @@ var import_TLSyncRoom = require("./lib/TLSyncRoom");
|
|
|
61
61
|
var import_TLSyncStorage = require("./lib/TLSyncStorage");
|
|
62
62
|
(0, import_utils.registerTldrawLibraryVersion)(
|
|
63
63
|
"@tldraw/sync-core",
|
|
64
|
-
"4.4.0-next.
|
|
64
|
+
"4.4.0-next.f2df7e20ec7b",
|
|
65
65
|
"cjs"
|
|
66
66
|
);
|
|
67
67
|
//# sourceMappingURL=index.js.map
|
package/dist-esm/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tldraw/sync-core",
|
|
3
3
|
"description": "tldraw infinite canvas SDK (multiplayer sync).",
|
|
4
|
-
"version": "4.4.0-next.
|
|
4
|
+
"version": "4.4.0-next.f2df7e20ec7b",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "tldraw GB Ltd.",
|
|
7
7
|
"email": "hello@tldraw.com"
|
|
@@ -40,8 +40,7 @@
|
|
|
40
40
|
"build-api": "yarn run -T tsx ../../internal/scripts/build-api.ts",
|
|
41
41
|
"prepack": "yarn run -T tsx ../../internal/scripts/prepack.ts",
|
|
42
42
|
"postpack": "../../internal/scripts/postpack.sh",
|
|
43
|
-
"pack-tarball": "yarn pack"
|
|
44
|
-
"context": "yarn run -T tsx ../../internal/scripts/context.ts"
|
|
43
|
+
"pack-tarball": "yarn pack"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
46
|
"@types/react": "^19.2.7",
|
|
@@ -49,17 +48,17 @@
|
|
|
49
48
|
"@types/uuid-readable": "^0.0.3",
|
|
50
49
|
"react": "^19.2.1",
|
|
51
50
|
"react-dom": "^19.2.1",
|
|
52
|
-
"tldraw": "4.4.0-next.
|
|
51
|
+
"tldraw": "4.4.0-next.f2df7e20ec7b",
|
|
53
52
|
"typescript": "^5.8.3",
|
|
54
53
|
"uuid-by-string": "^4.0.0",
|
|
55
54
|
"uuid-readable": "^0.0.2",
|
|
56
55
|
"vitest": "^3.2.4"
|
|
57
56
|
},
|
|
58
57
|
"dependencies": {
|
|
59
|
-
"@tldraw/state": "4.4.0-next.
|
|
60
|
-
"@tldraw/store": "4.4.0-next.
|
|
61
|
-
"@tldraw/tlschema": "4.4.0-next.
|
|
62
|
-
"@tldraw/utils": "4.4.0-next.
|
|
58
|
+
"@tldraw/state": "4.4.0-next.f2df7e20ec7b",
|
|
59
|
+
"@tldraw/store": "4.4.0-next.f2df7e20ec7b",
|
|
60
|
+
"@tldraw/tlschema": "4.4.0-next.f2df7e20ec7b",
|
|
61
|
+
"@tldraw/utils": "4.4.0-next.f2df7e20ec7b",
|
|
63
62
|
"nanoevents": "^7.0.1",
|
|
64
63
|
"ws": "^8.18.0"
|
|
65
64
|
},
|
package/src/test/FuzzEditor.ts
CHANGED
|
@@ -105,10 +105,12 @@ export class FuzzEditor extends RandomSource {
|
|
|
105
105
|
initialState: 'select',
|
|
106
106
|
store,
|
|
107
107
|
getContainer: () => document.createElement('div'),
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
108
|
+
options: {
|
|
109
|
+
text: {
|
|
110
|
+
addFontsFromNode: defaultAddFontsFromNode,
|
|
111
|
+
tipTapConfig: {
|
|
112
|
+
extensions: tipTapDefaultExtensions,
|
|
113
|
+
},
|
|
112
114
|
},
|
|
113
115
|
},
|
|
114
116
|
})
|