Socket
Socket
Sign inDemoInstall

@blueprintjs/core

Package Overview
Dependencies
Maintainers
1
Versions
298
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blueprintjs/core - npm Package Compare versions

Comparing version 1.23.1 to 1.24.0

examples/controlExamples.tsx

1

dist/common/abstractComponent.d.ts

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ /**

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { Intent } from "./intent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent, Intent, IProps } from "../../common";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IActionProps, ILinkProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IActionProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractButton, IButtonProps } from "./abstractButton";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
export interface IOffset {

@@ -2,0 +3,0 @@ left: number;

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ export interface IContextMenuTarget extends React.Component<any, any> {

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -34,2 +35,7 @@ import { AbstractComponent } from "../../common/abstractComponent";

title?: string | JSX.Element;
/**
* Name of the transition for internal `CSSTransitionGroup`.
* Providing your own name here will require defining new CSS transition properties.
*/
transitionName?: string;
}

@@ -36,0 +42,0 @@ export declare class Dialog extends AbstractComponent<IDialogProps, {}> {

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

6

dist/components/editable-text/editableText.js

@@ -255,6 +255,6 @@ /*

if (selectionStart >= 0) {
var before = value.substring(0, selectionStart);
var after = value.substring(selectionEnd, value.length);
var before_1 = value.substring(0, selectionStart);
var after_1 = value.substring(selectionEnd, value.length);
var len = text.length;
el.value = "" + before + text + after;
el.value = "" + before_1 + text + after_1;
el.selectionStart = selectionStart + len;

@@ -261,0 +261,0 @@ el.selectionEnd = selectionStart + len;

@@ -0,4 +1,6 @@

/// <reference types="react" />
import * as React from "react";
import { IProps } from "../../common/props";
export interface IControlProps extends IProps {
import { HTMLInputProps } from "../../index";
export interface IControlProps extends IProps, HTMLInputProps {
/** Whether the control is checked. */

@@ -12,4 +14,16 @@ checked?: boolean;

inputRef?: (ref: HTMLInputElement) => any;
/** Text label for the control. */
/**
* Text label for the control.
*
* This prop actually supports JSX elements, but TypeScript will throw an error because
* `HTMLProps` only allows strings. Use `labelElement` to supply a JSX element in TypeScript.
*/
label?: string;
/**
* JSX Element label for the control.
*
* This prop is necessary for TypeScript consumers as the type definition for `label` only
* accepts strings. JavaScript consumers can provide a JSX element directly to `label`.
*/
labelElement?: React.ReactNode;
/** Event handler invoked when input value is changed. */

@@ -19,3 +33,3 @@ onChange?: React.FormEventHandler<HTMLInputElement>;

/** Base Component class for all Controls */
export declare class Control<P extends IControlProps> extends React.Component<React.HTMLProps<HTMLInputElement> & P, {}> {
export declare class Control<P extends IControlProps> extends React.Component<P, {}> {
protected renderControl(type: "checkbox" | "radio", typeClassName: string, inputRef?: (ref: HTMLInputElement) => any): JSX.Element;

@@ -54,10 +68,10 @@ }

}
export declare const CheckboxFactory: React.ComponentFactory<React.HTMLProps<HTMLInputElement> & ICheckboxProps & {
export declare const CheckboxFactory: React.ComponentFactory<ICheckboxProps & {
children?: React.ReactNode;
}, Checkbox>;
export declare const SwitchFactory: React.ComponentFactory<React.HTMLProps<HTMLInputElement> & ISwitchProps & {
export declare const SwitchFactory: React.ComponentFactory<ISwitchProps & {
children?: React.ReactNode;
}, Switch>;
export declare const RadioFactory: React.ComponentFactory<React.HTMLProps<HTMLInputElement> & IRadioProps & {
export declare const RadioFactory: React.ComponentFactory<IRadioProps & {
children?: React.ReactNode;
}, Radio>;

@@ -24,2 +24,3 @@ /*

"indeterminate",
"labelElement",
];

@@ -42,2 +43,3 @@ /** Base Component class for all Controls */

this.props.label,
this.props.labelElement,
this.props.children));

@@ -44,0 +46,0 @@ var _a;

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { HTMLInputProps, IControlledProps, IIntentProps, IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent, HTMLInputProps, IIntentProps, IProps, Position } from "../../common";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import { ReactElement } from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent, IProps } from "../../common";

@@ -14,1 +14,7 @@ import { IDialogProps } from "../../components";

export declare function hideHotkeysDialog(): void;
/**
* Use this function instead of `hideHotkeysDialog` if you need to ensure that all hotkey listeners
* have time to execute with the dialog in a consistent open state. This can avoid flickering the
* dialog between open and closed states as successive listeners fire.
*/
export declare function hideHotkeysDialogAfterDelay(): void;

@@ -17,2 +17,7 @@ /*

var hotkeys_1 = require("./hotkeys");
/**
* The delay before showing or hiding the dialog. Should be long enough to
* allow all registered hotkey listeners to execute first.
*/
var DELAY_IN_MS = 10;
var HotkeysDialog = (function () {

@@ -26,3 +31,2 @@ function HotkeysDialog() {

this.isDialogShowing = false;
this.timeoutToken = 0;
this.show = function () {

@@ -61,5 +65,9 @@ _this.isDialogShowing = true;

// reset timeout for debounce
clearTimeout(this.timeoutToken);
this.timeoutToken = setTimeout(this.show, 10);
clearTimeout(this.showTimeoutToken);
this.showTimeoutToken = setTimeout(this.show, DELAY_IN_MS);
};
HotkeysDialog.prototype.hideAfterDelay = function () {
clearTimeout(this.hideTimeoutToken);
this.hideTimeoutToken = setTimeout(this.hide, DELAY_IN_MS);
};
HotkeysDialog.prototype.isShowing = function () {

@@ -120,3 +128,12 @@ return this.isDialogShowing;

exports.hideHotkeysDialog = hideHotkeysDialog;
/**
* Use this function instead of `hideHotkeysDialog` if you need to ensure that all hotkey listeners
* have time to execute with the dialog in a consistent open state. This can avoid flickering the
* dialog between open and closed states as successive listeners fire.
*/
function hideHotkeysDialogAfterDelay() {
HOTKEYS_DIALOG.hideAfterDelay();
}
exports.hideHotkeysDialogAfterDelay = hideHotkeysDialogAfterDelay;
//# sourceMappingURL=hotkeysDialog.js.map

@@ -0,1 +1,2 @@

/// <reference types="react" />
import { ReactNode } from "react";

@@ -2,0 +3,0 @@ import { IHotkeyProps } from "./hotkey";

@@ -26,11 +26,16 @@ /*

this.handleKeyDown = function (e) {
if (hotkeysDialog_1.isHotkeysDialogShowing()) {
return;
}
var combo = hotkeyParser_1.getKeyCombo(e);
var isTextInput = _this.isTextInput(e);
if (!isTextInput && hotkeyParser_1.comboMatches(hotkeyParser_1.parseKeyCombo(SHOW_DIALOG_KEY), combo)) {
hotkeysDialog_1.showHotkeysDialog(_this.actions.map(function (action) { return action.props; }));
if (hotkeysDialog_1.isHotkeysDialogShowing()) {
hotkeysDialog_1.hideHotkeysDialogAfterDelay();
}
else {
hotkeysDialog_1.showHotkeysDialog(_this.actions.map(function (action) { return action.props; }));
}
return;
}
else if (hotkeysDialog_1.isHotkeysDialogShowing()) {
return;
}
_this.invokeNamedCallbackIfComboRecognized(combo, "onKeyDown", e);

@@ -37,0 +42,0 @@ };

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IHotkeysProps } from "./hotkeys";

@@ -0,1 +1,2 @@

/// <reference types="react" />
/**

@@ -2,0 +3,0 @@ * Copyright 2016 Palantir Technologies, Inc. All rights reserved.

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -46,6 +46,11 @@ /*

_this.handleBackdropMouseDown = function (e) {
if (_this.props.canOutsideClickClose) {
utils_1.safeInvoke(_this.props.onClose, e);
var _a = _this.props, backdropProps = _a.backdropProps, canOutsideClickClose = _a.canOutsideClickClose, enforceFocus = _a.enforceFocus, onClose = _a.onClose;
if (canOutsideClickClose) {
utils_1.safeInvoke(onClose, e);
}
utils_1.safeInvoke(_this.props.backdropProps.onMouseDown, e);
if (enforceFocus) {
// make sure document.activeElement is updated before bringing the focus back
requestAnimationFrame(function () { return _this.bringFocusInsideOverlay(); });
}
utils_1.safeInvoke(backdropProps.onMouseDown, e);
};

@@ -154,3 +159,2 @@ _this.handleDocumentClick = function (e) {

document.removeEventListener("mousedown", this.handleDocumentClick);
document.body.classList.remove(Classes.OVERLAY_OPEN);
var openStack = Overlay_1.openStack;

@@ -160,6 +164,11 @@ var stackIndex = openStack.indexOf(this);

openStack.splice(stackIndex, 1);
var lastOpenedOverlay = Overlay_1.getLastOpened();
if (openStack.length > 0 && lastOpenedOverlay.props.enforceFocus) {
document.addEventListener("focus", lastOpenedOverlay.handleDocumentFocus, /* useCapture */ true);
if (openStack.length > 0) {
var lastOpenedOverlay = Overlay_1.getLastOpened();
if (lastOpenedOverlay.props.enforceFocus) {
document.addEventListener("focus", lastOpenedOverlay.handleDocumentFocus, /* useCapture */ true);
}
}
else {
document.body.classList.remove(Classes.OVERLAY_OPEN);
}
}

@@ -166,0 +175,0 @@ };

@@ -0,1 +1,2 @@

/// <reference types="react" />
import { CSSProperties } from "react";

@@ -2,0 +3,0 @@ import { Position } from "../../common/position";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import * as Tether from "tether";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IPopoverProps } from "./popover";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IIntentProps, IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { CoreSlider, ICoreSliderProps } from "./coreSlider";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { CoreSlider, ICoreSliderProps } from "./coreSlider";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IIntentProps, IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import * as spinner from "./spinner";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { ITab2Props, TabId } from "./tab2";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IIntentProps, IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { AbstractComponent } from "../../common/abstractComponent";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import { AbstractComponent } from "../../common/abstractComponent";

@@ -2,0 +3,0 @@ import { Position } from "../../common/position";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { ITooltipProps } from "./tooltip";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { Position } from "../../common/position";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ import { IProps } from "../../common/props";

@@ -0,1 +1,2 @@

/// <reference types="react" />
import * as React from "react";

@@ -2,0 +3,0 @@ export interface ITreeNode {

@@ -403,2 +403,10 @@ export declare const IconClasses: {

ERASER: string;
ISSUE: string;
ISSUE_NEW: string;
ISSUE_CLOSED: string;
PANEL_STATS: string;
PANEL_TABLE: string;
TICK_CIRCLE: string;
PRESCRIPTION: string;
NEW_PRESCRIPTION: string;
};

@@ -409,4 +409,12 @@ /*

ERASER: "pt-icon-eraser",
ISSUE: "pt-icon-issue",
ISSUE_NEW: "pt-icon-issue-new",
ISSUE_CLOSED: "pt-icon-issue-closed",
PANEL_STATS: "pt-icon-panel-stats",
PANEL_TABLE: "pt-icon-panel-table",
TICK_CIRCLE: "pt-icon-tick-circle",
PRESCRIPTION: "pt-icon-prescription",
NEW_PRESCRIPTION: "pt-icon-new-prescription",
};
//# sourceMappingURL=iconClasses.js.map

@@ -403,2 +403,10 @@ export declare const IconContents: {

ERASER: string;
ISSUE: string;
ISSUE_NEW: string;
ISSUE_CLOSED: string;
PANEL_STATS: string;
PANEL_TABLE: string;
TICK_CIRCLE: string;
PRESCRIPTION: string;
NEW_PRESCRIPTION: string;
};

@@ -409,4 +409,12 @@ /*

ERASER: "\ue773",
ISSUE: "\ue774",
ISSUE_NEW: "\ue775",
ISSUE_CLOSED: "\ue776",
PANEL_STATS: "\ue777",
PANEL_TABLE: "\ue778",
TICK_CIRCLE: "\ue779",
PRESCRIPTION: "\ue78a",
NEW_PRESCRIPTION: "\ue78b",
};
//# sourceMappingURL=iconStrings.js.map

@@ -12,3 +12,3 @@ /**

export * from "./collapsibleListExample";
export * from "./controlsExample";
export * from "./controlExamples";
export * from "./dialogExample";

@@ -15,0 +15,0 @@ export * from "./contextMenuExample";

{
"name": "@blueprintjs/core",
"version": "1.23.1",
"version": "1.24.0",
"description": "Core styles & components",

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

@@ -11,2 +11,4 @@ @# Checkboxes

@reactExample CheckboxExample
@## CSS API

@@ -13,0 +15,0 @@

@@ -10,2 +10,4 @@ @# Radios

@reactExample RadioExample
@## CSS API

@@ -12,0 +14,0 @@

@@ -6,2 +6,4 @@ @# Switches

@reactExample SwitchExample
@## CSS API

@@ -8,0 +10,0 @@

@@ -14,3 +14,3 @@ /*

import { IHotkeysProps } from "./hotkeys";
import { isHotkeysDialogShowing, showHotkeysDialog } from "./hotkeysDialog";
import { hideHotkeysDialogAfterDelay, isHotkeysDialogShowing, showHotkeysDialog } from "./hotkeysDialog";

@@ -57,6 +57,2 @@ const SHOW_DIALOG_KEY = "?";

public handleKeyDown = (e: KeyboardEvent) => {
if (isHotkeysDialogShowing()) {
return;
}
const combo = getKeyCombo(e);

@@ -66,4 +62,10 @@ const isTextInput = this.isTextInput(e);

if (!isTextInput && comboMatches(parseKeyCombo(SHOW_DIALOG_KEY), combo)) {
showHotkeysDialog(this.actions.map((action) => action.props));
if (isHotkeysDialogShowing()) {
hideHotkeysDialogAfterDelay();
} else {
showHotkeysDialog(this.actions.map((action) => action.props));
}
return;
} else if (isHotkeysDialogShowing()) {
return;
}

@@ -70,0 +72,0 @@

@@ -408,2 +408,10 @@ /*

ERASER: "pt-icon-eraser",
ISSUE: "pt-icon-issue",
ISSUE_NEW: "pt-icon-issue-new",
ISSUE_CLOSED: "pt-icon-issue-closed",
PANEL_STATS: "pt-icon-panel-stats",
PANEL_TABLE: "pt-icon-panel-table",
TICK_CIRCLE: "pt-icon-tick-circle",
PRESCRIPTION: "pt-icon-prescription",
NEW_PRESCRIPTION: "pt-icon-new-prescription",
};

@@ -408,2 +408,10 @@ /*

ERASER: "\ue773",
ISSUE: "\ue774",
ISSUE_NEW: "\ue775",
ISSUE_CLOSED: "\ue776",
PANEL_STATS: "\ue777",
PANEL_TABLE: "\ue778",
TICK_CIRCLE: "\ue779",
PRESCRIPTION: "\ue78a",
NEW_PRESCRIPTION: "\ue78b",
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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