@vaadin/number-field
Advanced tools
Comparing version 23.1.1 to 23.2.0-alpha1
{ | ||
"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 @@ } |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
33179
593
1
+ Added@vaadin/component-base@23.2.0-alpha1(transitive)
+ Added@vaadin/field-base@23.2.0-alpha1(transitive)
+ Added@vaadin/icon@23.2.0-alpha1(transitive)
+ Added@vaadin/input-container@23.2.0-alpha1(transitive)
+ Added@vaadin/vaadin-lumo-styles@23.2.0-alpha1(transitive)
+ Added@vaadin/vaadin-material-styles@23.2.0-alpha1(transitive)
+ Added@vaadin/vaadin-themable-mixin@23.2.0-alpha1(transitive)
- Removed@vaadin/component-base@23.5.11(transitive)
- Removed@vaadin/field-base@23.5.11(transitive)
- Removed@vaadin/icon@23.5.11(transitive)
- Removed@vaadin/input-container@23.5.11(transitive)
- Removed@vaadin/vaadin-lumo-styles@23.5.11(transitive)
- Removed@vaadin/vaadin-material-styles@23.5.11(transitive)
- Removed@vaadin/vaadin-themable-mixin@23.5.11(transitive)