Socket
Socket
Sign inDemoInstall

@vaadin/field-base

Package Overview
Dependencies
Maintainers
14
Versions
366
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/field-base - npm Package Compare versions

Comparing version 23.1.0-beta1 to 23.1.0-beta2

6

package.json
{
"name": "@vaadin/field-base",
"version": "23.1.0-beta1",
"version": "23.1.0-beta2",
"publishConfig": {

@@ -35,3 +35,3 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "23.1.0-beta1",
"@vaadin/component-base": "23.1.0-beta2",
"lit": "^2.0.0"

@@ -44,3 +44,3 @@ },

},
"gitHead": "8be43cf83102a6b9ccf309687446e590ce0164e8"
"gitHead": "f11f9245a0b5e6bf912725a501c27c24b74e7c8d"
}

@@ -143,3 +143,3 @@ /**

if (!this.__isGroupField) {
// native <input> or <textarea>, required is enough
// Native <input> or <textarea>, required is enough
return;

@@ -146,0 +146,0 @@ }

@@ -201,4 +201,4 @@ /**

event.ctrlKey ||
!event.key || // allow typing anything if event.key is not supported
event.key.length !== 1 || // allow "Backspace", "ArrowLeft" etc.
!event.key || // Allow typing anything if event.key is not supported
event.key.length !== 1 || // Allow "Backspace", "ArrowLeft" etc.
this.__enabledCharRegExp.test(event.key)

@@ -205,0 +205,0 @@ );

@@ -53,3 +53,3 @@ /**

input.value = this.value || '';
// add input-prevented attribute for 200ms
// Add input-prevented attribute for 200ms
this.setAttribute('input-prevented', '');

@@ -56,0 +56,0 @@ this._inputDebouncer = Debouncer.debounce(this._inputDebouncer, timeOut.after(200), () => {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc