Socket
Socket
Sign inDemoInstall

@lion/form-core

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lion/form-core - npm Package Compare versions

Comparing version 0.6.4 to 0.6.5

10

CHANGELOG.md
# Change Log
## 0.6.5
### Patch Changes
- 618f2698: Run tests also on webkit
- Updated dependencies [20ba0ca8]
- Updated dependencies [618f2698]
- @lion/core@0.13.2
- @lion/localize@0.14.7
## 0.6.4

@@ -4,0 +14,0 @@

6

package.json
{
"name": "@lion/form-core",
"version": "0.6.4",
"version": "0.6.5",
"description": "Form-core contains all essential building blocks for creating form fields and fieldsets",

@@ -37,4 +37,4 @@ "license": "MIT",

"dependencies": {
"@lion/core": "0.13.1",
"@lion/localize": "0.14.6"
"@lion/core": "0.13.2",
"@lion/localize": "0.14.7"
},

@@ -41,0 +41,0 @@ "keywords": [

@@ -53,8 +53,9 @@ import { dedupeMixin } from '@lion/core';

this._setCheckedElements(value, checkCondition);
this.requestUpdate('modelValue');
this.requestUpdate('modelValue', this.__oldModelValue);
});
} else {
this._setCheckedElements(value, checkCondition);
this.requestUpdate('modelValue');
this.requestUpdate('modelValue', this.__oldModelValue);
}
this.__oldModelValue = this.modelValue;
}

@@ -152,3 +153,6 @@

super.connectedCallback();
Promise.resolve().then(() => this.__resolveRegistrationComplete());
// Double microtask queue to account for Webkit race condition
Promise.resolve().then(() =>
Promise.resolve().then(() => this.__resolveRegistrationComplete()),
);

@@ -318,3 +322,4 @@ this.registrationComplete.then(() => {

this.__setChoiceGroupTouched();
this.requestUpdate('modelValue');
this.requestUpdate('modelValue', this.__oldModelValue);
this.__oldModelValue = this.modelValue;
}

@@ -321,0 +326,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