New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/integer-field

Package Overview
Dependencies
Maintainers
14
Versions
432
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/integer-field - npm Package Compare versions

Comparing version 23.1.1 to 23.2.0-alpha1

10

package.json
{
"name": "@vaadin/integer-field",
"version": "23.1.1",
"version": "23.2.0-alpha1",
"publishConfig": {

@@ -36,5 +36,5 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/number-field": "^23.1.1",
"@vaadin/vaadin-lumo-styles": "^23.1.1",
"@vaadin/vaadin-material-styles": "^23.1.1"
"@vaadin/number-field": "23.2.0-alpha1",
"@vaadin/vaadin-lumo-styles": "23.2.0-alpha1",
"@vaadin/vaadin-material-styles": "23.2.0-alpha1"
},

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

},
"gitHead": "390458d6519433a2dd502cef90da48e84573a275"
"gitHead": "f226a2976c270d3d53c824f6e0a740a5d3382d91"
}

@@ -54,4 +54,2 @@ /**

*
* Note, the `input-prevented` state attribute is not supported by `<vaadin-integer-field>`.
*
* See [Styling Components](https://vaadin.com/docs/latest/ds/customization/styling-components) documentation.

@@ -58,0 +56,0 @@ *

@@ -27,4 +27,2 @@ /**

*
* Note, the `input-prevented` state attribute is not supported by `<vaadin-integer-field>`.
*
* See [Styling Components](https://vaadin.com/docs/latest/ds/customization/styling-components) documentation.

@@ -44,19 +42,6 @@ *

static get properties() {
return {
/**
* A pattern matched against individual characters the user inputs.
* When set, the field will prevent:
* - `keyDown` events if the entered key doesn't match `/^_enabledCharPattern$/`
* - `paste` events if the pasted text doesn't match `/^_enabledCharPattern*$/`
* - `drop` events if the dropped text doesn't match `/^_enabledCharPattern*$/`
*
* For example, to enable entering only numbers and minus signs,
* `_enabledCharPattern = "[\\d-]"`
* @protected
*/
_enabledCharPattern: {
value: '[-+\\d]',
},
};
constructor() {
super();
this.allowedCharPattern = '[-+\\d]';
}

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