@vaadin/number-field 23.1.0-rc1 → 23.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/number-field",
3
- "version": "23.1.0-rc1",
3
+ "version": "23.1.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,17 +33,17 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@polymer/polymer": "^3.0.0",
36
- "@vaadin/component-base": "23.1.0-rc1",
37
- "@vaadin/field-base": "23.1.0-rc1",
38
- "@vaadin/input-container": "23.1.0-rc1",
39
- "@vaadin/vaadin-lumo-styles": "23.1.0-rc1",
40
- "@vaadin/vaadin-material-styles": "23.1.0-rc1",
41
- "@vaadin/vaadin-themable-mixin": "23.1.0-rc1"
36
+ "@vaadin/component-base": "^23.1.0",
37
+ "@vaadin/field-base": "^23.1.0",
38
+ "@vaadin/input-container": "^23.1.0",
39
+ "@vaadin/vaadin-lumo-styles": "^23.1.0",
40
+ "@vaadin/vaadin-material-styles": "^23.1.0",
41
+ "@vaadin/vaadin-themable-mixin": "^23.1.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
45
  "@vaadin/testing-helpers": "^0.3.2",
46
46
  "sinon": "^13.0.2"
47
47
  },
48
- "gitHead": "5ecb85e16e938df827fefca4bd2a665a1e29913e"
48
+ "gitHead": "322bba42b83f908a78cd972b06acadc5da95a69d"
49
49
  }
@@ -205,7 +205,7 @@ export class NumberField extends InputFieldMixin(SlotStylesMixin(ThemableMixin(E
205
205
  }
206
206
 
207
207
  /**
208
- * Used by `ClearButtonMixin` as a reference to the clear button element.
208
+ * Used by `InputControlMixin` as a reference to the clear button element.
209
209
  * @protected
210
210
  */
211
211
  get clearElement() {
@@ -440,7 +440,7 @@ export class NumberField extends InputFieldMixin(SlotStylesMixin(ThemableMixin(E
440
440
  }
441
441
 
442
442
  /**
443
- * Override an event listener from `ClearButtonMixin`
443
+ * Override an event listener from `InputControlMixin`
444
444
  * to avoid adding a separate listener.
445
445
  * @param {!KeyboardEvent} event
446
446
  * @protected