Socket
Socket
Sign inDemoInstall

@fluentui/utilities

Package Overview
Dependencies
Maintainers
11
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentui/utilities - npm Package Compare versions

Comparing version 8.2.2 to 8.3.0

13

CHANGELOG.md
# Change Log - @fluentui/utilities
This log was last generated on Tue, 03 Aug 2021 07:34:14 GMT and should not be manually modified.
This log was last generated on Thu, 19 Aug 2021 07:36:42 GMT and should not be manually modified.
<!-- Start content -->
## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.0)
Thu, 19 Aug 2021 07:36:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.2.2..@fluentui/utilities_v8.3.0)
### Minor changes
- Moving type-based imports/exports to use "import type" and "export type" to enable isolatedModules. ([PR #19416](https://github.com/microsoft/fluentui/pull/19416) by dzearing@hotmail.com)
## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.2.2)
Tue, 03 Aug 2021 07:34:14 GMT
Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.2.1..@fluentui/utilities_v8.2.2)

@@ -11,0 +20,0 @@

19

etc/utilities.api.md

@@ -14,6 +14,6 @@ ## API Report File for "@fluentui/utilities"

import { getVirtualParent } from '@fluentui/dom-utilities';
import { IProcessedStyleSet } from '@fluentui/merge-styles';
import type { IProcessedStyleSet } from '@fluentui/merge-styles';
import { IStyleFunction } from '@fluentui/merge-styles';
import { IStyleFunctionOrObject } from '@fluentui/merge-styles';
import { IStyleSet } from '@fluentui/merge-styles';
import type { IStyleSet } from '@fluentui/merge-styles';
import { isVirtualElement } from '@fluentui/dom-utilities';

@@ -84,3 +84,3 @@ import { IVirtualElement } from '@fluentui/dom-utilities';

}): T;
}
}

@@ -95,3 +95,3 @@ // @public

dispose(): void;
}
}

@@ -211,3 +211,3 @@ // @public @deprecated

render(): React_2.ReactElement<{}> | null;
}
}

@@ -249,3 +249,3 @@ // @public

static stopPropagation(event: any): void;
}
}

@@ -268,3 +268,3 @@ // @public

static summary: IPerfSummary;
}
}

@@ -1109,4 +1109,3 @@ // @public

toggleRangeSelected(fromIndex: number, count: number): void;
}
}
export { Selection_2 as Selection }

@@ -1134,3 +1133,2 @@

}
export { SelectionMode_2 as SelectionMode }

@@ -1243,5 +1241,4 @@

// (No @packageDocumentation comment for this package)
```
import * as React from 'react';
import { Async } from './Async';
import { EventGroup } from './EventGroup';
import { IDisposable } from './IDisposable';
import { ISettingsMap } from './warn/warn';
import { IBaseProps } from './BaseComponent.types';
import type { IDisposable } from './IDisposable';
import type { ISettingsMap } from './warn/warn';
import type { IBaseProps } from './BaseComponent.types';
/**

@@ -8,0 +8,0 @@ * BaseComponent class, which provides basic helpers for all components.

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

import { IRefObject } from './createRef';
import type { IRefObject } from './createRef';
/**

@@ -3,0 +3,0 @@ * BaseProps interface.

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

import { IStyleSet, IProcessedStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
import type { IStyleSet, IProcessedStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
export interface IClassNamesFunctionOptions {

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

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

import { IComponentAs } from '../IComponentAs';
import type { IComponentAs } from '../IComponentAs';
/**

@@ -3,0 +3,0 @@ * Composes two components which conform to the `IComponentAs` specification; that is, two

import * as React from 'react';
import { ICustomizerProps } from './Customizer.types';
import type { ICustomizerProps } from './Customizer.types';
/**

@@ -4,0 +4,0 @@ * The Customizer component allows for default props to be mixed into components which

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

import { IBaseProps } from '../BaseComponent.types';
import { ISettings, ISettingsFunction } from './Customizations';
import { ICustomizerContext } from './CustomizerContext';
import type { IBaseProps } from '../BaseComponent.types';
import type { ISettings, ISettingsFunction } from './Customizations';
import type { ICustomizerContext } from './CustomizerContext';
export declare type ICustomizerProps = IBaseProps & Partial<{

@@ -5,0 +5,0 @@ /**

import * as React from 'react';
import { ICustomizations } from './Customizations';
import type { ICustomizations } from './Customizations';
export interface ICustomizerContext {

@@ -4,0 +4,0 @@ customizations: ICustomizations;

@@ -1,3 +0,3 @@

import { ICustomizerProps } from './Customizer.types';
import { ICustomizerContext } from './CustomizerContext';
import type { ICustomizerProps } from './Customizer.types';
import type { ICustomizerContext } from './CustomizerContext';
/**

@@ -4,0 +4,0 @@ * Merge props and customizations giving priority to props over context.

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

import { ISettings, ISettingsFunction } from './Customizations';
import type { ISettings, ISettingsFunction } from './Customizations';
/**

@@ -3,0 +3,0 @@ * Merge new and old settings, giving priority to new settings.

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

import { ISettings } from './Customizations';
import type { ISettings } from './Customizations';
/**

@@ -3,0 +3,0 @@ * Hook to get Customizations settings from Customizations singleton or CustomizerContext.

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

import { IRectangle } from '../IRectangle';
import type { IRectangle } from '../IRectangle';
/**

@@ -3,0 +3,0 @@ * Helper to get bounding client rect. Passing in window will get the window size.

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

export { IVirtualElement } from '@fluentui/dom-utilities';
export type { IVirtualElement } from '@fluentui/dom-utilities';

@@ -72,3 +72,2 @@ export * from './Async';

export * from './getPropsWithDefaults';
export { IStyleFunctionOrObject, Omit } from '@fluentui/merge-styles';
export { setFocusVisibility, IsFocusVisibleClassName } from './setFocusVisibility';

@@ -78,1 +77,2 @@ export { setSSR } from './dom/setSSR';

import './version';
export type { IStyleFunctionOrObject, Omit } from '@fluentui/merge-styles';
import * as React from 'react';
import { IBaseProps } from './BaseComponent.types';
import type { IBaseProps } from './BaseComponent.types';
/**

@@ -4,0 +4,0 @@ * Helper to manage componentRef resolution. Internally appends logic to

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

export { IStyleFunction } from '@fluentui/merge-styles';
export type { IStyleFunction } from '@fluentui/merge-styles';

@@ -1,3 +0,3 @@

import { Point } from './Point';
import { ISize } from './ISize';
import type { Point } from './Point';
import type { ISize } from './ISize';
/**

@@ -4,0 +4,0 @@ * Determines the distance between two points.

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

import { IRenderFunction } from '../IRenderFunction';
import type { IRenderFunction } from '../IRenderFunction';
/**

@@ -3,0 +3,0 @@ * Composes two 'render functions' to produce a final render function that renders

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

import { IObjectWithKey, ISelection, SelectionMode } from './Selection.types';
import { SelectionMode } from './Selection.types';
import type { IObjectWithKey, ISelection } from './Selection.types';
/**

@@ -3,0 +4,0 @@ * {@docCategory Selection}

import * as React from 'react';
import { IStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
import type { IStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
export interface IPropsWithStyles<TStyleProps, TStyleSet extends IStyleSet<TStyleSet>> {

@@ -4,0 +4,0 @@ styles?: IStyleFunctionOrObject<TStyleProps, TStyleSet>;

define(["require", "exports", "@fluentui/set-version"], function (require, exports, set_version_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
set_version_1.setVersion('@fluentui/utilities', '8.2.2');
set_version_1.setVersion('@fluentui/utilities', '8.3.0');
});
//# sourceMappingURL=version.js.map

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

import { ISettingsMap } from './warn';
import type { ISettingsMap } from './warn';
/**

@@ -3,0 +3,0 @@ * Warns when a deprecated props are being used.

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

import { ISettingsMap } from './warn';
import type { ISettingsMap } from './warn';
/**

@@ -3,0 +3,0 @@ * Warns when two props which are mutually exclusive are both being used.

import * as React from 'react';
import { Async } from './Async';
import { EventGroup } from './EventGroup';
import { IDisposable } from './IDisposable';
import { ISettingsMap } from './warn/warn';
import { IBaseProps } from './BaseComponent.types';
import type { IDisposable } from './IDisposable';
import type { ISettingsMap } from './warn/warn';
import type { IBaseProps } from './BaseComponent.types';
/**

@@ -8,0 +8,0 @@ * BaseComponent class, which provides basic helpers for all components.

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

import { IRefObject } from './createRef';
import type { IRefObject } from './createRef';
/**

@@ -3,0 +3,0 @@ * BaseProps interface.

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

import { IStyleSet, IProcessedStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
import type { IStyleSet, IProcessedStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
export interface IClassNamesFunctionOptions {

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

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

import { IComponentAs } from '../IComponentAs';
import type { IComponentAs } from '../IComponentAs';
/**

@@ -3,0 +3,0 @@ * Composes two components which conform to the `IComponentAs` specification; that is, two

import * as React from 'react';
import { ICustomizerProps } from './Customizer.types';
import type { ICustomizerProps } from './Customizer.types';
/**

@@ -4,0 +4,0 @@ * The Customizer component allows for default props to be mixed into components which

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

import { IBaseProps } from '../BaseComponent.types';
import { ISettings, ISettingsFunction } from './Customizations';
import { ICustomizerContext } from './CustomizerContext';
import type { IBaseProps } from '../BaseComponent.types';
import type { ISettings, ISettingsFunction } from './Customizations';
import type { ICustomizerContext } from './CustomizerContext';
export declare type ICustomizerProps = IBaseProps & Partial<{

@@ -5,0 +5,0 @@ /**

import * as React from 'react';
import { ICustomizations } from './Customizations';
import type { ICustomizations } from './Customizations';
export interface ICustomizerContext {

@@ -4,0 +4,0 @@ customizations: ICustomizations;

@@ -1,3 +0,3 @@

import { ICustomizerProps } from './Customizer.types';
import { ICustomizerContext } from './CustomizerContext';
import type { ICustomizerProps } from './Customizer.types';
import type { ICustomizerContext } from './CustomizerContext';
/**

@@ -4,0 +4,0 @@ * Merge props and customizations giving priority to props over context.

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

import { ISettings, ISettingsFunction } from './Customizations';
import type { ISettings, ISettingsFunction } from './Customizations';
/**

@@ -3,0 +3,0 @@ * Merge new and old settings, giving priority to new settings.

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

import { ISettings } from './Customizations';
import type { ISettings } from './Customizations';
/**

@@ -3,0 +3,0 @@ * Hook to get Customizations settings from Customizations singleton or CustomizerContext.

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

import { IRectangle } from '../IRectangle';
import type { IRectangle } from '../IRectangle';
/**

@@ -3,0 +3,0 @@ * Helper to get bounding client rect. Passing in window will get the window size.

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

export { IVirtualElement } from '@fluentui/dom-utilities';
export type { IVirtualElement } from '@fluentui/dom-utilities';

@@ -72,3 +72,2 @@ export * from './Async';

export * from './getPropsWithDefaults';
export { IStyleFunctionOrObject, Omit } from '@fluentui/merge-styles';
export { setFocusVisibility, IsFocusVisibleClassName } from './setFocusVisibility';

@@ -78,1 +77,2 @@ export { setSSR } from './dom/setSSR';

import './version';
export type { IStyleFunctionOrObject, Omit } from '@fluentui/merge-styles';
import * as React from 'react';
import { IBaseProps } from './BaseComponent.types';
import type { IBaseProps } from './BaseComponent.types';
/**

@@ -4,0 +4,0 @@ * Helper to manage componentRef resolution. Internally appends logic to

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

export { IStyleFunction } from '@fluentui/merge-styles';
export type { IStyleFunction } from '@fluentui/merge-styles';

@@ -1,3 +0,3 @@

import { Point } from './Point';
import { ISize } from './ISize';
import type { Point } from './Point';
import type { ISize } from './ISize';
/**

@@ -4,0 +4,0 @@ * Determines the distance between two points.

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

import { IRenderFunction } from '../IRenderFunction';
import type { IRenderFunction } from '../IRenderFunction';
/**

@@ -3,0 +3,0 @@ * Composes two 'render functions' to produce a final render function that renders

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

import { IObjectWithKey, ISelection, SelectionMode } from './Selection.types';
import { SelectionMode } from './Selection.types';
import type { IObjectWithKey, ISelection } from './Selection.types';
/**

@@ -3,0 +4,0 @@ * {@docCategory Selection}

import * as React from 'react';
import { IStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
import type { IStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
export interface IPropsWithStyles<TStyleProps, TStyleSet extends IStyleSet<TStyleSet>> {

@@ -4,0 +4,0 @@ styles?: IStyleFunctionOrObject<TStyleProps, TStyleSet>;

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

var set_version_1 = require("@fluentui/set-version");
set_version_1.setVersion('@fluentui/utilities', '8.2.2');
set_version_1.setVersion('@fluentui/utilities', '8.3.0');
//# sourceMappingURL=version.js.map

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

import { ISettingsMap } from './warn';
import type { ISettingsMap } from './warn';
/**

@@ -3,0 +3,0 @@ * Warns when a deprecated props are being used.

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

import { ISettingsMap } from './warn';
import type { ISettingsMap } from './warn';
/**

@@ -3,0 +3,0 @@ * Warns when two props which are mutually exclusive are both being used.

import * as React from 'react';
import { Async } from './Async';
import { EventGroup } from './EventGroup';
import { IDisposable } from './IDisposable';
import { ISettingsMap } from './warn/warn';
import { IBaseProps } from './BaseComponent.types';
import type { IDisposable } from './IDisposable';
import type { ISettingsMap } from './warn/warn';
import type { IBaseProps } from './BaseComponent.types';
/**

@@ -8,0 +8,0 @@ * BaseComponent class, which provides basic helpers for all components.

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

import { IRefObject } from './createRef';
import type { IRefObject } from './createRef';
/**

@@ -3,0 +3,0 @@ * BaseProps interface.

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

import { IStyleSet, IProcessedStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
import type { IStyleSet, IProcessedStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
export interface IClassNamesFunctionOptions {

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

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

import { mergeCssSets, Stylesheet, } from '@fluentui/merge-styles';
import { mergeCssSets, Stylesheet } from '@fluentui/merge-styles';
import { getRTL } from './rtl';

@@ -3,0 +3,0 @@ import { getWindow } from './dom';

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

import { IComponentAs } from '../IComponentAs';
import type { IComponentAs } from '../IComponentAs';
/**

@@ -3,0 +3,0 @@ * Composes two components which conform to the `IComponentAs` specification; that is, two

import * as React from 'react';
import { ICustomizerProps } from './Customizer.types';
import type { ICustomizerProps } from './Customizer.types';
/**

@@ -4,0 +4,0 @@ * The Customizer component allows for default props to be mixed into components which

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

import { IBaseProps } from '../BaseComponent.types';
import { ISettings, ISettingsFunction } from './Customizations';
import { ICustomizerContext } from './CustomizerContext';
import type { IBaseProps } from '../BaseComponent.types';
import type { ISettings, ISettingsFunction } from './Customizations';
import type { ICustomizerContext } from './CustomizerContext';
export declare type ICustomizerProps = IBaseProps & Partial<{

@@ -5,0 +5,0 @@ /**

import * as React from 'react';
import { ICustomizations } from './Customizations';
import type { ICustomizations } from './Customizations';
export interface ICustomizerContext {

@@ -4,0 +4,0 @@ customizations: ICustomizations;

@@ -1,3 +0,3 @@

import { ICustomizerProps } from './Customizer.types';
import { ICustomizerContext } from './CustomizerContext';
import type { ICustomizerProps } from './Customizer.types';
import type { ICustomizerContext } from './CustomizerContext';
/**

@@ -4,0 +4,0 @@ * Merge props and customizations giving priority to props over context.

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

import { ISettings, ISettingsFunction } from './Customizations';
import type { ISettings, ISettingsFunction } from './Customizations';
/**

@@ -3,0 +3,0 @@ * Merge new and old settings, giving priority to new settings.

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

import { ISettings } from './Customizations';
import type { ISettings } from './Customizations';
/**

@@ -3,0 +3,0 @@ * Hook to get Customizations settings from Customizations singleton or CustomizerContext.

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

import { IRectangle } from '../IRectangle';
import type { IRectangle } from '../IRectangle';
/**

@@ -3,0 +3,0 @@ * Helper to get bounding client rect. Passing in window will get the window size.

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

export { IVirtualElement } from '@fluentui/dom-utilities';
export type { IVirtualElement } from '@fluentui/dom-utilities';

@@ -72,3 +72,2 @@ export * from './Async';

export * from './getPropsWithDefaults';
export { IStyleFunctionOrObject, Omit } from '@fluentui/merge-styles';
export { setFocusVisibility, IsFocusVisibleClassName } from './setFocusVisibility';

@@ -78,1 +77,2 @@ export { setSSR } from './dom/setSSR';

import './version';
export type { IStyleFunctionOrObject, Omit } from '@fluentui/merge-styles';
import * as React from 'react';
import { IBaseProps } from './BaseComponent.types';
import type { IBaseProps } from './BaseComponent.types';
/**

@@ -4,0 +4,0 @@ * Helper to manage componentRef resolution. Internally appends logic to

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

export { IStyleFunction } from '@fluentui/merge-styles';
export type { IStyleFunction } from '@fluentui/merge-styles';

@@ -1,3 +0,3 @@

import { Point } from './Point';
import { ISize } from './ISize';
import type { Point } from './Point';
import type { ISize } from './ISize';
/**

@@ -4,0 +4,0 @@ * Determines the distance between two points.

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

import { IRenderFunction } from '../IRenderFunction';
import type { IRenderFunction } from '../IRenderFunction';
/**

@@ -3,0 +3,0 @@ * Composes two 'render functions' to produce a final render function that renders

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

import { IObjectWithKey, ISelection, SelectionMode } from './Selection.types';
import { SelectionMode } from './Selection.types';
import type { IObjectWithKey, ISelection } from './Selection.types';
/**

@@ -3,0 +4,0 @@ * {@docCategory Selection}

import * as React from 'react';
import { IStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
import type { IStyleSet, IStyleFunctionOrObject } from '@fluentui/merge-styles';
export interface IPropsWithStyles<TStyleProps, TStyleSet extends IStyleSet<TStyleSet>> {

@@ -4,0 +4,0 @@ styles?: IStyleFunctionOrObject<TStyleProps, TStyleSet>;

// Do not modify this file; it is generated as part of publish.
// The checked in version is a placeholder only and will not be updated.
import { setVersion } from '@fluentui/set-version';
setVersion('@fluentui/utilities', '8.2.2');
setVersion('@fluentui/utilities', '8.3.0');
//# sourceMappingURL=version.js.map

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

import { ISettingsMap } from './warn';
import type { ISettingsMap } from './warn';
/**

@@ -3,0 +3,0 @@ * Warns when a deprecated props are being used.

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

import { ISettingsMap } from './warn';
import type { ISettingsMap } from './warn';
/**

@@ -3,0 +3,0 @@ * Warns when two props which are mutually exclusive are both being used.

{
"name": "@fluentui/utilities",
"version": "8.2.2",
"version": "8.3.0",
"description": "Fluent UI React utilities for building components.",

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

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

import { IRefObject } from './createRef';
import type { IRefObject } from './createRef';

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

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

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 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

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