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.9 to 1.0.10

2

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

@@ -5,0 +5,0 @@ "main": "theme/lumo/vcf-anchor-nav.js",

@@ -79,3 +79,3 @@ import { PolymerElement, html } from '@polymer/polymer/polymer-element.js';

</div>
<div id="content" paer="content">
<div id="content" part="content">
<slot></slot>

@@ -82,0 +82,0 @@ </div>

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

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

@@ -218,3 +218,6 @@

this.$.slot.addEventListener('slotchange', () => this._onSlotChange());
window.addEventListener('popstate', () => this._scrollToHash());
window.addEventListener('popstate', () => {
this._initTabHighlight();
this._scrollToHash();
});
this._verticalTabs = false;

@@ -260,3 +263,4 @@ }

_getAnchorHref() {
return location.pathname[location.pathname.length - 1] === '/' ? location.pathname : location.pathname + '/';
const end = location.pathname.length - 1;
return location.pathname[end] === '/' ? location.pathname : location.pathname + '/';
}

@@ -263,0 +267,0 @@

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