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

@uform/core

Package Overview
Dependencies
Maintainers
4
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uform/core - npm Package Compare versions

Comparing version 0.3.6 to 0.3.7

5

lib/form.js

@@ -179,3 +179,6 @@ "use strict";

Form.prototype.setIn = function (name, value) {
utils_1.setIn(this.state.values, name, value);
var _this = this;
utils_1.setIn(this.state.values, name, value, function (path) {
return utils_1.getSchemaNodeFromPath(_this.schema, path);
});
};

@@ -182,0 +185,0 @@ Form.prototype.setInitialValueIn = function (name, value) {

10

package.json
{
"name": "@uform/core",
"version": "0.3.6",
"version": "0.3.7",
"license": "MIT",

@@ -29,5 +29,5 @@ "main": "lib",

"dependencies": {
"@uform/types": "^0.3.6",
"@uform/utils": "^0.3.6",
"@uform/validator": "^0.3.6",
"@uform/types": "^0.3.7",
"@uform/utils": "^0.3.7",
"@uform/validator": "^0.3.7",
"dot-match": "^0.1.18",

@@ -39,3 +39,3 @@ "rxjs": "^6.3.3"

},
"gitHead": "72954c54d7a7712028585a13ff8032a36852fc06"
"gitHead": "2eedc35f2a939f0e1b9e3aed77877303bc4b05d5"
}

@@ -230,3 +230,5 @@ import {

public setIn(name: string, value: any) {
setIn(this.state.values, name, value)
setIn(this.state.values, name, value, path => {
return getSchemaNodeFromPath(this.schema, path)
})
}

@@ -233,0 +235,0 @@

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