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

dock-spawn-ts

Package Overview
Dependencies
Maintainers
1
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dock-spawn-ts - npm Package Compare versions

Comparing version 2.530.0 to 2.531.0

lib/css/dock-manager-context-menu.css

5

lib/js/PanelContainer.js

@@ -368,3 +368,6 @@ import { Utils } from "./Utils.js";

undockToBrowserDialog() {
moveElementToNewBrowserWindow(this.elementContent, {
let el = this.elementContent;
if (el instanceof HTMLSlotElement)
el = el.assignedElements()[0];
moveElementToNewBrowserWindow(el, {
title: '',

@@ -371,0 +374,0 @@ closeCallback: () => { },

2

package.json
{
"name": "dock-spawn-ts",
"version": "2.530.0",
"version": "2.531.0",
"description": "DockSpawn Typescript Version",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -460,3 +460,6 @@ import { DockManager } from "./DockManager.js";

undockToBrowserDialog() {
moveElementToNewBrowserWindow(this.elementContent, {
let el: HTMLElement = this.elementContent;
if (el instanceof HTMLSlotElement)
el = <HTMLElement>el.assignedElements()[0]
moveElementToNewBrowserWindow(el, {
title: '',

@@ -463,0 +466,0 @@ closeCallback: () => { },

Sorry, the diff of this file is too big to display

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