Socket
Socket
Sign inDemoInstall

@trussworks/react-uswds

Package Overview
Dependencies
Maintainers
10
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trussworks/react-uswds - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

lib/components/Accordion/Accordion.test.d.ts

9

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [3.0.2](https://github.com/trussworks/react-uswds/compare/3.0.1...3.0.2) (2022-05-13)
### Bug Fixes
* Fixes an issue where Type definitions were not properly packaged ([#2053](https://github.com/trussworks/react-uswds/issues/2053)) ([febcd65](https://github.com/trussworks/react-uswds/commit/febcd65d1d2bf8ff84f558b4d14013ba8328cc38))
### [3.0.1](https://github.com/trussworks/react-uswds/compare/3.0.0...3.0.1) (2022-05-09)

@@ -11,3 +18,3 @@

* Fixes an issue where Type definitions were not properly packaged
* Attempted to fixes an issue where Type definitions were not properly packaged

@@ -14,0 +21,0 @@ ## [3.0.0](https://github.com/trussworks/react-uswds/compare/2.9.0...3.0.0) (2022-04-25)

2

lib/components/Accordion/Accordion.d.ts

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

className?: string;
headingLevel?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
headingLevel: HeadingLevel;
handleToggle?: (event: React.MouseEvent<HTMLButtonElement>) => void;

@@ -11,0 +11,0 @@ }

import React from 'react';
interface AlertProps {
export interface AlertProps {
type: 'success' | 'warning' | 'error' | 'info';
heading?: React.ReactNode;
headingLevel?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
headingLevel: HeadingLevel;
children?: React.ReactNode;

@@ -7,0 +7,0 @@ cta?: React.ReactNode;

@@ -7,25 +7,9 @@ import React from 'react';

base?: boolean;
/**
* @deprecated since 1.15.0, use accentStyle
*/
accent?: boolean;
accentStyle?: 'cool' | 'warm';
outline?: boolean;
inverse?: boolean;
size?: 'big' | 'small';
/**
* @deprecated since 1.6.0, use size
*/
big?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
small?: boolean;
/**
* @deprecated since 1.9.0
*/
icon?: boolean;
size?: 'big';
unstyled?: boolean;
}
export declare const Button: ({ type, children, secondary, base, accent, accentStyle, outline, inverse, size, big, small, icon, unstyled, onClick, className, ...defaultProps }: ButtonProps & JSX.IntrinsicElements['button']) => React.ReactElement;
export declare const Button: ({ type, children, secondary, base, accentStyle, outline, inverse, size, unstyled, onClick, className, ...defaultProps }: ButtonProps & JSX.IntrinsicElements['button']) => React.ReactElement;
export default Button;
import React from 'react';
interface CollectionHeadingProps {
headingLevel?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
headingLevel: HeadingLevel;
}
export declare const CollectionHeading: ({ headingLevel, className, children, ...props }: CollectionHeadingProps & JSX.IntrinsicElements['h3']) => React.ReactElement;
export declare const CollectionHeading: ({ headingLevel, className, children, ...props }: CollectionHeadingProps & React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>) => React.ReactElement;
export {};
import React from 'react';
declare type AddressProps = {
size?: 'big' | 'medium' | 'slim';
/**
* @deprecated since 1.6.0, use size
*/
big?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
medium?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
slim?: boolean;
items: React.ReactNode[];
};
export declare const Address: ({ size, className, big, medium, slim, items, }: AddressProps & React.HTMLAttributes<HTMLElement>) => React.ReactElement;
export declare const Address: ({ size, className, items, }: AddressProps & React.HTMLAttributes<HTMLElement>) => React.ReactElement;
export {};

@@ -5,14 +5,2 @@ import React from 'react';

/**
* @deprecated since 1.6.0, use size
*/
big?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
medium?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
slim?: boolean;
/**
* Component for "return to top" button/handling

@@ -30,3 +18,3 @@ */

};
export declare const Footer: ({ size, big, medium, slim, returnToTop, primary, secondary, ...footerAttributes }: FooterProps & React.HTMLAttributes<HTMLElement>) => React.ReactElement;
export declare const Footer: ({ size, returnToTop, primary, secondary, ...footerAttributes }: FooterProps & React.HTMLAttributes<HTMLElement>) => React.ReactElement;
export {};

@@ -5,18 +5,6 @@ import React from 'react';

size?: 'big' | 'medium' | 'slim';
/**
* @deprecated since 1.6.0, use size
*/
big?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
medium?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
slim?: boolean;
isMobile?: boolean;
links: React.ReactNode[] | ExtendedNavLinksType;
};
export declare const FooterNav: ({ className, size, big, medium, slim, isMobile, links, ...elementAttributes }: FooterNavProps & React.HTMLAttributes<HTMLElement>) => React.ReactElement;
export declare const FooterNav: ({ className, size, isMobile, links, ...elementAttributes }: FooterNavProps & React.HTMLAttributes<HTMLElement>) => React.ReactElement;
export {};
import React from 'react';
declare type LogoProps = {
size?: 'big' | 'medium' | 'slim';
/**
* @deprecated since 1.6.0, use size
*/
big?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
medium?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
slim?: boolean;
heading?: React.ReactNode;
image: React.ReactNode;
};
export declare const Logo: ({ size, big, medium, slim, heading, image, ...elementAttributes }: LogoProps & React.HtmlHTMLAttributes<HTMLElement>) => React.ReactElement;
export declare const Logo: ({ size, heading, image, ...elementAttributes }: LogoProps & React.HtmlHTMLAttributes<HTMLElement>) => React.ReactElement;
export {};

@@ -5,10 +5,6 @@ import React from 'react';

legend?: React.ReactNode;
/**
* @deprecated since 1.15.0, use legendStyle
*/
legendSrOnly?: boolean;
legendStyle?: 'default' | 'large' | 'srOnly';
className?: string;
}
export declare const Fieldset: ({ children, legend, className, legendSrOnly, legendStyle, ...fieldsetProps }: FieldsetProps & JSX.IntrinsicElements['fieldset']) => React.ReactElement;
export declare const Fieldset: ({ children, legend, className, legendStyle, ...fieldsetProps }: FieldsetProps & JSX.IntrinsicElements['fieldset']) => React.ReactElement;
export {};

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

export declare const FileInputForwardRef: React.ForwardRefRenderFunction<FileInputRef, FileInputProps & JSX.IntrinsicElements['input']>;
export declare const FileInput: React.ForwardRefExoticComponent<Pick<FileInputProps & React.ClassAttributes<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement>, "type" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "form" | "pattern" | "list" | "step" | "key" | "size" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "multiple" | "src" | "alt" | "crossOrigin" | "height" | "width" | "accept" | "autoComplete" | "capture" | "checked" | "max" | "maxLength" | "min" | "minLength" | "readOnly" | "required" | "enterKeyHint"> & React.RefAttributes<FileInputRef>>;
export declare const FileInput: React.ForwardRefExoticComponent<Pick<FileInputProps & React.ClassAttributes<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement>, "type" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "form" | "pattern" | "list" | "step" | "key" | "size" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "multiple" | "src" | "alt" | "crossOrigin" | "height" | "width" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "max" | "maxLength" | "min" | "minLength" | "readOnly" | "required"> & React.RefAttributes<FileInputRef>>;
export {};

@@ -11,19 +11,3 @@ import React from 'react';

validationStatus?: 'error' | 'success';
/**
* @deprecated since 1.6.0, use validationStatus
*/
error?: boolean;
/**
* @deprecated since 1.6.0, use validationStatus
*/
success?: boolean;
inputSize?: 'small' | 'medium';
/**
* @deprecated since 1.6.0, use inputSize
*/
small?: boolean;
/**
* @deprecated since 1.6.0, use inputSize
*/
medium?: boolean;
inputRef?: TextInputRef;

@@ -33,3 +17,3 @@ }

export declare type TextInputProps = RequiredTextInputProps & OptionalTextInputProps;
export declare const TextInput: ({ id, name, type, className, validationStatus, error, success, inputSize, small, medium, inputRef, ...inputProps }: TextInputProps) => React.ReactElement;
export declare const TextInput: ({ id, name, type, className, validationStatus, inputSize, inputRef, ...inputProps }: TextInputProps) => React.ReactElement;
export default TextInput;

@@ -5,25 +5,5 @@ import React from 'react';

type?: 'primary' | 'secondary' | 'subnav' | 'megamenu' | 'footerSecondary';
/**
* @deprecated since 1.6.0, use size
*/
primary?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
secondary?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
subnav?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
megamenu?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
footerSecondary?: boolean;
}
export declare type NavListProps = CustomNavListProps & JSX.IntrinsicElements['ul'];
export declare const NavList: ({ items, type, primary, secondary, subnav, megamenu, footerSecondary, className, ...ulProps }: NavListProps) => React.ReactElement;
export declare const NavList: ({ items, type, className, ...ulProps }: NavListProps) => React.ReactElement;
export {};
import { IconProps } from './Icon';
import React from 'react';
export declare const IconAccessibilityNew: React.ComponentType<IconProps>;
export declare const IconAccessibleForward: React.ComponentType<IconProps>;
export declare const IconAccountBalance: React.ComponentType<IconProps>;
export declare const IconAccountBox: React.ComponentType<IconProps>;
export declare const IconAccountCircle: React.ComponentType<IconProps>;
export declare const IconAdd: React.ComponentType<IconProps>;
export declare const IconAddCircle: React.ComponentType<IconProps>;
export declare const IconAddCircleOutline: React.ComponentType<IconProps>;
export declare const IconAlarm: React.ComponentType<IconProps>;
export declare const IconAlternateEmail: React.ComponentType<IconProps>;
export declare const IconAnnouncement: React.ComponentType<IconProps>;
export declare const IconArrowBack: React.ComponentType<IconProps>;
export declare const IconArrowDownward: React.ComponentType<IconProps>;
export declare const IconArrowDropDown: React.ComponentType<IconProps>;
export declare const IconArrowDropUp: React.ComponentType<IconProps>;
export declare const IconArrowForward: React.ComponentType<IconProps>;
export declare const IconArrowUpward: React.ComponentType<IconProps>;
export declare const IconApi: React.ComponentType<IconProps>;
export declare const IconAssessment: React.ComponentType<IconProps>;
export declare const IconAttachFile: React.ComponentType<IconProps>;
export declare const IconAttachMoney: React.ComponentType<IconProps>;
export declare const IconAutorenew: React.ComponentType<IconProps>;
export declare const IconBackpack: React.ComponentType<IconProps>;
export declare const IconBathtub: React.ComponentType<IconProps>;
export declare const IconBedding: React.ComponentType<IconProps>;
export declare const IconBookmark: React.ComponentType<IconProps>;
export declare const IconBugReport: React.ComponentType<IconProps>;
export declare const IconBuild: React.ComponentType<IconProps>;
export declare const IconCalendarToday: React.ComponentType<IconProps>;
export declare const IconCampaign: React.ComponentType<IconProps>;
export declare const IconCamping: React.ComponentType<IconProps>;
export declare const IconCancel: React.ComponentType<IconProps>;
export declare const IconChat: React.ComponentType<IconProps>;
export declare const IconCheck: React.ComponentType<IconProps>;
export declare const IconCheckBoxOutlineBlank: React.ComponentType<IconProps>;
export declare const IconCheckCircle: React.ComponentType<IconProps>;
export declare const IconCheckCircleOutline: React.ComponentType<IconProps>;
export declare const IconCheckroom: React.ComponentType<IconProps>;
export declare const IconCleanHands: React.ComponentType<IconProps>;
export declare const IconClothes: React.ComponentType<IconProps>;
export declare const IconClose: React.ComponentType<IconProps>;
export declare const IconClosedCaption: React.ComponentType<IconProps>;
export declare const IconCloud: React.ComponentType<IconProps>;
export declare const IconCode: React.ComponentType<IconProps>;
export declare const IconComment: React.ComponentType<IconProps>;
export declare const IconConnectWithoutContact: React.ComponentType<IconProps>;
export declare const IconConstruction: React.ComponentType<IconProps>;
export declare const IconConstructionWorker: React.ComponentType<IconProps>;
export declare const IconContactPage: React.ComponentType<IconProps>;
export declare const IconContentCopy: React.ComponentType<IconProps>;
export declare const IconCoronavirus: React.ComponentType<IconProps>;
export declare const IconCreditCard: React.ComponentType<IconProps>;
export declare const IconDeck: React.ComponentType<IconProps>;
export declare const IconDelete: React.ComponentType<IconProps>;
export declare const IconDeviceThermostat: React.ComponentType<IconProps>;
export declare const IconDirections: React.ComponentType<IconProps>;
export declare const IconDirectionsBike: React.ComponentType<IconProps>;
export declare const IconDirectionsBus: React.ComponentType<IconProps>;
export declare const IconDirectionsCar: React.ComponentType<IconProps>;
export declare const IconDirectionsWalk: React.ComponentType<IconProps>;
export declare const IconDoNotDisturb: React.ComponentType<IconProps>;
export declare const IconDoNotTouch: React.ComponentType<IconProps>;
export declare const IconDragHandle: React.ComponentType<IconProps>;
export declare const IconEco: React.ComponentType<IconProps>;
export declare const IconEdit: React.ComponentType<IconProps>;
export declare const IconElectricalServices: React.ComponentType<IconProps>;
export declare const IconEmojiEvents: React.ComponentType<IconProps>;
export declare const IconError: React.ComponentType<IconProps>;
export declare const IconErrorOutline: React.ComponentType<IconProps>;
export declare const IconEvent: React.ComponentType<IconProps>;
export declare const IconExpandLess: React.ComponentType<IconProps>;
export declare const IconExpandMore: React.ComponentType<IconProps>;
export declare const IconFacebook: React.ComponentType<IconProps>;
export declare const IconFastForward: React.ComponentType<IconProps>;
export declare const IconFastRewind: React.ComponentType<IconProps>;
export declare const IconFavorite: React.ComponentType<IconProps>;
export declare const IconFavoriteBorder: React.ComponentType<IconProps>;
export declare const IconFileDownload: React.ComponentType<IconProps>;
export declare const IconFilePresent: React.ComponentType<IconProps>;
export declare const IconFileUpload: React.ComponentType<IconProps>;
export declare const IconFilterAlt: React.ComponentType<IconProps>;
export declare const IconFilterList: React.ComponentType<IconProps>;
export declare const IconFingerprint: React.ComponentType<IconProps>;
export declare const IconFirstPage: React.ComponentType<IconProps>;
export declare const IconFlag: React.ComponentType<IconProps>;
export declare const IconFlickr: React.ComponentType<IconProps>;
export declare const IconFlight: React.ComponentType<IconProps>;
export declare const IconFlooding: React.ComponentType<IconProps>;
export declare const IconFolder: React.ComponentType<IconProps>;
export declare const IconFolderOpen: React.ComponentType<IconProps>;
export declare const IconFormatQuote: React.ComponentType<IconProps>;
export declare const IconFormatSize: React.ComponentType<IconProps>;
export declare const IconForum: React.ComponentType<IconProps>;
export declare const IconGithub: React.ComponentType<IconProps>;
export declare const IconGridView: React.ComponentType<IconProps>;
export declare const IconGroupAdd: React.ComponentType<IconProps>;
export declare const IconGroups: React.ComponentType<IconProps>;
export declare const IconHearing: React.ComponentType<IconProps>;
export declare const IconHelp: React.ComponentType<IconProps>;
export declare const IconHelpOutline: React.ComponentType<IconProps>;
export declare const IconHighlightOff: React.ComponentType<IconProps>;
export declare const IconHistory: React.ComponentType<IconProps>;
export declare const IconHome: React.ComponentType<IconProps>;
export declare const IconHospital: React.ComponentType<IconProps>;
export declare const IconHotel: React.ComponentType<IconProps>;
export declare const IconHourglassEmpty: React.ComponentType<IconProps>;
export declare const IconHurricane: React.ComponentType<IconProps>;
export declare const IconIdentification: React.ComponentType<IconProps>;
export declare const IconImage: React.ComponentType<IconProps>;
export declare const IconInfo: React.ComponentType<IconProps>;
export declare const IconInfoOutline: React.ComponentType<IconProps>;
export declare const IconInsights: React.ComponentType<IconProps>;
export declare const IconInstagram: React.ComponentType<IconProps>;
export declare const IconKeyboard: React.ComponentType<IconProps>;
export declare const IconLabel: React.ComponentType<IconProps>;
export declare const IconLanguage: React.ComponentType<IconProps>;
export declare const IconLastPage: React.ComponentType<IconProps>;
export declare const IconLaunch: React.ComponentType<IconProps>;
export declare const IconLightbulb: React.ComponentType<IconProps>;
export declare const IconLightbulbOutline: React.ComponentType<IconProps>;
export declare const IconLink: React.ComponentType<IconProps>;
export declare const IconLinkOff: React.ComponentType<IconProps>;
export declare const IconList: React.ComponentType<IconProps>;
export declare const IconLocalCafe: React.ComponentType<IconProps>;
export declare const IconLocalFireDepartment: React.ComponentType<IconProps>;
export declare const IconLocalGasStation: React.ComponentType<IconProps>;
export declare const IconLocalGroceryStore: React.ComponentType<IconProps>;
export declare const IconLocalHospital: React.ComponentType<IconProps>;
export declare const IconLocalLaundryService: React.ComponentType<IconProps>;
export declare const IconLocalLibrary: React.ComponentType<IconProps>;
export declare const IconLocalOffer: React.ComponentType<IconProps>;
export declare const IconLocalParking: React.ComponentType<IconProps>;
export declare const IconLocalPharmacy: React.ComponentType<IconProps>;
export declare const IconLocalPolice: React.ComponentType<IconProps>;
export declare const IconLocalTaxi: React.ComponentType<IconProps>;
export declare const IconLocationCity: React.ComponentType<IconProps>;
export declare const IconLocationOn: React.ComponentType<IconProps>;
export declare const IconLock: React.ComponentType<IconProps>;
export declare const IconLockOpen: React.ComponentType<IconProps>;
export declare const IconLockOutline: React.ComponentType<IconProps>;
export declare const IconLogin: React.ComponentType<IconProps>;
export declare const IconLogout: React.ComponentType<IconProps>;
export declare const IconLoop: React.ComponentType<IconProps>;
export declare const IconMail: React.ComponentType<IconProps>;
export declare const IconMailOutline: React.ComponentType<IconProps>;
export declare const IconMap: React.ComponentType<IconProps>;
export declare const IconMasks: React.ComponentType<IconProps>;
export declare const IconMedicalServices: React.ComponentType<IconProps>;
export declare const IconMenu: React.ComponentType<IconProps>;
export declare const IconMilitaryTech: React.ComponentType<IconProps>;
export declare const IconMoreHoriz: React.ComponentType<IconProps>;
export declare const IconMoreVert: React.ComponentType<IconProps>;
export declare const IconMyLocation: React.ComponentType<IconProps>;
export declare const IconNavigateBefore: React.ComponentType<IconProps>;
export declare const IconNavigateNext: React.ComponentType<IconProps>;
export declare const IconNavigateFarBefore: React.ComponentType<IconProps>;
export declare const IconNavigateFarNext: React.ComponentType<IconProps>;
export declare const IconNearMe: React.ComponentType<IconProps>;
export declare const IconNotifications: React.ComponentType<IconProps>;
export declare const IconNotificationsActive: React.ComponentType<IconProps>;
export declare const IconNotificationsNone: React.ComponentType<IconProps>;
export declare const IconNotificationsOff: React.ComponentType<IconProps>;
export declare const IconPark: React.ComponentType<IconProps>;
export declare const IconPeople: React.ComponentType<IconProps>;
export declare const IconPerson: React.ComponentType<IconProps>;
export declare const IconPets: React.ComponentType<IconProps>;
export declare const IconPhone: React.ComponentType<IconProps>;
export declare const IconPhotoCamera: React.ComponentType<IconProps>;
export declare const IconPrint: React.ComponentType<IconProps>;
export declare const IconPriorityHigh: React.ComponentType<IconProps>;
export declare const IconPublic: React.ComponentType<IconProps>;
export declare const IconPushPin: React.ComponentType<IconProps>;
export declare const IconRadioButtonUnchecked: React.ComponentType<IconProps>;
export declare const IconRain: React.ComponentType<IconProps>;
export declare const IconReduceCapacity: React.ComponentType<IconProps>;
export declare const IconRemove: React.ComponentType<IconProps>;
export declare const IconReport: React.ComponentType<IconProps>;
export declare const IconRestaurant: React.ComponentType<IconProps>;
export declare const IconRssFeed: React.ComponentType<IconProps>;
export declare const IconSafetyDivider: React.ComponentType<IconProps>;
export declare const IconSanitizer: React.ComponentType<IconProps>;
export declare const IconSaveAlt: React.ComponentType<IconProps>;
export declare const IconSevereWeather: React.ComponentType<IconProps>;
export declare const IconSchedule: React.ComponentType<IconProps>;
export declare const IconSchool: React.ComponentType<IconProps>;
export declare const IconScience: React.ComponentType<IconProps>;
export declare const IconSearch: React.ComponentType<IconProps>;
export declare const IconSecurity: React.ComponentType<IconProps>;
export declare const IconSend: React.ComponentType<IconProps>;
export declare const IconSentimentDissatisfied: React.ComponentType<IconProps>;
export declare const IconSentimentNeutral: React.ComponentType<IconProps>;
export declare const IconSentimentSatisfied: React.ComponentType<IconProps>;
export declare const IconSentimentSatisfiedAlt: React.ComponentType<IconProps>;
export declare const IconSentimentVeryDissatisfied: React.ComponentType<IconProps>;
export declare const IconSettings: React.ComponentType<IconProps>;
export declare const IconShare: React.ComponentType<IconProps>;
export declare const IconShield: React.ComponentType<IconProps>;
export declare const IconShoppingBasket: React.ComponentType<IconProps>;
export declare const IconSnow: React.ComponentType<IconProps>;
export declare const IconSoap: React.ComponentType<IconProps>;
export declare const IconSocialDistance: React.ComponentType<IconProps>;
export declare const IconSortArrow: React.ComponentType<IconProps>;
export declare const IconSpellcheck: React.ComponentType<IconProps>;
export declare const IconStar: React.ComponentType<IconProps>;
export declare const IconStarHalf: React.ComponentType<IconProps>;
export declare const IconStarOutline: React.ComponentType<IconProps>;
export declare const IconStore: React.ComponentType<IconProps>;
export declare const IconSupport: React.ComponentType<IconProps>;
export declare const IconSupportAgent: React.ComponentType<IconProps>;
export declare const IconTextFields: React.ComponentType<IconProps>;
export declare const IconThumbDownAlt: React.ComponentType<IconProps>;
export declare const IconThumbUpAlt: React.ComponentType<IconProps>;
export declare const IconTimer: React.ComponentType<IconProps>;
export declare const IconToggleOff: React.ComponentType<IconProps>;
export declare const IconToggleOn: React.ComponentType<IconProps>;
export declare const IconTopic: React.ComponentType<IconProps>;
export declare const IconTornado: React.ComponentType<IconProps>;
export declare const IconTranslate: React.ComponentType<IconProps>;
export declare const IconTrendingDown: React.ComponentType<IconProps>;
export declare const IconTrendingUp: React.ComponentType<IconProps>;
export declare const IconTwitter: React.ComponentType<IconProps>;
export declare const IconUndo: React.ComponentType<IconProps>;
export declare const IconUnfoldLess: React.ComponentType<IconProps>;
export declare const IconUnfoldMore: React.ComponentType<IconProps>;
export declare const IconUpdate: React.ComponentType<IconProps>;
export declare const IconUploadFile: React.ComponentType<IconProps>;
export declare const IconVerified: React.ComponentType<IconProps>;
export declare const IconVerifiedUser: React.ComponentType<IconProps>;
export declare const IconVisiblity: React.ComponentType<IconProps>;
export declare const IconVisibilityOff: React.ComponentType<IconProps>;
export declare const IconVolumeOff: React.ComponentType<IconProps>;
export declare const IconWarning: React.ComponentType<IconProps>;
export declare const IconWash: React.ComponentType<IconProps>;
export declare const IconWifi: React.ComponentType<IconProps>;
export declare const IconWork: React.ComponentType<IconProps>;
export declare const IconYoutube: React.ComponentType<IconProps>;
export declare const IconZoomIn: React.ComponentType<IconProps>;
export declare const IconZoomOutMap: React.ComponentType<IconProps>;
export declare const IconZoomOut: React.ComponentType<IconProps>;
export declare class Icon {
static AccessibilityNew: React.ComponentType<IconProps>;
static AccessibleForward: React.ComponentType<IconProps>;
static AccountBalance: React.ComponentType<IconProps>;
static AccountBox: React.ComponentType<IconProps>;
static AccountCircle: React.ComponentType<IconProps>;
static Add: React.ComponentType<IconProps>;
static AddCircle: React.ComponentType<IconProps>;
static AddCircleOutline: React.ComponentType<IconProps>;
static Alarm: React.ComponentType<IconProps>;
static AlternateEmail: React.ComponentType<IconProps>;
static Announcement: React.ComponentType<IconProps>;
static ArrowBack: React.ComponentType<IconProps>;
static ArrowDownward: React.ComponentType<IconProps>;
static ArrowDropDown: React.ComponentType<IconProps>;
static ArrowDropUp: React.ComponentType<IconProps>;
static ArrowForward: React.ComponentType<IconProps>;
static ArrowUpward: React.ComponentType<IconProps>;
static Api: React.ComponentType<IconProps>;
static Assessment: React.ComponentType<IconProps>;
static AttachFile: React.ComponentType<IconProps>;
static AttachMoney: React.ComponentType<IconProps>;
static Autorenew: React.ComponentType<IconProps>;
static Backpack: React.ComponentType<IconProps>;
static Bathtub: React.ComponentType<IconProps>;
static Bedding: React.ComponentType<IconProps>;
static Bookmark: React.ComponentType<IconProps>;
static BugReport: React.ComponentType<IconProps>;
static Build: React.ComponentType<IconProps>;
static CalendarToday: React.ComponentType<IconProps>;
static Campaign: React.ComponentType<IconProps>;
static Camping: React.ComponentType<IconProps>;
static Cancel: React.ComponentType<IconProps>;
static Chat: React.ComponentType<IconProps>;
static Check: React.ComponentType<IconProps>;
static CheckBoxOutlineBlank: React.ComponentType<IconProps>;
static CheckCircle: React.ComponentType<IconProps>;
static CheckCircleOutline: React.ComponentType<IconProps>;
static Checkroom: React.ComponentType<IconProps>;
static CleanHands: React.ComponentType<IconProps>;
static Clothes: React.ComponentType<IconProps>;
static Close: React.ComponentType<IconProps>;
static ClosedCaption: React.ComponentType<IconProps>;
static Cloud: React.ComponentType<IconProps>;
static Code: React.ComponentType<IconProps>;
static Comment: React.ComponentType<IconProps>;
static ConnectWithoutContact: React.ComponentType<IconProps>;
static Construction: React.ComponentType<IconProps>;
static ConstructionWorker: React.ComponentType<IconProps>;
static ContactPage: React.ComponentType<IconProps>;
static ContentCopy: React.ComponentType<IconProps>;
static Coronavirus: React.ComponentType<IconProps>;
static CreditCard: React.ComponentType<IconProps>;
static Deck: React.ComponentType<IconProps>;
static Delete: React.ComponentType<IconProps>;
static DeviceThermostat: React.ComponentType<IconProps>;
static Directions: React.ComponentType<IconProps>;
static DirectionsBike: React.ComponentType<IconProps>;
static DirectionsBus: React.ComponentType<IconProps>;
static DirectionsCar: React.ComponentType<IconProps>;
static DirectionsWalk: React.ComponentType<IconProps>;
static DoNotDisturb: React.ComponentType<IconProps>;
static DoNotTouch: React.ComponentType<IconProps>;
static DragHandle: React.ComponentType<IconProps>;
static Eco: React.ComponentType<IconProps>;
static Edit: React.ComponentType<IconProps>;
static ElectricalServices: React.ComponentType<IconProps>;
static EmojiEvents: React.ComponentType<IconProps>;
static Error: React.ComponentType<IconProps>;
static ErrorOutline: React.ComponentType<IconProps>;
static Event: React.ComponentType<IconProps>;
static ExpandLess: React.ComponentType<IconProps>;
static ExpandMore: React.ComponentType<IconProps>;
static Facebook: React.ComponentType<IconProps>;
static FastForward: React.ComponentType<IconProps>;
static FastRewind: React.ComponentType<IconProps>;
static Favorite: React.ComponentType<IconProps>;
static FavoriteBorder: React.ComponentType<IconProps>;
static FileDownload: React.ComponentType<IconProps>;
static FilePresent: React.ComponentType<IconProps>;
static FileUpload: React.ComponentType<IconProps>;
static FilterAlt: React.ComponentType<IconProps>;
static FilterList: React.ComponentType<IconProps>;
static Fingerprint: React.ComponentType<IconProps>;
static FirstPage: React.ComponentType<IconProps>;
static Flag: React.ComponentType<IconProps>;
static Flickr: React.ComponentType<IconProps>;
static Flight: React.ComponentType<IconProps>;
static Flooding: React.ComponentType<IconProps>;
static Folder: React.ComponentType<IconProps>;
static FolderOpen: React.ComponentType<IconProps>;
static FormatQuote: React.ComponentType<IconProps>;
static FormatSize: React.ComponentType<IconProps>;
static Forum: React.ComponentType<IconProps>;
static Github: React.ComponentType<IconProps>;
static GridView: React.ComponentType<IconProps>;
static GroupAdd: React.ComponentType<IconProps>;
static Groups: React.ComponentType<IconProps>;
static Hearing: React.ComponentType<IconProps>;
static Help: React.ComponentType<IconProps>;
static HelpOutline: React.ComponentType<IconProps>;
static HighlightOff: React.ComponentType<IconProps>;
static History: React.ComponentType<IconProps>;
static Home: React.ComponentType<IconProps>;
static Hospital: React.ComponentType<IconProps>;
static Hotel: React.ComponentType<IconProps>;
static HourglassEmpty: React.ComponentType<IconProps>;
static Hurricane: React.ComponentType<IconProps>;
static Identification: React.ComponentType<IconProps>;
static Image: React.ComponentType<IconProps>;
static Info: React.ComponentType<IconProps>;
static InfoOutline: React.ComponentType<IconProps>;
static Insights: React.ComponentType<IconProps>;
static Instagram: React.ComponentType<IconProps>;
static Keyboard: React.ComponentType<IconProps>;
static Label: React.ComponentType<IconProps>;
static Language: React.ComponentType<IconProps>;
static LastPage: React.ComponentType<IconProps>;
static Launch: React.ComponentType<IconProps>;
static Lightbulb: React.ComponentType<IconProps>;
static LightbulbOutline: React.ComponentType<IconProps>;
static Link: React.ComponentType<IconProps>;
static LinkOff: React.ComponentType<IconProps>;
static List: React.ComponentType<IconProps>;
static LocalCafe: React.ComponentType<IconProps>;
static LocalFireDepartment: React.ComponentType<IconProps>;
static LocalGasStation: React.ComponentType<IconProps>;
static LocalGroceryStore: React.ComponentType<IconProps>;
static LocalHospital: React.ComponentType<IconProps>;
static LocalLaundryService: React.ComponentType<IconProps>;
static LocalLibrary: React.ComponentType<IconProps>;
static LocalOffer: React.ComponentType<IconProps>;
static LocalParking: React.ComponentType<IconProps>;
static LocalPharmacy: React.ComponentType<IconProps>;
static LocalPolice: React.ComponentType<IconProps>;
static LocalTaxi: React.ComponentType<IconProps>;
static LocationCity: React.ComponentType<IconProps>;
static LocationOn: React.ComponentType<IconProps>;
static Lock: React.ComponentType<IconProps>;
static LockOpen: React.ComponentType<IconProps>;
static LockOutline: React.ComponentType<IconProps>;
static Login: React.ComponentType<IconProps>;
static Logout: React.ComponentType<IconProps>;
static Loop: React.ComponentType<IconProps>;
static Mail: React.ComponentType<IconProps>;
static MailOutline: React.ComponentType<IconProps>;
static Map: React.ComponentType<IconProps>;
static Masks: React.ComponentType<IconProps>;
static MedicalServices: React.ComponentType<IconProps>;
static Menu: React.ComponentType<IconProps>;
static MilitaryTech: React.ComponentType<IconProps>;
static MoreHoriz: React.ComponentType<IconProps>;
static MoreVert: React.ComponentType<IconProps>;
static MyLocation: React.ComponentType<IconProps>;
static NavigateBefore: React.ComponentType<IconProps>;
static NavigateNext: React.ComponentType<IconProps>;
static NavigateFarBefore: React.ComponentType<IconProps>;
static NavigateFarNext: React.ComponentType<IconProps>;
static NearMe: React.ComponentType<IconProps>;
static Notifications: React.ComponentType<IconProps>;
static NotificationsActive: React.ComponentType<IconProps>;
static NotificationsNone: React.ComponentType<IconProps>;
static NotificationsOff: React.ComponentType<IconProps>;
static Park: React.ComponentType<IconProps>;
static People: React.ComponentType<IconProps>;
static Person: React.ComponentType<IconProps>;
static Pets: React.ComponentType<IconProps>;
static Phone: React.ComponentType<IconProps>;
static PhotoCamera: React.ComponentType<IconProps>;
static Print: React.ComponentType<IconProps>;
static PriorityHigh: React.ComponentType<IconProps>;
static Public: React.ComponentType<IconProps>;
static PushPin: React.ComponentType<IconProps>;
static RadioButtonUnchecked: React.ComponentType<IconProps>;
static Rain: React.ComponentType<IconProps>;
static ReduceCapacity: React.ComponentType<IconProps>;
static Remove: React.ComponentType<IconProps>;
static Report: React.ComponentType<IconProps>;
static Restaurant: React.ComponentType<IconProps>;
static RssFeed: React.ComponentType<IconProps>;
static SafetyDivider: React.ComponentType<IconProps>;
static Sanitizer: React.ComponentType<IconProps>;
static SaveAlt: React.ComponentType<IconProps>;
static SevereWeather: React.ComponentType<IconProps>;
static Schedule: React.ComponentType<IconProps>;
static School: React.ComponentType<IconProps>;
static Science: React.ComponentType<IconProps>;
static Search: React.ComponentType<IconProps>;
static Security: React.ComponentType<IconProps>;
static Send: React.ComponentType<IconProps>;
static SentimentDissatisfied: React.ComponentType<IconProps>;
static SentimentNeutral: React.ComponentType<IconProps>;
static SentimentSatisfied: React.ComponentType<IconProps>;
static SentimentSatisfiedAlt: React.ComponentType<IconProps>;
static SentimentVeryDissatisfied: React.ComponentType<IconProps>;
static Settings: React.ComponentType<IconProps>;
static Share: React.ComponentType<IconProps>;
static Shield: React.ComponentType<IconProps>;
static ShoppingBasket: React.ComponentType<IconProps>;
static Snow: React.ComponentType<IconProps>;
static Soap: React.ComponentType<IconProps>;
static SocialDistance: React.ComponentType<IconProps>;
static SortArrow: React.ComponentType<IconProps>;
static Spellcheck: React.ComponentType<IconProps>;
static Star: React.ComponentType<IconProps>;
static StarHalf: React.ComponentType<IconProps>;
static StarOutline: React.ComponentType<IconProps>;
static Store: React.ComponentType<IconProps>;
static Support: React.ComponentType<IconProps>;
static SupportAgent: React.ComponentType<IconProps>;
static TextFields: React.ComponentType<IconProps>;
static ThumbDownAlt: React.ComponentType<IconProps>;
static ThumbUpAlt: React.ComponentType<IconProps>;
static Timer: React.ComponentType<IconProps>;
static ToggleOff: React.ComponentType<IconProps>;
static ToggleOn: React.ComponentType<IconProps>;
static Topic: React.ComponentType<IconProps>;
static Tornado: React.ComponentType<IconProps>;
static Translate: React.ComponentType<IconProps>;
static TrendingDown: React.ComponentType<IconProps>;
static TrendingUp: React.ComponentType<IconProps>;
static Twitter: React.ComponentType<IconProps>;
static Undo: React.ComponentType<IconProps>;
static UnfoldLess: React.ComponentType<IconProps>;
static UnfoldMore: React.ComponentType<IconProps>;
static Update: React.ComponentType<IconProps>;
static UploadFile: React.ComponentType<IconProps>;
static Verified: React.ComponentType<IconProps>;
static VerifiedUser: React.ComponentType<IconProps>;
static Visibility: React.ComponentType<IconProps>;
static VisibilityOff: React.ComponentType<IconProps>;
static VolumeOff: React.ComponentType<IconProps>;
static Warning: React.ComponentType<IconProps>;
static Wash: React.ComponentType<IconProps>;
static Wifi: React.ComponentType<IconProps>;
static Work: React.ComponentType<IconProps>;
static Youtube: React.ComponentType<IconProps>;
static ZoomIn: React.ComponentType<IconProps>;
static ZoomOutMap: React.ComponentType<IconProps>;
static ZoomOut: React.ComponentType<IconProps>;
}
export default Icon;

@@ -10,2 +10,3 @@ import React from 'react';

renderToPortal?: boolean;
isInitiallyOpen?: boolean;
}

@@ -19,3 +20,3 @@ export declare type ModalProps = ModalComponentProps & JSX.IntrinsicElements['div'];

export declare const ModalForwardRef: React.ForwardRefRenderFunction<ModalRef, ModalProps>;
export declare const Modal: React.ForwardRefExoticComponent<Pick<ModalProps, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "key" | "isLarge" | "forceAction" | "modalRoot" | "renderToPortal"> & React.RefAttributes<ModalRef>>;
export declare const Modal: React.ForwardRefExoticComponent<Pick<ModalProps, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "key" | "isLarge" | "forceAction" | "modalRoot" | "renderToPortal" | "isInitiallyOpen"> & React.RefAttributes<ModalRef>>;
export default Modal;

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

export declare const ModalWindowForwardRef: React.ForwardRefRenderFunction<HTMLDivElement, ModalWindowProps & JSX.IntrinsicElements['div']>;
export declare const ModalWindow: React.ForwardRefExoticComponent<Pick<ModalWindowProps & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement>, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "key" | "isLarge" | "forceAction" | "handleClose" | "modalId"> & React.RefAttributes<HTMLDivElement>>;
export declare const ModalWindow: React.ForwardRefExoticComponent<Pick<ModalWindowProps & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement>, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "key" | "handleClose" | "modalId" | "isLarge" | "forceAction"> & React.RefAttributes<HTMLDivElement>>;
export {};

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

export declare const ModalWrapperForwardRef: React.ForwardRefRenderFunction<HTMLDivElement, ModalWrapperProps & JSX.IntrinsicElements['div']>;
export declare const ModalWrapper: React.ForwardRefExoticComponent<Pick<ModalWrapperProps & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement>, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "key" | "isVisible" | "forceAction" | "handleClose"> & React.RefAttributes<HTMLDivElement>>;
export declare const ModalWrapper: React.ForwardRefExoticComponent<Pick<ModalWrapperProps & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement>, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "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" | "key" | "isVisible" | "handleClose" | "forceAction"> & React.RefAttributes<HTMLDivElement>>;
export default ModalWrapper;

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

};
export declare const useModal: () => ModalHook;
export declare const useModal: (isInitiallyOpen?: boolean | undefined) => ModalHook;
export declare const getScrollbarWidth: () => string;

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

interface HeadingProcessListHeadingProps extends BaseProcessListHeadingProps {
type: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
type: HeadingLevel;
}

@@ -11,0 +11,0 @@ interface ParagraphProcessListHeadingProps extends BaseProcessListHeadingProps {

@@ -9,10 +9,2 @@ import React from 'react';

size?: 'big' | 'small';
/**
* @deprecated since 1.6.0, use size
*/
big?: boolean;
/**
* @deprecated since 1.6.0, use size
*/
small?: boolean;
className?: string;

@@ -25,3 +17,3 @@ inputName?: string;

}
export declare const Search: ({ onSubmit, size, big, small, className, placeholder, inputName, label, inputId, i18n, ...formProps }: SearchInputProps & OptionalFormProps) => React.ReactElement;
export declare const Search: ({ onSubmit, size, className, placeholder, inputName, label, inputId, i18n, ...formProps }: SearchInputProps & OptionalFormProps) => React.ReactElement;
export default Search;

@@ -12,5 +12,5 @@ import React from 'react';

headingProps?: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
headingLevel?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
headingLevel: HeadingLevel;
}
export declare const StepIndicator: (props: StepIndicatorProps) => React.ReactElement;
export {};

@@ -29,3 +29,4 @@ import './styles/index.scss';

export { Checkbox } from './components/forms/Checkbox/Checkbox';
export { ComboBox, ComboBoxOption } from './components/forms/ComboBox/ComboBox';
export { ComboBox } from './components/forms/ComboBox/ComboBox';
export type { ComboBoxRef, ComboBoxOption, } from './components/forms/ComboBox/ComboBox';
export { DateInput } from './components/forms/DateInput/DateInput';

@@ -39,2 +40,3 @@ export { DateInputGroup } from './components/forms/DateInputGroup/DateInputGroup';

export { FileInput } from './components/forms/FileInput/FileInput';
export type { FileInputRef } from './components/forms/FileInput/FileInput';
export { Form } from './components/forms/Form/Form';

@@ -63,3 +65,7 @@ export { FormGroup } from './components/forms/FormGroup/FormGroup';

export { Title } from './components/header/Title/Title';
export * from './components/Icon/Icons';
/** IconList component */
export { IconList } from './components/IconList/IconList';
export { IconListItem } from './components/IconList/IconListItem/IconListItem';
export { IconListTitle } from './components/IconList/IconListTitle/IconListTitle';
export { Icon } from './components/Icon/Icons';
/** Identifier Components */

@@ -83,3 +89,3 @@ export { Identifier } from './components/Identifier/Identifier/Identifier';

/** Modal components */
export { Modal, ModalProps, ModalRef } from './components/Modal/Modal';
export { Modal } from './components/Modal/Modal';
export { ModalToggleButton } from './components/Modal/ModalToggleButton';

@@ -89,2 +95,3 @@ export { ModalOpenLink } from './components/Modal/ModalOpenLink';

export { ModalFooter } from './components/Modal/ModalFooter/ModalFooter';
export type { ModalProps, ModalRef } from './components/Modal/Modal';
/** Card components */

@@ -105,3 +112,3 @@ export { CardGroup } from './components/card/CardGroup/CardGroup';

export { Search } from './components/Search/Search';
export { SummaryBox } from './components/SummaryBox/SummaryBox';
export { SummaryBox } from './components/SummaryBox/SummaryBox/SummaryBox';
/** ProcessList components */

@@ -112,3 +119,1 @@ export { ProcessList } from './components/ProcessList/ProcessList/ProcessList';

export { SiteAlert } from './components/SiteAlert/SiteAlert';
export type { FileInputRef } from './components/forms/FileInput/FileInput';
export type { ComboBoxRef } from './components/forms/ComboBox/ComboBox';
{
"name": "@trussworks/react-uswds",
"version": "3.0.1",
"version": "3.0.2",
"description": "React USWDS 2.0 component library",

@@ -30,5 +30,5 @@ "keywords": [

"storybook:deploy": "storybook-to-ghpages",
"build": "webpack --progress",
"build:watch": "webpack --watch",
"lint": "tsc --noEmit && eslint --ext js,jsx,ts,tsx src && stylelint \"src/**/*.{css,scss}\"",
"build": "tsc && webpack --progress",
"build:watch": "tsc && webpack --watch",
"lint": "tsc --noEmit --emitDeclarationOnly false && eslint --ext js,jsx,ts,tsx src && stylelint \"src/**/*.{css,scss}\"",
"release": "standard-version -t ''",

@@ -77,3 +77,3 @@ "prepare": "yarn build",

"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^17.0.1",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",

@@ -83,3 +83,3 @@ "@typescript-eslint/parser": "^4.22.1",

"babel-eslint": "^10.0.3",
"babel-jest": "^27.0.2",
"babel-jest": "^28.1.0",
"babel-loader": "^8.0.6",

@@ -100,3 +100,3 @@ "classnames": "^2.2.6",

"focus-trap-react": "^8.8.1",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"fork-ts-checker-webpack-plugin": "^7.2.7",
"happo-plugin-storybook": "^2.7.0",

@@ -134,3 +134,3 @@ "happo.io": "^7.1.0",

"hooks": {
"pre-commit": "tsc --noEmit && lint-staged",
"pre-commit": "tsc --noEmit --emitDeclarationOnly false && lint-staged",
"pre-push": "yarn danger local -b main --failOnErrors"

@@ -137,0 +137,0 @@ }

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

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