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

vgr-komponentkartan

Package Overview
Dependencies
Maintainers
1
Versions
725
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vgr-komponentkartan - npm Package Compare versions

Comparing version 0.0.24 to 0.0.25

Content/main.css

5

component-package/controls/expandableContainer/expandableContainer.component.js

@@ -20,4 +20,7 @@ "use strict";

//If we click on an element INSIDE the header, get a reference to the actual header first
if (!header.hasClass("expandable-container__header"))
if (!header.hasClass("expandable-container__header")) {
if (header.parents(".expandable-container__header").length === 0)
return;
header = header.closest(".expandable-container__header");
}
//Slide clicked panel up/down

@@ -24,0 +27,0 @@ header.next(".expandable-container__content").slideToggle(400);

7

component-package/controls/expandableContainer/expandableContainer.component.ts

@@ -20,5 +20,8 @@ import { Component, HostListener } from "@angular/core";

//If we click on an element INSIDE the header, get a reference to the actual header first
if (!header.hasClass("expandable-container__header"))
if (!header.hasClass("expandable-container__header")) {
if (header.parents(".expandable-container__header").length === 0)
return;
header = header.closest(".expandable-container__header");
}
//Slide clicked panel up/down

@@ -25,0 +28,0 @@ header.next(".expandable-container__content").slideToggle(400);

{
"name": "vgr-komponentkartan",
"version": "0.0.24",
"version": "0.0.25",
"author": "Västra Götalandsregionen",
"scripts": {
"[start-app]": "concurrent \"npm run _copy-fonts\" \"npm run _watch-typescript\" \"npm run _local-webserver\" \"npm run _watch-css\"",
"[start-app]": "concurrent \"npm run _watch-typescript\" \"npm run _local-webserver\" \"npm run _watch-css\"",
"_compile-typescript": "tsc",

@@ -8,0 +8,0 @@ "_watch-typescript": "tsc -w",

Sorry, the diff of this file is not supported yet

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