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

@vaadin-component-factory/vcf-anchor-nav

Package Overview
Dependencies
Maintainers
5
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin-component-factory/vcf-anchor-nav - npm Package Compare versions

Comparing version 1.0.10 to 1.0.13

3

package.json
{
"name": "@vaadin-component-factory/vcf-anchor-nav",
"version": "1.0.10",
"version": "1.0.13",
"description": "Component with tabs used as anchor navigation and content sections. Automates the linking of tabs and sections.",

@@ -67,2 +67,3 @@ "main": "theme/lumo/vcf-anchor-nav.js",

"@rollup/plugin-node-resolve": "^7.1.3",
"@vaadin-component-factory/vcf-element-util": "^0.1.4",
"@vaadin/vaadin-button": "^2.3.0",

@@ -69,0 +70,0 @@ "@vaadin/vaadin-text-field": "2.5.5",

@@ -145,3 +145,3 @@ /**

static get version() {
return '1.0.10';
return '1.0.13';
}

@@ -278,5 +278,9 @@

_initContainerResizeObserver() {
let firstResize = true;
const observer = new ResizeObserver(() => {
this._initTabHighlight();
if (this.selectedId) this.scrollTo({ top: this.querySelector(`#${this.selectedId}`).offsetTop - this._tabHeight });
if (this.selectedId && firstResize) {
this.scrollTo({ top: this.querySelector(`#${this.selectedId}`).offsetTop - this._tabHeight });
firstResize = false;
}
});

@@ -283,0 +287,0 @@ observer.observe(this.$.container);

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