Socket
Socket
Sign inDemoInstall

@os-design/core

Package Overview
Dependencies
Maintainers
1
Versions
478
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@os-design/core - npm Package Compare versions

Comparing version 1.0.182 to 1.0.183

2

dist/types/Alert/index.d.ts
import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface AlertProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ type: 'info' | 'success' | 'error';

import React from 'react';
import { WithSize } from '@os-design/styles';
import { ImageProps } from '../Image';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface AvatarProps extends JsxDivProps, WithSize {

@@ -6,0 +6,0 @@ firstName?: string;

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export declare type AvatarSkeletonProps = JsxDivProps & WithSize;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export type AvatarSkeletonProps = JsxDivProps & WithSize;
declare const AvatarSkeleton: React.ForwardRefExoticComponent<JsxDivProps & WithSize & React.RefAttributes<HTMLDivElement>>;
export default AvatarSkeleton;
//# sourceMappingURL=index.d.ts.map
import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxOlProps = Omit<JSX.IntrinsicElements['ol'], 'ref'>;
type JsxOlProps = Omit<JSX.IntrinsicElements['ol'], 'ref'>;
export interface BreadcrumbProps extends JsxOlProps, WithSize {

@@ -5,0 +5,0 @@ 'aria-label'?: string;

import React from 'react';
import { WithSize } from '@os-design/styles';
import { ButtonColors } from './utils/useButtonColors';
declare type JsxButtonProps = Omit<JSX.IntrinsicElements['button'], 'type' | 'color' | 'ref'>;
type JsxButtonProps = Omit<JSX.IntrinsicElements['button'], 'type' | 'color' | 'ref'>;
export interface BaseButtonProps extends WithSize {

@@ -14,3 +14,3 @@ type?: 'primary' | 'outline' | 'ghost';

}
export declare type ButtonProps = JsxButtonProps & BaseButtonProps;
export type ButtonProps = JsxButtonProps & BaseButtonProps;
interface StyledButtonProps extends Pick<ButtonProps, 'wide' | 'loading' | 'disabled' | 'size'> {

@@ -17,0 +17,0 @@ btnType: ButtonProps['type'];

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxLabelProps = Omit<JSX.IntrinsicElements['label'], 'defaultValue' | 'onChange' | 'onClick' | 'ref'>;
type JsxLabelProps = Omit<JSX.IntrinsicElements['label'], 'defaultValue' | 'onChange' | 'onClick' | 'ref'>;
export interface CheckboxProps extends JsxLabelProps, WithSize {

@@ -5,0 +5,0 @@ disabled?: boolean;

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export declare type CheckboxSkeletonProps = JsxDivProps & WithSize;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export type CheckboxSkeletonProps = JsxDivProps & WithSize;
declare const CheckboxSkeleton: React.ForwardRefExoticComponent<JsxDivProps & WithSize & React.RefAttributes<HTMLDivElement>>;
export default CheckboxSkeleton;
//# sourceMappingURL=index.d.ts.map
import { DatePickerLocale } from '@os-design/date-picker-utils';
import { WithSize } from '@os-design/styles';
import React from 'react';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'defaultValue' | 'onChange' | 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'defaultValue' | 'onChange' | 'ref'>;
interface BaseDatePickerProps<T> extends JsxDivProps, WithSize {

@@ -30,5 +30,5 @@ left?: React.ReactNode;

}
export declare type DatePickerProps = DateNotRangePickerProps | DateRangePickerProps;
export type DatePickerProps = DateNotRangePickerProps | DateRangePickerProps;
declare const DatePicker: React.ForwardRefExoticComponent<DatePickerProps & React.RefAttributes<HTMLDivElement>>;
export default DatePicker;
//# sourceMappingURL=index.d.ts.map
import { WithSize } from '@os-design/styles';
import React from 'react';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface DrawerProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ placement?: 'left' | 'right';

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface FormProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ optionalText?: string;

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface FormDividerProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ title: string;

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface FormItemProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ label?: string;

import React from 'react';
import { ImageProps } from '../Image';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface GalleryProps extends JsxDivProps {

@@ -5,0 +5,0 @@ urls: string[] | ReadonlyArray<string>;

import React from 'react';
declare type JsxImgProps = Omit<JSX.IntrinsicElements['img'], 'sizes' | 'ref'>;
type JsxImgProps = Omit<JSX.IntrinsicElements['img'], 'sizes' | 'ref'>;
export interface ImageProps extends JsxImgProps {

@@ -4,0 +4,0 @@ url?: string;

import React from 'react';
import { SkeletonProps } from '../Skeleton';
export declare type ImageSkeletonProps = Omit<SkeletonProps, 'width'>;
export type ImageSkeletonProps = Omit<SkeletonProps, 'width'>;
declare const ImageSkeleton: React.ForwardRefExoticComponent<ImageSkeletonProps & React.RefAttributes<HTMLDivElement>>;
export default ImageSkeleton;
//# sourceMappingURL=index.d.ts.map
import React, { ChangeEvent, ForwardedRef } from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxInputProps = Omit<JSX.IntrinsicElements['input'], 'value' | 'onChange' | 'size' | 'ref'>;
type JsxInputProps = Omit<JSX.IntrinsicElements['input'], 'value' | 'onChange' | 'size' | 'ref'>;
export interface InputProps extends JsxInputProps, WithSize {

@@ -17,3 +17,3 @@ type?: JsxInputProps['type'];

}
declare type InputContainerProps = Pick<InputProps, 'disabled' | 'size'>;
type InputContainerProps = Pick<InputProps, 'disabled' | 'size'>;
export declare const InputContainer: import("@emotion/styled").StyledComponent<{

@@ -20,0 +20,0 @@ theme?: import("@emotion/react").Theme | undefined;

import React from 'react';
import { WithSize } from '@os-design/styles';
import { SkeletonProps } from '../Skeleton';
export declare type InputSkeletonProps = Omit<SkeletonProps, 'width'> & WithSize;
export type InputSkeletonProps = Omit<SkeletonProps, 'width'> & WithSize;
declare const InputSkeleton: React.ForwardRefExoticComponent<Omit<SkeletonProps, "width"> & WithSize & React.RefAttributes<HTMLDivElement>>;
export default InputSkeleton;
//# sourceMappingURL=index.d.ts.map

@@ -7,3 +7,3 @@ import React from 'react';

}
declare type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
export interface LinkProps extends JsxAProps, ReactRouterLinkProps, WithSize {

@@ -10,0 +10,0 @@ underline?: 'hover' | 'always' | 'never';

import React from 'react';
import { ButtonProps } from '../Button';
import { LinkProps, ReactRouterLinkProps } from '../Link';
declare type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'type' | 'ref'>;
export declare type LinkButtonProps = JsxAProps & ReactRouterLinkProps & Pick<LinkProps, 'as'> & ButtonProps;
type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'type' | 'ref'>;
export type LinkButtonProps = JsxAProps & ReactRouterLinkProps & Pick<LinkProps, 'as'> & ButtonProps;
declare const LinkButton: React.ForwardRefExoticComponent<JsxAProps & ReactRouterLinkProps & Pick<LinkProps, "as"> & {

@@ -7,0 +7,0 @@ key?: React.Key | null | undefined;

@@ -9,5 +9,5 @@ interface UseRWLoadNextProps {

}
declare type OnScroll = (scrollOffset: number) => void;
type OnScroll = (scrollOffset: number) => void;
declare const useRWLoadNext: (props: UseRWLoadNextProps) => OnScroll;
export default useRWLoadNext;
//# sourceMappingURL=useRWLoadNext.d.ts.map

@@ -7,3 +7,3 @@ import { WithSize } from '@os-design/styles';

}
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface ListItemActionsProps extends JsxDivProps, WithSize {

@@ -10,0 +10,0 @@ actions?: ListItemAction[];

import React from 'react';
import { LinkProps, ReactRouterLinkProps } from '../Link';
import { ListItemProps } from '../ListItem';
declare type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
export declare type ListItemLinkProps = JsxAProps & ReactRouterLinkProps & Pick<LinkProps, 'as'> & ListItemProps;
type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
export type ListItemLinkProps = JsxAProps & ReactRouterLinkProps & Pick<LinkProps, 'as'> & ListItemProps;
declare const ListItemLink: React.ForwardRefExoticComponent<JsxAProps & ReactRouterLinkProps & Pick<LinkProps, "as"> & ListItemProps & React.RefAttributes<HTMLAnchorElement>>;
export default ListItemLink;
//# sourceMappingURL=index.d.ts.map
import React from 'react';
import { WithSize } from '@os-design/styles';
import { LinkProps, ReactRouterLinkProps } from '../Link';
declare type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
export interface LogoLinkProps extends JsxAProps, ReactRouterLinkProps, Pick<LinkProps, 'as'>, WithSize {

@@ -6,0 +6,0 @@ src?: string;

import React from 'react';
export declare type MenuDividerProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export type MenuDividerProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
declare const MenuDivider: React.ForwardRefExoticComponent<MenuDividerProps & React.RefAttributes<HTMLDivElement>>;
export default MenuDivider;
//# sourceMappingURL=index.d.ts.map
import React from 'react';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'onChange' | 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'onChange' | 'ref'>;
export interface MenuGroupProps extends JsxDivProps {

@@ -4,0 +4,0 @@ title?: string;

import { WithSize } from '@os-design/styles';
import React from 'react';
import { ModalLocale } from './utils/defaultLocale';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface ModalProps extends JsxDivProps, WithSize {

@@ -18,3 +18,3 @@ title?: string;

}
declare type MaskProps = Pick<ModalProps, 'visible'>;
type MaskProps = Pick<ModalProps, 'visible'>;
export declare const ModalMask: import("@emotion/styled").StyledComponent<{

@@ -21,0 +21,0 @@ theme?: import("@emotion/react").Theme | undefined;

import React from 'react';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface NavigationProps extends JsxDivProps {

@@ -4,0 +4,0 @@ sideTop?: React.ReactNode;

import React from 'react';
import { LinkProps, ReactRouterLinkProps } from '../Link';
declare type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
export interface NavigationItemProps extends JsxAProps, ReactRouterLinkProps, Pick<LinkProps, 'as'> {

@@ -5,0 +5,0 @@ icon: React.ReactElement;

import React from 'react';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface PageContentProps extends JsxDivProps {

@@ -4,0 +4,0 @@ hasList?: boolean;

import React from 'react';
import { PageHeaderLocale } from './utils/defaultLocale';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface PageHeaderProps extends JsxDivProps {

@@ -5,0 +5,0 @@ title: string;

import React from 'react';
import { WithSize } from '@os-design/styles';
import { SkeletonProps } from '../Skeleton';
export declare type PageHeaderSkeletonProps = SkeletonProps & WithSize;
export type PageHeaderSkeletonProps = SkeletonProps & WithSize;
declare const PageHeaderSkeleton: React.ForwardRefExoticComponent<SkeletonProps & WithSize & React.RefAttributes<HTMLDivElement>>;
export default PageHeaderSkeleton;
//# sourceMappingURL=index.d.ts.map
import React, { RefObject } from 'react';
import { WithSize } from '@os-design/styles';
import { Placement, Rect } from './utils/usePopoverPosition';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface PopoverProps extends JsxDivProps, WithSize {

@@ -6,0 +6,0 @@ trigger?: RefObject<Element> | Rect;

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

export declare type Placement = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
export type Placement = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
export interface Rect {

@@ -3,0 +3,0 @@ top: number;

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface ProgressProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ percent?: number;

@@ -8,3 +8,3 @@ import React from 'react';

}
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'defaultValue' | 'onChange' | 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'defaultValue' | 'onChange' | 'ref'>;
export interface RadioGroupProps extends JsxDivProps, WithSize {

@@ -11,0 +11,0 @@ options?: RadioGroupOption[];

import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface ResultProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ title: string;

@@ -7,3 +7,3 @@ import { WithSize } from '@os-design/styles';

import { SelectLocale } from './utils/defaultLocale';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'defaultValue' | 'onChange' | 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'value' | 'defaultValue' | 'onChange' | 'ref'>;
export interface SelectProps extends JsxDivProps, WithSize, Pick<PopoverProps, 'placement'> {

@@ -10,0 +10,0 @@ options?: OptionProps[];

@@ -40,3 +40,3 @@ import React from 'react';

}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
declare type TitleProps = Pick<SelectToggleProps, 'disabled' | 'unbordered'>;
type TitleProps = Pick<SelectToggleProps, 'disabled' | 'unbordered'>;
export declare const Title: import("@emotion/styled").StyledComponent<{

@@ -43,0 +43,0 @@ theme?: import("@emotion/react").Theme | undefined;

import React from 'react';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface SkeletonProps extends JsxDivProps {

@@ -4,0 +4,0 @@ width?: string;

import { WithSize } from '@os-design/styles';
import React from 'react';
declare type JsxButtonProps = Omit<JSX.IntrinsicElements['button'], 'value' | 'defaultValue' | 'onChange' | 'onClick' | 'ref'>;
type JsxButtonProps = Omit<JSX.IntrinsicElements['button'], 'value' | 'defaultValue' | 'onChange' | 'onClick' | 'ref'>;
export interface SwitchProps extends JsxButtonProps, WithSize {

@@ -5,0 +5,0 @@ disabled?: boolean;

import React from 'react';
import { WithSize } from '@os-design/styles';
import { SkeletonProps } from '../Skeleton';
export declare type SwitchSkeletonProps = Omit<SkeletonProps, 'width'> & WithSize;
export type SwitchSkeletonProps = Omit<SkeletonProps, 'width'> & WithSize;
declare const SwitchSkeleton: React.ForwardRefExoticComponent<Omit<SkeletonProps, "width"> & WithSize & React.RefAttributes<HTMLDivElement>>;
export default SwitchSkeleton;
//# sourceMappingURL=index.d.ts.map
import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface BaseTagProps extends WithSize {

@@ -8,3 +8,3 @@ left?: React.ReactNode;

}
export declare type TagProps = JsxDivProps & BaseTagProps;
export type TagProps = JsxDivProps & BaseTagProps;
export declare const TagContainer: import("@emotion/styled").StyledComponent<{

@@ -11,0 +11,0 @@ theme?: import("@emotion/react").Theme | undefined;

import React from 'react';
import { BaseTagProps } from '../Tag';
import { LinkProps, ReactRouterLinkProps } from '../Link';
declare type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
export declare type TagLinkProps = JsxAProps & ReactRouterLinkProps & Pick<LinkProps, 'as'> & BaseTagProps;
type JsxAProps = Omit<JSX.IntrinsicElements['a'], 'ref'>;
export type TagLinkProps = JsxAProps & ReactRouterLinkProps & Pick<LinkProps, 'as'> & BaseTagProps;
declare const TagLink: React.ForwardRefExoticComponent<JsxAProps & ReactRouterLinkProps & Pick<LinkProps, "as"> & BaseTagProps & React.RefAttributes<HTMLAnchorElement>>;
export default TagLink;
//# sourceMappingURL=index.d.ts.map
import React from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
type JsxDivProps = Omit<JSX.IntrinsicElements['div'], 'ref'>;
export interface TagListProps extends JsxDivProps, WithSize {

@@ -5,0 +5,0 @@ collapsible?: boolean;

import React, { ChangeEvent } from 'react';
import { WithSize } from '@os-design/styles';
declare type JsxTextAreaProps = Omit<JSX.IntrinsicElements['textarea'], 'value' | 'onChange' | 'ref'>;
type JsxTextAreaProps = Omit<JSX.IntrinsicElements['textarea'], 'value' | 'onChange' | 'ref'>;
export interface TextAreaProps extends JsxTextAreaProps, WithSize {

@@ -5,0 +5,0 @@ disabled?: boolean;

import React from 'react';
import { InputSkeletonProps } from '../InputSkeleton';
export declare type TextAreaSkeletonProps = InputSkeletonProps;
export type TextAreaSkeletonProps = InputSkeletonProps;
declare const TextAreaSkeleton: React.ForwardRefExoticComponent<Omit<import("..").SkeletonProps, "width"> & import("@os-design/styles").WithSize & React.RefAttributes<HTMLDivElement>>;
export default TextAreaSkeleton;
//# sourceMappingURL=index.d.ts.map
import React from 'react';
import { ButtonProps } from '../Button';
export declare type ThemeSwitcherProps = ButtonProps;
export type ThemeSwitcherProps = ButtonProps;
declare const ThemeSwitcher: React.ForwardRefExoticComponent<{

@@ -5,0 +5,0 @@ key?: React.Key | null | undefined;

import React from 'react';
declare type JsxIFrameProps = Omit<JSX.IntrinsicElements['iframe'], 'ref'>;
export declare type VideoProps = JsxIFrameProps;
type JsxIFrameProps = Omit<JSX.IntrinsicElements['iframe'], 'ref'>;
export type VideoProps = JsxIFrameProps;
declare const Video: React.ForwardRefExoticComponent<JsxIFrameProps & React.RefAttributes<HTMLIFrameElement>>;
export default Video;
//# sourceMappingURL=index.d.ts.map
{
"name": "@os-design/core",
"version": "1.0.182",
"version": "1.0.183",
"license": "UNLICENSED",

@@ -33,4 +33,4 @@ "repository": "git@gitlab.com:os-team/libs/os-design.git",

"@os-design/date-picker-utils": "^1.0.14",
"@os-design/icons": "^1.0.43",
"@os-design/input-number-utils": "^1.0.17",
"@os-design/icons": "^1.0.44",
"@os-design/input-number-utils": "^1.0.18",
"@os-design/media": "^1.0.16",

@@ -43,5 +43,5 @@ "@os-design/menu-utils": "^1.0.11",

"@os-design/utils": "^1.0.57",
"@os-team/password-score": "^1.0.3",
"@os-team/password-score": "^1.0.4",
"facepaint": "^1.2.1",
"react-focus-lock": "^2.9.1",
"react-focus-lock": "^2.9.2",
"react-window": "^1.8.8"

@@ -63,3 +63,3 @@ },

},
"gitHead": "f474412e5f97b03b0768772e10a841a1d646f399"
"gitHead": "d79bb6e7349dac0f1061b6b8c9c4c8d1802bb6a9"
}

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