@vaadin/vaadin-tabs
Advanced tools
Comparing version 3.1.0 to 3.2.0-alpha1
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-tabs", | ||
"version": "3.1.0", | ||
"version": "3.2.0-alpha1", | ||
"main": "vaadin-tabs.js", | ||
@@ -22,2 +22,3 @@ "author": "Vaadin Ltd", | ||
"files": [ | ||
"vaadin-*.d.ts", | ||
"vaadin-*.js", | ||
@@ -36,13 +37,13 @@ "src", | ||
"@polymer/iron-resizable-behavior": "^3.0.0", | ||
"@vaadin/vaadin-themable-mixin": "^1.5.2", | ||
"@vaadin/vaadin-list-mixin": "^2.4.0", | ||
"@vaadin/vaadin-item": "^2.2.0", | ||
"@vaadin/vaadin-themable-mixin": "^1.6.1", | ||
"@vaadin/vaadin-list-mixin": "^2.5.0", | ||
"@vaadin/vaadin-item": "^2.3.0-alpha1", | ||
"@vaadin/vaadin-lumo-styles": "^1.1.0", | ||
"@vaadin/vaadin-material-styles": "^1.1.0", | ||
"@vaadin/vaadin-element-mixin": "^2.3.2" | ||
"@vaadin/vaadin-element-mixin": "^2.4.1" | ||
}, | ||
"scripts": { | ||
"generate-typings": "gen-typescript-declarations --outDir . --verify" | ||
}, | ||
"devDependencies": { | ||
"generate-typings": "gen-typescript-declarations --outDir . --verify" | ||
}, | ||
"devDependencies": { | ||
"@polymer/iron-component-page": "^4.0.0", | ||
@@ -49,0 +50,0 @@ "@polymer/iron-icons": "^3.0.0", |
@@ -51,3 +51,3 @@ /** | ||
static get version() { | ||
return '3.1.0'; | ||
return '3.2.0-alpha1'; | ||
} | ||
@@ -60,2 +60,6 @@ | ||
/** | ||
* @param {!KeyboardEvent} event | ||
* @protected | ||
*/ | ||
_onKeyup(event) { | ||
@@ -62,0 +66,0 @@ const willClick = this.hasAttribute('active'); |
@@ -155,3 +155,3 @@ /** | ||
static get version() { | ||
return '3.1.0'; | ||
return '3.2.0-alpha1'; | ||
} | ||
@@ -163,2 +163,3 @@ | ||
* Set tabs disposition. Possible values are `horizontal|vertical` | ||
* @type {!ListOrientation} | ||
*/ | ||
@@ -172,2 +173,3 @@ orientation: { | ||
* The index of the selected tab. | ||
* @type {number} | ||
*/ | ||
@@ -197,2 +199,3 @@ selected: { | ||
/** @private */ | ||
_scrollForward() { | ||
@@ -202,2 +205,3 @@ this._scroll(-this.__direction * this._scrollOffset); | ||
/** @private */ | ||
_scrollBack() { | ||
@@ -207,2 +211,6 @@ this._scroll(this.__direction * this._scrollOffset); | ||
/** | ||
* @return {number} | ||
* @protected | ||
*/ | ||
get _scrollOffset() { | ||
@@ -212,2 +220,6 @@ return this._vertical ? this._scrollerElement.offsetHeight : this._scrollerElement.offsetWidth; | ||
/** | ||
* @return {!HTMLElement} | ||
* @protected | ||
*/ | ||
get _scrollerElement() { | ||
@@ -217,2 +229,3 @@ return this.$.scroll; | ||
/** @private */ | ||
get __direction() { | ||
@@ -222,2 +235,3 @@ return !this._vertical && this.getAttribute('dir') === 'rtl' ? 1 : -1; | ||
/** @private */ | ||
_updateOverflow() { | ||
@@ -243,2 +257,3 @@ const scrollPosition = this._vertical ? this._scrollerElement.scrollTop : this.__getNormalizedScrollLeft(this._scrollerElement); | ||
/** @private */ | ||
_repaintShadowNodesHack() { | ||
@@ -245,0 +260,0 @@ // Safari 10 has an issue with repainting shadow root element styles when a host attribute changes. |
import './theme/lumo/vaadin-tab.js'; | ||
export * from './src/vaadin-tab.js'; |
import './theme/lumo/vaadin-tabs.js'; | ||
export * from './src/vaadin-tabs.js'; |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
53300
19
1045
1