@vaadin/vaadin-list-mixin
Advanced tools
Comparing version 23.0.9 to 23.0.10
{ | ||
"name": "@vaadin/vaadin-list-mixin", | ||
"version": "23.0.9", | ||
"version": "23.0.10", | ||
"publishConfig": { | ||
@@ -36,3 +36,3 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^23.0.9" | ||
"@vaadin/component-base": "^23.0.10" | ||
}, | ||
@@ -44,3 +44,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "4d687bdd48ba78d55f3371a78b70818e4dfca1a3" | ||
"gitHead": "e8402a55ce0e823ae6da5c97486998cfd931b1d3" | ||
} |
@@ -25,3 +25,3 @@ /** | ||
_hasVaadinListMixin: { | ||
value: true | ||
value: true, | ||
}, | ||
@@ -36,3 +36,3 @@ | ||
reflectToAttribute: true, | ||
notify: true | ||
notify: true, | ||
}, | ||
@@ -49,3 +49,3 @@ | ||
reflectToAttribute: true, | ||
value: '' | ||
value: '', | ||
}, | ||
@@ -68,3 +68,3 @@ | ||
readOnly: true, | ||
notify: true | ||
notify: true, | ||
}, | ||
@@ -78,4 +78,4 @@ | ||
type: String, | ||
value: '' | ||
} | ||
value: '', | ||
}, | ||
}; | ||
@@ -174,3 +174,3 @@ } | ||
.toLowerCase() | ||
.indexOf(this._searchBuf) === 0 | ||
.indexOf(this._searchBuf) === 0, | ||
) | ||
@@ -177,0 +177,0 @@ ) { |
@@ -13,3 +13,3 @@ /** | ||
export declare function MultiSelectListMixin<T extends Constructor<HTMLElement>>( | ||
base: T | ||
base: T, | ||
): T & Constructor<ListMixinClass> & Constructor<ListMixinClass>; | ||
@@ -16,0 +16,0 @@ |
@@ -25,3 +25,3 @@ /** | ||
reflectToAttribute: true, | ||
observer: '_multipleChanged' | ||
observer: '_multipleChanged', | ||
}, | ||
@@ -39,4 +39,4 @@ | ||
return []; | ||
} | ||
} | ||
}, | ||
}, | ||
}; | ||
@@ -43,0 +43,0 @@ } |
29381