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

@vaadin/number-field

Package Overview
Dependencies
Maintainers
14
Versions
421
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/number-field - npm Package Compare versions

Comparing version 23.1.1 to 23.2.0-alpha1

16

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

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

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "^23.1.1",
"@vaadin/field-base": "^23.1.1",
"@vaadin/input-container": "^23.1.1",
"@vaadin/vaadin-lumo-styles": "^23.1.1",
"@vaadin/vaadin-material-styles": "^23.1.1",
"@vaadin/vaadin-themable-mixin": "^23.1.1"
"@vaadin/component-base": "23.2.0-alpha1",
"@vaadin/field-base": "23.2.0-alpha1",
"@vaadin/input-container": "23.2.0-alpha1",
"@vaadin/vaadin-lumo-styles": "23.2.0-alpha1",
"@vaadin/vaadin-material-styles": "23.2.0-alpha1",
"@vaadin/vaadin-themable-mixin": "23.2.0-alpha1"
},

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

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

@@ -57,3 +57,3 @@ /**

*
* Note, the `input-prevented` state attribute is not supported by `<vaadin-number-field>`.
* Note, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.
*

@@ -60,0 +60,0 @@ * @fires {Event} input - Fired when the value is changed by the user: on every typing keystroke, and the value is cleared using the clear button.

@@ -37,3 +37,3 @@ /**

*
* Note, the `input-prevented` state attribute is not supported by `<vaadin-number-field>`.
* Note, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.
*

@@ -217,13 +217,2 @@ * See [Styling Components](https://vaadin.com/docs/latest/ds/customization/styling-components) documentation.

/** @protected */
connectedCallback() {
super.connectedCallback();
if (this.inputElement) {
this.inputElement.min = this.min;
this.inputElement.max = this.max;
this.__applyStep(this.step);
}
}
/** @protected */
ready() {

@@ -240,2 +229,7 @@ super.ready();

);
this.inputElement.min = this.min;
this.inputElement.max = this.max;
this.__applyStep(this.step);
this.addController(new LabelledInputController(this.inputElement, this._labelController));

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