@lvce-editor/renderer-process 30.43.3 → 30.43.4

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.
@@ -4288,6 +4288,13 @@ const dispose$h = id => {
4288
4288
  // const $Notification = state.$Notifications
4289
4289
  };
4290
4290
 
4291
+ const createObjectUrl = blob => {
4292
+ return URL.createObjectURL(blob);
4293
+ };
4294
+ const revokeObjectUrl = url => {
4295
+ URL.revokeObjectURL(url);
4296
+ };
4297
+
4291
4298
  const state$7 = {
4292
4299
  canvasObjects: Object.create(null)
4293
4300
  };
@@ -10325,6 +10332,8 @@ const commandMap = {
10325
10332
  'Notification.create': create$s,
10326
10333
  'Notification.createWithOptions': createWithOptions,
10327
10334
  'Notification.dispose': dispose$h,
10335
+ 'ObjectUrl.create': createObjectUrl,
10336
+ 'ObjectUrl.revoke': revokeObjectUrl,
10328
10337
  'OffscreenCanvas.create': create$r,
10329
10338
  'OffscreenCanvas.create2': create2,
10330
10339
  'Open.openUrl': openUrl,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/renderer-process",
3
- "version": "30.43.3",
3
+ "version": "30.43.4",
4
4
  "keywords": [
5
5
  "lvce-editor",
6
6
  "renderer-process"