Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@featherds/composables

Package Overview
Dependencies
Maintainers
2
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@featherds/composables - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

6

package.json
{
"name": "@featherds/composables",
"version": "0.2.3",
"version": "0.2.4",
"publishConfig": {

@@ -10,3 +10,3 @@ "access": "public"

"dependencies": {
"@featherds/utils": "^0.2.3",
"@featherds/utils": "^0.2.4",
"lodash.debounce": "^4.0.8",

@@ -20,3 +20,3 @@ "vue": "^3.1.0-0"

"types": "./index.d.ts",
"gitHead": "fad5ee7b18e9e7682050e129629a9da8276adff7"
"gitHead": "14a6e4fa352587dafe9f5e533d289439b8c3ca74"
}

@@ -28,3 +28,3 @@ import { ref, inject, computed, onMounted } from "vue";

thisEl = tab.value.parentElement;
parent = thisEl?.parentNode;
parent = (thisEl && thisEl.parentNode) ? thisEl.parentNode : [];
childNodes = [].filter.call(parent.children, function (el) {

@@ -31,0 +31,0 @@ return el.querySelectorAll("[role=tab]").length;

@@ -22,3 +22,3 @@ import { ref, inject, computed, onMounted } from "vue";

thisEl = panel.value;
parent = thisEl?.parentNode;
parent = (thisEl && thisEl.parentNode) ? thisEl.parentNode : [];
index = thisEl

@@ -25,0 +25,0 @@ ? Array.prototype.indexOf.call(parent.children, thisEl)

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