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.10.1 to 0.11.0

11

CHANGELOG.md

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

# [0.11.0](https://github.com/ing-bank/lion/compare/@lion/field@0.10.1...@lion/field@0.11.0) (2020-03-01)
### Features
* **validate:** use static validatorName instead of instance name ([#600](https://github.com/ing-bank/lion/issues/600)) ([7c45dd6](https://github.com/ing-bank/lion/commit/7c45dd683984e88e3216fba9fcae1b6dc73835b2))
## [0.10.1](https://github.com/ing-bank/lion/compare/@lion/field@0.10.0...@lion/field@0.10.1) (2020-02-26)

@@ -8,0 +19,0 @@

6

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

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

"@lion/core": "0.4.4",
"@lion/validate": "0.6.8"
"@lion/validate": "0.7.0"
},

@@ -48,3 +48,3 @@ "devDependencies": {

},
"gitHead": "8e5cc9c14ac6706efad917cea7af548aed371e7f"
"gitHead": "04db59c9675b9e56b50dfc147201eea530b1d754"
}

@@ -341,5 +341,4 @@ import { expect, fixture, html, aTimeout, defineCE, unsafeStatic } from '@open-wc/testing';

const AlwaysInvalid = class extends Validator {
constructor(...args) {
super(...args);
this.name = 'AlwaysInvalid';
static get validatorName() {
return 'AlwaysInvalid';
}

@@ -346,0 +345,0 @@

@@ -301,5 +301,4 @@ import {

const HasX = class extends Validator {
constructor() {
super();
this.name = 'HasX';
static get validatorName() {
return 'HasX';
}

@@ -416,5 +415,4 @@

const Bar = class extends Validator {
constructor(...args) {
super(...args);
this.name = 'Bar';
static get validatorName() {
return 'Bar';
}

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