Socket
Socket
Sign inDemoInstall

@alfalab/core-components-button

Package Overview
Dependencies
Maintainers
18
Versions
198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alfalab/core-components-button - npm Package Compare versions

Comparing version 7.0.0 to 7.0.1

22

Component.js

@@ -56,9 +56,9 @@ 'use strict';

var styles = {"component":"button__component_1l9u1","focused":"button__focused_1l9u1","loading":"button__loading_1l9u1","text":"button__text_1l9u1","addons":"button__addons_1l9u1","stretchText":"button__stretchText_1l9u1","loader":"button__loader_1l9u1","xxs":"button__xxs_1l9u1","iconOnly":"button__iconOnly_1l9u1","xs":"button__xs_1l9u1","s":"button__s_1l9u1","m":"button__m_1l9u1","l":"button__l_1l9u1","xl":"button__xl_1l9u1","withRightAddons":"button__withRightAddons_1l9u1","ghost":"button__ghost_1l9u1","withLeftAddons":"button__withLeftAddons_1l9u1","link":"button__link_1l9u1","block":"button__block_1l9u1","nowrap":"button__nowrap_1l9u1"};
var styles = {"component":"button__component_184m6","focused":"button__focused_184m6","loading":"button__loading_184m6","text":"button__text_184m6","addons":"button__addons_184m6","stretchText":"button__stretchText_184m6","loader":"button__loader_184m6","xxs":"button__xxs_184m6","iconOnly":"button__iconOnly_184m6","xs":"button__xs_184m6","s":"button__s_184m6","m":"button__m_184m6","l":"button__l_184m6","xl":"button__xl_184m6","withRightAddons":"button__withRightAddons_184m6","ghost":"button__ghost_184m6","withLeftAddons":"button__withLeftAddons_184m6","link":"button__link_184m6","block":"button__block_184m6","nowrap":"button__nowrap_184m6"};
require('./index.css')
var defaultColors = {"primary":"button__primary_10zb0","loader":"button__loader_10zb0","secondary":"button__secondary_10zb0","outlined":"button__outlined_10zb0","tertiary":"button__tertiary_10zb0","filled":"button__filled_10zb0","transparent":"button__transparent_10zb0","link":"button__link_10zb0","ghost":"button__ghost_10zb0","component":"button__component_10zb0","loading":"button__loading_10zb0"};
var defaultColors = {"primary":"button__primary_soee7","loader":"button__loader_soee7","secondary":"button__secondary_soee7","outlined":"button__outlined_soee7","tertiary":"button__tertiary_soee7","filled":"button__filled_soee7","transparent":"button__transparent_soee7","link":"button__link_soee7","ghost":"button__ghost_soee7","component":"button__component_soee7","loading":"button__loading_soee7"};
require('./default.css')
var invertedColors = {"primary":"button__primary_pp9hr","loader":"button__loader_pp9hr","secondary":"button__secondary_pp9hr","outlined":"button__outlined_pp9hr","tertiary":"button__tertiary_pp9hr","filled":"button__filled_pp9hr","transparent":"button__transparent_pp9hr","link":"button__link_pp9hr","ghost":"button__ghost_pp9hr","component":"button__component_pp9hr","loading":"button__loading_pp9hr"};
var invertedColors = {"primary":"button__primary_hecvs","loader":"button__loader_hecvs","secondary":"button__secondary_hecvs","outlined":"button__outlined_hecvs","tertiary":"button__tertiary_hecvs","filled":"button__filled_hecvs","transparent":"button__transparent_hecvs","link":"button__link_hecvs","ghost":"button__ghost_hecvs","component":"button__component_hecvs","loading":"button__loading_hecvs"};
require('./inverted.css')

@@ -93,3 +93,3 @@

var _b, _c, _d;
var children = _a.children, _e = _a.view, view = _e === void 0 ? 'secondary' : _e, leftAddons = _a.leftAddons, rightAddons = _a.rightAddons, _f = _a.size, size = _f === void 0 ? 'm' : _f, _g = _a.block, block = _g === void 0 ? false : _g, className = _a.className, dataTestId = _a.dataTestId, href = _a.href, _h = _a.loading, loading = _h === void 0 ? false : _h, _j = _a.nowrap, nowrap = _j === void 0 ? false : _j, _k = _a.colors, colors = _k === void 0 ? 'default' : _k, _l = _a.Component, Component = _l === void 0 ? href ? 'a' : 'button' : _l, restProps = __rest(_a, ["children", "view", "leftAddons", "rightAddons", "size", "block", "className", "dataTestId", "href", "loading", "nowrap", "colors", "Component"]);
var children = _a.children, _e = _a.view, view = _e === void 0 ? 'secondary' : _e, leftAddons = _a.leftAddons, rightAddons = _a.rightAddons, _f = _a.size, size = _f === void 0 ? 'm' : _f, _g = _a.block, block = _g === void 0 ? false : _g, className = _a.className, dataTestId = _a.dataTestId, href = _a.href, _h = _a.loading, loading = _h === void 0 ? false : _h, _j = _a.nowrap, nowrap = _j === void 0 ? false : _j, _k = _a.colors, colors = _k === void 0 ? 'default' : _k, _l = _a.Component, Component = _l === void 0 ? href ? 'a' : 'button' : _l, onClick = _a.onClick, restProps = __rest(_a, ["children", "view", "leftAddons", "rightAddons", "size", "block", "className", "dataTestId", "href", "loading", "nowrap", "colors", "Component", "onClick"]);
if (['outlined', 'filled', 'transparent'].includes(view)) {

@@ -116,2 +116,3 @@ logWarning(view);

};
var _o = restProps, disabled = _o.disabled, _p = _o.type, type = _p === void 0 ? 'button' : _p, restButtonProps = __rest(_o, ["disabled", "type"]);
var buttonChildren = (React__default['default'].createElement(React__default['default'].Fragment, null,

@@ -136,2 +137,10 @@ leftAddons && React__default['default'].createElement("span", { className: styles.addons }, leftAddons),

}; }, []);
var handleClick = function (e) {
if (disabled || showLoader) {
e.preventDefault();
e.stopPropagation();
return;
}
onClick === null || onClick === void 0 ? void 0 : onClick(e);
};
if (href) {

@@ -141,6 +150,5 @@ var target = restProps.target;

var hrefProps = (_d = {}, _d[typeof Component === 'string' ? 'href' : 'to'] = href, _d);
return (React__default['default'].createElement(Component, __assign({ rel: target === '_blank' ? 'noreferrer noopener' : undefined }, componentProps, restProps, hrefProps, { ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
return (React__default['default'].createElement(Component, __assign({ rel: target === '_blank' ? 'noreferrer noopener' : undefined }, componentProps, restProps, hrefProps, { onClick: handleClick, disabled: disabled || showLoader, ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
}
var _o = restProps, disabled = _o.disabled, _p = _o.type, type = _p === void 0 ? 'button' : _p, restButtonProps = __rest(_o, ["disabled", "type"]);
return (React__default['default'].createElement(Component, __assign({}, componentProps, restButtonProps, { type: type, disabled: disabled || showLoader, ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
return (React__default['default'].createElement(Component, __assign({}, componentProps, restButtonProps, { onClick: handleClick, type: type, disabled: disabled || showLoader, ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
});

@@ -147,0 +155,0 @@ /**

@@ -89,3 +89,3 @@ 'use strict';

var _b, _c, _d;
var children = _a.children, _e = _a.view, view = _e === void 0 ? 'secondary' : _e, leftAddons = _a.leftAddons, rightAddons = _a.rightAddons, _f = _a.size, size = _f === void 0 ? 'm' : _f, _g = _a.block, block = _g === void 0 ? false : _g, className = _a.className, dataTestId = _a.dataTestId, href = _a.href, _h = _a.loading, loading = _h === void 0 ? false : _h, _j = _a.nowrap, nowrap = _j === void 0 ? false : _j, _k = _a.colors, colors = _k === void 0 ? 'default' : _k, _l = _a.Component, Component = _l === void 0 ? href ? 'a' : 'button' : _l, restProps = __rest(_a, ["children", "view", "leftAddons", "rightAddons", "size", "block", "className", "dataTestId", "href", "loading", "nowrap", "colors", "Component"]);
var children = _a.children, _e = _a.view, view = _e === void 0 ? 'secondary' : _e, leftAddons = _a.leftAddons, rightAddons = _a.rightAddons, _f = _a.size, size = _f === void 0 ? 'm' : _f, _g = _a.block, block = _g === void 0 ? false : _g, className = _a.className, dataTestId = _a.dataTestId, href = _a.href, _h = _a.loading, loading = _h === void 0 ? false : _h, _j = _a.nowrap, nowrap = _j === void 0 ? false : _j, _k = _a.colors, colors = _k === void 0 ? 'default' : _k, _l = _a.Component, Component = _l === void 0 ? href ? 'a' : 'button' : _l, onClick = _a.onClick, restProps = __rest(_a, ["children", "view", "leftAddons", "rightAddons", "size", "block", "className", "dataTestId", "href", "loading", "nowrap", "colors", "Component", "onClick"]);
if (['outlined', 'filled', 'transparent'].includes(view)) {

@@ -112,2 +112,3 @@ logWarning(view);

};
var _o = restProps, disabled = _o.disabled, _p = _o.type, type = _p === void 0 ? 'button' : _p, restButtonProps = __rest(_o, ["disabled", "type"]);
var buttonChildren = (React__default['default'].createElement(React__default['default'].Fragment, null,

@@ -132,2 +133,10 @@ leftAddons && React__default['default'].createElement("span", { className: styles__default['default'].addons }, leftAddons),

}; }, []);
var handleClick = function (e) {
if (disabled || showLoader) {
e.preventDefault();
e.stopPropagation();
return;
}
onClick === null || onClick === void 0 ? void 0 : onClick(e);
};
if (href) {

@@ -137,6 +146,5 @@ var target = restProps.target;

var hrefProps = (_d = {}, _d[typeof Component === 'string' ? 'href' : 'to'] = href, _d);
return (React__default['default'].createElement(Component, __assign({ rel: target === '_blank' ? 'noreferrer noopener' : undefined }, componentProps, restProps, hrefProps, { ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
return (React__default['default'].createElement(Component, __assign({ rel: target === '_blank' ? 'noreferrer noopener' : undefined }, componentProps, restProps, hrefProps, { onClick: handleClick, disabled: disabled || showLoader, ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
}
var _o = restProps, disabled = _o.disabled, _p = _o.type, type = _p === void 0 ? 'button' : _p, restButtonProps = __rest(_o, ["disabled", "type"]);
return (React__default['default'].createElement(Component, __assign({}, componentProps, restButtonProps, { type: type, disabled: disabled || showLoader, ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
return (React__default['default'].createElement(Component, __assign({}, componentProps, restButtonProps, { onClick: handleClick, type: type, disabled: disabled || showLoader, ref: mergeRefs__default['default']([buttonRef, ref]) }), buttonChildren));
});

@@ -143,0 +151,0 @@ /**

@@ -46,9 +46,9 @@ import React, { useRef, useState, useEffect } from 'react';

var styles = {"component":"button__component_1l9u1","focused":"button__focused_1l9u1","loading":"button__loading_1l9u1","text":"button__text_1l9u1","addons":"button__addons_1l9u1","stretchText":"button__stretchText_1l9u1","loader":"button__loader_1l9u1","xxs":"button__xxs_1l9u1","iconOnly":"button__iconOnly_1l9u1","xs":"button__xs_1l9u1","s":"button__s_1l9u1","m":"button__m_1l9u1","l":"button__l_1l9u1","xl":"button__xl_1l9u1","withRightAddons":"button__withRightAddons_1l9u1","ghost":"button__ghost_1l9u1","withLeftAddons":"button__withLeftAddons_1l9u1","link":"button__link_1l9u1","block":"button__block_1l9u1","nowrap":"button__nowrap_1l9u1"};
var styles = {"component":"button__component_184m6","focused":"button__focused_184m6","loading":"button__loading_184m6","text":"button__text_184m6","addons":"button__addons_184m6","stretchText":"button__stretchText_184m6","loader":"button__loader_184m6","xxs":"button__xxs_184m6","iconOnly":"button__iconOnly_184m6","xs":"button__xs_184m6","s":"button__s_184m6","m":"button__m_184m6","l":"button__l_184m6","xl":"button__xl_184m6","withRightAddons":"button__withRightAddons_184m6","ghost":"button__ghost_184m6","withLeftAddons":"button__withLeftAddons_184m6","link":"button__link_184m6","block":"button__block_184m6","nowrap":"button__nowrap_184m6"};
require('./index.css')
var defaultColors = {"primary":"button__primary_10zb0","loader":"button__loader_10zb0","secondary":"button__secondary_10zb0","outlined":"button__outlined_10zb0","tertiary":"button__tertiary_10zb0","filled":"button__filled_10zb0","transparent":"button__transparent_10zb0","link":"button__link_10zb0","ghost":"button__ghost_10zb0","component":"button__component_10zb0","loading":"button__loading_10zb0"};
var defaultColors = {"primary":"button__primary_soee7","loader":"button__loader_soee7","secondary":"button__secondary_soee7","outlined":"button__outlined_soee7","tertiary":"button__tertiary_soee7","filled":"button__filled_soee7","transparent":"button__transparent_soee7","link":"button__link_soee7","ghost":"button__ghost_soee7","component":"button__component_soee7","loading":"button__loading_soee7"};
require('./default.css')
var invertedColors = {"primary":"button__primary_pp9hr","loader":"button__loader_pp9hr","secondary":"button__secondary_pp9hr","outlined":"button__outlined_pp9hr","tertiary":"button__tertiary_pp9hr","filled":"button__filled_pp9hr","transparent":"button__transparent_pp9hr","link":"button__link_pp9hr","ghost":"button__ghost_pp9hr","component":"button__component_pp9hr","loading":"button__loading_pp9hr"};
var invertedColors = {"primary":"button__primary_hecvs","loader":"button__loader_hecvs","secondary":"button__secondary_hecvs","outlined":"button__outlined_hecvs","tertiary":"button__tertiary_hecvs","filled":"button__filled_hecvs","transparent":"button__transparent_hecvs","link":"button__link_hecvs","ghost":"button__ghost_hecvs","component":"button__component_hecvs","loading":"button__loading_hecvs"};
require('./inverted.css')

@@ -83,3 +83,3 @@

var _b, _c, _d;
var children = _a.children, _e = _a.view, view = _e === void 0 ? 'secondary' : _e, leftAddons = _a.leftAddons, rightAddons = _a.rightAddons, _f = _a.size, size = _f === void 0 ? 'm' : _f, _g = _a.block, block = _g === void 0 ? false : _g, className = _a.className, dataTestId = _a.dataTestId, href = _a.href, _h = _a.loading, loading = _h === void 0 ? false : _h, _j = _a.nowrap, nowrap = _j === void 0 ? false : _j, _k = _a.colors, colors = _k === void 0 ? 'default' : _k, _l = _a.Component, Component = _l === void 0 ? href ? 'a' : 'button' : _l, restProps = __rest(_a, ["children", "view", "leftAddons", "rightAddons", "size", "block", "className", "dataTestId", "href", "loading", "nowrap", "colors", "Component"]);
var children = _a.children, _e = _a.view, view = _e === void 0 ? 'secondary' : _e, leftAddons = _a.leftAddons, rightAddons = _a.rightAddons, _f = _a.size, size = _f === void 0 ? 'm' : _f, _g = _a.block, block = _g === void 0 ? false : _g, className = _a.className, dataTestId = _a.dataTestId, href = _a.href, _h = _a.loading, loading = _h === void 0 ? false : _h, _j = _a.nowrap, nowrap = _j === void 0 ? false : _j, _k = _a.colors, colors = _k === void 0 ? 'default' : _k, _l = _a.Component, Component = _l === void 0 ? href ? 'a' : 'button' : _l, onClick = _a.onClick, restProps = __rest(_a, ["children", "view", "leftAddons", "rightAddons", "size", "block", "className", "dataTestId", "href", "loading", "nowrap", "colors", "Component", "onClick"]);
if (['outlined', 'filled', 'transparent'].includes(view)) {

@@ -106,2 +106,3 @@ logWarning(view);

};
var _o = restProps, disabled = _o.disabled, _p = _o.type, type = _p === void 0 ? 'button' : _p, restButtonProps = __rest(_o, ["disabled", "type"]);
var buttonChildren = (React.createElement(React.Fragment, null,

@@ -126,2 +127,10 @@ leftAddons && React.createElement("span", { className: styles.addons }, leftAddons),

}; }, []);
var handleClick = function (e) {
if (disabled || showLoader) {
e.preventDefault();
e.stopPropagation();
return;
}
onClick === null || onClick === void 0 ? void 0 : onClick(e);
};
if (href) {

@@ -131,6 +140,5 @@ var target = restProps.target;

var hrefProps = (_d = {}, _d[typeof Component === 'string' ? 'href' : 'to'] = href, _d);
return (React.createElement(Component, __assign({ rel: target === '_blank' ? 'noreferrer noopener' : undefined }, componentProps, restProps, hrefProps, { ref: mergeRefs([buttonRef, ref]) }), buttonChildren));
return (React.createElement(Component, __assign({ rel: target === '_blank' ? 'noreferrer noopener' : undefined }, componentProps, restProps, hrefProps, { onClick: handleClick, disabled: disabled || showLoader, ref: mergeRefs([buttonRef, ref]) }), buttonChildren));
}
var _o = restProps, disabled = _o.disabled, _p = _o.type, type = _p === void 0 ? 'button' : _p, restButtonProps = __rest(_o, ["disabled", "type"]);
return (React.createElement(Component, __assign({}, componentProps, restButtonProps, { type: type, disabled: disabled || showLoader, ref: mergeRefs([buttonRef, ref]) }), buttonChildren));
return (React.createElement(Component, __assign({}, componentProps, restButtonProps, { onClick: handleClick, type: type, disabled: disabled || showLoader, ref: mergeRefs([buttonRef, ref]) }), buttonChildren));
});

@@ -137,0 +145,0 @@ /**

@@ -7,9 +7,9 @@ import React, { useRef, useState, useEffect } from 'react';

var styles = {"component":"button__component_1l9u1","focused":"button__focused_1l9u1","loading":"button__loading_1l9u1","text":"button__text_1l9u1","addons":"button__addons_1l9u1","stretchText":"button__stretchText_1l9u1","loader":"button__loader_1l9u1","xxs":"button__xxs_1l9u1","iconOnly":"button__iconOnly_1l9u1","xs":"button__xs_1l9u1","s":"button__s_1l9u1","m":"button__m_1l9u1","l":"button__l_1l9u1","xl":"button__xl_1l9u1","withRightAddons":"button__withRightAddons_1l9u1","ghost":"button__ghost_1l9u1","withLeftAddons":"button__withLeftAddons_1l9u1","link":"button__link_1l9u1","block":"button__block_1l9u1","nowrap":"button__nowrap_1l9u1"};
var styles = {"component":"button__component_184m6","focused":"button__focused_184m6","loading":"button__loading_184m6","text":"button__text_184m6","addons":"button__addons_184m6","stretchText":"button__stretchText_184m6","loader":"button__loader_184m6","xxs":"button__xxs_184m6","iconOnly":"button__iconOnly_184m6","xs":"button__xs_184m6","s":"button__s_184m6","m":"button__m_184m6","l":"button__l_184m6","xl":"button__xl_184m6","withRightAddons":"button__withRightAddons_184m6","ghost":"button__ghost_184m6","withLeftAddons":"button__withLeftAddons_184m6","link":"button__link_184m6","block":"button__block_184m6","nowrap":"button__nowrap_184m6"};
require('./index.css')
var defaultColors = {"primary":"button__primary_10zb0","loader":"button__loader_10zb0","secondary":"button__secondary_10zb0","outlined":"button__outlined_10zb0","tertiary":"button__tertiary_10zb0","filled":"button__filled_10zb0","transparent":"button__transparent_10zb0","link":"button__link_10zb0","ghost":"button__ghost_10zb0","component":"button__component_10zb0","loading":"button__loading_10zb0"};
var defaultColors = {"primary":"button__primary_soee7","loader":"button__loader_soee7","secondary":"button__secondary_soee7","outlined":"button__outlined_soee7","tertiary":"button__tertiary_soee7","filled":"button__filled_soee7","transparent":"button__transparent_soee7","link":"button__link_soee7","ghost":"button__ghost_soee7","component":"button__component_soee7","loading":"button__loading_soee7"};
require('./default.css')
var invertedColors = {"primary":"button__primary_pp9hr","loader":"button__loader_pp9hr","secondary":"button__secondary_pp9hr","outlined":"button__outlined_pp9hr","tertiary":"button__tertiary_pp9hr","filled":"button__filled_pp9hr","transparent":"button__transparent_pp9hr","link":"button__link_pp9hr","ghost":"button__ghost_pp9hr","component":"button__component_pp9hr","loading":"button__loading_pp9hr"};
var invertedColors = {"primary":"button__primary_hecvs","loader":"button__loader_hecvs","secondary":"button__secondary_hecvs","outlined":"button__outlined_hecvs","tertiary":"button__tertiary_hecvs","filled":"button__filled_hecvs","transparent":"button__transparent_hecvs","link":"button__link_hecvs","ghost":"button__ghost_hecvs","component":"button__component_hecvs","loading":"button__loading_hecvs"};
require('./inverted.css')

@@ -43,3 +43,3 @@

};
const Button = React.forwardRef(({ children, view = 'secondary', leftAddons, rightAddons, size = 'm', block = false, className, dataTestId, href, loading = false, nowrap = false, colors = 'default', Component = href ? 'a' : 'button', ...restProps }, ref) => {
const Button = React.forwardRef(({ children, view = 'secondary', leftAddons, rightAddons, size = 'm', block = false, className, dataTestId, href, loading = false, nowrap = false, colors = 'default', Component = href ? 'a' : 'button', onClick, ...restProps }, ref) => {
if (['outlined', 'filled', 'transparent'].includes(view)) {

@@ -66,2 +66,3 @@ logWarning(view);

};
const { disabled, type = 'button', ...restButtonProps } = restProps;
const buttonChildren = (React.createElement(React.Fragment, null,

@@ -86,2 +87,10 @@ leftAddons && React.createElement("span", { className: styles.addons }, leftAddons),

}, []);
const handleClick = (e) => {
if (disabled || showLoader) {
e.preventDefault();
e.stopPropagation();
return;
}
onClick?.(e);
};
if (href) {

@@ -91,6 +100,5 @@ const { target } = restProps;

const hrefProps = { [typeof Component === 'string' ? 'href' : 'to']: href };
return (React.createElement(Component, { rel: target === '_blank' ? 'noreferrer noopener' : undefined, ...componentProps, ...restProps, ...hrefProps, ref: mergeRefs([buttonRef, ref]) }, buttonChildren));
return (React.createElement(Component, { rel: target === '_blank' ? 'noreferrer noopener' : undefined, ...componentProps, ...restProps, ...hrefProps, onClick: handleClick, disabled: disabled || showLoader, ref: mergeRefs([buttonRef, ref]) }, buttonChildren));
}
const { disabled, type = 'button', ...restButtonProps } = restProps;
return (React.createElement(Component, { ...componentProps, ...restButtonProps, type: type, disabled: disabled || showLoader, ref: mergeRefs([buttonRef, ref]) }, buttonChildren));
return (React.createElement(Component, { ...componentProps, ...restButtonProps, onClick: handleClick, type: type, disabled: disabled || showLoader, ref: mergeRefs([buttonRef, ref]) }, buttonChildren));
});

@@ -97,0 +105,0 @@ /**

{
"name": "@alfalab/core-components-button",
"version": "7.0.0",
"version": "7.0.1",
"description": "",

@@ -5,0 +5,0 @@ "gitHead": "f054fef20200664c65e2501ef1f916c555cdf05d",

@@ -58,3 +58,3 @@ const http = require('http');

return new Promise((resolve, reject) => {
const req = http.request(options, res => {
const req = http.request(options, (res) => {
res.on('end', () => {

@@ -61,0 +61,0 @@ resolve();

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

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