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

@clayui/button

Package Overview
Dependencies
Maintainers
0
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clayui/button - npm Package Compare versions

Comparing version 3.116.0 to 3.128.0

12

lib/Button.d.ts

@@ -6,3 +6,4 @@ /**

import React from 'react';
export declare type DisplayType = null | 'primary' | 'secondary' | 'link' | 'success' | 'warning' | 'danger' | 'info' | 'beta' | 'beta-dark' | 'unstyled';
import Group from './Group';
declare type DisplayType = null | 'primary' | 'secondary' | 'link' | 'success' | 'warning' | 'danger' | 'info' | 'beta' | 'beta-dark' | 'unstyled';
export interface IProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {

@@ -58,5 +59,6 @@ /**

}
declare const _default: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLButtonElement>> & {
Group: ({ children, className, role, spaced, vertical, ...otherProps }: import("./Group").IButtonGroupProps) => JSX.Element;
};
export default _default;
export interface IForwardRef<T, P = {}> extends React.ForwardRefExoticComponent<P & React.RefAttributes<T>> {
Group: typeof Group;
}
declare const Button: IForwardRef<HTMLButtonElement, IProps>;
export default Button;
"use strict";
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
Object.defineProperty(exports, "__esModule", {

@@ -7,50 +8,45 @@ value: true

exports.default = void 0;
var _classnames = _interopRequireDefault(require("classnames"));
var _react = _interopRequireDefault(require("react"));
var _warning = _interopRequireDefault(require("warning"));
var _Group = _interopRequireDefault(require("./Group"));
var _excluded = ["alert", "block", "borderless", "children", "className", "dark", "displayType", "monospaced", "outline", "rounded", "size", "small", "translucent", "type"];
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
var ClayButton = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
/**
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
function forwardRef(component) {
return /*#__PURE__*/_react.default.forwardRef(component);
}
var Button = forwardRef(function (_ref, ref) {
var _childArray$0$type, _classNames;
var alert = _ref.alert,
block = _ref.block,
borderless = _ref.borderless,
children = _ref.children,
className = _ref.className,
dark = _ref.dark,
_ref$displayType = _ref.displayType,
displayType = _ref$displayType === void 0 ? 'primary' : _ref$displayType,
monospaced = _ref.monospaced,
outline = _ref.outline,
rounded = _ref.rounded,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 'regular' : _ref$size,
small = _ref.small,
translucent = _ref.translucent,
_ref$type = _ref.type,
type = _ref$type === void 0 ? 'button' : _ref$type,
otherProps = _objectWithoutProperties(_ref, _excluded);
block = _ref.block,
borderless = _ref.borderless,
children = _ref.children,
className = _ref.className,
dark = _ref.dark,
_ref$displayType = _ref.displayType,
displayType = _ref$displayType === void 0 ? 'primary' : _ref$displayType,
monospaced = _ref.monospaced,
outline = _ref.outline,
rounded = _ref.rounded,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 'regular' : _ref$size,
small = _ref.small,
translucent = _ref.translucent,
_ref$type = _ref.type,
type = _ref$type === void 0 ? 'button' : _ref$type,
otherProps = _objectWithoutProperties(_ref, _excluded);
var childArray = _react.default.Children.toArray(children);
undefined !== "production" ? (0, _warning.default)(!(childArray.length === 1 && // @ts-ignore
undefined !== "production" ? (0, _warning.default)(!(childArray.length === 1 &&
// @ts-ignore
((_childArray$0$type = childArray[0].type) === null || _childArray$0$type === void 0 ? void 0 : _childArray$0$type.displayName) === 'ClayIcon' && typeof otherProps['aria-label'] !== 'string' && typeof otherProps['aria-labelledby'] !== 'string'), 'Button Accessibility: Component has only the Icon declared. Define an `aria-label` or `aria-labelledby` attribute that labels the interactive button that screen readers can read. The `title` attribute is optional but consult your design team.') : void 0;
if (displayType === 'beta') {

@@ -64,3 +60,2 @@ displayType = 'info';

}
return /*#__PURE__*/_react.default.createElement("button", _extends({

@@ -80,9 +75,4 @@ className: (0, _classnames.default)(className, 'btn', (_classNames = {

});
ClayButton.displayName = 'ClayButton';
var _default = Object.assign(ClayButton, {
Group: _Group.default
});
exports.default = _default;
Button.Group = _Group.default;
Button.displayName = 'ClayButton';
var _default = exports.default = Button;

@@ -6,3 +6,3 @@ /**

import React from 'react';
import type { IProps } from './Button';
import ClayButton from './Button';
declare type ButtonAria = {

@@ -21,3 +21,3 @@ /**

};
interface ICommonProps extends Omit<IProps, 'aria-label' | 'aria-labelledby'> {
interface ICommonProps extends Omit<React.ComponentProps<typeof ClayButton>, 'aria-label' | 'aria-labelledby'> {
/**

@@ -33,3 +33,3 @@ * Path to the location of the spritemap resource.

export declare type Props = ICommonProps & ButtonAria;
declare const ClayButtonWithIcon: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLButtonElement>>;
declare const ClayButtonWithIcon: React.ForwardRefExoticComponent<Pick<Props, "symbol" | "children" | "className" | "role" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "small" | "form" | "alert" | "borderless" | "block" | "dark" | "displayType" | "monospaced" | "outline" | "rounded" | "size" | "translucent" | "type" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "key" | "spritemap"> & React.RefAttributes<HTMLButtonElement>>;
export default ClayButtonWithIcon;

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

exports.default = void 0;
var _icon = _interopRequireDefault(require("@clayui/icon"));
var _react = _interopRequireDefault(require("react"));
var _Button = _interopRequireDefault(require("./Button"));
var _excluded = ["monospaced", "spritemap", "symbol"];
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
/**
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
var ClayButtonWithIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
var _ref$monospaced = _ref.monospaced,
monospaced = _ref$monospaced === void 0 ? true : _ref$monospaced,
spritemap = _ref.spritemap,
symbol = _ref.symbol,
otherProps = _objectWithoutProperties(_ref, _excluded);
monospaced = _ref$monospaced === void 0 ? true : _ref$monospaced,
spritemap = _ref.spritemap,
symbol = _ref.symbol,
otherProps = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/_react.default.createElement(_Button.default, _extends({}, otherProps, {

@@ -40,5 +34,3 @@ monospaced: monospaced,

});
ClayButtonWithIcon.displayName = 'ClayButtonWithIcon';
var _default = ClayButtonWithIcon;
exports.default = _default;
var _default = exports.default = ClayButtonWithIcon;

@@ -6,3 +6,3 @@ /**

import React from 'react';
export interface IButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
declare type Props = {
/**

@@ -16,4 +16,7 @@ * Flag to indicate the spacing between the buttons.

vertical?: boolean;
}
declare const ClayButtonGroup: ({ children, className, role, spaced, vertical, ...otherProps }: IButtonGroupProps) => JSX.Element;
export default ClayButtonGroup;
} & React.HTMLAttributes<HTMLDivElement>;
declare const Group: {
({ children, className, role, spaced, vertical, ...otherProps }: Props): JSX.Element;
displayName: string;
};
export default Group;

@@ -7,26 +7,21 @@ "use strict";

exports.default = void 0;
var _classnames = _interopRequireDefault(require("classnames"));
var _react = _interopRequireDefault(require("react"));
var _excluded = ["children", "className", "role", "spaced", "vertical"];
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
var ClayButtonGroup = function ClayButtonGroup(_ref) {
/**
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
var Group = function Group(_ref) {
var children = _ref.children,
className = _ref.className,
_ref$role = _ref.role,
role = _ref$role === void 0 ? 'group' : _ref$role,
spaced = _ref.spaced,
vertical = _ref.vertical,
otherProps = _objectWithoutProperties(_ref, _excluded);
className = _ref.className,
_ref$role = _ref.role,
role = _ref$role === void 0 ? 'group' : _ref$role,
spaced = _ref.spaced,
vertical = _ref.vertical,
otherProps = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/_react.default.createElement("div", _extends({}, otherProps, {

@@ -41,4 +36,3 @@ className: (0, _classnames.default)(className, {

};
var _default = ClayButtonGroup;
exports.default = _default;
Group.displayName = 'ClayButtonGroup';
var _default = exports.default = Group;

@@ -5,6 +5,6 @@ /**

*/
import Button from './Button';
import ClayButtonWithIcon from './ButtonWithIcon';
export type { Props as ButtonWithIconProps } from './ButtonWithIcon';
import Button, { IProps } from './Button';
import ClayButtonWithIcon, { Props } from './ButtonWithIcon';
export type { Props as ButtonWithIconProps, IProps as ButtonProps };
export { ClayButtonWithIcon };
export default Button;

@@ -13,9 +13,5 @@ "use strict";

exports.default = void 0;
var _Button = _interopRequireDefault(require("./Button"));
var _ButtonWithIcon = _interopRequireDefault(require("./ButtonWithIcon"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/**

@@ -25,3 +21,2 @@ * SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>

*/
var _default = _Button.default;
exports.default = _default;
var _default = exports.default = _Button.default;
{
"name": "@clayui/button",
"version": "3.116.0",
"version": "3.128.0",
"description": "ClayButton component",

@@ -27,3 +27,3 @@ "license": "BSD-3-Clause",

"dependencies": {
"@clayui/icon": "^3.111.0",
"@clayui/icon": "^3.128.0",
"classnames": "^2.2.6",

@@ -40,3 +40,3 @@ "warning": "^4.0.3"

],
"gitHead": "235780a282ba87864ce556f8004571af102ff165"
"gitHead": "98d935035547358645741cbc137cae53a596f568"
}
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