Socket
Socket
Sign inDemoInstall

@lion/field

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lion/field - npm Package Compare versions

Comparing version 0.11.1 to 0.11.2

8

CHANGELOG.md

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

## [0.11.2](https://github.com/ing-bank/lion/compare/@lion/field@0.11.1...@lion/field@0.11.2) (2020-03-04)
**Note:** Version bump only for package @lion/field
## [0.11.1](https://github.com/ing-bank/lion/compare/@lion/field@0.11.0...@lion/field@0.11.1) (2020-03-02)

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

8

package.json
{
"name": "@lion/field",
"version": "0.11.1",
"version": "0.11.2",
"description": "Fields are the most fundamental building block of the Form System",

@@ -39,6 +39,6 @@ "author": "ing-bank",

"@lion/core": "0.4.4",
"@lion/validate": "0.7.0"
"@lion/validate": "0.7.1"
},
"devDependencies": {
"@lion/localize": "0.8.8",
"@lion/localize": "0.8.9",
"@open-wc/demoing-storybook": "^1.10.4",

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

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

@@ -105,6 +105,6 @@ import { html, css, nothing, dedupeMixin, SlotMixin } from '@lion/core';

updated(changedProps) {
super.updated(changedProps);
updated(changedProperties) {
super.updated(changedProperties);
if (changedProps.has('_ariaLabelledNodes')) {
if (changedProperties.has('_ariaLabelledNodes')) {
this.__reflectAriaAttr(

@@ -117,3 +117,3 @@ 'aria-labelledby',

if (changedProps.has('_ariaDescribedNodes')) {
if (changedProperties.has('_ariaDescribedNodes')) {
this.__reflectAriaAttr(

@@ -126,7 +126,7 @@ 'aria-describedby',

if (changedProps.has('label')) {
if (changedProperties.has('label')) {
this._onLabelChanged({ label: this.label });
}
if (changedProps.has('helpText')) {
if (changedProperties.has('helpText')) {
this._onHelpTextChanged({ helpText: this.helpText });

@@ -133,0 +133,0 @@ }

@@ -96,4 +96,4 @@ import { SlotMixin, LitElement } from '@lion/core';

firstUpdated(c) {
super.firstUpdated(c);
firstUpdated(changedProperties) {
super.firstUpdated(changedProperties);
this._initialModelValue = this.modelValue;

@@ -122,6 +122,6 @@ }

updated(changedProps) {
super.updated(changedProps);
updated(changedProperties) {
super.updated(changedProperties);
if (changedProps.has('disabled')) {
if (changedProperties.has('disabled')) {
this._inputNode.disabled = this.disabled;

@@ -131,7 +131,7 @@ this.validate();

if (changedProps.has('name')) {
if (changedProperties.has('name')) {
this._inputNode.name = this.name;
}
if (changedProps.has('autocomplete')) {
if (changedProperties.has('autocomplete')) {
this._inputNode.autocomplete = this.autocomplete;

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