You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@vaadin/time-picker

Package Overview
Dependencies
Maintainers
14
Versions
445
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/time-picker - npm Package Compare versions

Comparing version

to
23.2.0-alpha1

18

package.json
{
"name": "@vaadin/time-picker",
"version": "23.1.1",
"version": "23.2.0-alpha1",
"publishConfig": {

@@ -37,9 +37,9 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/combo-box": "^23.1.1",
"@vaadin/component-base": "^23.1.1",
"@vaadin/field-base": "^23.1.1",
"@vaadin/input-container": "^23.1.1",
"@vaadin/vaadin-lumo-styles": "^23.1.1",
"@vaadin/vaadin-material-styles": "^23.1.1",
"@vaadin/vaadin-themable-mixin": "^23.1.1"
"@vaadin/combo-box": "23.2.0-alpha1",
"@vaadin/component-base": "23.2.0-alpha1",
"@vaadin/field-base": "23.2.0-alpha1",
"@vaadin/input-container": "23.2.0-alpha1",
"@vaadin/vaadin-lumo-styles": "23.2.0-alpha1",
"@vaadin/vaadin-material-styles": "23.2.0-alpha1",
"@vaadin/vaadin-themable-mixin": "23.2.0-alpha1"
},

@@ -51,3 +51,3 @@ "devDependencies": {

},
"gitHead": "390458d6519433a2dd502cef90da48e84573a275"
"gitHead": "f226a2976c270d3d53c824f6e0a740a5d3382d91"
}

@@ -6,3 +6,5 @@ /**

*/
import './vaadin-time-picker-dropdown.js';
import './vaadin-time-picker-item.js';
import './vaadin-time-picker-scroller.js';
import './vaadin-time-picker-overlay.js';
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';

@@ -35,13 +37,12 @@ import { ComboBoxMixin } from '@vaadin/combo-box/src/vaadin-combo-box-mixin.js';

<vaadin-time-picker-dropdown
id="dropdown"
opened="[[opened]]"
<vaadin-time-picker-overlay
id="overlay"
hidden$="[[_isOverlayHidden(filteredItems, loading)]]"
opened="[[_overlayOpened]]"
loading$="[[loading]]"
theme$="[[_theme]]"
position-target="[[positionTarget]]"
renderer="[[renderer]]"
_focused-index="[[_focusedIndex]]"
_item-id-path="[[itemIdPath]]"
_item-label-path="[[itemLabelPath]]"
loading="[[loading]]"
theme="[[_theme]]"
></vaadin-time-picker-dropdown>
no-vertical-overlap
restore-focus-node="[[inputElement]]"
></vaadin-time-picker-overlay>
`;

@@ -59,16 +60,17 @@ }

/**
* Reference to the clear button element.
* Tag name prefix used by scroller and items.
* @protected
* @return {!HTMLElement}
* @return {string}
*/
get clearElement() {
return this.querySelector('[part="clear-button"]');
get _tagNamePrefix() {
return 'vaadin-time-picker';
}
/**
* Reference to the clear button element.
* @protected
* @override
* @return {!HTMLElement}
*/
_getItemElements() {
return Array.from(this.$.dropdown._scroller.querySelectorAll('vaadin-time-picker-item'));
get clearElement() {
return this.querySelector('[part="clear-button"]');
}

@@ -75,0 +77,0 @@