Socket
Socket
Sign inDemoInstall

@gradio/utils

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gradio/utils - npm Package Compare versions

Comparing version 0.5.1 to 0.5.2

6

CHANGELOG.md
# @gradio/utils
## 0.5.2
### Fixes
- [#8927](https://github.com/gradio-app/gradio/pull/8927) [`223688b`](https://github.com/gradio-app/gradio/commit/223688b70a7a3cf4daa92ae77f8fca7b537cc2b4) - Fix `Could not resolve "virtual:component-loader"` in gradio/utils package. Thanks @benzler!
## 0.5.1

@@ -4,0 +10,0 @@

2

package.json
{
"name": "@gradio/utils",
"version": "0.5.1",
"version": "0.5.2",
"description": "Gradio UI packages",

@@ -5,0 +5,0 @@ "type": "module",

@@ -237,6 +237,10 @@ import type { ActionReturn } from "svelte/action";

if (!virtual_component_loader) {
import("virtual:component-loader").then((module) => {
this._load_component = module.load_component;
virtual_component_loader = module.load_component;
});
import("virtual:component-loader")
.then((module) => {
this._load_component = module.load_component;
virtual_component_loader = module.load_component;
})
.catch((e) => {
console.error("Error loading virtual component loader", e);
});
} else {

@@ -243,0 +247,0 @@ this._load_component = virtual_component_loader;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc