@vaadin/text-field 23.1.2 → 23.1.5

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/text-field",
3
- "version": "23.1.2",
3
+ "version": "23.1.5",
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.2",
37
- "@vaadin/field-base": "^23.1.2",
38
- "@vaadin/input-container": "^23.1.2",
39
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
40
- "@vaadin/vaadin-material-styles": "^23.1.2",
41
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
36
+ "@vaadin/component-base": "^23.1.5",
37
+ "@vaadin/field-base": "^23.1.5",
38
+ "@vaadin/input-container": "^23.1.5",
39
+ "@vaadin/vaadin-lumo-styles": "^23.1.5",
40
+ "@vaadin/vaadin-material-styles": "^23.1.5",
41
+ "@vaadin/vaadin-themable-mixin": "^23.1.5"
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": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
48
+ "gitHead": "326938919a54353231af25d341ba6076c249afee"
49
49
  }
@@ -111,13 +111,13 @@ declare class TextField extends PatternMixin(InputFieldMixin(ThemableMixin(Eleme
111
111
  addEventListener<K extends keyof TextFieldEventMap>(
112
112
  type: K,
113
113
  listener: (this: TextField, ev: TextFieldEventMap[K]) => void,
114
- options?: boolean | AddEventListenerOptions,
114
+ options?: AddEventListenerOptions | boolean,
115
115
  ): void;
116
116
 
117
117
  removeEventListener<K extends keyof TextFieldEventMap>(
118
118
  type: K,
119
119
  listener: (this: TextField, ev: TextFieldEventMap[K]) => void,
120
- options?: boolean | EventListenerOptions,
120
+ options?: EventListenerOptions | boolean,
121
121
  ): void;
122
122
  }
123
123