Socket
Socket
Sign inDemoInstall

@lion/choice-input

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lion/choice-input - npm Package Compare versions

Comparing version 0.7.3 to 0.7.4

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.7.4](https://github.com/ing-bank/lion/compare/@lion/choice-input@0.7.3...@lion/choice-input@0.7.4) (2020-03-04)
**Note:** Version bump only for package @lion/choice-input
## [0.7.3](https://github.com/ing-bank/lion/compare/@lion/choice-input@0.7.2...@lion/choice-input@0.7.3) (2020-03-02)

@@ -8,0 +16,0 @@

12

package.json
{
"name": "@lion/choice-input",
"version": "0.7.3",
"version": "0.7.4",
"description": "Base for all choise inputs like checkbox/radio",

@@ -38,8 +38,8 @@ "author": "ing-bank",

"@lion/core": "0.4.4",
"@lion/field": "0.11.1"
"@lion/field": "0.11.2"
},
"devDependencies": {
"@lion/fieldset": "0.9.1",
"@lion/input": "0.5.16",
"@lion/validate": "0.7.0",
"@lion/fieldset": "0.9.2",
"@lion/input": "0.5.17",
"@lion/validate": "0.7.1",
"@open-wc/demoing-storybook": "^1.10.4",

@@ -49,3 +49,3 @@ "@open-wc/testing": "^2.5.0",

},
"gitHead": "0c0f67a9a5fbc72a81fd58c63efadbcd596c9822"
"gitHead": "52eeafa745328c3ea832ca117c662b2b731e22d2"
}

@@ -65,5 +65,5 @@ /* eslint-disable class-methods-use-this */

firstUpdated(c) {
super.firstUpdated(c);
if (c.has('checked')) {
firstUpdated(changedProperties) {
super.firstUpdated(changedProperties);
if (changedProperties.has('checked')) {
// Here we set the initial value for our [slot=input] content,

@@ -75,5 +75,5 @@ // which has been set by our SlotMixin

updated(c) {
super.updated(c);
if (c.has('modelValue')) {
updated(changedProperties) {
super.updated(changedProperties);
if (changedProperties.has('modelValue')) {
this.__syncCheckedToInputElement();

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