@vaadin/vaadin-select
Advanced tools
Comparing version 20.0.0-alpha1 to 20.0.0-alpha2
{ | ||
"name": "@vaadin/vaadin-select", | ||
"version": "20.0.0-alpha1", | ||
"version": "20.0.0-alpha2", | ||
"description": "vaadin-select", | ||
@@ -27,5 +27,2 @@ "main": "vaadin-select.js", | ||
], | ||
"scripts": { | ||
"dist": "rimraf dist && polymer analyze vaadin-* > analysis.json && rollup -c rollup.config.js && cp analysis.json dist" | ||
}, | ||
"dependencies": { | ||
@@ -35,22 +32,17 @@ "@polymer/iron-media-query": "^3.0.0", | ||
"@polymer/polymer": "^3.2.0", | ||
"@vaadin/vaadin-control-state-mixin": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-element-mixin": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-item": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-list-box": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-list-mixin": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-lumo-styles": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-material-styles": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-overlay": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-text-field": "^20.0.0-alpha1", | ||
"@vaadin/vaadin-themable-mixin": "^20.0.0-alpha1" | ||
"@vaadin/vaadin-control-state-mixin": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-element-mixin": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-item": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-list-box": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-list-mixin": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-lumo-styles": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-material-styles": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-overlay": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-text-field": "^20.0.0-alpha2", | ||
"@vaadin/vaadin-themable-mixin": "^20.0.0-alpha2" | ||
}, | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.1.5", | ||
"@open-wc/rollup-plugin-html": "^1.2.5", | ||
"@open-wc/testing-helpers": "^1.8.0", | ||
"@polymer/iron-component-page": "^4.0.0", | ||
"@polymer/iron-test-helpers": "^3.0.0", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^2.34.1", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"sinon": "^9.2.0" | ||
@@ -61,3 +53,3 @@ }, | ||
}, | ||
"gitHead": "93c8e0ec03a178c6d74261261f985bd07f7cc79c" | ||
"gitHead": "c1598b30fb55cacd72ee4105e9f39cf56c9d5c79" | ||
} |
@@ -21,10 +21,6 @@ /** | ||
/** | ||
* The overlay element. | ||
* An element used internally by `<vaadin-select>`. Not intended to be used separately. | ||
* | ||
* ### Styling | ||
* | ||
* See [`<vaadin-overlay>` documentation](https://github.com/vaadin/vaadin-overlay/blob/master/src/vaadin-overlay.html) | ||
* for `<vaadin-select-overlay>` parts. | ||
* | ||
* See [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki) | ||
* @extends OverlayElement | ||
* @protected | ||
*/ | ||
@@ -31,0 +27,0 @@ class SelectOverlayElement extends OverlayElement { |
@@ -9,10 +9,6 @@ /** | ||
/** | ||
* The text-field element. | ||
* An element used internally by `<vaadin-select>`. Not intended to be used separately. | ||
* | ||
* ### Styling | ||
* | ||
* See [`<vaadin-text-field>` documentation](https://github.com/vaadin/vaadin-text-field/blob/master/src/vaadin-text-field.html) | ||
* for `<vaadin-select-text-field>` parts and available slots (prefix, suffix etc.) | ||
* | ||
* See [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki) | ||
* @extends TextFieldElement | ||
* @protected | ||
*/ | ||
@@ -24,2 +20,3 @@ class SelectTextFieldElement extends TextFieldElement { | ||
/** @protected */ | ||
get focusElement() { | ||
@@ -29,2 +26,3 @@ return this.shadowRoot.querySelector('[part=input-field]'); | ||
/** @protected */ | ||
get inputElement() { | ||
@@ -31,0 +29,0 @@ return this.shadowRoot.querySelector('input'); |
@@ -93,10 +93,12 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js'; | ||
* | ||
* ### Internal components | ||
* | ||
* In addition to `<vaadin-select>` itself, the following internal | ||
* components are themable: | ||
* | ||
* - `<vaadin-select-text-field>` | ||
* - `<vaadin-select-overlay>` | ||
* - `<vaadin-select-text-field>` - has the same API as [`<vaadin-text-field>`](#/elements/vaadin-text-field). | ||
* - `<vaadin-select-overlay>` - has the same API as [`<vaadin-overlay>`](#/elements/vaadin-overlay). | ||
* | ||
* Note: the `theme` attribute value set on `<vaadin-select>` is | ||
* propagated to the internal themable components listed above. | ||
* propagated to the internal components listed above. | ||
* | ||
@@ -103,0 +105,0 @@ * @fires {Event} change - Fired when the user commits a value change. |
@@ -115,10 +115,12 @@ /** | ||
* | ||
* ### Internal components | ||
* | ||
* In addition to `<vaadin-select>` itself, the following internal | ||
* components are themable: | ||
* | ||
* - `<vaadin-select-text-field>` | ||
* - `<vaadin-select-overlay>` | ||
* - `<vaadin-select-text-field>` - has the same API as [`<vaadin-text-field>`](#/elements/vaadin-text-field). | ||
* - `<vaadin-select-overlay>` - has the same API as [`<vaadin-overlay>`](#/elements/vaadin-overlay). | ||
* | ||
* Note: the `theme` attribute value set on `<vaadin-select>` is | ||
* propagated to the internal themable components listed above. | ||
* propagated to the internal components listed above. | ||
* | ||
@@ -125,0 +127,0 @@ * @fires {Event} change - Fired when the user commits a value change. |
4
54955
1106