@vaadin/combo-box 23.1.2 → 23.1.3

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/combo-box",
3
- "version": "23.1.2",
3
+ "version": "23.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,23 +36,23 @@
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
38
  "@polymer/polymer": "^3.0.0",
39
- "@vaadin/component-base": "^23.1.2",
40
- "@vaadin/field-base": "^23.1.2",
41
- "@vaadin/input-container": "^23.1.2",
42
- "@vaadin/item": "^23.1.2",
43
- "@vaadin/lit-renderer": "^23.1.2",
44
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
45
- "@vaadin/vaadin-material-styles": "^23.1.2",
46
- "@vaadin/vaadin-overlay": "^23.1.2",
47
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
39
+ "@vaadin/component-base": "^23.1.3",
40
+ "@vaadin/field-base": "^23.1.3",
41
+ "@vaadin/input-container": "^23.1.3",
42
+ "@vaadin/item": "^23.1.3",
43
+ "@vaadin/lit-renderer": "^23.1.3",
44
+ "@vaadin/vaadin-lumo-styles": "^23.1.3",
45
+ "@vaadin/vaadin-material-styles": "^23.1.3",
46
+ "@vaadin/vaadin-overlay": "^23.1.3",
47
+ "@vaadin/vaadin-themable-mixin": "^23.1.3"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
51
- "@vaadin/polymer-legacy-adapter": "^23.1.2",
51
+ "@vaadin/polymer-legacy-adapter": "^23.1.3",
52
52
  "@vaadin/testing-helpers": "^0.3.2",
53
- "@vaadin/text-field": "^23.1.2",
53
+ "@vaadin/text-field": "^23.1.3",
54
54
  "lit": "^2.0.0",
55
55
  "sinon": "^13.0.2"
56
56
  },
57
- "gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
57
+ "gitHead": "3066c296ad0ef652bc49417005523398199f1bf2"
58
58
  }
@@ -20,7 +20,7 @@ export type ComboBoxDataProvider<TItem> = (
20
20
 
21
21
  export declare function ComboBoxDataProviderMixin<TItem, T extends Constructor<HTMLElement>>(
22
22
  base: T,
23
- ): T & Constructor<ComboBoxDataProviderMixinClass<TItem>>;
23
+ ): Constructor<ComboBoxDataProviderMixinClass<TItem>> & T;
24
24
 
25
25
  export declare class ComboBoxDataProviderMixinClass<TItem> {
26
26
  /**
@@ -126,13 +126,13 @@ declare class ComboBoxLight<TItem = ComboBoxDefaultItem> extends HTMLElement {
126
126
  addEventListener<K extends keyof ComboBoxLightEventMap<TItem>>(
127
127
  type: K,
128
128
  listener: (this: ComboBoxLight<TItem>, ev: ComboBoxLightEventMap<TItem>[K]) => void,
129
- options?: boolean | AddEventListenerOptions,
129
+ options?: AddEventListenerOptions | boolean,
130
130
  ): void;
131
131
 
132
132
  removeEventListener<K extends keyof ComboBoxLightEventMap<TItem>>(
133
133
  type: K,
134
134
  listener: (this: ComboBoxLight<TItem>, ev: ComboBoxLightEventMap<TItem>[K]) => void,
135
- options?: boolean | EventListenerOptions,
135
+ options?: EventListenerOptions | boolean,
136
136
  ): void;
137
137
  }
138
138
 
@@ -24,11 +24,11 @@ export type ComboBoxRenderer<TItem> = (
24
24
 
25
25
  export declare function ComboBoxMixin<TItem, T extends Constructor<HTMLElement>>(
26
26
  base: T,
27
- ): T &
28
- Constructor<ComboBoxMixinClass<TItem>> &
27
+ ): Constructor<ComboBoxMixinClass<TItem>> &
29
28
  Constructor<DisabledMixinClass> &
30
29
  Constructor<InputMixinClass> &
31
- Constructor<KeyboardMixinClass>;
30
+ Constructor<KeyboardMixinClass> &
31
+ T;
32
32
 
33
33
  export declare class ComboBoxMixinClass<TItem> {
34
34
  /**
@@ -212,13 +212,13 @@ declare class ComboBox<TItem = ComboBoxDefaultItem> extends HTMLElement {
212
212
  addEventListener<K extends keyof ComboBoxEventMap<TItem>>(
213
213
  type: K,
214
214
  listener: (this: ComboBox<TItem>, ev: ComboBoxEventMap<TItem>[K]) => void,
215
- options?: boolean | AddEventListenerOptions,
215
+ options?: AddEventListenerOptions | boolean,
216
216
  ): void;
217
217
 
218
218
  removeEventListener<K extends keyof ComboBoxEventMap<TItem>>(
219
219
  type: K,
220
220
  listener: (this: ComboBox<TItem>, ev: ComboBoxEventMap<TItem>[K]) => void,
221
- options?: boolean | EventListenerOptions,
221
+ options?: EventListenerOptions | boolean,
222
222
  ): void;
223
223
  }
224
224