New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

simple-ui-builder

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-ui-builder - npm Package Compare versions

Comparing version 1.0.38 to 1.0.39

{
"name": "simple-ui-builder",
"version": "1.0.38",
"version": "1.0.39",
"description": "Build user interface like Lego bricks. UI.input(), UI.button(cb), UI.select(arr) etc. For lazy guys as I am.",

@@ -5,0 +5,0 @@ "main": "ui.js",

@@ -264,2 +264,7 @@ /**

radio.name = params.id;
if(params.default && (params.default == item)) {
radio.checked = true;
}
radio.onclick = function() {

@@ -266,0 +271,0 @@ cb(radio.id);