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

@react-md/app-bar

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-md/app-bar - npm Package Compare versions

Comparing version 2.3.1 to 2.4.0

13

CHANGELOG.md

@@ -6,2 +6,15 @@ # Change Log

# [2.4.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.4.0) (2020-10-17)
### Features
- **theme:** Better Contrast Colors by Default and dev-utils refactor
([#955](https://github.com/mlaursen/react-md/issues/955))
([519b128](https://github.com/mlaursen/react-md/commit/519b128522de944d55ff96a1e1125447665ed586))
# Change Log
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.3.1](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.1) (2020-09-15)

@@ -8,0 +21,0 @@

5

dist/scssVariables.d.ts

@@ -0,1 +1,5 @@

/**
* This file was generated from @react-md/dev-utils and should not be updated
* manually.
*/
declare const _default: {

@@ -42,3 +46,2 @@ "rmd-app-bar-z-index": number;

};
/** this is an auto-generated file from @react-md/dev-utils */
export default _default;

9

dist/scssVariables.js
"use strict";
/**
* This file was generated from @react-md/dev-utils and should not be updated
* manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
/** this is an auto-generated file from @react-md/dev-utils */
exports.default = {

@@ -17,3 +20,3 @@ "rmd-app-bar-z-index": 10,

"rmd-app-bar-primary-background-color": "var(--rmd-theme-primary, #9c27b0)",
"rmd-app-bar-primary-color": "var(--rmd-theme-on-primary, #000)",
"rmd-app-bar-primary-color": "var(--rmd-theme-on-primary, #fff)",
"rmd-app-bar-secondary-background-color": "var(--rmd-theme-secondary, #f50057)",

@@ -31,3 +34,3 @@ "rmd-app-bar-secondary-color": "var(--rmd-theme-on-secondary, #000)",

primary: "var(--rmd-theme-primary, #9c27b0)",
"on-primary": "var(--rmd-theme-on-primary, #000)",
"on-primary": "var(--rmd-theme-on-primary, #fff)",
secondary: "var(--rmd-theme-secondary, #f50057)",

@@ -34,0 +37,0 @@ "on-secondary": "var(--rmd-theme-on-secondary, #000)",

@@ -37,3 +37,3 @@ var __assign = (this && this.__assign) || function () {

*/
var AppBar = forwardRef(function AppBar(_a, ref) {
export var AppBar = forwardRef(function AppBar(_a, ref) {
var _b;

@@ -98,3 +98,2 @@ var className = _a.className, children = _a.children, _c = _a.theme, propTheme = _c === void 0 ? "primary" : _c, _d = _a.component, propComponent = _d === void 0 ? "header" : _d, _e = _a.height, height = _e === void 0 ? "normal" : _e, _f = _a.fixed, fixed = _f === void 0 ? false : _f, _g = _a.fixedPosition, fixedPosition = _g === void 0 ? "top" : _g, _h = _a.fixedElevation, fixedElevation = _h === void 0 ? true : _h, inheritColor = _a.inheritColor, _j = _a.flexWrap, flexWrap = _j === void 0 ? height === "none" ||

}
export default AppBar;
//# sourceMappingURL=AppBar.js.map

@@ -25,3 +25,3 @@ var __assign = (this && this.__assign) || function () {

import { Button } from "@react-md/button";
import useActionClassName from "./useActionClassName";
import { useActionClassName, } from "./useActionClassName";
/**

@@ -34,3 +34,3 @@ * This component is really just a simple wrapper for the `Button` component

*/
var AppBarAction = forwardRef(function AppBarAction(_a, ref) {
export var AppBarAction = forwardRef(function AppBarAction(_a, ref) {
var className = _a.className, _b = _a.first, first = _b === void 0 ? false : _b, _c = _a.last, last = _c === void 0 ? false : _c, children = _a.children, inheritColor = _a.inheritColor, floating = _a.floating, _d = _a.theme, theme = _d === void 0 ? floating ? "secondary" : "clear" : _d, _e = _a.buttonType, buttonType = _e === void 0 ? "icon" : _e, props = __rest(_a, ["className", "first", "last", "children", "inheritColor", "floating", "theme", "buttonType"]);

@@ -66,3 +66,2 @@ return (React.createElement(Button, __assign({}, props, { theme: theme, buttonType: buttonType, floating: floating, ref: ref, className: useActionClassName({ first: first, last: last, inheritColor: inheritColor, className: className }) }), children));

}
export default AppBarAction;
//# sourceMappingURL=AppBarAction.js.map

@@ -41,3 +41,3 @@ var __assign = (this && this.__assign) || function () {

*/
var AppBarNav = forwardRef(function AppBarNav(_a, ref) {
export var AppBarNav = forwardRef(function AppBarNav(_a, ref) {
var className = _a.className, children = _a.children, inheritColor = _a.inheritColor, floating = _a.floating, _b = _a.theme, theme = _b === void 0 ? floating ? "secondary" : "clear" : _b, _c = _a.buttonType, buttonType = _c === void 0 ? "icon" : _c, props = __rest(_a, ["className", "children", "inheritColor", "floating", "theme", "buttonType"]);

@@ -48,3 +48,2 @@ return (React.createElement(Button, __assign({}, props, { theme: theme, floating: floating, buttonType: buttonType, ref: ref, className: cn(block("nav", {

});
export default AppBarNav;
//# sourceMappingURL=AppBarNav.js.map

@@ -33,3 +33,3 @@ var __assign = (this && this.__assign) || function () {

*/
var AppBarTitle = forwardRef(function AppBarTitle(_a, ref) {
export var AppBarTitle = forwardRef(function AppBarTitle(_a, ref) {
var _b = _a.noWrap, noWrap = _b === void 0 ? true : _b, _c = _a.keyline, keyline = _c === void 0 ? false : _c, className = _a.className, children = _a.children, inheritColor = _a.inheritColor, props = __rest(_a, ["noWrap", "keyline", "className", "children", "inheritColor"]);

@@ -55,3 +55,2 @@ return (React.createElement("h6", __assign({}, props, { ref: ref, className: cn(block("title", {

}
export default AppBarTitle;
//# sourceMappingURL=AppBarTitle.js.map

@@ -1,12 +0,7 @@

export { default as AppBar } from "./AppBar";
export * from "./AppBar";
export { default as AppBarTitle } from "./AppBarTitle";
export * from "./AppBarTitle";
export { default as AppBarNav } from "./AppBarNav";
export * from "./AppBarNav";
export { default as AppBarAction } from "./AppBarAction";
export * from "./AppBarAction";
export * from "./constants";
export { default as useActionClassName } from "./useActionClassName";
export * from "./useActionClassName";
//# sourceMappingURL=index.js.map

@@ -12,3 +12,3 @@ import cn from "classnames";

*/
export default function useActionClassName(_a) {
export function useActionClassName(_a) {
var _b = _a === void 0 ? {} : _a, first = _b.first, last = _b.last, inheritColor = _b.inheritColor, className = _b.className;

@@ -15,0 +15,0 @@ return cn(block("action", {

@@ -83,3 +83,2 @@ import React, { ElementType, HTMLAttributes } from "react";

*/
declare const AppBar: React.ForwardRefExoticComponent<AppBarProps & React.RefAttributes<HTMLDivElement>>;
export default AppBar;
export declare const AppBar: React.ForwardRefExoticComponent<AppBarProps & React.RefAttributes<HTMLDivElement>>;

@@ -28,3 +28,3 @@ "use strict";

var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);

@@ -48,2 +48,3 @@ return result;

Object.defineProperty(exports, "__esModule", { value: true });
exports.AppBar = void 0;
var react_1 = __importStar(require("react"));

@@ -63,3 +64,3 @@ var classnames_1 = __importDefault(require("classnames"));

*/
var AppBar = react_1.forwardRef(function AppBar(_a, ref) {
exports.AppBar = react_1.forwardRef(function AppBar(_a, ref) {
var _b;

@@ -99,3 +100,3 @@ var className = _a.className, children = _a.children, _c = _a.theme, propTheme = _c === void 0 ? "primary" : _c, _d = _a.component, propComponent = _d === void 0 ? "header" : _d, _e = _a.height, height = _e === void 0 ? "normal" : _e, _f = _a.fixed, fixed = _f === void 0 ? false : _f, _g = _a.fixedPosition, fixedPosition = _g === void 0 ? "top" : _g, _h = _a.fixedElevation, fixedElevation = _h === void 0 ? true : _h, inheritColor = _a.inheritColor, _j = _a.flexWrap, flexWrap = _j === void 0 ? height === "none" ||

var PropTypes = require("prop-types");
AppBar.propTypes = {
exports.AppBar.propTypes = {
className: PropTypes.string,

@@ -125,3 +126,2 @@ component: PropTypes.oneOfType([

}
exports.default = AppBar;
//# sourceMappingURL=AppBar.js.map

@@ -13,3 +13,2 @@ import React from "react";

*/
declare const AppBarAction: React.ForwardRefExoticComponent<AppBarActionProps & React.RefAttributes<HTMLButtonElement>>;
export default AppBarAction;
export declare const AppBarAction: React.ForwardRefExoticComponent<AppBarActionProps & React.RefAttributes<HTMLButtonElement>>;

@@ -28,3 +28,3 @@ "use strict";

var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);

@@ -44,9 +44,7 @@ return result;

};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppBarAction = void 0;
var react_1 = __importStar(require("react"));
var button_1 = require("@react-md/button");
var useActionClassName_1 = __importDefault(require("./useActionClassName"));
var useActionClassName_1 = require("./useActionClassName");
/**

@@ -59,5 +57,5 @@ * This component is really just a simple wrapper for the `Button` component

*/
var AppBarAction = react_1.forwardRef(function AppBarAction(_a, ref) {
exports.AppBarAction = react_1.forwardRef(function AppBarAction(_a, ref) {
var className = _a.className, _b = _a.first, first = _b === void 0 ? false : _b, _c = _a.last, last = _c === void 0 ? false : _c, children = _a.children, inheritColor = _a.inheritColor, floating = _a.floating, _d = _a.theme, theme = _d === void 0 ? floating ? "secondary" : "clear" : _d, _e = _a.buttonType, buttonType = _e === void 0 ? "icon" : _e, props = __rest(_a, ["className", "first", "last", "children", "inheritColor", "floating", "theme", "buttonType"]);
return (react_1.default.createElement(button_1.Button, __assign({}, props, { theme: theme, buttonType: buttonType, floating: floating, ref: ref, className: useActionClassName_1.default({ first: first, last: last, inheritColor: inheritColor, className: className }) }), children));
return (react_1.default.createElement(button_1.Button, __assign({}, props, { theme: theme, buttonType: buttonType, floating: floating, ref: ref, className: useActionClassName_1.useActionClassName({ first: first, last: last, inheritColor: inheritColor, className: className }) }), children));
});

@@ -67,3 +65,3 @@ if (process.env.NODE_ENV !== "production") {

var PropTypes = require("prop-types");
AppBarAction.propTypes = {
exports.AppBarAction.propTypes = {
className: PropTypes.string,

@@ -92,3 +90,2 @@ children: PropTypes.node,

}
exports.default = AppBarAction;
//# sourceMappingURL=AppBarAction.js.map

@@ -17,3 +17,2 @@ import React from "react";

*/
declare const AppBarNav: React.ForwardRefExoticComponent<AppBarNavProps & React.RefAttributes<HTMLButtonElement>>;
export default AppBarNav;
export declare const AppBarNav: React.ForwardRefExoticComponent<AppBarNavProps & React.RefAttributes<HTMLButtonElement>>;

@@ -28,3 +28,3 @@ "use strict";

var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);

@@ -48,2 +48,3 @@ return result;

Object.defineProperty(exports, "__esModule", { value: true });
exports.AppBarNav = void 0;
/* eslint-disable react/prop-types */

@@ -67,3 +68,3 @@ var react_1 = __importStar(require("react"));

*/
var AppBarNav = react_1.forwardRef(function AppBarNav(_a, ref) {
exports.AppBarNav = react_1.forwardRef(function AppBarNav(_a, ref) {
var className = _a.className, children = _a.children, inheritColor = _a.inheritColor, floating = _a.floating, _b = _a.theme, theme = _b === void 0 ? floating ? "secondary" : "clear" : _b, _c = _a.buttonType, buttonType = _c === void 0 ? "icon" : _c, props = __rest(_a, ["className", "children", "inheritColor", "floating", "theme", "buttonType"]);

@@ -74,3 +75,2 @@ return (react_1.default.createElement(button_1.Button, __assign({}, props, { theme: theme, floating: floating, buttonType: buttonType, ref: ref, className: classnames_1.default(block("nav", {

});
exports.default = AppBarNav;
//# sourceMappingURL=AppBarNav.js.map

@@ -20,3 +20,2 @@ import React, { HTMLAttributes } from "react";

*/
declare const AppBarTitle: React.ForwardRefExoticComponent<AppBarTitleProps & React.RefAttributes<HTMLHeadingElement>>;
export default AppBarTitle;
export declare const AppBarTitle: React.ForwardRefExoticComponent<AppBarTitleProps & React.RefAttributes<HTMLHeadingElement>>;

@@ -28,3 +28,3 @@ "use strict";

var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);

@@ -48,2 +48,3 @@ return result;

Object.defineProperty(exports, "__esModule", { value: true });
exports.AppBarTitle = void 0;
var react_1 = __importStar(require("react"));

@@ -59,3 +60,3 @@ var classnames_1 = __importDefault(require("classnames"));

*/
var AppBarTitle = react_1.forwardRef(function AppBarTitle(_a, ref) {
exports.AppBarTitle = react_1.forwardRef(function AppBarTitle(_a, ref) {
var _b = _a.noWrap, noWrap = _b === void 0 ? true : _b, _c = _a.keyline, keyline = _c === void 0 ? false : _c, className = _a.className, children = _a.children, inheritColor = _a.inheritColor, props = __rest(_a, ["noWrap", "keyline", "className", "children", "inheritColor"]);

@@ -71,3 +72,3 @@ return (react_1.default.createElement("h6", __assign({}, props, { ref: ref, className: classnames_1.default(block("title", {

var PropTypes = require("prop-types");
AppBarTitle.propTypes = {
exports.AppBarTitle.propTypes = {
className: PropTypes.string,

@@ -82,3 +83,2 @@ children: PropTypes.node,

}
exports.default = AppBarTitle;
//# sourceMappingURL=AppBarTitle.js.map

@@ -1,11 +0,6 @@

export { default as AppBar } from "./AppBar";
export * from "./AppBar";
export { default as AppBarTitle } from "./AppBarTitle";
export * from "./AppBarTitle";
export { default as AppBarNav } from "./AppBarNav";
export * from "./AppBarNav";
export { default as AppBarAction } from "./AppBarAction";
export * from "./AppBarAction";
export * from "./constants";
export { default as useActionClassName } from "./useActionClassName";
export * from "./useActionClassName";

@@ -10,21 +10,11 @@ "use strict";

var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
var AppBar_1 = require("./AppBar");
Object.defineProperty(exports, "AppBar", { enumerable: true, get: function () { return AppBar_1.default; } });
__exportStar(require("./AppBar"), exports);
var AppBarTitle_1 = require("./AppBarTitle");
Object.defineProperty(exports, "AppBarTitle", { enumerable: true, get: function () { return AppBarTitle_1.default; } });
__exportStar(require("./AppBarTitle"), exports);
var AppBarNav_1 = require("./AppBarNav");
Object.defineProperty(exports, "AppBarNav", { enumerable: true, get: function () { return AppBarNav_1.default; } });
__exportStar(require("./AppBarNav"), exports);
var AppBarAction_1 = require("./AppBarAction");
Object.defineProperty(exports, "AppBarAction", { enumerable: true, get: function () { return AppBarAction_1.default; } });
__exportStar(require("./AppBarAction"), exports);
__exportStar(require("./constants"), exports);
var useActionClassName_1 = require("./useActionClassName");
Object.defineProperty(exports, "useActionClassName", { enumerable: true, get: function () { return useActionClassName_1.default; } });
__exportStar(require("./useActionClassName"), exports);
//# sourceMappingURL=index.js.map

@@ -28,2 +28,2 @@ import { AppBarColorInherit } from "./useInheritContext";

*/
export default function useActionClassName({ first, last, inheritColor, className, }?: AppBarActionClassNameProps): string;
export declare function useActionClassName({ first, last, inheritColor, className, }?: AppBarActionClassNameProps): string;

@@ -6,2 +6,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.useActionClassName = void 0;
var classnames_1 = __importDefault(require("classnames"));

@@ -26,3 +27,3 @@ var utils_1 = require("@react-md/utils");

}
exports.default = useActionClassName;
exports.useActionClassName = useActionClassName;
//# sourceMappingURL=useActionClassName.js.map
{
"name": "@react-md/app-bar",
"version": "2.3.1",
"version": "2.4.0",
"description": "This small package implments the AppBar spec in material design.",
"scripts": {
"build": "dev-utils build",
"clean": "dev-utils clean"
},
"main": "./lib/index.js",

@@ -43,8 +39,8 @@ "module": "./es/index.js",

"dependencies": {
"@react-md/button": "^2.3.1",
"@react-md/elevation": "^2.3.1",
"@react-md/icon": "^2.3.1",
"@react-md/theme": "^2.3.1",
"@react-md/typography": "^2.3.1",
"@react-md/utils": "^2.3.1",
"@react-md/button": "^2.4.0",
"@react-md/elevation": "^2.4.0",
"@react-md/icon": "^2.4.0",
"@react-md/theme": "^2.4.0",
"@react-md/typography": "^2.4.0",
"@react-md/utils": "^2.4.0",
"classnames": "^2.2.6"

@@ -65,3 +61,3 @@ },

},
"gitHead": "91880f64501b1a0637569be9aeea621db8898e86"
"gitHead": "96fb088b5ae725ce21993aeda131de40119837e0"
}

@@ -1,16 +0,6 @@

export { default as AppBar } from "./AppBar";
export * from "./AppBar";
export { default as AppBarTitle } from "./AppBarTitle";
export * from "./AppBarTitle";
export { default as AppBarNav } from "./AppBarNav";
export * from "./AppBarNav";
export { default as AppBarAction } from "./AppBarAction";
export * from "./AppBarAction";
export * from "./constants";
export { default as useActionClassName } from "./useActionClassName";
export * from "./useActionClassName";

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

/** this is an auto-generated file from @react-md/dev-utils */
/**
* This file was generated from @react-md/dev-utils and should not be updated
* manually.
*/
export default {

@@ -15,3 +19,3 @@ "rmd-app-bar-z-index": 10,

"rmd-app-bar-primary-background-color": "var(--rmd-theme-primary, #9c27b0)",
"rmd-app-bar-primary-color": "var(--rmd-theme-on-primary, #000)",
"rmd-app-bar-primary-color": "var(--rmd-theme-on-primary, #fff)",
"rmd-app-bar-secondary-background-color":

@@ -30,3 +34,3 @@ "var(--rmd-theme-secondary, #f50057)",

primary: "var(--rmd-theme-primary, #9c27b0)",
"on-primary": "var(--rmd-theme-on-primary, #000)",
"on-primary": "var(--rmd-theme-on-primary, #fff)",
secondary: "var(--rmd-theme-secondary, #f50057)",

@@ -33,0 +37,0 @@ "on-secondary": "var(--rmd-theme-on-secondary, #000)",

@@ -37,3 +37,3 @@ import cn from "classnames";

*/
export default function useActionClassName({
export function useActionClassName({
first,

@@ -40,0 +40,0 @@ last,

@@ -83,3 +83,2 @@ import React, { ElementType, HTMLAttributes } from "react";

*/
declare const AppBar: React.ForwardRefExoticComponent<AppBarProps & React.RefAttributes<HTMLDivElement>>;
export default AppBar;
export declare const AppBar: React.ForwardRefExoticComponent<AppBarProps & React.RefAttributes<HTMLDivElement>>;

@@ -13,3 +13,2 @@ import React from "react";

*/
declare const AppBarAction: React.ForwardRefExoticComponent<AppBarActionProps & React.RefAttributes<HTMLButtonElement>>;
export default AppBarAction;
export declare const AppBarAction: React.ForwardRefExoticComponent<AppBarActionProps & React.RefAttributes<HTMLButtonElement>>;

@@ -17,3 +17,2 @@ import React from "react";

*/
declare const AppBarNav: React.ForwardRefExoticComponent<AppBarNavProps & React.RefAttributes<HTMLButtonElement>>;
export default AppBarNav;
export declare const AppBarNav: React.ForwardRefExoticComponent<AppBarNavProps & React.RefAttributes<HTMLButtonElement>>;

@@ -20,3 +20,2 @@ import React, { HTMLAttributes } from "react";

*/
declare const AppBarTitle: React.ForwardRefExoticComponent<AppBarTitleProps & React.RefAttributes<HTMLHeadingElement>>;
export default AppBarTitle;
export declare const AppBarTitle: React.ForwardRefExoticComponent<AppBarTitleProps & React.RefAttributes<HTMLHeadingElement>>;

@@ -1,11 +0,6 @@

export { default as AppBar } from "./AppBar";
export * from "./AppBar";
export { default as AppBarTitle } from "./AppBarTitle";
export * from "./AppBarTitle";
export { default as AppBarNav } from "./AppBarNav";
export * from "./AppBarNav";
export { default as AppBarAction } from "./AppBarAction";
export * from "./AppBarAction";
export * from "./constants";
export { default as useActionClassName } from "./useActionClassName";
export * from "./useActionClassName";

@@ -28,2 +28,2 @@ import { AppBarColorInherit } from "./useInheritContext";

*/
export default function useActionClassName({ first, last, inheritColor, className, }?: AppBarActionClassNameProps): string;
export declare function useActionClassName({ first, last, inheritColor, className, }?: AppBarActionClassNameProps): string;

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

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