New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/vaadin-tabs

Package Overview
Dependencies
Maintainers
16
Versions
257
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-tabs - npm Package Compare versions

Comparing version 3.1.0 to 3.2.0-alpha1

src/vaadin-tab.d.ts

17

package.json

@@ -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';
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc