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

@sankhyalabs/core

Package Overview
Dependencies
Maintainers
2
Versions
755
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sankhyalabs/core - npm Package Compare versions

Comparing version 1.0.19 to 1.0.20

1

dist/ui/FloatingManager.d.ts

@@ -19,2 +19,3 @@ interface FloatingOptions {

private static getFloatIndex;
static isFloating(id: number): boolean;
static float(content: HTMLElement, parent: HTMLElement, options?: FloatingOptions): number;

@@ -21,0 +22,0 @@ static updateFloatPosition(content: HTMLElement, parent: HTMLElement, options?: FloatingOptions): void;

@@ -70,2 +70,5 @@ class FloatingEntry {

}
static isFloating(id) {
return FloatingManager.entries[id] !== undefined;
}
static float(content, parent, options = { autoClose: true }) {

@@ -72,0 +75,0 @@ if (!FloatingManager.initialized) {

2

package.json
{
"name": "@sankhyalabs/core",
"version": "1.0.19",
"version": "1.0.20",
"description": "Modulo core JavaScript da Sankhya.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -101,2 +101,6 @@ interface FloatingOptions {

public static isFloating(id: number){
return FloatingManager.entries[id] !== undefined;
}
public static float(content: HTMLElement, parent: HTMLElement, options: FloatingOptions = { autoClose: true }): number {

@@ -103,0 +107,0 @@

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