@vaadin/combo-box
Advanced tools
Comparing version 23.1.2 to 23.1.3
{ | ||
"name": "@vaadin/combo-box", | ||
"version": "23.1.2", | ||
"version": "23.1.3", | ||
"publishConfig": { | ||
@@ -39,21 +39,21 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^23.1.2", | ||
"@vaadin/field-base": "^23.1.2", | ||
"@vaadin/input-container": "^23.1.2", | ||
"@vaadin/item": "^23.1.2", | ||
"@vaadin/lit-renderer": "^23.1.2", | ||
"@vaadin/vaadin-lumo-styles": "^23.1.2", | ||
"@vaadin/vaadin-material-styles": "^23.1.2", | ||
"@vaadin/vaadin-overlay": "^23.1.2", | ||
"@vaadin/vaadin-themable-mixin": "^23.1.2" | ||
"@vaadin/component-base": "^23.1.3", | ||
"@vaadin/field-base": "^23.1.3", | ||
"@vaadin/input-container": "^23.1.3", | ||
"@vaadin/item": "^23.1.3", | ||
"@vaadin/lit-renderer": "^23.1.3", | ||
"@vaadin/vaadin-lumo-styles": "^23.1.3", | ||
"@vaadin/vaadin-material-styles": "^23.1.3", | ||
"@vaadin/vaadin-overlay": "^23.1.3", | ||
"@vaadin/vaadin-themable-mixin": "^23.1.3" | ||
}, | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.3.4", | ||
"@vaadin/polymer-legacy-adapter": "^23.1.2", | ||
"@vaadin/polymer-legacy-adapter": "^23.1.3", | ||
"@vaadin/testing-helpers": "^0.3.2", | ||
"@vaadin/text-field": "^23.1.2", | ||
"@vaadin/text-field": "^23.1.3", | ||
"lit": "^2.0.0", | ||
"sinon": "^13.0.2" | ||
}, | ||
"gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56" | ||
"gitHead": "3066c296ad0ef652bc49417005523398199f1bf2" | ||
} |
@@ -23,3 +23,3 @@ /** | ||
base: T, | ||
): T & Constructor<ComboBoxDataProviderMixinClass<TItem>>; | ||
): Constructor<ComboBoxDataProviderMixinClass<TItem>> & T; | ||
@@ -26,0 +26,0 @@ export declare class ComboBoxDataProviderMixinClass<TItem> { |
@@ -129,3 +129,3 @@ /** | ||
listener: (this: ComboBoxLight<TItem>, ev: ComboBoxLightEventMap<TItem>[K]) => void, | ||
options?: boolean | AddEventListenerOptions, | ||
options?: AddEventListenerOptions | boolean, | ||
): void; | ||
@@ -136,3 +136,3 @@ | ||
listener: (this: ComboBoxLight<TItem>, ev: ComboBoxLightEventMap<TItem>[K]) => void, | ||
options?: boolean | EventListenerOptions, | ||
options?: EventListenerOptions | boolean, | ||
): void; | ||
@@ -139,0 +139,0 @@ } |
@@ -27,7 +27,7 @@ /** | ||
base: T, | ||
): T & | ||
Constructor<ComboBoxMixinClass<TItem>> & | ||
): Constructor<ComboBoxMixinClass<TItem>> & | ||
Constructor<DisabledMixinClass> & | ||
Constructor<InputMixinClass> & | ||
Constructor<KeyboardMixinClass>; | ||
Constructor<KeyboardMixinClass> & | ||
T; | ||
@@ -34,0 +34,0 @@ export declare class ComboBoxMixinClass<TItem> { |
@@ -215,3 +215,3 @@ /** | ||
listener: (this: ComboBox<TItem>, ev: ComboBoxEventMap<TItem>[K]) => void, | ||
options?: boolean | AddEventListenerOptions, | ||
options?: AddEventListenerOptions | boolean, | ||
): void; | ||
@@ -222,3 +222,3 @@ | ||
listener: (this: ComboBox<TItem>, ev: ComboBoxEventMap<TItem>[K]) => void, | ||
options?: boolean | EventListenerOptions, | ||
options?: EventListenerOptions | boolean, | ||
): void; | ||
@@ -225,0 +225,0 @@ } |
Updated@vaadin/field-base@^23.1.3
Updated@vaadin/item@^23.1.3
Updated@vaadin/lit-renderer@^23.1.3