microboard-temp 0.1.2 → 0.1.5
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/browser-entry.js +49849 -0
- package/dist/cjs/canvas-dbaby9xg.node +0 -0
- package/dist/cjs/index.js +4 -0
- package/dist/cjs/node-entry.js +179358 -0
- package/dist/esm/browser-entry.js +49833 -0
- package/dist/esm/canvas-dbaby9xg.node +0 -0
- package/dist/esm/index.js +46569 -0
- package/dist/esm/node-entry.js +179337 -0
- package/dist/types/Events/index.d.ts +4 -3
- package/dist/types/api/initI18N.d.ts +10 -1
- package/dist/types/browser-entry.d.ts +1 -0
- package/dist/types/node-entry.d.ts +1 -0
- package/package.json +28 -8
|
Binary file
|
package/dist/cjs/index.js
CHANGED
|
@@ -2130,6 +2130,7 @@ __export(exports_src, {
|
|
|
2130
2130
|
fileTosha256: () => fileTosha256,
|
|
2131
2131
|
decodeHtml: () => decodeHtml,
|
|
2132
2132
|
cursors: () => defaultCursors,
|
|
2133
|
+
createEvents: () => createEvents,
|
|
2133
2134
|
conf: () => conf,
|
|
2134
2135
|
checkHotkeys: () => checkHotkeys,
|
|
2135
2136
|
Transformation: () => Transformation,
|
|
@@ -46579,3 +46580,6 @@ class Events {
|
|
|
46579
46580
|
return userId + ":" + id;
|
|
46580
46581
|
}
|
|
46581
46582
|
}
|
|
46583
|
+
function createEvents(board, connection, lastIndex) {
|
|
46584
|
+
return new Events(board, connection, lastIndex);
|
|
46585
|
+
}
|