@up42/up-components 0.8.0 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/types/components/Icon/Icon.d.ts +11 -0
- package/dist/cjs/types/components/Icon/Icon.test.d.ts +1 -0
- package/dist/cjs/types/global/icons/index.d.ts +74 -6
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/types/components/Icon/Icon.d.ts +11 -0
- package/dist/esm/types/components/Icon/Icon.test.d.ts +1 -0
- package/dist/esm/types/global/icons/index.d.ts +74 -6
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/index.d.ts +1238 -78
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,40 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export { default as tokens } from '@up42/design-system-tokens/dist/json/tokens.json';
|
|
3
3
|
import * as _mui_material from '@mui/material';
|
|
4
|
-
import { BoxProps as BoxProps$1, TextFieldProps, ChipProps as ChipProps$1, AvatarProps as AvatarProps$1, ContainerProps as ContainerProps$1, CheckboxProps as CheckboxProps$1, RadioProps as RadioProps$1, RadioGroupProps, SwitchProps as SwitchProps$1, SelectProps as SelectProps$1, LinkProps as LinkProps$1, TabsProps as TabsProps$1, TabProps as TabProps$1, ModalProps as ModalProps$1, CardProps, AlertProps as AlertProps$1, TooltipProps as TooltipProps$1, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, IconButtonProps, PopoverProps as PopoverProps$1 } from '@mui/material';
|
|
4
|
+
import { BoxProps as BoxProps$1, TextFieldProps, ChipProps as ChipProps$1, AvatarProps as AvatarProps$1, ContainerProps as ContainerProps$1, CheckboxProps as CheckboxProps$1, RadioProps as RadioProps$1, RadioGroupProps, SwitchProps as SwitchProps$1, SelectProps as SelectProps$1, LinkProps as LinkProps$1, TabsProps as TabsProps$1, TabProps as TabProps$1, ModalProps as ModalProps$1, CardProps, AlertProps as AlertProps$1, TooltipProps as TooltipProps$1, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, IconButtonProps, PopoverProps as PopoverProps$1, SvgIconProps } from '@mui/material';
|
|
5
5
|
export * from '@mui/material';
|
|
6
6
|
import { ThemeProviderProps } from '@mui/material/styles/ThemeProvider';
|
|
7
|
-
import
|
|
7
|
+
import * as React from 'react';
|
|
8
|
+
import React__default, { ReactNode, ElementType } from 'react';
|
|
8
9
|
import { ButtonProps as ButtonProps$1 } from '@mui/material/Button';
|
|
9
10
|
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
10
11
|
import * as _mui_material_Typography from '@mui/material/Typography';
|
|
11
12
|
import { TypographyProps as TypographyProps$1 } from '@mui/material/Typography';
|
|
12
13
|
import * as _mui_system from '@mui/system';
|
|
14
|
+
import Brightness1 from '@mui/icons-material/Brightness1';
|
|
15
|
+
import ArrowDownward from '@mui/icons-material/ArrowDownward';
|
|
16
|
+
import ArrowUpward from '@mui/icons-material/ArrowUpward';
|
|
17
|
+
import ArrowForward from '@mui/icons-material/ArrowForward';
|
|
18
|
+
import ArrowBack from '@mui/icons-material/ArrowBack';
|
|
19
|
+
import AutoStoriesOutlined from '@mui/icons-material/AutoStoriesOutlined';
|
|
20
|
+
import CampaignOutlined from '@mui/icons-material/CampaignOutlined';
|
|
21
|
+
import ContactSupportOutlined from '@mui/icons-material/ContactSupportOutlined';
|
|
22
|
+
import LightbulbOutlined from '@mui/icons-material/LightbulbOutlined';
|
|
23
|
+
import ShoppingCartOutlined from '@mui/icons-material/ShoppingCartOutlined';
|
|
24
|
+
import QuestionMark from '@mui/icons-material/QuestionMark';
|
|
25
|
+
import MoreHoriz from '@mui/icons-material/MoreHoriz';
|
|
26
|
+
import InfoOutlined from '@mui/icons-material/InfoOutlined';
|
|
27
|
+
import Person from '@mui/icons-material/Person';
|
|
28
|
+
import VisibilityOutlined from '@mui/icons-material/VisibilityOutlined';
|
|
29
|
+
import VisibilityOffOutlined from '@mui/icons-material/VisibilityOffOutlined';
|
|
30
|
+
import ContentCut from '@mui/icons-material/ContentCut';
|
|
31
|
+
import ContentCopy from '@mui/icons-material/ContentCopy';
|
|
32
|
+
import ContentPaste from '@mui/icons-material/ContentPaste';
|
|
33
|
+
import Cloud from '@mui/icons-material/Cloud';
|
|
34
|
+
import KeyboardArrowUp from '@mui/icons-material/KeyboardArrowUp';
|
|
35
|
+
import KeyboardArrowDown from '@mui/icons-material/KeyboardArrowDown';
|
|
36
|
+
import KeyboardArrowLeft from '@mui/icons-material/KeyboardArrowLeft';
|
|
37
|
+
import KeyboardArrowRight from '@mui/icons-material/KeyboardArrowRight';
|
|
13
38
|
import { TableProps as TableProps$1 } from '@mui/material/Table';
|
|
14
39
|
import { TableBodyProps as TableBodyProps$1 } from '@mui/material/TableBody';
|
|
15
40
|
import { TableCellProps as TableCellProps$1 } from '@mui/material/TableCell';
|
|
@@ -44,9 +69,9 @@ type MUIGlobalOmit<MuiProps, ComponentProps = unknown> = ComponentProps &
|
|
|
44
69
|
| 'touchRippleRef'
|
|
45
70
|
>
|
|
46
71
|
|
|
47
|
-
type BaseProps<D extends
|
|
72
|
+
type BaseProps<D extends React__default.ElementType = 'div', P = Record<string, unknown>> = BoxProps$1<D, P>
|
|
48
73
|
|
|
49
|
-
type FormBaseProps<C extends
|
|
74
|
+
type FormBaseProps<C extends React__default.ElementType> = BaseProps<
|
|
50
75
|
C,
|
|
51
76
|
Pick<TextFieldProps, 'id' | 'label' | 'required' | 'error' | 'disabled' | 'focused' | 'helperText'>
|
|
52
77
|
>
|
|
@@ -57,20 +82,20 @@ declare type ButtonProps = MUIGlobalOmit<ButtonProps$1, {
|
|
|
57
82
|
/**
|
|
58
83
|
* Documentation: https://up-components.up42.dev/?path=/story/data-entry-button
|
|
59
84
|
*/
|
|
60
|
-
declare const Button:
|
|
85
|
+
declare const Button: React__default.ForwardRefExoticComponent<Pick<{
|
|
61
86
|
loading?: boolean | undefined;
|
|
62
|
-
} & Omit<ButtonProps$1<"button", {}>, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation">, "color" | "variant" | "className" | "style" | "children" | "sx" | "form" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "type" | "name" | "href" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "loading" | "size" | "startIcon" | "endIcon" | "onFocusVisible" | "fullWidth"> &
|
|
87
|
+
} & Omit<ButtonProps$1<"button", {}>, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation">, "color" | "variant" | "className" | "style" | "children" | "sx" | "form" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "type" | "name" | "href" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "loading" | "size" | "startIcon" | "endIcon" | "onFocusVisible" | "fullWidth"> & React__default.RefAttributes<unknown>>;
|
|
63
88
|
|
|
64
|
-
declare type TypographyProps<C extends
|
|
89
|
+
declare type TypographyProps<C extends React__default.ElementType = 'p'> = TypographyProps$1<C, {
|
|
65
90
|
component?: C;
|
|
66
91
|
innerRef?: TypographyProps['ref'];
|
|
67
92
|
}>;
|
|
68
|
-
declare const Typography:
|
|
69
|
-
component?:
|
|
93
|
+
declare const Typography: React__default.ForwardRefExoticComponent<Pick<{
|
|
94
|
+
component?: React__default.ElementType<any> | undefined;
|
|
70
95
|
innerRef?: TypographyProps['ref'];
|
|
71
96
|
} & _mui_system.SystemProps<_mui_material.Theme> & {
|
|
72
97
|
align?: "inherit" | "left" | "right" | "center" | "justify" | undefined;
|
|
73
|
-
children?:
|
|
98
|
+
children?: React__default.ReactNode;
|
|
74
99
|
classes?: Partial<_mui_material_Typography.TypographyClasses> | undefined;
|
|
75
100
|
gutterBottom?: boolean | undefined;
|
|
76
101
|
noWrap?: boolean | undefined;
|
|
@@ -78,7 +103,7 @@ declare const Typography: React.ForwardRefExoticComponent<Pick<{
|
|
|
78
103
|
sx?: _mui_system.SxProps<_mui_material.Theme> | undefined;
|
|
79
104
|
variant?: "button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "body1" | "body2" | "overline" | "subtitle1" | "subtitle2" | undefined;
|
|
80
105
|
variantMapping?: Partial<Record<"button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "body1" | "body2" | "overline" | "subtitle1" | "subtitle2", string>> | undefined;
|
|
81
|
-
} & _mui_material_OverridableComponent.CommonProps & Omit<any, "variant" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "innerRef" | "align" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping">, string | number | symbol> &
|
|
106
|
+
} & _mui_material_OverridableComponent.CommonProps & Omit<any, "variant" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "innerRef" | "align" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping">, string | number | symbol> & React__default.RefAttributes<HTMLParagraphElement>>;
|
|
82
107
|
|
|
83
108
|
declare type ChipProps = MUIGlobalOmit<Omit<ChipProps$1, 'size'>>;
|
|
84
109
|
declare const Chip: ({ label, ...props }: ChipProps) => JSX.Element;
|
|
@@ -86,16 +111,16 @@ declare const Chip: ({ label, ...props }: ChipProps) => JSX.Element;
|
|
|
86
111
|
declare type AvatarProps = MUIGlobalOmit<Omit<AvatarProps$1, 'children' | 'alt' | 'imgProps' | 'sizes' | 'src' | 'srcSet' | 'variant'>, {
|
|
87
112
|
firstName?: string;
|
|
88
113
|
lastName?: string;
|
|
89
|
-
icon?:
|
|
114
|
+
icon?: React__default.ReactNode;
|
|
90
115
|
}>;
|
|
91
116
|
/**
|
|
92
117
|
* Documentation: https://up-components.up42.dev/?path=/story/data-display-avatar
|
|
93
118
|
*/
|
|
94
|
-
declare const Avatar:
|
|
119
|
+
declare const Avatar: React__default.ForwardRefExoticComponent<Pick<{
|
|
95
120
|
firstName?: string | undefined;
|
|
96
121
|
lastName?: string | undefined;
|
|
97
|
-
icon?:
|
|
98
|
-
} & Omit<Omit<AvatarProps$1<"div", {}>, "variant" | "children" | "sizes" | "alt" | "src" | "srcSet" | "imgProps">, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation">, "color" | "className" | "style" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "icon" | "firstName" | "lastName"> &
|
|
122
|
+
icon?: React__default.ReactNode;
|
|
123
|
+
} & Omit<Omit<AvatarProps$1<"div", {}>, "variant" | "children" | "sizes" | "alt" | "src" | "srcSet" | "imgProps">, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation">, "color" | "className" | "style" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "icon" | "firstName" | "lastName"> & React__default.RefAttributes<unknown>>;
|
|
99
124
|
|
|
100
125
|
declare type ContainerProps = MUIGlobalOmit<Omit<ContainerProps$1, 'maxWidth'>, {
|
|
101
126
|
/**
|
|
@@ -106,7 +131,7 @@ declare type ContainerProps = MUIGlobalOmit<Omit<ContainerProps$1, 'maxWidth'>,
|
|
|
106
131
|
* The component used for the root node.
|
|
107
132
|
* Either a string to use a HTML element or a component.
|
|
108
133
|
*/
|
|
109
|
-
component?:
|
|
134
|
+
component?: React__default.ElementType;
|
|
110
135
|
}>;
|
|
111
136
|
/**
|
|
112
137
|
* In order to maximize the available horizontal space of the UI we use a central column system layout.
|
|
@@ -126,38 +151,38 @@ declare type BoxProps = MUIGlobalOmit<BoxProps$1>;
|
|
|
126
151
|
/**
|
|
127
152
|
* Documentation: https://up-components.up42.dev/?path=/story/layout-box
|
|
128
153
|
*/
|
|
129
|
-
declare const Box:
|
|
154
|
+
declare const Box: React__default.ForwardRefExoticComponent<Pick<Omit<BoxProps$1<"div", {}>, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation">, "className" | "style" | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & React__default.RefAttributes<unknown>>;
|
|
130
155
|
|
|
131
156
|
declare type CheckboxProps = MUIGlobalOmit<CheckboxProps$1>;
|
|
132
157
|
declare const Checkbox: ({ ...props }: CheckboxProps) => JSX.Element;
|
|
133
158
|
|
|
134
|
-
declare type FormCheckboxProps<C extends
|
|
159
|
+
declare type FormCheckboxProps<C extends React__default.ElementType = 'div'> = CheckboxProps & FormBaseProps<C> & {
|
|
135
160
|
data: {
|
|
136
161
|
value: string | number;
|
|
137
|
-
label?:
|
|
162
|
+
label?: React__default.ReactNode;
|
|
138
163
|
}[];
|
|
139
164
|
};
|
|
140
165
|
/**
|
|
141
166
|
* Documentation: https://up-components.up42.dev/?path=/story/patterns-form
|
|
142
167
|
*/
|
|
143
|
-
declare const FormCheckbox:
|
|
144
|
-
children?:
|
|
145
|
-
component?:
|
|
146
|
-
ref?:
|
|
168
|
+
declare const FormCheckbox: React__default.ForwardRefExoticComponent<Pick<Omit<_mui_material.CheckboxProps, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation"> & Pick<_mui_material.TextFieldProps, "error" | "label" | "id" | "disabled" | "required" | "focused" | "helperText"> & _mui_system.SystemProps<_mui_material.Theme> & {
|
|
169
|
+
children?: React__default.ReactNode;
|
|
170
|
+
component?: React__default.ElementType<any> | undefined;
|
|
171
|
+
ref?: React__default.Ref<unknown> | undefined;
|
|
147
172
|
sx?: _mui_material.SxProps<_mui_material.Theme> | undefined;
|
|
148
|
-
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<
|
|
149
|
-
ref?: ((instance: HTMLDivElement | null) => void) |
|
|
173
|
+
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React__default.HTMLAttributes<HTMLDivElement>> & {
|
|
174
|
+
ref?: ((instance: HTMLDivElement | null) => void) | React__default.RefObject<HTMLDivElement> | null | undefined;
|
|
150
175
|
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "ref" | "label" | "id" | "disabled" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText"> & {
|
|
151
176
|
data: {
|
|
152
177
|
value: string | number;
|
|
153
|
-
label?:
|
|
178
|
+
label?: React__default.ReactNode;
|
|
154
179
|
}[];
|
|
155
|
-
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "data" | "form" | "label" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "icon" | "name" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "checked" | "readOnly" | "required" | "size" | "component" | "onFocusVisible" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "inputProps" | "inputRef" | "checkedIcon" | "edge" | "indeterminate" | "indeterminateIcon"> &
|
|
180
|
+
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "data" | "form" | "label" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "icon" | "name" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "checked" | "readOnly" | "required" | "size" | "component" | "onFocusVisible" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "inputProps" | "inputRef" | "checkedIcon" | "edge" | "indeterminate" | "indeterminateIcon"> & React__default.RefAttributes<unknown>>;
|
|
156
181
|
|
|
157
182
|
declare type RadioProps = MUIGlobalOmit<RadioProps$1>;
|
|
158
183
|
declare const Radio: (props: RadioProps) => JSX.Element;
|
|
159
184
|
|
|
160
|
-
declare type FormRadioProps<C extends
|
|
185
|
+
declare type FormRadioProps<C extends React__default.ElementType = 'div'> = RadioGroupProps & FormBaseProps<C> & {
|
|
161
186
|
inputRef?: RadioProps['inputRef'];
|
|
162
187
|
data: {
|
|
163
188
|
value: string | number;
|
|
@@ -168,13 +193,13 @@ declare type FormRadioProps<C extends React.ElementType = 'div'> = RadioGroupPro
|
|
|
168
193
|
/**
|
|
169
194
|
* Documentation: https://up-components.up42.dev/?path=/story/patterns-form
|
|
170
195
|
*/
|
|
171
|
-
declare const FormRadio:
|
|
172
|
-
children?:
|
|
173
|
-
component?:
|
|
174
|
-
ref?:
|
|
196
|
+
declare const FormRadio: React__default.ForwardRefExoticComponent<Pick<RadioGroupProps & Pick<_mui_material.TextFieldProps, "error" | "label" | "id" | "disabled" | "required" | "focused" | "helperText"> & _mui_system.SystemProps<_mui_material.Theme> & {
|
|
197
|
+
children?: React__default.ReactNode;
|
|
198
|
+
component?: React__default.ElementType<any> | undefined;
|
|
199
|
+
ref?: React__default.Ref<unknown> | undefined;
|
|
175
200
|
sx?: _mui_material.SxProps<_mui_material.Theme> | undefined;
|
|
176
|
-
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<
|
|
177
|
-
ref?: ((instance: HTMLDivElement | null) => void) |
|
|
201
|
+
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React__default.HTMLAttributes<HTMLDivElement>> & {
|
|
202
|
+
ref?: ((instance: HTMLDivElement | null) => void) | React__default.RefObject<HTMLDivElement> | null | undefined;
|
|
178
203
|
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "ref" | "label" | "id" | "disabled" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText"> & {
|
|
179
204
|
inputRef?: RadioProps['inputRef'];
|
|
180
205
|
data: {
|
|
@@ -182,28 +207,28 @@ declare const FormRadio: React.ForwardRefExoticComponent<Pick<RadioGroupProps &
|
|
|
182
207
|
label?: string;
|
|
183
208
|
message?: string;
|
|
184
209
|
}[];
|
|
185
|
-
}, "error" | "color" | "classes" | "className" | "style" | "children" | "sx" | "data" | "label" | "p" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "row" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint" | "name" | "disabled" | "value" | "required" | "component" | "focused" | "helperText" | "inputRef"> &
|
|
210
|
+
}, "error" | "color" | "classes" | "className" | "style" | "children" | "sx" | "data" | "label" | "p" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "row" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint" | "name" | "disabled" | "value" | "required" | "component" | "focused" | "helperText" | "inputRef"> & React__default.RefAttributes<unknown>>;
|
|
186
211
|
|
|
187
212
|
declare type SwitchProps = MUIGlobalOmit<SwitchProps$1>;
|
|
188
213
|
declare const Switch: (props: SwitchProps) => JSX.Element;
|
|
189
214
|
|
|
190
|
-
declare type FormSwitchProps<C extends
|
|
215
|
+
declare type FormSwitchProps<C extends React__default.ElementType = 'div'> = SwitchProps & FormBaseProps<C>;
|
|
191
216
|
/**
|
|
192
217
|
* Documentation: https://up-components.up42.dev/?path=/story/patterns-form
|
|
193
218
|
*/
|
|
194
|
-
declare const FormSwitch:
|
|
195
|
-
children?:
|
|
196
|
-
component?:
|
|
197
|
-
ref?:
|
|
219
|
+
declare const FormSwitch: React__default.ForwardRefExoticComponent<Pick<Omit<_mui_material.SwitchProps, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation"> & Pick<_mui_material.TextFieldProps, "error" | "label" | "id" | "disabled" | "required" | "focused" | "helperText"> & _mui_system.SystemProps<_mui_material.Theme> & {
|
|
220
|
+
children?: React__default.ReactNode;
|
|
221
|
+
component?: React__default.ElementType<any> | undefined;
|
|
222
|
+
ref?: React__default.Ref<unknown> | undefined;
|
|
198
223
|
sx?: _mui_material.SxProps<_mui_material.Theme> | undefined;
|
|
199
|
-
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<
|
|
200
|
-
ref?: ((instance: HTMLDivElement | null) => void) |
|
|
201
|
-
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "ref" | "label" | "id" | "disabled" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText">, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "form" | "label" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "icon" | "type" | "name" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "checked" | "readOnly" | "required" | "size" | "component" | "onFocusVisible" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "inputProps" | "inputRef" | "checkedIcon" | "edge"> &
|
|
224
|
+
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React__default.HTMLAttributes<HTMLDivElement>> & {
|
|
225
|
+
ref?: ((instance: HTMLDivElement | null) => void) | React__default.RefObject<HTMLDivElement> | null | undefined;
|
|
226
|
+
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "ref" | "label" | "id" | "disabled" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText">, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "form" | "label" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "icon" | "type" | "name" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "checked" | "readOnly" | "required" | "size" | "component" | "onFocusVisible" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "inputProps" | "inputRef" | "checkedIcon" | "edge"> & React__default.RefAttributes<unknown>>;
|
|
202
227
|
|
|
203
228
|
declare type SelectProps = MUIGlobalOmit<Omit<SelectProps$1, 'variant' | 'label'>>;
|
|
204
229
|
declare const Select: (props: SelectProps) => JSX.Element;
|
|
205
230
|
|
|
206
|
-
declare type FormSelectProps<C extends
|
|
231
|
+
declare type FormSelectProps<C extends React__default.ElementType = 'div'> = SelectProps & FormBaseProps<C> & {
|
|
207
232
|
options: {
|
|
208
233
|
value: string | number;
|
|
209
234
|
label: string | ReactNode;
|
|
@@ -212,37 +237,37 @@ declare type FormSelectProps<C extends React.ElementType = 'div'> = SelectProps
|
|
|
212
237
|
/**
|
|
213
238
|
* Documentation: https://up-components.up42.dev/?path=/story/patterns-form
|
|
214
239
|
*/
|
|
215
|
-
declare const FormSelect:
|
|
216
|
-
children?:
|
|
217
|
-
component?:
|
|
218
|
-
ref?:
|
|
240
|
+
declare const FormSelect: React__default.ForwardRefExoticComponent<Pick<Omit<Omit<_mui_material.SelectProps<unknown>, "variant" | "label">, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation"> & Pick<_mui_material.TextFieldProps, "error" | "label" | "id" | "disabled" | "required" | "focused" | "helperText"> & _mui_system.SystemProps<_mui_material.Theme> & {
|
|
241
|
+
children?: React__default.ReactNode;
|
|
242
|
+
component?: React__default.ElementType<any> | undefined;
|
|
243
|
+
ref?: React__default.Ref<unknown> | undefined;
|
|
219
244
|
sx?: _mui_material.SxProps<_mui_material.Theme> | undefined;
|
|
220
|
-
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<
|
|
221
|
-
ref?: ((instance: HTMLDivElement | null) => void) |
|
|
245
|
+
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React__default.HTMLAttributes<HTMLDivElement>> & {
|
|
246
|
+
ref?: ((instance: HTMLDivElement | null) => void) | React__default.RefObject<HTMLDivElement> | null | undefined;
|
|
222
247
|
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "ref" | "label" | "id" | "disabled" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText"> & {
|
|
223
248
|
options: {
|
|
224
249
|
value: string | number;
|
|
225
250
|
label: string | ReactNode;
|
|
226
251
|
}[];
|
|
227
|
-
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "input" | "label" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "onClose" | "type" | "name" | "autoFocus" | "disabled" | "value" | "open" | "autoComplete" | "multiple" | "readOnly" | "required" | "size" | "rows" | "component" | "components" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "fullWidth" | "inputProps" | "inputRef" | "multiline" | "maxRows" | "minRows" | "componentsProps" | "disableInjectingGlobalStyles" | "endAdornment" | "inputComponent" | "renderSuffix" | "startAdornment" | "disableUnderline" | "notched" | "autoWidth" | "defaultOpen" | "displayEmpty" | "IconComponent" | "labelId" | "MenuProps" | "native" | "onOpen" | "renderValue" | "SelectDisplayProps" | "options"> &
|
|
252
|
+
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "input" | "label" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "onClose" | "type" | "name" | "autoFocus" | "disabled" | "value" | "open" | "autoComplete" | "multiple" | "readOnly" | "required" | "size" | "rows" | "component" | "components" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "fullWidth" | "inputProps" | "inputRef" | "multiline" | "maxRows" | "minRows" | "componentsProps" | "disableInjectingGlobalStyles" | "endAdornment" | "inputComponent" | "renderSuffix" | "startAdornment" | "disableUnderline" | "notched" | "autoWidth" | "defaultOpen" | "displayEmpty" | "IconComponent" | "labelId" | "MenuProps" | "native" | "onOpen" | "renderValue" | "SelectDisplayProps" | "options"> & React__default.RefAttributes<unknown>>;
|
|
228
253
|
|
|
229
254
|
declare type InputProps = Omit<TextFieldProps, 'maxRows' | 'minRows' | 'multiline' | 'rows' | 'size' | 'variant'>;
|
|
230
255
|
declare const Input: ({ type, ...props }: InputProps) => JSX.Element;
|
|
231
256
|
|
|
232
|
-
declare type FormInputProps<C extends
|
|
257
|
+
declare type FormInputProps<C extends React__default.ElementType = 'div'> = InputProps & FormBaseProps<C>;
|
|
233
258
|
/**
|
|
234
259
|
* Documentation: https://up-components.up42.dev/?path=/story/patterns-form
|
|
235
260
|
*/
|
|
236
|
-
declare const FormInput:
|
|
237
|
-
children?:
|
|
238
|
-
component?:
|
|
239
|
-
ref?:
|
|
261
|
+
declare const FormInput: React__default.ForwardRefExoticComponent<Pick<InputProps & Pick<_mui_material.TextFieldProps, "error" | "label" | "id" | "disabled" | "required" | "focused" | "helperText"> & _mui_system.SystemProps<_mui_material.Theme> & {
|
|
262
|
+
children?: React__default.ReactNode;
|
|
263
|
+
component?: React__default.ElementType<any> | undefined;
|
|
264
|
+
ref?: React__default.Ref<unknown> | undefined;
|
|
240
265
|
sx?: _mui_material.SxProps<_mui_material.Theme> | undefined;
|
|
241
|
-
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<
|
|
242
|
-
ref?: ((instance: HTMLDivElement | null) => void) |
|
|
243
|
-
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "ref" | "label" | "id" | "disabled" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText">, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "label" | "slot" | "select" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "type" | "name" | "autoFocus" | "disabled" | "value" | "autoComplete" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "fullWidth" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "InputLabelProps" | "inputProps" | "inputRef" | "SelectProps"> &
|
|
266
|
+
} & _mui_material_OverridableComponent.CommonProps & Omit<Pick<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React__default.HTMLAttributes<HTMLDivElement>> & {
|
|
267
|
+
ref?: ((instance: HTMLDivElement | null) => void) | React__default.RefObject<HTMLDivElement> | null | undefined;
|
|
268
|
+
}, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "ref" | "label" | "id" | "disabled" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText">, "error" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "label" | "slot" | "select" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "type" | "name" | "autoFocus" | "disabled" | "value" | "autoComplete" | "required" | "component" | ("color" | "p" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "focused" | "helperText" | "fullWidth" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "InputLabelProps" | "inputProps" | "inputRef" | "SelectProps"> & React__default.RefAttributes<unknown>>;
|
|
244
269
|
|
|
245
|
-
declare type LinkProps<C extends
|
|
270
|
+
declare type LinkProps<C extends React__default.ElementType> = LinkProps$1<C, {
|
|
246
271
|
component?: C;
|
|
247
272
|
}> & {
|
|
248
273
|
hideIcon?: boolean;
|
|
@@ -263,7 +288,7 @@ declare type LinkProps<C extends React.ElementType> = LinkProps$1<C, {
|
|
|
263
288
|
*
|
|
264
289
|
* Documentation: https://up-components.up42.dev/?path=/docs/navigation-link
|
|
265
290
|
*/
|
|
266
|
-
declare const Link: <C extends
|
|
291
|
+
declare const Link: <C extends React__default.ElementType<any>>({ children, underline, hideIcon, ...props }: LinkProps<C>) => JSX.Element;
|
|
267
292
|
|
|
268
293
|
declare type TabsProps = MUIGlobalOmit<TabsProps$1>;
|
|
269
294
|
declare type TabProps = MUIGlobalOmit<TabProps$1>;
|
|
@@ -285,7 +310,7 @@ declare type TabGroupProps = {
|
|
|
285
310
|
};
|
|
286
311
|
declare const TabGroup: ({ tabs, nameSpace: _nameSpace, tabContentProps, tabsProps }: TabGroupProps) => JSX.Element;
|
|
287
312
|
|
|
288
|
-
declare type EmptyStateProps<C extends
|
|
313
|
+
declare type EmptyStateProps<C extends React__default.ElementType = 'div'> = BaseProps<C, {
|
|
289
314
|
/**
|
|
290
315
|
* Helpful message that conveys the purpose of the screen and the next action to populate the space
|
|
291
316
|
*/
|
|
@@ -303,7 +328,7 @@ declare type EmptyStateProps<C extends React.ElementType = 'div'> = BaseProps<C,
|
|
|
303
328
|
*/
|
|
304
329
|
action?: ReactNode;
|
|
305
330
|
}>;
|
|
306
|
-
declare const EmptyState: <C extends
|
|
331
|
+
declare const EmptyState: <C extends React__default.ElementType<any>>({ icon: Icon, title, subTitle, action, ...props }: EmptyStateProps<C>) => JSX.Element;
|
|
307
332
|
|
|
308
333
|
declare type ModalProps = MUIGlobalOmit<ModalProps$1>;
|
|
309
334
|
/**
|
|
@@ -317,11 +342,11 @@ declare type InfoCardProps = {
|
|
|
317
342
|
/**
|
|
318
343
|
* The content action section aka. card footer.
|
|
319
344
|
*/
|
|
320
|
-
actions?:
|
|
345
|
+
actions?: React__default.ReactNode;
|
|
321
346
|
/**
|
|
322
347
|
* The content of the header action, usually an icon with a close event.
|
|
323
348
|
*/
|
|
324
|
-
headerAction?:
|
|
349
|
+
headerAction?: React__default.ReactNode;
|
|
325
350
|
/**
|
|
326
351
|
* The Card's title typography variant.
|
|
327
352
|
*/
|
|
@@ -334,17 +359,17 @@ declare type InfoCardProps = {
|
|
|
334
359
|
/**
|
|
335
360
|
* Documentation: https://up-components.up42.dev/?path=/docs/patterns-infocard
|
|
336
361
|
*/
|
|
337
|
-
declare const InfoCard:
|
|
362
|
+
declare const InfoCard: React__default.ForwardRefExoticComponent<Pick<{
|
|
338
363
|
title: string;
|
|
339
364
|
subtitle?: string | undefined;
|
|
340
365
|
/**
|
|
341
366
|
* The content action section aka. card footer.
|
|
342
367
|
*/
|
|
343
|
-
actions?:
|
|
368
|
+
actions?: React__default.ReactNode;
|
|
344
369
|
/**
|
|
345
370
|
* The content of the header action, usually an icon with a close event.
|
|
346
371
|
*/
|
|
347
|
-
headerAction?:
|
|
372
|
+
headerAction?: React__default.ReactNode;
|
|
348
373
|
/**
|
|
349
374
|
* The Card's title typography variant.
|
|
350
375
|
*/
|
|
@@ -353,7 +378,7 @@ declare const InfoCard: React.ForwardRefExoticComponent<Pick<{
|
|
|
353
378
|
* Choose whether to hide divider or not.
|
|
354
379
|
*/
|
|
355
380
|
hideDivider?: boolean | undefined;
|
|
356
|
-
} & Omit<CardProps<"div", {}>, "square" | "variant" | "raised">, "color" | "elevation" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "actions" | "titleVariant" | "subtitle" | "headerAction" | "hideDivider"> &
|
|
381
|
+
} & Omit<CardProps<"div", {}>, "square" | "variant" | "raised">, "color" | "elevation" | keyof _mui_material_OverridableComponent.CommonProps | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "actions" | "titleVariant" | "subtitle" | "headerAction" | "hideDivider"> & React__default.RefAttributes<unknown>>;
|
|
357
382
|
|
|
358
383
|
declare type InfoModalProps = MUIGlobalOmit<Omit<ModalProps, 'BackdropProps' | 'BackdropComponent' | 'onBackdropClick'>, Omit<InfoCardProps, 'headerAction'> & {
|
|
359
384
|
/**
|
|
@@ -373,9 +398,9 @@ declare type AlertProps = Omit<AlertProps$1, 'color' | 'elevation' | 'iconMappin
|
|
|
373
398
|
/**
|
|
374
399
|
* Documentation: https://up-components.up42.dev/?path=/docs/feedback-alert
|
|
375
400
|
*/
|
|
376
|
-
declare const Alert:
|
|
401
|
+
declare const Alert: React__default.ForwardRefExoticComponent<Pick<Omit<AlertProps$1, "color" | "elevation" | "iconMapping" | "severity" | "square" | "variant" | "action"> & {
|
|
377
402
|
type?: AlertColor | undefined;
|
|
378
|
-
}, "classes" | "className" | "style" | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "closeText" | "icon" | "onClose" | "type"> &
|
|
403
|
+
}, "classes" | "className" | "style" | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "closeText" | "icon" | "onClose" | "type"> & React__default.RefAttributes<unknown>>;
|
|
379
404
|
|
|
380
405
|
declare type BannerProps = {
|
|
381
406
|
/**
|
|
@@ -403,7 +428,7 @@ declare type BannerProps = {
|
|
|
403
428
|
/**
|
|
404
429
|
* Documentation: https://up-components.up42.dev/?path=/docs/feedback-banner
|
|
405
430
|
*/
|
|
406
|
-
declare const Banner:
|
|
431
|
+
declare const Banner: React__default.ForwardRefExoticComponent<Pick<{
|
|
407
432
|
/**
|
|
408
433
|
* Call To Action label
|
|
409
434
|
* */
|
|
@@ -425,7 +450,7 @@ declare const Banner: React.ForwardRefExoticComponent<Pick<{
|
|
|
425
450
|
*/
|
|
426
451
|
onDismiss?: ButtonProps['onClick'];
|
|
427
452
|
title: string;
|
|
428
|
-
} & Omit<AlertProps, "title" | "role" | "closeText" | "icon" | "onClose">, "variant" | "classes" | "className" | "style" | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "type" | "onDismiss" | "actionLabel" | "actionProps"> &
|
|
453
|
+
} & Omit<AlertProps, "title" | "role" | "closeText" | "icon" | "onClose">, "variant" | "classes" | "className" | "style" | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "type" | "onDismiss" | "actionLabel" | "actionProps"> & React__default.RefAttributes<unknown>>;
|
|
429
454
|
|
|
430
455
|
declare type TooltipProps = Omit<TooltipProps$1, 'TransitionComponent' | 'TransitionProps' | 'PopperComponent' | 'followCursor'>;
|
|
431
456
|
/**
|
|
@@ -437,7 +462,7 @@ declare type MenuProps = MUIGlobalOmit<MenuProps$1>;
|
|
|
437
462
|
/**
|
|
438
463
|
* Documentation: https://up-components.up42.dev/?path=/docs/navigation-menu
|
|
439
464
|
*/
|
|
440
|
-
declare const Menu:
|
|
465
|
+
declare const Menu: React__default.ForwardRefExoticComponent<Pick<Omit<MenuProps$1, "action" | "classes" | "tabIndex" | "disableFocusRipple" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation">, "color" | "elevation" | "variant" | "className" | "style" | "children" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "onClose" | "transformOrigin" | "transitionDuration" | "autoFocus" | "open" | "components" | "container" | "componentsProps" | "BackdropComponent" | "BackdropProps" | "closeAfterTransition" | "disableAutoFocus" | "disableEnforceFocus" | "disableEscapeKeyDown" | "disablePortal" | "disableRestoreFocus" | "disableScrollLock" | "hideBackdrop" | "keepMounted" | "onBackdropClick" | "anchorEl" | "anchorOrigin" | "anchorPosition" | "anchorReference" | "marginThreshold" | "PaperProps" | "TransitionComponent" | "TransitionProps" | "disableAutoFocusItem" | "MenuListProps" | "PopoverClasses"> & React__default.RefAttributes<unknown>>;
|
|
441
466
|
declare type MenuItemProps = MUIGlobalOmit<MenuItemProps$1>;
|
|
442
467
|
declare const MenuItem: (props: MenuItemProps) => JSX.Element;
|
|
443
468
|
|
|
@@ -460,7 +485,7 @@ declare type PopoverProps = MUIGlobalOmit<PopoverProps$1>;
|
|
|
460
485
|
declare const Popover: ({ children, ...props }: PopoverProps) => JSX.Element;
|
|
461
486
|
|
|
462
487
|
declare type InfoPopoverProps = InfoCardProps & {
|
|
463
|
-
icon?:
|
|
488
|
+
icon?: React__default.ElementType;
|
|
464
489
|
};
|
|
465
490
|
/**
|
|
466
491
|
* Documentation: https://up-components.up42.dev/?path=/docs/patterns-popovers-infopopover
|
|
@@ -470,8 +495,8 @@ declare const InfoPopover: ({ id, icon: Icon, actions, title, children, sx, ...p
|
|
|
470
495
|
declare type PageHeaderProps = {
|
|
471
496
|
title: string;
|
|
472
497
|
divider?: boolean;
|
|
473
|
-
description?:
|
|
474
|
-
action?:
|
|
498
|
+
description?: React__default.ReactNode;
|
|
499
|
+
action?: React__default.ReactNode;
|
|
475
500
|
};
|
|
476
501
|
/**
|
|
477
502
|
* Documentation: https://up-components.up42.dev/?path=/story/patterns-pageheader
|
|
@@ -492,6 +517,1141 @@ declare type LoadingProps = {
|
|
|
492
517
|
} & BoxProps$1;
|
|
493
518
|
declare const Loading: ({ fullPage, visible, ...rest }: LoadingProps) => JSX.Element | null;
|
|
494
519
|
|
|
520
|
+
var _path$C, _path2$o;
|
|
521
|
+
|
|
522
|
+
function _extends$O() { _extends$O = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$O.apply(this, arguments); }
|
|
523
|
+
|
|
524
|
+
var SvgAppWindowCode = function SvgAppWindowCode(props) {
|
|
525
|
+
return /*#__PURE__*/React.createElement("svg", _extends$O({
|
|
526
|
+
width: 32,
|
|
527
|
+
height: 32,
|
|
528
|
+
fill: "none",
|
|
529
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
530
|
+
}, props), _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
|
|
531
|
+
d: "M4.013 30.004c-1.654 0-3-1.345-3-3v-22c0-1.655 1.346-3 3-3h24c1.655 0 3 1.345 3 3v22c0 1.655-1.345 3-3 3h-24Zm-1-3a1 1 0 0 0 1 1h24a1 1 0 0 0 1-1v-17h-26v17Zm26-19v-3a1 1 0 0 0-1-1h-24a1 1 0 0 0-1 1v3h26Z",
|
|
532
|
+
fill: "currentColor"
|
|
533
|
+
})), _path2$o || (_path2$o = /*#__PURE__*/React.createElement("path", {
|
|
534
|
+
d: "M16.013 24.004a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2h-6ZM10.013 24.004a1.003 1.003 0 0 1-.707-1.708l3.294-3.293-3.293-3.294a.99.99 0 0 1-.294-.706.99.99 0 0 1 .294-.707.99.99 0 0 1 .706-.293.99.99 0 0 1 .707.293l4 4c.39.39.39 1.024 0 1.415l-4 4a.993.993 0 0 1-.707.293Z",
|
|
535
|
+
fill: "currentColor"
|
|
536
|
+
})));
|
|
537
|
+
};
|
|
538
|
+
|
|
539
|
+
var _rect$4, _g$b, _defs$9;
|
|
540
|
+
|
|
541
|
+
function _extends$N() { _extends$N = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$N.apply(this, arguments); }
|
|
542
|
+
|
|
543
|
+
var SvgAssignmentCircle = function SvgAssignmentCircle(props) {
|
|
544
|
+
return /*#__PURE__*/React.createElement("svg", _extends$N({
|
|
545
|
+
width: 32,
|
|
546
|
+
height: 32,
|
|
547
|
+
fill: "none",
|
|
548
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
549
|
+
}, props), _rect$4 || (_rect$4 = /*#__PURE__*/React.createElement("rect", {
|
|
550
|
+
width: 32,
|
|
551
|
+
height: 32,
|
|
552
|
+
rx: 16,
|
|
553
|
+
fill: "currentColor"
|
|
554
|
+
})), _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
|
|
555
|
+
clipPath: "url(#assignment-circle_svg__a)",
|
|
556
|
+
fill: "#fff"
|
|
557
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
558
|
+
d: "M15.5 18.007a.5.5 0 0 1 0-1H19a.5.5 0 0 1 0 1h-3.5ZM15.5 21.007a.5.5 0 0 1 0-1H19a.5.5 0 0 1 0 1h-3.5ZM13.5 18.257a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15.5 15.007a.5.5 0 0 1 0-1H19a.5.5 0 0 1 0 1h-3.5ZM13.5 15.257a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM13.5 21.257a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"
|
|
559
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
560
|
+
d: "M11 24.007c-.827 0-1.5-.672-1.5-1.5v-10.5c0-.827.673-1.5 1.5-1.5h2.042A3.024 3.024 0 0 1 16 8.007c1.46 0 2.717 1.081 2.958 2.5H21c.827 0 1.5.673 1.5 1.5v10.5c0 .828-.673 1.5-1.5 1.5H11Zm0-12.5a.5.5 0 0 0-.5.5v10.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5v-10.5a.5.5 0 0 0-.5-.5h-2.5a.5.5 0 0 1-.5-.5c0-1.102-.897-2-2-2s-2 .898-2 2a.5.5 0 0 1-.5.5H11Z"
|
|
561
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
562
|
+
d: "M16 11.507a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"
|
|
563
|
+
}))), _defs$9 || (_defs$9 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
564
|
+
id: "assignment-circle_svg__a"
|
|
565
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
566
|
+
fill: "#fff",
|
|
567
|
+
transform: "translate(8 8)",
|
|
568
|
+
d: "M0 0h16v16H0z"
|
|
569
|
+
})))));
|
|
570
|
+
};
|
|
571
|
+
|
|
572
|
+
var _rect$3, _path$B, _path2$n, _path3$3;
|
|
573
|
+
|
|
574
|
+
function _extends$M() { _extends$M = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$M.apply(this, arguments); }
|
|
575
|
+
|
|
576
|
+
var SvgBashCircle = function SvgBashCircle(props) {
|
|
577
|
+
return /*#__PURE__*/React.createElement("svg", _extends$M({
|
|
578
|
+
width: 32,
|
|
579
|
+
height: 32,
|
|
580
|
+
fill: "none",
|
|
581
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
582
|
+
}, props), _rect$3 || (_rect$3 = /*#__PURE__*/React.createElement("rect", {
|
|
583
|
+
width: 32,
|
|
584
|
+
height: 32,
|
|
585
|
+
rx: 16,
|
|
586
|
+
fill: "currentColor"
|
|
587
|
+
})), _path$B || (_path$B = /*#__PURE__*/React.createElement("path", {
|
|
588
|
+
d: "M9.5 22.667c-.827 0-1.5-.673-1.5-1.5V10.243a1.584 1.584 0 0 1 1.575-1.576H22.43A1.579 1.579 0 0 1 24 10.237V21.09a1.584 1.584 0 0 1-1.575 1.577H9.5Zm.077-13a.581.581 0 0 0-.577.578v10.922a.5.5 0 0 0 .5.5h12.923a.58.58 0 0 0 .577-.578v-10.85a.575.575 0 0 0-.573-.572H9.577Z",
|
|
589
|
+
fill: "#fff"
|
|
590
|
+
})), _path2$n || (_path2$n = /*#__PURE__*/React.createElement("path", {
|
|
591
|
+
d: "M20.695 20.667h-9.482c-.649 0-1.193-.528-1.213-1.178v-7.577a1.27 1.27 0 0 1 1.27-1.245h9.444l.033-.001c.668 0 1.23.55 1.252 1.226v7.53a1.27 1.27 0 0 1-1.27 1.245h-.034Zm.032-1a.272.272 0 0 0 .274-.262v-7.497c-.006-.127-.13-.241-.274-.241H11.29c-.164 0-.285.114-.29.261v7.546c.003.105.101.193.223.193h9.504Z",
|
|
592
|
+
fill: "#fff"
|
|
593
|
+
})), _path3$3 || (_path3$3 = /*#__PURE__*/React.createElement("path", {
|
|
594
|
+
d: "M17 16.167a.5.5 0 0 1 0-1h2a.5.5 0 0 1 0 1h-2ZM13.5 17.667a.501.501 0 0 1-.353-.854l1.146-1.146-1.147-1.147a.497.497 0 0 1 0-.707.495.495 0 0 1 .707 0l1.5 1.5a.497.497 0 0 1 0 .707l-1.5 1.5a.497.497 0 0 1-.353.147Z",
|
|
595
|
+
fill: "#fff"
|
|
596
|
+
})));
|
|
597
|
+
};
|
|
598
|
+
|
|
599
|
+
var _path$A, _path2$m;
|
|
600
|
+
|
|
601
|
+
function _extends$L() { _extends$L = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$L.apply(this, arguments); }
|
|
602
|
+
|
|
603
|
+
var SvgBin = function SvgBin(props) {
|
|
604
|
+
return /*#__PURE__*/React.createElement("svg", _extends$L({
|
|
605
|
+
width: 14,
|
|
606
|
+
height: 14,
|
|
607
|
+
fill: "currentColor",
|
|
608
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
609
|
+
}, props), _path$A || (_path$A = /*#__PURE__*/React.createElement("path", {
|
|
610
|
+
d: "M5.5 10.5A.5.5 0 0 1 5 10V6a.5.5 0 0 1 1 0v4a.5.5 0 0 1-.5.5ZM8.5 10.5A.5.5 0 0 1 8 10V6a.5.5 0 0 1 1 0v4a.5.5 0 0 1-.5.5Z"
|
|
611
|
+
})), _path2$m || (_path2$m = /*#__PURE__*/React.createElement("path", {
|
|
612
|
+
d: "M3.5 13.5c-.827 0-1.5-.673-1.5-1.5V3.5H.5a.5.5 0 0 1 0-1H4V2C4 1.173 4.673.5 5.5.5h3C9.327.5 10 1.173 10 2v.5h3.5a.5.5 0 0 1 0 1H12V12c0 .827-.673 1.5-1.5 1.5h-7ZM3 12a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V3.5H3V12Zm6-9.5V2a.5.5 0 0 0-.5-.5h-3A.5.5 0 0 0 5 2v.5h4Z"
|
|
613
|
+
})));
|
|
614
|
+
};
|
|
615
|
+
|
|
616
|
+
var _path$z, _path2$l;
|
|
617
|
+
|
|
618
|
+
function _extends$K() { _extends$K = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$K.apply(this, arguments); }
|
|
619
|
+
|
|
620
|
+
var SvgBlocked = function SvgBlocked(props) {
|
|
621
|
+
return /*#__PURE__*/React.createElement("svg", _extends$K({
|
|
622
|
+
width: 16,
|
|
623
|
+
height: 16,
|
|
624
|
+
fill: "none",
|
|
625
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
626
|
+
}, props), _path$z || (_path$z = /*#__PURE__*/React.createElement("path", {
|
|
627
|
+
d: "M5 8.5a.5.5 0 0 1 0-1h6a.5.5 0 0 1 0 1H5Z",
|
|
628
|
+
fill: "currentColor"
|
|
629
|
+
})), _path2$l || (_path2$l = /*#__PURE__*/React.createElement("path", {
|
|
630
|
+
d: "M8 16c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8ZM8 1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7Z",
|
|
631
|
+
fill: "currentColor"
|
|
632
|
+
})));
|
|
633
|
+
};
|
|
634
|
+
|
|
635
|
+
var _rect$2, _g$a, _defs$8;
|
|
636
|
+
|
|
637
|
+
function _extends$J() { _extends$J = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$J.apply(this, arguments); }
|
|
638
|
+
|
|
639
|
+
var SvgBlockCircle = function SvgBlockCircle(props) {
|
|
640
|
+
return /*#__PURE__*/React.createElement("svg", _extends$J({
|
|
641
|
+
width: 32,
|
|
642
|
+
height: 32,
|
|
643
|
+
fill: "none",
|
|
644
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
645
|
+
}, props), _rect$2 || (_rect$2 = /*#__PURE__*/React.createElement("rect", {
|
|
646
|
+
width: 32,
|
|
647
|
+
height: 32,
|
|
648
|
+
rx: 16,
|
|
649
|
+
fill: "currentColor"
|
|
650
|
+
})), _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
|
|
651
|
+
clipPath: "url(#block-circle_svg__a)"
|
|
652
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
653
|
+
d: "M16.001 24c-.309 0-.613-.057-.903-.17l-6.067-2.38A1.677 1.677 0 0 1 8 19.865v-7.74a1.643 1.643 0 0 1 .309-.996 1.694 1.694 0 0 1 .705-.573l6.081-2.385a2.442 2.442 0 0 1 1.808.001l6.066 2.378c.256.11.472.271.648.483a.518.518 0 0 1 .081.107c.206.295.31.639.302.995v7.741a1.662 1.662 0 0 1-1.014 1.567l-6.081 2.386c-.29.114-.594.172-.904.172Zm.499-1.087.04-.015 6.067-2.38a.664.664 0 0 0 .394-.63v-7.764c0-.032-.001-.064-.004-.095L16.5 14.576v8.337H16.5ZM9.003 12.029a.569.569 0 0 0-.003.083v7.764a.678.678 0 0 0 .41.648l6.09 2.388v-8.336L9.003 12.03ZM16 13.7l6.13-2.404-5.593-2.193a1.454 1.454 0 0 0-1.074 0L9.87 11.294 16 13.698Z",
|
|
654
|
+
fill: "#fff"
|
|
655
|
+
}))), _defs$8 || (_defs$8 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
656
|
+
id: "block-circle_svg__a"
|
|
657
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
658
|
+
fill: "#fff",
|
|
659
|
+
transform: "translate(8 8)",
|
|
660
|
+
d: "M0 0h16v16H0z"
|
|
661
|
+
})))));
|
|
662
|
+
};
|
|
663
|
+
|
|
664
|
+
var _g$9, _defs$7;
|
|
665
|
+
|
|
666
|
+
function _extends$I() { _extends$I = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$I.apply(this, arguments); }
|
|
667
|
+
|
|
668
|
+
var SvgBoxes = function SvgBoxes(props) {
|
|
669
|
+
return /*#__PURE__*/React.createElement("svg", _extends$I({
|
|
670
|
+
fill: "currentColor",
|
|
671
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
672
|
+
viewBox: "0 0 17 17"
|
|
673
|
+
}, props), _g$9 || (_g$9 = /*#__PURE__*/React.createElement("g", {
|
|
674
|
+
clipPath: "url(#boxes_svg__a)"
|
|
675
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
676
|
+
d: "M6.5 8.058c-.827 0-1.5-.673-1.5-1.5v-4c0-.828.673-1.5 1.5-1.5h4c.827 0 1.5.672 1.5 1.5v4c0 .827-.673 1.5-1.5 1.5h-4Zm0-6a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4Zm-4 14c-.827 0-1.5-.673-1.5-1.5v-4c0-.828.673-1.5 1.5-1.5h4c.827 0 1.5.672 1.5 1.5v4c0 .827-.673 1.5-1.5 1.5h-4Zm0-6a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4Zm8 6c-.827 0-1.5-.673-1.5-1.5v-4c0-.828.673-1.5 1.5-1.5h4c.827 0 1.5.672 1.5 1.5v4c0 .827-.673 1.5-1.5 1.5h-4Zm0-6a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4Z"
|
|
677
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
678
|
+
d: "M8.5 5.308a.478.478 0 0 1-.087-.008.75.75 0 0 1-.655-.655.479.479 0 0 1 0-.175.75.75 0 0 1 .655-.654.478.478 0 0 1 .174 0 .751.751 0 0 1 .656.828.752.752 0 0 1-.743.664Zm-4 8a.75.75 0 0 1-.742-.662.49.49 0 0 1 0-.176.751.751 0 0 1 .828-.655.75.75 0 0 1 .655.655.427.427 0 0 1 .002.175.75.75 0 0 1-.656.655.472.472 0 0 1-.087.008Zm8 0a.75.75 0 0 1-.742-.837.75.75 0 0 1 .83-.655.75.75 0 0 1 .655.83.75.75 0 0 1-.744.662Z"
|
|
679
|
+
}))), _defs$7 || (_defs$7 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
680
|
+
id: "boxes_svg__a"
|
|
681
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
682
|
+
fill: "#fff",
|
|
683
|
+
transform: "translate(.5 .558)",
|
|
684
|
+
d: "M0 0h16v16H0z"
|
|
685
|
+
})))));
|
|
686
|
+
};
|
|
687
|
+
|
|
688
|
+
var _path$y, _path2$k;
|
|
689
|
+
|
|
690
|
+
function _extends$H() { _extends$H = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$H.apply(this, arguments); }
|
|
691
|
+
|
|
692
|
+
var SvgNetworkSearch = function SvgNetworkSearch(props) {
|
|
693
|
+
return /*#__PURE__*/React.createElement("svg", _extends$H({
|
|
694
|
+
viewBox: "0 0 24 24",
|
|
695
|
+
fill: "none",
|
|
696
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
697
|
+
}, props), _path$y || (_path$y = /*#__PURE__*/React.createElement("path", {
|
|
698
|
+
d: "M23.25 24a.743.743 0 0 1-.53-.22l-3.293-3.293a5.99 5.99 0 0 1-3.677 1.263c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6a5.992 5.992 0 0 1-1.263 3.677l3.293 3.293a.752.752 0 0 1 0 1.061.746.746 0 0 1-.53.219Zm-7.5-12.75a4.505 4.505 0 0 0-4.5 4.5c0 2.481 2.019 4.5 4.5 4.5s4.5-2.019 4.5-4.5-2.019-4.5-4.5-4.5Z",
|
|
699
|
+
fill: "currentColor"
|
|
700
|
+
})), _path2$k || (_path2$k = /*#__PURE__*/React.createElement("path", {
|
|
701
|
+
d: "M12 24a12.02 12.02 0 0 1-2.931-.364 12.036 12.036 0 0 1-7.643-5.968.765.765 0 0 1-.076-.148A12.006 12.006 0 0 1 0 12c0-.226.008-.462.025-.739v-.011c0-.04.003-.08.01-.119.163-2.27.965-4.435 2.32-6.262a.76.76 0 0 1 .108-.142A12.058 12.058 0 0 1 9.171.341a11.932 11.932 0 0 1 5.761.023 12.063 12.063 0 0 1 6.607 4.366c.037.039.07.082.099.13A11.888 11.888 0 0 1 24 12a.75.75 0 0 1-1.5 0c0-2.161-.653-4.231-1.891-6h-3.184c.097.471.174.942.23 1.406a.745.745 0 0 1-.155.553.743.743 0 0 1-.59.286.75.75 0 0 1-.744-.661A15.59 15.59 0 0 0 15.889 6H8.142a26.658 26.658 0 0 0-.602 4.5H9A.75.75 0 0 1 9 12H7.5c0 4.121.861 8.028 2.254 10.255A10.54 10.54 0 0 0 12 22.5a.75.75 0 0 1 0 1.5Zm-8.612-6a10.573 10.573 0 0 0 4.324 3.581C7.254 20.54 6.88 19.341 6.596 18H3.388Zm2.937-1.5A30.392 30.392 0 0 1 6 12H1.5c0 1.573.342 3.086 1.017 4.5h3.808Zm-.288-6c.074-1.588.261-3.098.559-4.5H3.391a10.474 10.474 0 0 0-1.784 4.5h4.43Zm13.3-6a10.535 10.535 0 0 0-3.082-2.095c.312.683.577 1.384.793 2.095h2.289Zm-3.868 0a15.405 15.405 0 0 0-1.242-2.759A10.509 10.509 0 0 0 12 1.5c-.749 0-1.504.083-2.246.245-.463.74-.869 1.664-1.209 2.755h6.924Zm-8.5 0c.216-.75.465-1.446.744-2.081A10.545 10.545 0 0 0 4.663 4.5h2.306Z",
|
|
702
|
+
fill: "currentColor"
|
|
703
|
+
})));
|
|
704
|
+
};
|
|
705
|
+
|
|
706
|
+
var _g$8, _defs$6;
|
|
707
|
+
|
|
708
|
+
function _extends$G() { _extends$G = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$G.apply(this, arguments); }
|
|
709
|
+
|
|
710
|
+
var SvgChecklist = function SvgChecklist(props) {
|
|
711
|
+
return /*#__PURE__*/React.createElement("svg", _extends$G({
|
|
712
|
+
fill: "none",
|
|
713
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
714
|
+
viewBox: "0 0 104 104"
|
|
715
|
+
}, props), _g$8 || (_g$8 = /*#__PURE__*/React.createElement("g", {
|
|
716
|
+
clipPath: "url(#checklist_svg__a)",
|
|
717
|
+
fill: "currentColor"
|
|
718
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
719
|
+
d: "M46.583 104.048c-4.181 0-7.583-3.402-7.583-7.584v-5.416h-9.75c-5.378 0-9.75-4.373-9.75-9.75v-3.25H9.75c-5.378 0-9.75-4.373-9.75-9.75v-58.5C0 4.42 4.372.048 9.75.048h45.5C60.628.048 65 4.42 65 9.798v3.25h9.75c5.378 0 9.75 4.372 9.75 9.75v3.25h11.917c4.181 0 7.583 3.402 7.583 7.583v62.834c0 4.181-3.402 7.583-7.583 7.583H46.583Zm0-71.5c-.598 0-1.083.485-1.083 1.083v62.834c0 .597.485 1.083 1.083 1.083h49.834c.598 0 1.083-.486 1.083-1.084V33.632c0-.598-.485-1.083-1.083-1.083H46.583Zm-17.333-13a3.251 3.251 0 0 0-3.25 3.25v58.5a3.251 3.251 0 0 0 3.25 3.25H39V33.63c0-4.181 3.402-7.583 7.583-7.583H78v-3.25a3.251 3.251 0 0 0-3.25-3.25h-45.5Zm-19.5-13a3.251 3.251 0 0 0-3.25 3.25v58.5a3.251 3.251 0 0 0 3.25 3.25h9.75v-48.75c0-5.378 4.372-9.75 9.75-9.75H58.5v-3.25a3.251 3.251 0 0 0-3.25-3.25H9.75Z"
|
|
720
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
721
|
+
d: "M74.75 52.048a3.251 3.251 0 0 1 0-6.5h13a3.251 3.251 0 0 1 0 6.5h-13Zm-16.25 0a3.218 3.218 0 0 1-2.297-.954l-3.25-3.25A3.218 3.218 0 0 1 52 45.548c0-.867.338-1.686.953-2.297a3.218 3.218 0 0 1 2.297-.953 3.22 3.22 0 0 1 2.297.953l.953.954L62.703 40A3.226 3.226 0 0 1 65 39.048a3.22 3.22 0 0 1 2.297.953 3.22 3.22 0 0 1 .953 2.297c0 .866-.338 1.685-.953 2.296l-6.5 6.5a3.218 3.218 0 0 1-2.297.954Zm16.25 19.5a3.251 3.251 0 0 1 0-6.5h13a3.251 3.251 0 0 1 0 6.5h-13Zm-16.25 0a3.218 3.218 0 0 1-2.297-.954l-3.25-3.25a3.259 3.259 0 0 1 0-4.597 3.226 3.226 0 0 1 2.297-.953 3.22 3.22 0 0 1 2.297.953l.953.953 4.203-4.203A3.226 3.226 0 0 1 65 58.544a3.22 3.22 0 0 1 2.297.953 3.259 3.259 0 0 1 0 4.597l-6.5 6.5a3.218 3.218 0 0 1-2.297.954Zm16.25 19.5a3.251 3.251 0 0 1 0-6.5h13a3.251 3.251 0 0 1 0 6.5h-13Zm-16.25 0a3.218 3.218 0 0 1-2.297-.954l-3.25-3.25a3.259 3.259 0 0 1 0-4.597 3.226 3.226 0 0 1 2.297-.954c.867 0 1.686.338 2.297.954l.953.953 4.203-4.203A3.226 3.226 0 0 1 65 78.043c.867 0 1.686.338 2.297.954a3.259 3.259 0 0 1 0 4.597l-6.5 6.5a3.218 3.218 0 0 1-2.297.954Z"
|
|
722
|
+
}))), _defs$6 || (_defs$6 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
723
|
+
id: "checklist_svg__a"
|
|
724
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
725
|
+
fill: "#fff",
|
|
726
|
+
d: "M0 0h104v104H0z"
|
|
727
|
+
})))));
|
|
728
|
+
};
|
|
729
|
+
|
|
730
|
+
var _path$x;
|
|
731
|
+
|
|
732
|
+
function _extends$F() { _extends$F = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$F.apply(this, arguments); }
|
|
733
|
+
|
|
734
|
+
var SvgCheckmark = function SvgCheckmark(props) {
|
|
735
|
+
return /*#__PURE__*/React.createElement("svg", _extends$F({
|
|
736
|
+
viewBox: "0 0 12 10",
|
|
737
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
738
|
+
}, props), _path$x || (_path$x = /*#__PURE__*/React.createElement("path", {
|
|
739
|
+
d: "m11.936 1.966-1.61-1.61a.236.236 0 0 0-.326 0L4.414 5.939 2 3.524a.236.236 0 0 0-.326 0l-1.61 1.61a.228.228 0 0 0 0 .326l4.184 4.184a.228.228 0 0 0 .327 0l7.356-7.356a.226.226 0 0 0 .005-.322Z"
|
|
740
|
+
})));
|
|
741
|
+
};
|
|
742
|
+
|
|
743
|
+
var _path$w;
|
|
744
|
+
|
|
745
|
+
function _extends$E() { _extends$E = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$E.apply(this, arguments); }
|
|
746
|
+
|
|
747
|
+
var SvgClose = function SvgClose(props) {
|
|
748
|
+
return /*#__PURE__*/React.createElement("svg", _extends$E({
|
|
749
|
+
viewBox: "0 0 24 24",
|
|
750
|
+
fill: "currentColor",
|
|
751
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
752
|
+
}, props), _path$w || (_path$w = /*#__PURE__*/React.createElement("path", {
|
|
753
|
+
d: "M23.25 23.999a.743.743 0 0 1-.53-.22L12 13.06 1.28 23.779a.744.744 0 0 1-1.06 0 .752.752 0 0 1 0-1.061l10.72-10.72L.22 1.279A.743.743 0 0 1 0 .749c0-.2.078-.389.22-.53a.743.743 0 0 1 .53-.22c.2 0 .389.078.53.22L12 10.938 22.72.218a.744.744 0 0 1 1.06 0 .747.747 0 0 1 0 1.061L13.06 12l10.72 10.72a.752.752 0 0 1 0 1.061.746.746 0 0 1-.53.219Z"
|
|
754
|
+
})));
|
|
755
|
+
};
|
|
756
|
+
|
|
757
|
+
var _path$v, _path2$j;
|
|
758
|
+
|
|
759
|
+
function _extends$D() { _extends$D = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$D.apply(this, arguments); }
|
|
760
|
+
|
|
761
|
+
var SvgCloseCircle = function SvgCloseCircle(props) {
|
|
762
|
+
return /*#__PURE__*/React.createElement("svg", _extends$D({
|
|
763
|
+
width: 16,
|
|
764
|
+
height: 16,
|
|
765
|
+
fill: "currentColor",
|
|
766
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
767
|
+
}, props), _path$v || (_path$v = /*#__PURE__*/React.createElement("path", {
|
|
768
|
+
d: "M7.998 16c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8Zm0-15c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7Z"
|
|
769
|
+
})), _path2$j || (_path2$j = /*#__PURE__*/React.createElement("path", {
|
|
770
|
+
d: "M10.998 11.5a.495.495 0 0 1-.353-.147L7.998 8.707l-2.646 2.646a.495.495 0 0 1-.707 0 .496.496 0 0 1 0-.706L7.291 8 4.644 5.353a.495.495 0 0 1 0-.706.495.495 0 0 1 .707 0l2.646 2.646 2.646-2.646a.496.496 0 0 1 .707 0 .495.495 0 0 1 0 .706L8.705 8l2.646 2.647a.496.496 0 0 1 0 .706.5.5 0 0 1-.353.147Z"
|
|
771
|
+
})));
|
|
772
|
+
};
|
|
773
|
+
|
|
774
|
+
var _g$7, _defs$5;
|
|
775
|
+
|
|
776
|
+
function _extends$C() { _extends$C = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$C.apply(this, arguments); }
|
|
777
|
+
|
|
778
|
+
var SvgCoin = function SvgCoin(props) {
|
|
779
|
+
return /*#__PURE__*/React.createElement("svg", _extends$C({
|
|
780
|
+
width: 17,
|
|
781
|
+
height: 17,
|
|
782
|
+
fill: "none",
|
|
783
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
784
|
+
}, props), _g$7 || (_g$7 = /*#__PURE__*/React.createElement("g", {
|
|
785
|
+
clipPath: "url(#coin_svg__a)",
|
|
786
|
+
fill: "currentColor"
|
|
787
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
788
|
+
d: "M8.5 16.058c-4.135 0-7.5-3.365-7.5-7.5 0-4.136 3.365-7.5 7.5-7.5s7.5 3.364 7.5 7.5c0 4.135-3.365 7.5-7.5 7.5Zm0-14a6.508 6.508 0 0 0-6.5 6.5c0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5-2.916-6.5-6.5-6.5Z"
|
|
789
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
790
|
+
d: "M8.5 13.558a.5.5 0 0 1-.5-.5v-1H6.5a.5.5 0 0 1 0-1h2.844a.67.67 0 0 0 .656-.684c0-.374-1.053-.981-1.75-1.383C7.098 8.326 6.01 7.699 6 6.764a1.594 1.594 0 0 1 .561-1.325 1.604 1.604 0 0 1 1.15-.381H8v-1a.5.5 0 0 1 1 0v1h1.5a.5.5 0 0 1 0 1H7.692a.42.42 0 0 1-.041-.002.598.598 0 0 0-.441.143.605.605 0 0 0-.212.511.395.395 0 0 1 .002.04c0 .365 1.053.972 1.75 1.374C9.907 8.792 11 9.422 11 10.365c.008.439-.158.86-.468 1.181-.31.322-.727.503-1.173.512h-.36v1a.5.5 0 0 1-.5.5Z"
|
|
791
|
+
}))), _defs$5 || (_defs$5 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
792
|
+
id: "coin_svg__a"
|
|
793
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
794
|
+
fill: "#fff",
|
|
795
|
+
transform: "translate(.5 .558)",
|
|
796
|
+
d: "M0 0h16v16H0z"
|
|
797
|
+
})))));
|
|
798
|
+
};
|
|
799
|
+
|
|
800
|
+
var _path$u, _path2$i;
|
|
801
|
+
|
|
802
|
+
function _extends$B() { _extends$B = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$B.apply(this, arguments); }
|
|
803
|
+
|
|
804
|
+
var SvgCopy = function SvgCopy(props) {
|
|
805
|
+
return /*#__PURE__*/React.createElement("svg", _extends$B({
|
|
806
|
+
width: 16,
|
|
807
|
+
height: 16,
|
|
808
|
+
fill: "none",
|
|
809
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
810
|
+
}, props), _path$u || (_path$u = /*#__PURE__*/React.createElement("path", {
|
|
811
|
+
d: "M1.5 13C.673 13 0 12.327 0 11.5v-10C0 .673.673 0 1.5 0h10c.827 0 1.5.673 1.5 1.5v10c0 .827-.673 1.5-1.5 1.5h-10Zm0-12a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5v-10a.5.5 0 0 0-.5-.5h-10Z",
|
|
812
|
+
fill: "currentColor"
|
|
813
|
+
})), _path2$i || (_path2$i = /*#__PURE__*/React.createElement("path", {
|
|
814
|
+
d: "M4.5 16c-.827 0-1.5-.673-1.5-1.5a.5.5 0 0 1 1 0 .5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5v-10a.5.5 0 0 0-.5-.5.5.5 0 0 1 0-1c.827 0 1.5.673 1.5 1.5v10c0 .827-.673 1.5-1.5 1.5h-10Z",
|
|
815
|
+
fill: "currentColor"
|
|
816
|
+
})));
|
|
817
|
+
};
|
|
818
|
+
|
|
819
|
+
var _path$t, _path2$h;
|
|
820
|
+
|
|
821
|
+
function _extends$A() { _extends$A = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$A.apply(this, arguments); }
|
|
822
|
+
|
|
823
|
+
var SvgCredit = function SvgCredit(props) {
|
|
824
|
+
return /*#__PURE__*/React.createElement("svg", _extends$A({
|
|
825
|
+
fill: "none",
|
|
826
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
827
|
+
viewBox: "0 0 104 104"
|
|
828
|
+
}, props), _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
|
|
829
|
+
d: "M29.246 97.5C12.576 97.5 0 90.515 0 81.25v-65C0 6.985 12.575 0 29.25 0S58.5 6.985 58.5 16.25v26a3.251 3.251 0 0 1-6.5 0v-2.591c-5.417 3.7-13.615 5.841-22.75 5.841S11.917 43.36 6.5 39.659v2.591c0 4.602 9.728 9.75 22.75 9.75 3.224-.03 6.292-.334 9.109-.901a3.258 3.258 0 0 1 3.83 2.544 3.255 3.255 0 0 1-2.543 3.83A52.535 52.535 0 0 1 29.328 58.5c-9.204 0-17.411-2.14-22.828-5.841v2.591c0 4.602 9.728 9.75 22.75 9.75 3.103 0 6.14-.303 9.109-.901a3.261 3.261 0 0 1 3.83 2.544 3.255 3.255 0 0 1-2.543 3.83A52.535 52.535 0 0 1 29.328 71.5c-9.204 0-17.411-2.14-22.828-5.841v2.591c0 4.602 9.728 9.75 22.75 9.75a46.714 46.714 0 0 0 9.109-.901c.22-.044.429-.065.641-.065a3.264 3.264 0 0 1 3.19 2.608 3.255 3.255 0 0 1-2.544 3.831A52.535 52.535 0 0 1 29.328 84.5c-9.204 0-17.411-2.14-22.828-5.841v2.591c0 4.602 9.728 9.75 22.75 9.75 3.207-.026 6.275-.33 9.109-.901.22-.044.429-.065.641-.065a3.264 3.264 0 0 1 3.19 2.608 3.255 3.255 0 0 1-2.544 3.831A52.535 52.535 0 0 1 29.328 97.5h-.082ZM6.5 29.25c0 4.602 9.728 9.75 22.75 9.75S52 33.852 52 29.25v-2.591c-5.417 3.7-13.615 5.841-22.75 5.841S11.917 30.36 6.5 26.659v2.591ZM29.25 6.5C16.228 6.5 6.5 11.648 6.5 16.25S16.228 26 29.25 26 52 20.852 52 16.25 42.272 6.5 29.25 6.5Z",
|
|
830
|
+
fill: "currentColor"
|
|
831
|
+
})), _path2$h || (_path2$h = /*#__PURE__*/React.createElement("path", {
|
|
832
|
+
d: "M74.75 104c-16.675 0-29.25-6.985-29.25-16.25v-26c0-9.265 12.575-16.25 29.25-16.25S104 52.485 104 61.75v26C104 97.015 91.425 104 74.75 104ZM52 87.75c0 4.602 9.728 9.75 22.75 9.75s22.75-5.148 22.75-9.75v-2.591C92.083 88.859 83.885 91 74.75 91S57.417 88.86 52 85.159v2.591Zm0-13c0 4.602 9.728 9.75 22.75 9.75s22.75-5.148 22.75-9.75v-2.591C92.083 75.859 83.885 78 74.75 78S57.417 75.86 52 72.159v2.591ZM74.75 52C61.728 52 52 57.148 52 61.75s9.728 9.75 22.75 9.75 22.75-5.148 22.75-9.75S87.772 52 74.75 52Z",
|
|
833
|
+
fill: "currentColor"
|
|
834
|
+
})));
|
|
835
|
+
};
|
|
836
|
+
|
|
837
|
+
var _path$s;
|
|
838
|
+
|
|
839
|
+
function _extends$z() { _extends$z = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$z.apply(this, arguments); }
|
|
840
|
+
|
|
841
|
+
var SvgModule = function SvgModule(props) {
|
|
842
|
+
return /*#__PURE__*/React.createElement("svg", _extends$z({
|
|
843
|
+
viewBox: "0 0 24 24",
|
|
844
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
845
|
+
}, props), _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
|
|
846
|
+
d: "M12.002 24.001a3.71 3.71 0 0 1-1.355-.257l-9.1-3.569A2.515 2.515 0 0 1 0 17.797V6.186a2.464 2.464 0 0 1 .463-1.492.763.763 0 0 1 .099-.131c.259-.318.59-.57.959-.729L10.643.257a3.663 3.663 0 0 1 2.712.001l9.098 3.567c.385.164.709.407.972.725a.77.77 0 0 1 .122.16c.309.443.465.958.453 1.493v11.611a2.493 2.493 0 0 1-1.521 2.351l-9.122 3.578c-.434.171-.89.258-1.355.258Zm.748-1.632a1.41 1.41 0 0 0 .059-.022l9.101-3.569a.996.996 0 0 0 .591-.946V6.186a1.109 1.109 0 0 0-.006-.142l-9.744 3.82V22.37h-.001ZM1.505 6.044a.852.852 0 0 0-.005.124v11.646c-.01.43.232.809.615.972l9.135 3.582V9.864l-9.745-3.82ZM12 8.547l9.194-3.605-8.388-3.289a2.18 2.18 0 0 0-1.612-.001l-8.389 3.29L12 8.547Z",
|
|
847
|
+
fill: "currentColor"
|
|
848
|
+
})));
|
|
849
|
+
};
|
|
850
|
+
|
|
851
|
+
var _path$r, _circle, _circle2, _circle3, _path2$g;
|
|
852
|
+
|
|
853
|
+
function _extends$y() { _extends$y = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$y.apply(this, arguments); }
|
|
854
|
+
|
|
855
|
+
var SvgDashboard = function SvgDashboard(props) {
|
|
856
|
+
return /*#__PURE__*/React.createElement("svg", _extends$y({
|
|
857
|
+
viewBox: "0 0 24 24",
|
|
858
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
859
|
+
}, props), _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
|
|
860
|
+
fill: "currentColor",
|
|
861
|
+
d: "M2.5 21.504a2.503 2.503 0 0 1-2.5-2.5v-14c0-1.379 1.121-2.5 2.5-2.5h19c1.378 0 2.5 1.121 2.5 2.5v14c0 1.378-1.122 2.5-2.5 2.5h-19zm-1.5-2.5c0 .827.673 1.5 1.5 1.5h19c.827 0 1.5-.673 1.5-1.5v-10.5H1v10.5zm22-11.5v-2.5c0-.827-.673-1.5-1.5-1.5h-19c-.827 0-1.5.673-1.5 1.5v2.5h22z"
|
|
862
|
+
})), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
|
|
863
|
+
cx: 4,
|
|
864
|
+
cy: 5.504,
|
|
865
|
+
r: 0.75,
|
|
866
|
+
fill: "currentColor"
|
|
867
|
+
})), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
|
|
868
|
+
cx: 7,
|
|
869
|
+
cy: 5.504,
|
|
870
|
+
r: 0.75,
|
|
871
|
+
fill: "currentColor"
|
|
872
|
+
})), _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
|
|
873
|
+
cx: 10,
|
|
874
|
+
cy: 5.504,
|
|
875
|
+
r: 0.75,
|
|
876
|
+
fill: "currentColor"
|
|
877
|
+
})), _path2$g || (_path2$g = /*#__PURE__*/React.createElement("path", {
|
|
878
|
+
fill: "currentColor",
|
|
879
|
+
d: "M4 13.504c-.551 0-1-.448-1-1v-1c0-.551.449-1 1-1h2c.551 0 1 .449 1 1v1c0 .552-.449 1-1 1H4zm0-1h2v-1H4v1zM4 18.504c-.551 0-1-.448-1-1v-1c0-.552.449-1 1-1h2c.551 0 1 .448 1 1v1c0 .552-.449 1-1 1H4zm0-1h2v-1H4v1zM9.5 12.504a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-11zM9.5 17.504a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-11z"
|
|
880
|
+
})));
|
|
881
|
+
};
|
|
882
|
+
|
|
883
|
+
var _path$q;
|
|
884
|
+
|
|
885
|
+
function _extends$x() { _extends$x = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$x.apply(this, arguments); }
|
|
886
|
+
|
|
887
|
+
var SvgExternalLink = function SvgExternalLink(props) {
|
|
888
|
+
return /*#__PURE__*/React.createElement("svg", _extends$x({
|
|
889
|
+
viewBox: "0 0 24 24"
|
|
890
|
+
}, props), _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
|
|
891
|
+
fill: "none",
|
|
892
|
+
stroke: "currentColor",
|
|
893
|
+
strokeLinecap: "round",
|
|
894
|
+
strokeLinejoin: "round",
|
|
895
|
+
strokeWidth: 1.5,
|
|
896
|
+
d: "M12.141 4.894H3.576A1.977 1.977 0 0 0 1.6 6.871v14.494c0 1.09.885 1.976 1.976 1.976h14.495a1.977 1.977 0 0 0 1.976-1.976V12.8M17.412 1.6h4.94a.99.99 0 0 1 .99.988V7.53m-10.883 4.952L23.05 1.89"
|
|
897
|
+
})));
|
|
898
|
+
};
|
|
899
|
+
|
|
900
|
+
var _g$6, _defs$4;
|
|
901
|
+
|
|
902
|
+
function _extends$w() { _extends$w = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$w.apply(this, arguments); }
|
|
903
|
+
|
|
904
|
+
var SvgImageResolution = function SvgImageResolution(props) {
|
|
905
|
+
return /*#__PURE__*/React.createElement("svg", _extends$w({
|
|
906
|
+
fill: "currentColor",
|
|
907
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
908
|
+
viewBox: "0 0 17 17"
|
|
909
|
+
}, props), _g$6 || (_g$6 = /*#__PURE__*/React.createElement("g", {
|
|
910
|
+
clipPath: "url(#image-resolution_svg__a)"
|
|
911
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
912
|
+
d: "M2.666 16.555c-.827 0-1.5-.673-1.5-1.5v-13c0-.828.673-1.5 1.5-1.5h10c.393 0 .765.151 1.047.426l1.97 1.922c.288.281.452.672.452 1.074v11.078c0 .827-.672 1.5-1.5 1.5H2.666Zm0-15a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h11.97a.5.5 0 0 0 .5-.5V3.977a.502.502 0 0 0-.151-.358l-1.97-1.922a.496.496 0 0 0-.349-.142h-10Z"
|
|
913
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
914
|
+
d: "M6.166 7.555c-1.103 0-2-.898-2-2 0-1.103.897-2 2-2s2 .897 2 2c0 1.102-.897 2-2 2Zm0-3a1.001 1.001 0 0 0 0 2 1.001 1.001 0 0 0 0-2Zm7.027 8.633a.5.5 0 0 1-.417-.223L10.159 9.04a.176.176 0 0 0-.242-.05.175.175 0 0 0-.046.046L8.077 11.6a.5.5 0 0 1-.723.103l-1.112-.892a.171.171 0 0 0-.127-.036.17.17 0 0 0-.117.064l-1.417 2.126a.5.5 0 0 1-.832-.554l1.407-2.114a1.164 1.164 0 0 1 .98-.524c.268 0 .52.09.731.258l.696.558 1.488-2.126a1.172 1.172 0 0 1 1.94.023l2.617 3.925a.498.498 0 0 1-.415.777Z"
|
|
915
|
+
}))), _defs$4 || (_defs$4 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
916
|
+
id: "image-resolution_svg__a"
|
|
917
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
918
|
+
fill: "#fff",
|
|
919
|
+
transform: "translate(.5 .555)",
|
|
920
|
+
d: "M0 0h16v16H0z"
|
|
921
|
+
})))));
|
|
922
|
+
};
|
|
923
|
+
|
|
924
|
+
var _path$p;
|
|
925
|
+
|
|
926
|
+
function _extends$v() { _extends$v = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$v.apply(this, arguments); }
|
|
927
|
+
|
|
928
|
+
var SvgInformation = function SvgInformation(props) {
|
|
929
|
+
return /*#__PURE__*/React.createElement("svg", _extends$v({
|
|
930
|
+
width: 8,
|
|
931
|
+
height: 8,
|
|
932
|
+
fill: "none",
|
|
933
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
934
|
+
}, props), _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
|
|
935
|
+
d: "M4.667 8c-.883 0-1.6-.718-1.6-1.6V3.733h-.534a.534.534 0 0 1 0-1.066h.534c.588 0 1.066.478 1.066 1.066V6.4c0 .294.24.533.534.533H5.2A.534.534 0 0 1 5.2 8h-.533ZM3.333 1.6a.8.8 0 1 0 0-1.6.8.8 0 0 0 0 1.6Z",
|
|
936
|
+
fill: "currentColor"
|
|
937
|
+
})));
|
|
938
|
+
};
|
|
939
|
+
|
|
940
|
+
var _path$o, _path2$f;
|
|
941
|
+
|
|
942
|
+
function _extends$u() { _extends$u = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$u.apply(this, arguments); }
|
|
943
|
+
|
|
944
|
+
var SvgInvoice = function SvgInvoice(props) {
|
|
945
|
+
return /*#__PURE__*/React.createElement("svg", _extends$u({
|
|
946
|
+
width: 104,
|
|
947
|
+
height: 104,
|
|
948
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
949
|
+
}, props), _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
|
|
950
|
+
d: "M16.25 104c-5.378 0-9.75-4.372-9.75-9.75V9.75C6.5 4.372 10.872 0 16.25 0h46.059a9.69 9.69 0 0 1 6.89 2.851l25.445 25.446a9.683 9.683 0 0 1 2.856 6.89V94.25c0 5.378-4.372 9.75-9.75 9.75h-71.5Zm0-97.5A3.251 3.251 0 0 0 13 9.75v84.5a3.251 3.251 0 0 0 3.25 3.25h71.5A3.251 3.251 0 0 0 91 94.25V39H68.25c-5.378 0-9.75-4.372-9.75-9.75V6.5H16.25ZM65 29.25a3.251 3.251 0 0 0 3.25 3.25h21.402L65 7.848V29.25Z",
|
|
951
|
+
fill: "currentColor"
|
|
952
|
+
})), _path2$f || (_path2$f = /*#__PURE__*/React.createElement("path", {
|
|
953
|
+
d: "M34.935 61.75a3.251 3.251 0 0 1-3.25-3.25v-1.53a12.925 12.925 0 0 1-7.405-4.762 3.227 3.227 0 0 1-.633-2.405 3.222 3.222 0 0 1 1.252-2.15 3.225 3.225 0 0 1 1.968-.662c1.022 0 1.967.468 2.587 1.282a6.429 6.429 0 0 0 5.091 2.518l.247-.004c3.354 0 5.816-1.825 5.816-3.454 0-1.63-2.427-3.45-5.673-3.45-6.72 0-12.185-4.467-12.185-9.957 0-4.559 3.679-8.42 8.935-9.59V22.75a3.251 3.251 0 0 1 6.5 0v1.543a12.895 12.895 0 0 1 7.389 4.749c.524.689.75 1.543.632 2.405a3.23 3.23 0 0 1-1.252 2.15 3.212 3.212 0 0 1-1.963.662c-1.01 0-1.98-.48-2.587-1.282a6.4 6.4 0 0 0-5.07-2.518c-.087 0-.173 0-.26.004-3.363.005-5.824 1.829-5.824 3.458 0 1.634 2.431 3.458 5.685 3.458 6.713 0 12.173 4.464 12.173 9.95 0 4.55-3.675 8.41-8.923 9.585V58.5a3.251 3.251 0 0 1-3.25 3.25ZM52 68.25a3.251 3.251 0 0 1 0-6.5h26a3.251 3.251 0 0 1 0 6.5H52ZM29.25 87.75a3.251 3.251 0 0 1 0-6.5H78a3.251 3.251 0 0 1 0 6.5H29.25Z",
|
|
954
|
+
fill: "currentColor"
|
|
955
|
+
})));
|
|
956
|
+
};
|
|
957
|
+
|
|
958
|
+
var _path$n;
|
|
959
|
+
|
|
960
|
+
function _extends$t() { _extends$t = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
|
|
961
|
+
|
|
962
|
+
var SvgLayers = function SvgLayers(props) {
|
|
963
|
+
return /*#__PURE__*/React.createElement("svg", _extends$t({
|
|
964
|
+
width: 24,
|
|
965
|
+
height: 24,
|
|
966
|
+
fill: "none",
|
|
967
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
968
|
+
}, props), _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
|
|
969
|
+
d: "M12 23.997c-.364 0-.727-.088-1.051-.255L.739 18.46a1.367 1.367 0 0 1 0-2.426l2.73-1.41L.74 13.213a1.36 1.36 0 0 1-.585-.585 1.359 1.359 0 0 1-.09-1.042 1.36 1.36 0 0 1 .675-.8l2.732-1.413L.74 7.96a1.362 1.362 0 0 1-.675-1.626 1.36 1.36 0 0 1 .674-.8L10.948.256a2.3 2.3 0 0 1 2.105-.001l10.209 5.278a.732.732 0 0 1 .109.068 1.368 1.368 0 0 1-.107 2.363l-2.728 1.41 2.728 1.411a1.365 1.365 0 0 1 0 2.426l-2.73 1.413 2.73 1.414a1.363 1.363 0 0 1 0 2.425l-10.21 5.276c-.325.17-.688.258-1.053.258Zm-.362-1.588a.801.801 0 0 0 .727 0l9.979-5.156L18.9 15.47l-5.847 3.024a2.302 2.302 0 0 1-2.105.001L5.1 15.469l-3.442 1.778 9.979 5.162Zm0-5.247a.788.788 0 0 0 .726 0L22.343 12 18.9 10.22l-5.848 3.022a2.307 2.307 0 0 1-2.104 0l-5.845-3.024L1.659 12l9.979 5.162Zm0-5.253a.801.801 0 0 0 .727 0l9.984-5.159-9.984-5.162a.807.807 0 0 0-.728 0L1.659 6.747l9.979 5.162Z",
|
|
970
|
+
fill: "currentColor"
|
|
971
|
+
})));
|
|
972
|
+
};
|
|
973
|
+
|
|
974
|
+
var _path$m, _path2$e;
|
|
975
|
+
|
|
976
|
+
function _extends$s() { _extends$s = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$s.apply(this, arguments); }
|
|
977
|
+
|
|
978
|
+
var SvgLock = function SvgLock(props) {
|
|
979
|
+
return /*#__PURE__*/React.createElement("svg", _extends$s({
|
|
980
|
+
width: 16,
|
|
981
|
+
height: 16,
|
|
982
|
+
viewBox: "0 0 24 24",
|
|
983
|
+
fill: "none",
|
|
984
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
985
|
+
}, props), _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
|
|
986
|
+
d: "M5.25 24A2.252 2.252 0 0 1 3 21.75v-10.5A2.252 2.252 0 0 1 5.25 9H6V6c0-3.308 2.692-6 6-6s6 2.692 6 6v3h.75A2.252 2.252 0 0 1 21 11.25v10.5A2.252 2.252 0 0 1 18.75 24H5.25zm0-13.5a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h13.5a.75.75 0 0 0 .75-.75v-10.5a.75.75 0 0 0-.75-.75H5.25zM16.5 9V6c0-2.481-2.019-4.5-4.5-4.5A4.505 4.505 0 0 0 7.5 6v3h9z",
|
|
987
|
+
fill: "currentColor"
|
|
988
|
+
})), _path2$e || (_path2$e = /*#__PURE__*/React.createElement("path", {
|
|
989
|
+
d: "M12 18.75a.75.75 0 0 1-.75-.75v-3a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-.75.75z",
|
|
990
|
+
fill: "currentColor"
|
|
991
|
+
})));
|
|
992
|
+
};
|
|
993
|
+
|
|
994
|
+
var _path$l;
|
|
995
|
+
|
|
996
|
+
function _extends$r() { _extends$r = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$r.apply(this, arguments); }
|
|
997
|
+
|
|
998
|
+
var SvgLogo = function SvgLogo(props) {
|
|
999
|
+
return /*#__PURE__*/React.createElement("svg", _extends$r({
|
|
1000
|
+
viewBox: "0 0 88 40",
|
|
1001
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1002
|
+
}, props), _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
|
|
1003
|
+
d: "M47.464 24.786h-4.9a1.168 1.168 0 0 1-1.196-1.196V13.333c0-.683.512-1.196 1.196-1.196h4.9c3.476 0 5.926 2.849 5.926 6.325 0 3.475-2.45 6.324-5.926 6.324Zm.513-20.74h-12.82c-1.254 0-2.336 1.082-2.336 2.336v31.453c0 1.14.854 2.165 1.994 2.165 1.14 0 2.165-.74 2.963-1.595l3.818-4.274c.854-.969 1.994-1.254 3.304-1.254h3.077c8.035 0 14.36-6.381 14.36-14.416 0-8.034-6.326-14.415-14.36-14.415Zm25.755 10.598a.9.9 0 0 1-.911-.912v-1.424h-6.154c-.969 0-1.254-.855-.627-1.71L72.878.855c.57-.798 1.709-.684 1.709.456v9.173h1.538a.9.9 0 0 1 .912.912.9.9 0 0 1-.912.912h-1.538v1.424c0 .513-.399.912-.855.912Zm-5.584-4.16h4.673v-6.61l-4.673 6.61Zm18.063 4.16h-6.952c-.911 0-1.253-.912-.626-1.767l5.242-6.894c.399-.513.911-1.31.911-1.994 0-1.31-.911-2.166-2.279-2.166-1.481 0-2.165 1.026-2.279 1.71-.114.456-.57.797-1.083.684-.456-.057-.797-.57-.683-1.026C78.747 1.595 80.285 0 82.507 0s4.046 1.766 4.046 3.989c0 1.196-.57 2.108-1.254 3.02l-4.444 5.811h5.356a.9.9 0 0 1 .912.912.9.9 0 0 1-.912.912ZM14.359 34.587c8.32 0 14.359-6.097 14.359-14.416V6.381a2.31 2.31 0 0 0-2.336-2.335h-4.616a2.31 2.31 0 0 0-2.336 2.336v13.162c0 3.419-1.652 5.926-5.071 5.926-3.419 0-5.071-2.507-5.071-5.926V6.382a2.31 2.31 0 0 0-2.336-2.336H2.336A2.31 2.31 0 0 0 0 6.382V20.17c0 8.32 6.04 14.416 14.359 14.416Z",
|
|
1004
|
+
fill: "currentColor"
|
|
1005
|
+
})));
|
|
1006
|
+
};
|
|
1007
|
+
|
|
1008
|
+
var _path$k;
|
|
1009
|
+
|
|
1010
|
+
function _extends$q() { _extends$q = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$q.apply(this, arguments); }
|
|
1011
|
+
|
|
1012
|
+
var SvgShop = function SvgShop(props) {
|
|
1013
|
+
return /*#__PURE__*/React.createElement("svg", _extends$q({
|
|
1014
|
+
viewBox: "0 0 16 16",
|
|
1015
|
+
fill: "currentColor",
|
|
1016
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1017
|
+
}, props), _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
|
|
1018
|
+
d: "M2.5 16c-.827 0-1.5-.673-1.5-1.5v-6a.5.5 0 0 1 1 0V11h7.5V8.5a.5.5 0 0 1 1 0V15h3a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 1 1 0v6c0 .827-.673 1.5-1.5 1.5h-11ZM2 14.5a.5.5 0 0 0 .5.5h7v-3H2v2.5ZM14 7a2.013 2.013 0 0 1-1.5-.679A2.013 2.013 0 0 1 11 7a2.013 2.013 0 0 1-1.5-.679A2.013 2.013 0 0 1 8 7a2.013 2.013 0 0 1-1.5-.679A2.013 2.013 0 0 1 5 7a2.013 2.013 0 0 1-1.5-.679A2.013 2.013 0 0 1 2 7C.897 7 0 6.103 0 5c0-.036.004-.072.012-.108L.925.782A.996.996 0 0 1 1.9 0h12.197c.465 0 .876.33.977.783l.913 4.108A.485.485 0 0 1 16 5c0 1.103-.897 2-2 2Zm-1.5-2.5a.5.5 0 0 1 .5.5c0 .551.449 1 1 1 .53 0 .973-.424.999-.95l-.9-4.05H1.9l-.9 4.05c.026.526.468.95.999.95.551 0 1-.449 1-1a.5.5 0 0 1 1 0 1.001 1.001 0 0 0 2 0 .5.5 0 0 1 1 0 1.001 1.001 0 0 0 2 0 .5.5 0 0 1 1 0 1.001 1.001 0 0 0 2 0 .5.5 0 0 1 .5-.5Z"
|
|
1019
|
+
})));
|
|
1020
|
+
};
|
|
1021
|
+
|
|
1022
|
+
var _path$j, _path2$d;
|
|
1023
|
+
|
|
1024
|
+
function _extends$p() { _extends$p = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$p.apply(this, arguments); }
|
|
1025
|
+
|
|
1026
|
+
var SvgMegaphone = function SvgMegaphone(props) {
|
|
1027
|
+
return /*#__PURE__*/React.createElement("svg", _extends$p({
|
|
1028
|
+
width: 16,
|
|
1029
|
+
height: 16,
|
|
1030
|
+
fill: "none",
|
|
1031
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1032
|
+
}, props), _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
|
|
1033
|
+
d: "M5 4.6v5.77a4.795 4.795 0 0 0 2.667 4.297",
|
|
1034
|
+
stroke: "currentColor",
|
|
1035
|
+
strokeLinecap: "round",
|
|
1036
|
+
strokeLinejoin: "round"
|
|
1037
|
+
})), _path2$d || (_path2$d = /*#__PURE__*/React.createElement("path", {
|
|
1038
|
+
d: "M14.333 2.99a.667.667 0 0 0-.947-.605C10.829 3.57 8.304 4.643 3 4.667h-.667a2 2 0 0 0-2 2V8a2 2 0 0 0 2 2H3c5.304.024 7.83 1.096 10.386 2.282a.668.668 0 0 0 .947-.605V2.99ZM14.333 6h.334a1 1 0 0 1 1 1v.667a1 1 0 0 1-1 1h-.334",
|
|
1039
|
+
stroke: "currentColor",
|
|
1040
|
+
strokeLinecap: "round",
|
|
1041
|
+
strokeLinejoin: "round"
|
|
1042
|
+
})));
|
|
1043
|
+
};
|
|
1044
|
+
|
|
1045
|
+
var _path$i, _path2$c;
|
|
1046
|
+
|
|
1047
|
+
function _extends$o() { _extends$o = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$o.apply(this, arguments); }
|
|
1048
|
+
|
|
1049
|
+
var SvgMultipleUsers = function SvgMultipleUsers(props) {
|
|
1050
|
+
return /*#__PURE__*/React.createElement("svg", _extends$o({
|
|
1051
|
+
width: 32,
|
|
1052
|
+
height: 32,
|
|
1053
|
+
fill: "none",
|
|
1054
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1055
|
+
}, props), _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
|
|
1056
|
+
d: "M6 12c-2.205 0-4-1.795-4-4s1.795-4 4-4 4 1.795 4 4-1.795 4-4 4Zm0-6c-1.103 0-2 .897-2 2s.897 2 2 2 2-.897 2-2-.897-2-2-2ZM4 30c-.503 0-.93-.376-.992-.876L2.118 22H1a1 1 0 0 1-1-1v-3c0-3.308 2.692-6 6-6a1 1 0 0 1 0 2c-2.205 0-4 1.795-4 4v2h1c.503 0 .93.376.992.876L4.882 28H8a1 1 0 0 1 0 2H4ZM26 12c-2.205 0-4-1.795-4-4s1.795-4 4-4 4 1.795 4 4-1.795 4-4 4Zm0-6c-1.103 0-2 .897-2 2s.897 2 2 2 2-.897 2-2-.897-2-2-2ZM24 30a1 1 0 0 1 0-2h3.117l.891-7.124c.063-.5.49-.876.992-.876h1v-2c0-2.205-1.795-4-4-4a1 1 0 0 1 0-2c3.308 0 6 2.692 6 6v3a1 1 0 0 1-1 1h-1.117l-.891 7.124c-.063.5-.49.876-.992.876h-4ZM16 10c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5Zm0-8c-1.655 0-3 1.345-3 3s1.345 3 3 3 3-1.345 3-3-1.345-3-3-3Z",
|
|
1057
|
+
fill: "currentColor"
|
|
1058
|
+
})), _path2$c || (_path2$c = /*#__PURE__*/React.createElement("path", {
|
|
1059
|
+
d: "M13 32a.996.996 0 0 1-.995-.9l-.91-9.1H9a1 1 0 0 1-1-1v-3c0-4.41 3.59-8 8-8s8 3.59 8 8v3a1 1 0 0 1-1 1h-2.095l-.91 9.1A.997.997 0 0 1 19 32h-6Zm5.095-2 .91-9.1c.051-.512.479-.9.995-.9h2v-2c0-3.308-2.692-6-6-6s-6 2.692-6 6v2h2c.516 0 .944.387.995.9l.909 9.1h4.19Z",
|
|
1060
|
+
fill: "currentColor"
|
|
1061
|
+
})));
|
|
1062
|
+
};
|
|
1063
|
+
|
|
1064
|
+
var _path$h, _path2$b;
|
|
1065
|
+
|
|
1066
|
+
function _extends$n() { _extends$n = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$n.apply(this, arguments); }
|
|
1067
|
+
|
|
1068
|
+
var SvgNotificationError = function SvgNotificationError(props) {
|
|
1069
|
+
return /*#__PURE__*/React.createElement("svg", _extends$n({
|
|
1070
|
+
viewBox: "0 0 24 24",
|
|
1071
|
+
fill: "none",
|
|
1072
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1073
|
+
}, props), _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
|
|
1074
|
+
d: "M12 17.998a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25ZM12 14.248a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5a.75.75 0 0 1-.75.75Z",
|
|
1075
|
+
fill: "currentColor"
|
|
1076
|
+
})), _path2$b || (_path2$b = /*#__PURE__*/React.createElement("path", {
|
|
1077
|
+
d: "M12 23.997a2.546 2.546 0 0 1-1.81-.748L.75 13.81a2.564 2.564 0 0 1 0-3.621L10.19.75a2.542 2.542 0 0 1 1.807-.751c.685 0 1.327.265 1.81.747l9.444 9.443a2.566 2.566 0 0 1 0 3.621l-9.44 9.439a2.55 2.55 0 0 1-1.811.748Zm-.75-1.809c.2.199.466.309.75.309s.55-.11.75-.31l9.44-9.439a1.064 1.064 0 0 0 0-1.501L12.749 1.81c-.01-.009-.024-.025-.033-.035a1.034 1.034 0 0 0-.713-.276c-.288 0-.553.111-.753.311l-9.441 9.44a1.063 1.063 0 0 0 0 1.5l9.441 9.438Z",
|
|
1078
|
+
fill: "currentColor"
|
|
1079
|
+
})));
|
|
1080
|
+
};
|
|
1081
|
+
|
|
1082
|
+
var _path$g, _path2$a;
|
|
1083
|
+
|
|
1084
|
+
function _extends$m() { _extends$m = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$m.apply(this, arguments); }
|
|
1085
|
+
|
|
1086
|
+
var SvgNotificationInfo = function SvgNotificationInfo(props) {
|
|
1087
|
+
return /*#__PURE__*/React.createElement("svg", _extends$m({
|
|
1088
|
+
width: 24,
|
|
1089
|
+
height: 24,
|
|
1090
|
+
fill: "none",
|
|
1091
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1092
|
+
}, props), _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
|
|
1093
|
+
d: "M13.5 17.25A2.252 2.252 0 0 1 11.25 15v-3.75h-.75a.75.75 0 0 1 0-1.5h.75c.827 0 1.5.673 1.5 1.5V15c0 .414.336.75.75.75h.75a.75.75 0 0 1 0 1.5h-.75ZM11.625 8.25a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z",
|
|
1094
|
+
fill: "currentColor"
|
|
1095
|
+
})), _path2$a || (_path2$a = /*#__PURE__*/React.createElement("path", {
|
|
1096
|
+
d: "M12 24C5.383 24 0 18.617 0 12S5.383 0 12 0s12 5.383 12 12-5.383 12-12 12Zm0-22.5C6.21 1.5 1.5 6.21 1.5 12S6.21 22.5 12 22.5 22.5 17.79 22.5 12 17.79 1.5 12 1.5Z",
|
|
1097
|
+
fill: "currentColor"
|
|
1098
|
+
})));
|
|
1099
|
+
};
|
|
1100
|
+
|
|
1101
|
+
var _path$f, _path2$9;
|
|
1102
|
+
|
|
1103
|
+
function _extends$l() { _extends$l = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$l.apply(this, arguments); }
|
|
1104
|
+
|
|
1105
|
+
var SvgNotificationSuccess = function SvgNotificationSuccess(props) {
|
|
1106
|
+
return /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
1107
|
+
width: 24,
|
|
1108
|
+
height: 24,
|
|
1109
|
+
fill: "none",
|
|
1110
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1111
|
+
}, props), _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
|
|
1112
|
+
d: "M9.325 17.916a1.79 1.79 0 0 1-1.498-.799l-2.44-3.462a.75.75 0 0 1 1.227-.864l2.45 3.477a.306.306 0 0 0 .261.148.294.294 0 0 0 .236-.119l7.852-9.935a.75.75 0 0 1 1.175.93l-7.843 9.923a1.781 1.781 0 0 1-.423.396 1.78 1.78 0 0 1-.997.305Z",
|
|
1113
|
+
fill: "currentColor"
|
|
1114
|
+
})), _path2$9 || (_path2$9 = /*#__PURE__*/React.createElement("path", {
|
|
1115
|
+
d: "M12 23.999c-6.617 0-12-5.383-12-12s5.383-12 12-12 12 5.383 12 12-5.383 12-12 12Zm0-22.5c-5.79 0-10.5 4.71-10.5 10.5s4.71 10.5 10.5 10.5 10.5-4.71 10.5-10.5-4.71-10.5-10.5-10.5Z",
|
|
1116
|
+
fill: "currentColor"
|
|
1117
|
+
})));
|
|
1118
|
+
};
|
|
1119
|
+
|
|
1120
|
+
var _path$e;
|
|
1121
|
+
|
|
1122
|
+
function _extends$k() { _extends$k = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$k.apply(this, arguments); }
|
|
1123
|
+
|
|
1124
|
+
var SvgFolderEmpty1 = function SvgFolderEmpty1(props) {
|
|
1125
|
+
return /*#__PURE__*/React.createElement("svg", _extends$k({
|
|
1126
|
+
viewBox: "0 0 24 24",
|
|
1127
|
+
fill: "none",
|
|
1128
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1129
|
+
}, props), _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
|
|
1130
|
+
d: "M2.25 22.5A2.252 2.252 0 0 1 0 20.25V3.75A2.252 2.252 0 0 1 2.25 1.5H7.5a2.26 2.26 0 0 1 1.8.9l1.575 2.1H21.75A2.252 2.252 0 0 1 24 6.75v13.5a2.252 2.252 0 0 1-2.25 2.25H2.25Zm0-19.5a.75.75 0 0 0-.75.75v16.5c0 .414.336.75.75.75h19.5a.75.75 0 0 0 .75-.75V6.75a.75.75 0 0 0-.75-.75H10.5a.753.753 0 0 1-.6-.3L8.1 3.3a.753.753 0 0 0-.6-.3H2.25Z",
|
|
1131
|
+
fill: "currentColor"
|
|
1132
|
+
})));
|
|
1133
|
+
};
|
|
1134
|
+
|
|
1135
|
+
var _path$d, _path2$8;
|
|
1136
|
+
|
|
1137
|
+
function _extends$j() { _extends$j = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$j.apply(this, arguments); }
|
|
1138
|
+
|
|
1139
|
+
var SvgQuestionCircle = function SvgQuestionCircle(props) {
|
|
1140
|
+
return /*#__PURE__*/React.createElement("svg", _extends$j({
|
|
1141
|
+
width: 16,
|
|
1142
|
+
height: 16,
|
|
1143
|
+
viewBox: "0 0 24 24",
|
|
1144
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1145
|
+
}, props), _path$d || (_path$d = /*#__PURE__*/React.createElement("path", {
|
|
1146
|
+
d: "M12 15a.75.75 0 0 1-.75-.75v-1.006a2.251 2.251 0 0 1 1.5-2.122 2.254 2.254 0 0 0 1.5-2.121c0-.601-.234-1.166-.659-1.591A2.232 2.232 0 0 0 12 6.751c-.601 0-1.166.234-1.591.659A2.231 2.231 0 0 0 9.75 9a.75.75 0 0 1-1.5 0c0-1.002.391-1.943 1.099-2.651A3.725 3.725 0 0 1 12 5.251a3.755 3.755 0 0 1 3.75 3.75 3.756 3.756 0 0 1-2.5 3.535.752.752 0 0 0-.5.707v1.007A.75.75 0 0 1 12 15ZM12 18.75a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z",
|
|
1147
|
+
fill: "currentColor"
|
|
1148
|
+
})), _path2$8 || (_path2$8 = /*#__PURE__*/React.createElement("path", {
|
|
1149
|
+
d: "M12 24C5.383 24 0 18.617 0 12S5.383 0 12 0s12 5.383 12 12-5.383 12-12 12Zm0-22.5C6.21 1.5 1.5 6.21 1.5 12S6.21 22.5 12 22.5 22.5 17.79 22.5 12 17.79 1.5 12 1.5Z",
|
|
1150
|
+
fill: "currentColor"
|
|
1151
|
+
})));
|
|
1152
|
+
};
|
|
1153
|
+
|
|
1154
|
+
var _path$c, _path2$7;
|
|
1155
|
+
|
|
1156
|
+
function _extends$i() { _extends$i = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$i.apply(this, arguments); }
|
|
1157
|
+
|
|
1158
|
+
var SvgSatellite = function SvgSatellite(props) {
|
|
1159
|
+
return /*#__PURE__*/React.createElement("svg", _extends$i({
|
|
1160
|
+
fill: "none",
|
|
1161
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1162
|
+
viewBox: "0 0 32 32"
|
|
1163
|
+
}, props), _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
|
|
1164
|
+
d: "M13.43 26.628c-.262 0-.52-.107-.706-.293l-7.067-7.067a1.008 1.008 0 0 1-.293-.724c.005-.27.121-.53.318-.715a5.979 5.979 0 0 1 4.088-1.608c1.662 0 3.263.695 4.393 1.908 2.137 2.294 2.137 5.887 0 8.18a1.008 1.008 0 0 1-.714.319h-.018Zm-.122-2.537a4.003 4.003 0 0 0-.608-4.598 4.014 4.014 0 0 0-4.799-.809l5.407 5.407Zm-5.903 2.914a.978.978 0 0 1-.264-.036 3.007 3.007 0 0 1-2.119-2.145.997.997 0 0 1 .97-1.25 1 1 0 0 1 .966.751c.09.347.36.622.707.716.257.07.473.236.605.468a.998.998 0 0 1-.865 1.496Z",
|
|
1165
|
+
fill: "currentColor"
|
|
1166
|
+
})), _path2$7 || (_path2$7 = /*#__PURE__*/React.createElement("path", {
|
|
1167
|
+
d: "M8.064 32.01a8.06 8.06 0 0 1-2.707-.471 8.011 8.011 0 0 1-4.583-4.136 8.028 8.028 0 0 1 .011-6.952 1.006 1.006 0 0 1 1.335-.47c.497.239.706.836.47 1.334a6.04 6.04 0 0 0-.009 5.228 6.027 6.027 0 0 0 3.447 3.112 6.018 6.018 0 0 0 4.637-.237 1 1 0 0 1 1.332.473c.115.241.13.513.039.764a.992.992 0 0 1-.513.568 7.976 7.976 0 0 1-3.46.786Zm19.513-1.965a2.98 2.98 0 0 1-2.121-.877l-4.243-4.243a3.004 3.004 0 0 1 0-4.242l-1.415-1.415-.707.708a2.98 2.98 0 0 1-2.122.877 2.98 2.98 0 0 1-2.121-.877l-2.827-2.83a2.98 2.98 0 0 1-.877-2.12c0-.803.312-1.557.877-2.122l.708-.708-1.414-1.413a2.977 2.977 0 0 1-2.122.877c-.801 0-1.556-.31-2.121-.877L2.829 6.54a3.004 3.004 0 0 1 0-4.243L4.244.883A2.98 2.98 0 0 1 6.365.005c.803 0 1.555.312 2.121.879l4.243 4.243a3.004 3.004 0 0 1 0 4.242l1.415 1.415 5.601-5.601a5.136 5.136 0 0 1 6.443-.785l1.486-1.487c.19-.19.44-.294.707-.294a.99.99 0 0 1 .707.294c.19.189.293.44.293.706a.99.99 0 0 1-.293.707l-1.486 1.485a4.993 4.993 0 0 1-.637 6.294l-5.75 5.752 1.414 1.414a2.985 2.985 0 0 1 2.121-.877c.802 0 1.556.312 2.122.877l4.242 4.243a3.004 3.004 0 0 1 0 4.243L29.7 29.169a2.984 2.984 0 0 1-2.123.876Zm-2.828-9.654a.992.992 0 0 0-.706.292l-1.415 1.414c-.39.39-.39 1.024 0 1.415l4.242 4.243c.19.189.44.292.707.292a.994.994 0 0 0 .707-.292l1.415-1.415a1.004 1.004 0 0 0 0-1.415l-4.243-4.242a.992.992 0 0 0-.707-.292ZM23.453 5.605c-.856 0-1.686.356-2.28.975l-7.738 7.739a1 1 0 0 0 0 1.414l2.829 2.83c.188.188.44.292.707.292a.992.992 0 0 0 .706-.292l7.873-7.875a3.003 3.003 0 0 0 .023-4.223c-.008-.006-.033-.033-.04-.04a2.995 2.995 0 0 0-.368-.308 3.089 3.089 0 0 0-1.712-.512Zm-17.088-3.6a.99.99 0 0 0-.707.294L4.244 3.712a.993.993 0 0 0-.294.707.99.99 0 0 0 .294.706l4.242 4.243c.188.188.44.292.707.292a.994.994 0 0 0 .707-.292l1.415-1.415a.993.993 0 0 0 .293-.706.99.99 0 0 0-.293-.707L7.072 2.297a.997.997 0 0 0-.707-.292Z",
|
|
1168
|
+
fill: "currentColor"
|
|
1169
|
+
})));
|
|
1170
|
+
};
|
|
1171
|
+
|
|
1172
|
+
var _path$b;
|
|
1173
|
+
|
|
1174
|
+
function _extends$h() { _extends$h = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$h.apply(this, arguments); }
|
|
1175
|
+
|
|
1176
|
+
var SvgSearch = function SvgSearch(props) {
|
|
1177
|
+
return /*#__PURE__*/React.createElement("svg", _extends$h({
|
|
1178
|
+
width: 16,
|
|
1179
|
+
height: 16,
|
|
1180
|
+
fill: "none",
|
|
1181
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1182
|
+
}, props), _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
|
|
1183
|
+
d: "M15.497 15.997a.495.495 0 0 1-.354-.146L10.8 11.507a6.547 6.547 0 0 1-1.702 1.052 6.51 6.51 0 0 1-5.007.046A6.497 6.497 0 0 1 .52 9.097a6.499 6.499 0 0 1-.046-5.006A6.5 6.5 0 0 1 3.98.518 6.496 6.496 0 0 1 8.987.472c1.62.654 2.889 1.9 3.572 3.508.684 1.609.7 3.387.046 5.007a6.54 6.54 0 0 1-1.099 1.812l4.345 4.345a.501.501 0 0 1-.354.853ZM6.538.993c-.743 0-1.473.15-2.167.445A5.507 5.507 0 0 0 1.4 4.465a5.507 5.507 0 0 0 .039 4.241 5.507 5.507 0 0 0 3.027 2.972 5.52 5.52 0 0 0 4.241-.04 5.523 5.523 0 0 0 2.971-3.026 5.504 5.504 0 0 0-.039-4.241 5.505 5.505 0 0 0-3.027-2.972A5.52 5.52 0 0 0 6.538.993Z",
|
|
1184
|
+
fill: "currentColor"
|
|
1185
|
+
})));
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
var _path$a, _path2$6, _path3$2, _path4$1;
|
|
1189
|
+
|
|
1190
|
+
function _extends$g() { _extends$g = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
|
|
1191
|
+
|
|
1192
|
+
var SvgServerLock = function SvgServerLock(props) {
|
|
1193
|
+
return /*#__PURE__*/React.createElement("svg", _extends$g({
|
|
1194
|
+
width: 24,
|
|
1195
|
+
height: 24,
|
|
1196
|
+
fill: "currentColor",
|
|
1197
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1198
|
+
}, props), _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
|
|
1199
|
+
d: "M5.25 6.375a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25ZM5.25 15.375a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z"
|
|
1200
|
+
})), _path2$6 || (_path2$6 = /*#__PURE__*/React.createElement("path", {
|
|
1201
|
+
d: "M5.25 19.5A5.256 5.256 0 0 1 0 14.25c0-1.865.979-3.56 2.548-4.5A5.236 5.236 0 0 1 0 5.25 5.256 5.256 0 0 1 5.25 0h12a5.24 5.24 0 0 1 4.646 2.803c.967 1.833.778 3.973-.52 5.87a.75.75 0 1 1-1.238-.847c.973-1.423 1.13-2.999.431-4.323A3.746 3.746 0 0 0 17.25 1.5h-12A3.754 3.754 0 0 0 1.5 5.25 3.754 3.754 0 0 0 5.25 9h9.749a.75.75 0 0 1 0 1.5H5.25a3.754 3.754 0 0 0-3.75 3.75A3.754 3.754 0 0 0 5.25 18h6a.75.75 0 0 1 0 1.5h-6Z"
|
|
1202
|
+
})), _path3$2 || (_path3$2 = /*#__PURE__*/React.createElement("path", {
|
|
1203
|
+
d: "M10.5 6a.75.75 0 0 1 0-1.5h6.75a.75.75 0 0 1 0 1.5H10.5ZM10.5 15a.75.75 0 0 1 0-1.5H12a.75.75 0 0 1 0 1.5h-1.5ZM15.75 24a2.252 2.252 0 0 1-2.25-2.25v-4.5c0-.96.615-1.808 1.5-2.121v-.879a3.754 3.754 0 0 1 3.75-3.75 3.754 3.754 0 0 1 3.75 3.75v.879A2.26 2.26 0 0 1 24 17.25v4.5A2.252 2.252 0 0 1 21.75 24h-6Zm0-7.5a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h6a.75.75 0 0 0 .75-.75v-4.5a.75.75 0 0 0-.75-.75h-6ZM21 15v-.75A2.252 2.252 0 0 0 18.75 12a2.252 2.252 0 0 0-2.25 2.25L21 15Z"
|
|
1204
|
+
})), _path4$1 || (_path4$1 = /*#__PURE__*/React.createElement("path", {
|
|
1205
|
+
d: "M18.75 20.654a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z"
|
|
1206
|
+
})));
|
|
1207
|
+
};
|
|
1208
|
+
|
|
1209
|
+
var _path$9, _path2$5;
|
|
1210
|
+
|
|
1211
|
+
function _extends$f() { _extends$f = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$f.apply(this, arguments); }
|
|
1212
|
+
|
|
1213
|
+
var SvgSettingsVertical = function SvgSettingsVertical(props) {
|
|
1214
|
+
return /*#__PURE__*/React.createElement("svg", _extends$f({
|
|
1215
|
+
width: 16,
|
|
1216
|
+
height: 16,
|
|
1217
|
+
fill: "none",
|
|
1218
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1219
|
+
}, props), _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
|
|
1220
|
+
d: "M1.5 16C.673 16 0 15.327 0 14.5v-13C0 .673.673 0 1.5 0h13c.827 0 1.5.673 1.5 1.5v13c0 .827-.673 1.5-1.5 1.5h-13Zm0-15a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-13Z",
|
|
1221
|
+
fill: "currentColor"
|
|
1222
|
+
})), _path2$5 || (_path2$5 = /*#__PURE__*/React.createElement("path", {
|
|
1223
|
+
d: "M10.5 13.01a.5.5 0 0 1-.5-.5v-1.565A2.01 2.01 0 0 1 8.5 9.01c0-.913.631-1.71 1.5-1.934V3.51a.5.5 0 0 1 1 0v3.565a2.01 2.01 0 0 1 1.5 1.934 2.01 2.01 0 0 1-1.5 1.935v1.565a.5.5 0 0 1-.5.501Zm0-5a1.001 1.001 0 0 0 0 2 1.001 1.001 0 0 0 0-2ZM5.5 13.01a.5.5 0 0 1-.5-.5V6.945A2.01 2.01 0 0 1 3.5 5.01c0-1.103.897-2 2-2s2 .897 2 2A2.01 2.01 0 0 1 6 6.945v5.565a.5.5 0 0 1-.5.5Zm0-9a1.001 1.001 0 0 0 0 2 1.001 1.001 0 0 0 0-2Z",
|
|
1224
|
+
fill: "currentColor"
|
|
1225
|
+
})));
|
|
1226
|
+
};
|
|
1227
|
+
|
|
1228
|
+
var _path$8, _path2$4, _path3$1;
|
|
1229
|
+
|
|
1230
|
+
function _extends$e() { _extends$e = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$e.apply(this, arguments); }
|
|
1231
|
+
|
|
1232
|
+
var SvgServer2 = function SvgServer2(props) {
|
|
1233
|
+
return /*#__PURE__*/React.createElement("svg", _extends$e({
|
|
1234
|
+
viewBox: "0 0 24 24",
|
|
1235
|
+
fill: "none",
|
|
1236
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1237
|
+
}, props), _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
|
|
1238
|
+
d: "M4.5 8.625a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25ZM4.5 17.625a1.125 1.125 0 1 0 0-2.25 1.125 1.125 0 0 0 0 2.25Z",
|
|
1239
|
+
fill: "currentColor"
|
|
1240
|
+
})), _path2$4 || (_path2$4 = /*#__PURE__*/React.createElement("path", {
|
|
1241
|
+
d: "M5.251 21.75a5.256 5.256 0 0 1-5.25-5.25c0-1.865.979-3.559 2.548-4.5A5.236 5.236 0 0 1 .001 7.5a5.256 5.256 0 0 1 5.25-5.25h13.5a5.256 5.256 0 0 1 5.25 5.25 5.238 5.238 0 0 1-2.548 4.5 5.238 5.238 0 0 1 2.548 4.5 5.256 5.256 0 0 1-5.25 5.25h-13.5Zm0-9a3.754 3.754 0 0 0-3.75 3.75 3.754 3.754 0 0 0 3.75 3.75h13.5a3.754 3.754 0 0 0 3.75-3.75 3.754 3.754 0 0 0-3.75-3.75h-13.5Zm0-9a3.754 3.754 0 0 0-3.75 3.75 3.754 3.754 0 0 0 3.75 3.75h13.5a3.754 3.754 0 0 0 3.75-3.75 3.754 3.754 0 0 0-3.75-3.75h-13.5Z",
|
|
1242
|
+
fill: "currentColor"
|
|
1243
|
+
})), _path3$1 || (_path3$1 = /*#__PURE__*/React.createElement("path", {
|
|
1244
|
+
d: "M10.501 8.25a.75.75 0 0 1 0-1.5h8.25a.75.75 0 0 1 0 1.5h-8.25ZM10.501 17.25a.75.75 0 0 1 0-1.5h8.25a.75.75 0 0 1 0 1.5h-8.25Z",
|
|
1245
|
+
fill: "currentColor"
|
|
1246
|
+
})));
|
|
1247
|
+
};
|
|
1248
|
+
|
|
1249
|
+
var _g$5, _defs$3;
|
|
1250
|
+
|
|
1251
|
+
function _extends$d() { _extends$d = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$d.apply(this, arguments); }
|
|
1252
|
+
|
|
1253
|
+
var SvgSupport = function SvgSupport(props) {
|
|
1254
|
+
return /*#__PURE__*/React.createElement("svg", _extends$d({
|
|
1255
|
+
fill: "none",
|
|
1256
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1257
|
+
viewBox: "0 0 16 16"
|
|
1258
|
+
}, props), _g$5 || (_g$5 = /*#__PURE__*/React.createElement("g", {
|
|
1259
|
+
clipPath: "url(#support_svg__a)",
|
|
1260
|
+
fill: "currentColor"
|
|
1261
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1262
|
+
d: "M13.498 16a.495.495 0 0 1-.353-.147L10.29 13H10c-2.206 0-4-1.795-4-4s1.794-4 4-4h2c2.206 0 4 1.795 4 4a3.983 3.983 0 0 1-2 3.453V15.5a.5.5 0 0 1-.501.5zm-3.5-10c-1.654 0-3 1.346-3 3s1.346 3 3 3h.5a.5.5 0 0 1 .353.147l2.147 2.146v-2.142c0-.192.113-.37.286-.452A3.006 3.006 0 0 0 14.998 9c0-1.653-1.345-3-2.999-3H9.998z"
|
|
1263
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1264
|
+
d: "M2.498 11a.498.498 0 0 1-.5-.5V7.453A3.978 3.978 0 0 1 .231 5.34 3.966 3.966 0 0 1 .38 2.287 4.01 4.01 0 0 1 3.99 0h2.008a4.027 4.027 0 0 1 3.835 2.857.5.5 0 0 1-.958.286A3.02 3.02 0 0 0 5.998 1h-2c-1.16 0-2.222.673-2.714 1.715a2.974 2.974 0 0 0-.111 2.287 2.973 2.973 0 0 0 1.538 1.697c.174.082.287.26.287.452v2.142l1.147-1.146a.496.496 0 0 1 .706 0 .501.501 0 0 1 0 .707l-2 2a.496.496 0 0 1-.353.146z"
|
|
1265
|
+
}))), _defs$3 || (_defs$3 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
1266
|
+
id: "support_svg__a"
|
|
1267
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1268
|
+
fill: "#fff",
|
|
1269
|
+
d: "M0 0h16v16H0z"
|
|
1270
|
+
})))));
|
|
1271
|
+
};
|
|
1272
|
+
|
|
1273
|
+
var _g$4, _defs$2;
|
|
1274
|
+
|
|
1275
|
+
function _extends$c() { _extends$c = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$c.apply(this, arguments); }
|
|
1276
|
+
|
|
1277
|
+
var SvgSupportHeadphones = function SvgSupportHeadphones(props) {
|
|
1278
|
+
return /*#__PURE__*/React.createElement("svg", _extends$c({
|
|
1279
|
+
fill: "none",
|
|
1280
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1281
|
+
viewBox: "0 0 32 32"
|
|
1282
|
+
}, props), _g$4 || (_g$4 = /*#__PURE__*/React.createElement("g", {
|
|
1283
|
+
clipPath: "url(#support-headphones_svg__a)",
|
|
1284
|
+
fillRule: "evenodd",
|
|
1285
|
+
clipRule: "evenodd",
|
|
1286
|
+
fill: "currentColor"
|
|
1287
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1288
|
+
d: "M5 13a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3h1V13H5Zm-3.536-.536A5 5 0 0 1 5 11h1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a5 5 0 0 1-5-5v-4a5 5 0 0 1 1.464-3.536Zm23.122-.878A2 2 0 0 1 26 11h1a5 5 0 0 1 5 5v4a5 5 0 0 1-5 5h-1a2 2 0 0 1-2-2V13a2 2 0 0 1 .586-1.414ZM27 13h-1v10h1a3 3 0 0 0 3-3v-4a3 3 0 0 0-3-3Z"
|
|
1289
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1290
|
+
d: "M16 2A10 10 0 0 0 6 12a1 1 0 1 1-2 0 12 12 0 1 1 24 0 1 1 0 1 1-2 0A10 10 0 0 0 16 2Zm11 21a1 1 0 0 1 1 1v1a5 5 0 0 1-5 5h-3a1 1 0 1 1 0-2h3a3 3 0 0 0 3-3v-1a1 1 0 0 1 1-1Z"
|
|
1291
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1292
|
+
d: "M16 28a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2Zm-2.121-1.121A3 3 0 0 1 16 26h2a3 3 0 0 1 0 6h-2a3 3 0 0 1-2.121-5.121Z"
|
|
1293
|
+
}))), _defs$2 || (_defs$2 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
1294
|
+
id: "support-headphones_svg__a"
|
|
1295
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1296
|
+
fill: "#fff",
|
|
1297
|
+
d: "M0 0h32v32H0z"
|
|
1298
|
+
})))));
|
|
1299
|
+
};
|
|
1300
|
+
|
|
1301
|
+
var _rect$1, _g$3, _defs$1;
|
|
1302
|
+
|
|
1303
|
+
function _extends$b() { _extends$b = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$b.apply(this, arguments); }
|
|
1304
|
+
|
|
1305
|
+
var SvgSupportCircle = function SvgSupportCircle(props) {
|
|
1306
|
+
return /*#__PURE__*/React.createElement("svg", _extends$b({
|
|
1307
|
+
width: 32,
|
|
1308
|
+
height: 32,
|
|
1309
|
+
fill: "none",
|
|
1310
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1311
|
+
}, props), _rect$1 || (_rect$1 = /*#__PURE__*/React.createElement("rect", {
|
|
1312
|
+
width: 32,
|
|
1313
|
+
height: 32,
|
|
1314
|
+
rx: 16,
|
|
1315
|
+
fill: "currentColor"
|
|
1316
|
+
})), _g$3 || (_g$3 = /*#__PURE__*/React.createElement("g", {
|
|
1317
|
+
clipPath: "url(#support-circle_svg__a)",
|
|
1318
|
+
fill: "#fff"
|
|
1319
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1320
|
+
d: "M21.498 24a.495.495 0 0 1-.353-.147L18.29 21H18c-2.206 0-4-1.795-4-4s1.794-4 4-4h2c2.206 0 4 1.795 4 4a3.983 3.983 0 0 1-2 3.453V23.5a.5.5 0 0 1-.501.5Zm-3.5-10c-1.654 0-3 1.346-3 3s1.346 3 3 3h.5a.5.5 0 0 1 .353.147l2.147 2.146v-2.142c0-.192.113-.37.286-.452A3.006 3.006 0 0 0 22.998 17c0-1.653-1.345-3-2.999-3h-2.001Z"
|
|
1321
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1322
|
+
d: "M10.498 19a.498.498 0 0 1-.5-.5v-3.047a3.978 3.978 0 0 1-1.767-2.114 3.966 3.966 0 0 1 .149-3.052A4.01 4.01 0 0 1 11.99 8h2.008a4.027 4.027 0 0 1 3.835 2.857.5.5 0 0 1-.958.286A3.02 3.02 0 0 0 13.998 9h-2c-1.16 0-2.222.673-2.714 1.715a2.974 2.974 0 0 0-.111 2.287c.269.753.816 1.355 1.538 1.697.174.082.287.26.287.452v2.142l1.147-1.146a.496.496 0 0 1 .706 0 .501.501 0 0 1 0 .707l-2 2a.496.496 0 0 1-.353.146Z"
|
|
1323
|
+
}))), _defs$1 || (_defs$1 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
1324
|
+
id: "support-circle_svg__a"
|
|
1325
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1326
|
+
fill: "#fff",
|
|
1327
|
+
transform: "translate(8 8)",
|
|
1328
|
+
d: "M0 0h16v16H0z"
|
|
1329
|
+
})))));
|
|
1330
|
+
};
|
|
1331
|
+
|
|
1332
|
+
var _path$7;
|
|
1333
|
+
|
|
1334
|
+
function _extends$a() { _extends$a = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$a.apply(this, arguments); }
|
|
1335
|
+
|
|
1336
|
+
var SvgSystem = function SvgSystem(props) {
|
|
1337
|
+
return /*#__PURE__*/React.createElement("svg", _extends$a({
|
|
1338
|
+
fill: "none",
|
|
1339
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1340
|
+
viewBox: "0 0 16 16"
|
|
1341
|
+
}, props), _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
|
|
1342
|
+
d: "M2.231 15.922a2.141 2.141 0 0 1-1.524-.63 2.158 2.158 0 0 1 0-3.049l6.68-6.677a4.36 4.36 0 0 1 .372-3.24A4.308 4.308 0 0 1 10.342.243a4.37 4.37 0 0 1 1.227-.178 4.33 4.33 0 0 1 2.072.533.501.501 0 0 1 .114.792L11.69 3.456v.851h.852l2.077-2.076a.492.492 0 0 1 .413-.13.503.503 0 0 1 .368.255 4.335 4.335 0 0 1 .273 3.55 4.35 4.35 0 0 1-4.081 2.863c-.392 0-.781-.053-1.159-.16l-6.679 6.682c-.406.407-.948.63-1.524.63zm9.337-14.856c-.317 0-.635.046-.944.137a3.336 3.336 0 0 0-2.197 4.331.503.503 0 0 1-.117.524L1.414 12.95a1.158 1.158 0 0 0 0 1.634c.218.218.508.338.817.338.309 0 .599-.12.816-.338l6.894-6.896a.496.496 0 0 1 .522-.116 3.31 3.31 0 0 0 1.129.198 3.346 3.346 0 0 0 3.14-2.204 3.322 3.322 0 0 0 .057-2.09l-1.687 1.686a.503.503 0 0 1-.353.146H11.19a.5.5 0 0 1-.5-.5V3.25c0-.133.052-.26.147-.353l1.686-1.688a3.254 3.254 0 0 0-.955-.142z",
|
|
1343
|
+
fill: "currentColor"
|
|
1344
|
+
})));
|
|
1345
|
+
};
|
|
1346
|
+
|
|
1347
|
+
var _g$2, _defs;
|
|
1348
|
+
|
|
1349
|
+
function _extends$9() { _extends$9 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$9.apply(this, arguments); }
|
|
1350
|
+
|
|
1351
|
+
var SvgTarget = function SvgTarget(props) {
|
|
1352
|
+
return /*#__PURE__*/React.createElement("svg", _extends$9({
|
|
1353
|
+
width: 16,
|
|
1354
|
+
height: 16,
|
|
1355
|
+
fill: "currentColor",
|
|
1356
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1357
|
+
}, props), _g$2 || (_g$2 = /*#__PURE__*/React.createElement("g", {
|
|
1358
|
+
clipPath: "url(#target_svg__a)"
|
|
1359
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1360
|
+
d: "M8.002 15.997a.5.5 0 0 1-.5-.5v-1.521c-2.893-.242-5.237-2.586-5.478-5.479H.502a.5.5 0 0 1 0-1h1.522C2.267 4.604 4.61 2.262 7.502 2.02V.497a.5.5 0 0 1 1 0V2.02c2.893.242 5.236 2.585 5.478 5.477h1.522a.5.5 0 0 1 0 1h-1.521c-.242 2.893-2.586 5.237-5.479 5.479v1.521a.5.5 0 0 1-.5.5Zm-4.975-7.5c.236 2.34 2.135 4.239 4.475 4.475v-1.475a.5.5 0 0 1 1 0v1.475c2.34-.236 4.238-2.134 4.475-4.475h-1.475a.5.5 0 0 1 0-1h1.475c-.237-2.34-2.135-4.237-4.475-4.474v1.474a.5.5 0 0 1-1 0V3.023c-2.34.237-4.238 2.134-4.475 4.474h1.475a.5.5 0 0 1 0 1H3.027Z"
|
|
1361
|
+
}))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
1362
|
+
id: "target_svg__a"
|
|
1363
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1364
|
+
d: "M0 0h16v16H0z"
|
|
1365
|
+
})))));
|
|
1366
|
+
};
|
|
1367
|
+
|
|
1368
|
+
var _path$6, _path2$3, _path3, _path4;
|
|
1369
|
+
|
|
1370
|
+
function _extends$8() { _extends$8 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$8.apply(this, arguments); }
|
|
1371
|
+
|
|
1372
|
+
var SvgTransaction = function SvgTransaction(props) {
|
|
1373
|
+
return /*#__PURE__*/React.createElement("svg", _extends$8({
|
|
1374
|
+
width: 104,
|
|
1375
|
+
height: 104,
|
|
1376
|
+
fill: "none",
|
|
1377
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1378
|
+
}, props), _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
|
|
1379
|
+
d: "M32.5 42.25c-11.648 0-21.125-9.477-21.125-21.125S20.852 0 32.5 0s21.125 9.477 21.125 21.125S44.148 42.25 32.5 42.25Zm0-35.75c-8.064 0-14.625 6.56-14.625 14.625 0 8.064 6.56 14.625 14.625 14.625 8.064 0 14.625-6.56 14.625-14.625 0-8.064-6.56-14.625-14.625-14.625ZM3.25 78A3.251 3.251 0 0 1 0 74.75c0-17.918 14.582-32.5 32.5-32.5 1.257.022 2.487.117 3.688.282a3.253 3.253 0 0 1 2.782 3.657 3.262 3.262 0 0 1-3.224 2.812c-.143 0-.286-.008-.43-.03a25.794 25.794 0 0 0-2.877-.225c-14.291 0-25.939 11.665-25.939 26A3.252 3.252 0 0 1 3.25 78ZM55.25 104c-5.378 0-9.75-4.372-9.75-9.75v-39c0-5.378 4.372-9.75 9.75-9.75h39c5.378 0 9.75 4.372 9.75 9.75v39c0 5.378-4.372 9.75-9.75 9.75h-39Zm0-52A3.251 3.251 0 0 0 52 55.25v39a3.251 3.251 0 0 0 3.25 3.25h39a3.251 3.251 0 0 0 3.25-3.25v-39A3.251 3.251 0 0 0 94.25 52h-39Z",
|
|
1380
|
+
fill: "currentColor"
|
|
1381
|
+
})), _path2$3 || (_path2$3 = /*#__PURE__*/React.createElement("path", {
|
|
1382
|
+
d: "M61.75 65a3.251 3.251 0 0 1 0-6.5h26a3.251 3.251 0 0 1 0 6.5h-26Z",
|
|
1383
|
+
fill: "currentColor"
|
|
1384
|
+
})), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
|
1385
|
+
d: "M61.75 78a3.251 3.251 0 0 1 0-6.5h26a3.251 3.251 0 0 1 0 6.5h-26Z",
|
|
1386
|
+
fill: "#DFE1E6"
|
|
1387
|
+
})), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
|
|
1388
|
+
d: "M61.75 91a3.251 3.251 0 0 1 0-6.5h9.75a3.251 3.251 0 0 1 0 6.5h-9.75Z",
|
|
1389
|
+
fill: "currentColor"
|
|
1390
|
+
})));
|
|
1391
|
+
};
|
|
1392
|
+
|
|
1393
|
+
var _path$5, _path2$2;
|
|
1394
|
+
|
|
1395
|
+
function _extends$7() { _extends$7 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$7.apply(this, arguments); }
|
|
1396
|
+
|
|
1397
|
+
var SvgUploadBottom = function SvgUploadBottom(props) {
|
|
1398
|
+
return /*#__PURE__*/React.createElement("svg", _extends$7({
|
|
1399
|
+
width: 16,
|
|
1400
|
+
height: 16,
|
|
1401
|
+
fill: "none",
|
|
1402
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1403
|
+
}, props), _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
|
|
1404
|
+
d: "M8 11a.5.5 0 0 1-.5-.5V3.707L5.353 5.854a.497.497 0 0 1-.706 0 .495.495 0 0 1 0-.707l2.999-3a.493.493 0 0 1 .163-.109l.017-.006a.496.496 0 0 1 .348 0l.013.005c.065.026.12.063.167.11l3 3a.495.495 0 0 1 0 .706.499.499 0 0 1-.707 0L8.5 3.707V10.5a.5.5 0 0 1-.5.5Z",
|
|
1405
|
+
fill: "currentColor"
|
|
1406
|
+
})), _path2$2 || (_path2$2 = /*#__PURE__*/React.createElement("path", {
|
|
1407
|
+
d: "M2.5 14A2.503 2.503 0 0 1 0 11.5v-1a.5.5 0 0 1 1 0v1c0 .827.673 1.5 1.5 1.5h11c.827 0 1.5-.673 1.5-1.5v-1a.5.5 0 0 1 1 0v1c0 1.379-1.121 2.5-2.5 2.5h-11Z",
|
|
1408
|
+
fill: "currentColor"
|
|
1409
|
+
})));
|
|
1410
|
+
};
|
|
1411
|
+
|
|
1412
|
+
var _rect, _path$4;
|
|
1413
|
+
|
|
1414
|
+
function _extends$6() { _extends$6 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$6.apply(this, arguments); }
|
|
1415
|
+
|
|
1416
|
+
var SvgUserCircle = function SvgUserCircle(props) {
|
|
1417
|
+
return /*#__PURE__*/React.createElement("svg", _extends$6({
|
|
1418
|
+
width: 32,
|
|
1419
|
+
height: 32,
|
|
1420
|
+
fill: "none",
|
|
1421
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1422
|
+
}, props), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
|
|
1423
|
+
width: 32,
|
|
1424
|
+
height: 32,
|
|
1425
|
+
rx: 16,
|
|
1426
|
+
fill: "currentColor"
|
|
1427
|
+
})), _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
|
|
1428
|
+
d: "M16 16c-2.205 0-4-1.795-4-4s1.795-4 4-4 4 1.795 4 4-1.795 4-4 4Zm0-7c-1.654 0-3 1.346-3 3s1.346 3 3 3 3-1.346 3-3-1.346-3-3-3ZM22.5 24a.5.5 0 0 1-.5-.5c0-3.309-2.691-6-6-6s-6 2.691-6 6a.5.5 0 0 1-1 0c0-3.86 3.14-7 7-7s7 3.14 7 7a.5.5 0 0 1-.5.5Z",
|
|
1429
|
+
fill: "#fff"
|
|
1430
|
+
})));
|
|
1431
|
+
};
|
|
1432
|
+
|
|
1433
|
+
var _g$1;
|
|
1434
|
+
|
|
1435
|
+
function _extends$5() { _extends$5 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$5.apply(this, arguments); }
|
|
1436
|
+
|
|
1437
|
+
var SvgViewOff = function SvgViewOff(props) {
|
|
1438
|
+
return /*#__PURE__*/React.createElement("svg", _extends$5({
|
|
1439
|
+
viewBox: "0 0 24 24",
|
|
1440
|
+
fill: "none",
|
|
1441
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1442
|
+
}, props), _g$1 || (_g$1 = /*#__PURE__*/React.createElement("g", {
|
|
1443
|
+
fill: "currentColor"
|
|
1444
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1445
|
+
d: "M2.783 21.75a.756.756 0 0 1-.541-.23.745.745 0 0 1-.21-.535.745.745 0 0 1 .232-.526l18.75-18a.745.745 0 0 1 1.06.022.748.748 0 0 1-.021 1.061l-18.75 18a.753.753 0 0 1-.52.208Zm9.205-1.5-.11.001c-1.048 0-2.103-.163-3.137-.483a.751.751 0 0 1 .223-1.466.73.73 0 0 1 .222.034c.888.276 1.8.416 2.709.416l.249.001c3.853 0 7.756-2.786 10.125-5.393a.91.91 0 0 0-.002-1.22 19.788 19.788 0 0 0-2.96-2.653.744.744 0 0 1-.298-.49.752.752 0 0 1 1.183-.722 21.35 21.35 0 0 1 3.187 2.858c.832.923.832 2.312.003 3.233-2.586 2.846-6.895 5.886-11.237 5.886l-.157-.002Zm-8.21-3.239a.751.751 0 0 1-.46-.158 21.623 21.623 0 0 1-2.693-2.486 2.41 2.41 0 0 1-.003-3.234c2.586-2.845 6.896-5.884 11.236-5.884l.237.001c.846 0 1.687.102 2.5.305a.749.749 0 1 1-.363 1.456 8.807 8.807 0 0 0-2.13-.26h-.228c-3.863 0-7.771 2.785-10.14 5.391a.91.91 0 0 0 .002 1.22 20.146 20.146 0 0 0 2.503 2.31.746.746 0 0 1 .132 1.052.752.752 0 0 1-.593.287Z"
|
|
1446
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1447
|
+
d: "M8.25 13.5a.75.75 0 0 1-.75-.75c0-1.2.468-2.329 1.318-3.18a4.465 4.465 0 0 1 3.179-1.32c.207 0 .374.167.375.374l.002.75c0 .1-.04.195-.11.266a.37.37 0 0 1-.264.11 2.98 2.98 0 0 0-2.121.88 2.979 2.979 0 0 0-.88 2.12.748.748 0 0 1-.75.75ZM12 17.25a.374.374 0 0 1-.374-.375l-.001-.75c0-.099.039-.195.11-.265a.372.372 0 0 1 .265-.11 2.98 2.98 0 0 0 2.122-.879A2.985 2.985 0 0 0 15 12.749a.75.75 0 0 1 1.5 0 4.47 4.47 0 0 1-1.317 3.182A4.471 4.471 0 0 1 12 17.25Z"
|
|
1448
|
+
}))));
|
|
1449
|
+
};
|
|
1450
|
+
|
|
1451
|
+
var _path$3, _path2$1;
|
|
1452
|
+
|
|
1453
|
+
function _extends$4() { _extends$4 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$4.apply(this, arguments); }
|
|
1454
|
+
|
|
1455
|
+
var SvgViewOn = function SvgViewOn(props) {
|
|
1456
|
+
return /*#__PURE__*/React.createElement("svg", _extends$4({
|
|
1457
|
+
width: 16,
|
|
1458
|
+
height: 16,
|
|
1459
|
+
viewBox: "0 0 24 24",
|
|
1460
|
+
fill: "none",
|
|
1461
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1462
|
+
}, props), _path$3 || (_path$3 = /*#__PURE__*/React.createElement("path", {
|
|
1463
|
+
d: "M11.842 19.499c-4.333 0-8.636-3.04-11.219-5.884a2.409 2.409 0 0 1-.002-3.232C3.205 7.538 7.513 4.5 11.855 4.5l.151.001.153-.001c4.328 0 8.634 3.038 11.219 5.881.831.923.832 2.312.002 3.233-2.586 2.846-6.897 5.886-11.245 5.886l-.149-.001h-.144Zm.011-13.5c-3.851 0-7.753 2.784-10.12 5.39a.91.91 0 0 0 .002 1.22c2.366 2.605 6.267 5.39 10.12 5.39l.131-.001.136.001c3.867 0 7.776-2.785 10.145-5.392a.91.91 0 0 0-.002-1.22C19.897 8.783 15.993 6 12.142 6l-.156.001-.133-.002Z",
|
|
1464
|
+
fill: "currentColor"
|
|
1465
|
+
})), _path2$1 || (_path2$1 = /*#__PURE__*/React.createElement("path", {
|
|
1466
|
+
d: "M11.998 16.498a4.471 4.471 0 0 1-3.182-1.319 4.465 4.465 0 0 1-1.317-3.182 4.505 4.505 0 0 1 4.5-4.499c1.202 0 2.332.468 3.182 1.317a4.468 4.468 0 0 1 1.318 3.181 4.471 4.471 0 0 1-1.319 3.185 4.474 4.474 0 0 1-3.182 1.317Zm.002-7.5c-1.654 0-3 1.345-3 2.999 0 .801.312 1.555.878 2.121a2.98 2.98 0 0 0 2.121.879 2.98 2.98 0 0 0 2.121-.878c.566-.566.879-1.32.879-2.121 0-.804-.312-1.557-.879-2.123A2.982 2.982 0 0 0 12 8.998Z",
|
|
1467
|
+
fill: "currentColor"
|
|
1468
|
+
})));
|
|
1469
|
+
};
|
|
1470
|
+
|
|
1471
|
+
var _path$2;
|
|
1472
|
+
|
|
1473
|
+
function _extends$3() { _extends$3 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$3.apply(this, arguments); }
|
|
1474
|
+
|
|
1475
|
+
var SvgWeatherCloud = function SvgWeatherCloud(props) {
|
|
1476
|
+
return /*#__PURE__*/React.createElement("svg", _extends$3({
|
|
1477
|
+
fill: "none",
|
|
1478
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1479
|
+
viewBox: "0 0 32 26"
|
|
1480
|
+
}, props), _path$2 || (_path$2 = /*#__PURE__*/React.createElement("path", {
|
|
1481
|
+
d: "M6 15.312a.995.995 0 0 1-.837-.453A6.993 6.993 0 0 1 4.092 12H1a1 1 0 0 1 0-2h3.103c.02-.143.042-.276.07-.407.21-1 .639-1.945 1.248-2.758L3.223 4.636a.99.99 0 0 1-.294-.707.99.99 0 0 1 .294-.706.99.99 0 0 1 .706-.294.99.99 0 0 1 .707.294l2.201 2.201a6.29 6.29 0 0 1 .358-.253A7.035 7.035 0 0 1 10 4.104V1a1 1 0 0 1 2 0v3.103c.163.021.313.046.46.077.987.207 1.92.627 2.725 1.221l2.179-2.178c.19-.19.44-.294.707-.294a.99.99 0 0 1 .706.294.99.99 0 0 1 .294.706.99.99 0 0 1-.294.707l-2.173 2.173a6.002 6.002 0 0 1 .459.682c.134.23.172.5.104.758a.997.997 0 0 1-1.83.252 4.96 4.96 0 0 0-3.288-2.365 4.964 4.964 0 0 0-3.76.71 4.96 4.96 0 0 0-2.16 3.16 4.966 4.966 0 0 0 .708 3.76A.997.997 0 0 1 6 15.313ZM13 26a6.04 6.04 0 0 1-2.599-.59 6 6 0 0 1-2.813-7.995A6.031 6.031 0 0 1 13 14.012c.493 0 .981.06 1.457.181A9.009 9.009 0 0 1 23.01 8a8.946 8.946 0 0 1 6.372 2.644 8.938 8.938 0 0 1 2.628 6.366c-.005 4.958-4.042 8.99-9 8.99H13Zm10.024-2c3.84 0 6.981-3.137 6.985-6.992a6.955 6.955 0 0 0-2.044-4.952A6.954 6.954 0 0 0 23.017 10a7.01 7.01 0 0 0-6.892 5.72 6.713 6.713 0 0 0-.073 2.144 1.001 1.001 0 0 1-.99 1.136c-.503 0-.929-.376-.993-.875A9.345 9.345 0 0 1 14 17a8.83 8.83 0 0 1 .044-.841A3.89 3.89 0 0 0 13 16.013c-1.532 0-2.948.89-3.608 2.267a4 4 0 0 0 1.875 5.328A4.26 4.26 0 0 0 13.01 24h10.013Z",
|
|
1482
|
+
fill: "currentColor"
|
|
1483
|
+
})));
|
|
1484
|
+
};
|
|
1485
|
+
|
|
1486
|
+
var _g;
|
|
1487
|
+
|
|
1488
|
+
function _extends$2() { _extends$2 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$2.apply(this, arguments); }
|
|
1489
|
+
|
|
1490
|
+
var SvgWebhooks = function SvgWebhooks(props) {
|
|
1491
|
+
return /*#__PURE__*/React.createElement("svg", _extends$2({
|
|
1492
|
+
width: 16,
|
|
1493
|
+
height: 16,
|
|
1494
|
+
viewBox: "0 0 104 104",
|
|
1495
|
+
fill: "none",
|
|
1496
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1497
|
+
}, props), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
1498
|
+
clipPath: "url(#webhooks_svg__clip0_4882_24509)",
|
|
1499
|
+
fillRule: "evenodd",
|
|
1500
|
+
clipRule: "evenodd",
|
|
1501
|
+
fill: "currentColor"
|
|
1502
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1503
|
+
d: "M22.75 64.992c-8.975 0-16.25 7.275-16.25 16.25 0 8.974 7.275 16.25 16.25 16.25S39 90.216 39 81.242c0-8.975-7.275-16.25-16.25-16.25ZM0 81.242c0-12.565 10.185-22.75 22.75-22.75S45.5 68.677 45.5 81.242c0 12.564-10.185 22.75-22.75 22.75S0 93.806 0 81.242ZM81.25 64.992c-8.975 0-16.25 7.275-16.25 16.25 0 8.974 7.275 16.25 16.25 16.25s16.25-7.276 16.25-16.25c0-8.975-7.275-16.25-16.25-16.25ZM58.5 81.242c0-12.565 10.186-22.75 22.75-22.75S104 68.677 104 81.242c0 12.564-10.186 22.75-22.75 22.75S58.5 93.806 58.5 81.242ZM52 6.492c-8.975 0-16.25 7.275-16.25 16.25 0 8.974 7.275 16.25 16.25 16.25s16.25-7.276 16.25-16.25c0-8.975-7.275-16.25-16.25-16.25Zm-22.75 16.25C29.25 10.177 39.435-.008 52-.008c12.564 0 22.75 10.185 22.75 22.75 0 12.564-10.186 22.75-22.75 22.75-12.565 0-22.75-10.186-22.75-22.75Z"
|
|
1504
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1505
|
+
d: "M59.265 37.276a3.25 3.25 0 0 1 4.36 1.454l11.813 23.62a3.25 3.25 0 1 1-5.813 2.908L57.812 41.637a3.25 3.25 0 0 1 1.453-4.36ZM39 81.242a3.25 3.25 0 0 1 3.25-3.25h19.5a3.25 3.25 0 0 1 0 6.5h-19.5a3.25 3.25 0 0 1-3.25-3.25ZM44.735 37.276a3.25 3.25 0 0 1 1.453 4.361L34.375 65.258a3.25 3.25 0 0 1-5.813-2.907L40.375 38.73a3.25 3.25 0 0 1 4.36-1.453Z"
|
|
1506
|
+
}))));
|
|
1507
|
+
};
|
|
1508
|
+
|
|
1509
|
+
var _path$1;
|
|
1510
|
+
|
|
1511
|
+
function _extends$1() { _extends$1 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); }
|
|
1512
|
+
|
|
1513
|
+
var SvgWorkflow = function SvgWorkflow(props) {
|
|
1514
|
+
return /*#__PURE__*/React.createElement("svg", _extends$1({
|
|
1515
|
+
fill: "none",
|
|
1516
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1517
|
+
viewBox: "0 0 104 104"
|
|
1518
|
+
}, props), _path$1 || (_path$1 = /*#__PURE__*/React.createElement("path", {
|
|
1519
|
+
d: "M51.996 22.75c-6.27 0-11.375-5.105-11.375-11.375S45.725 0 51.996 0C58.27 0 63.37 5.105 63.37 11.375S58.27 22.75 51.996 22.75Zm0-16.25a4.882 4.882 0 0 0-4.875 4.875 4.882 4.882 0 0 0 4.875 4.875 4.882 4.882 0 0 0 4.875-4.875A4.882 4.882 0 0 0 51.996 6.5ZM92.62 63.375c-6.274 0-11.374-5.1-11.374-11.375 0-6.27 5.1-11.375 11.375-11.375 6.274 0 11.375 5.105 11.375 11.375 0 6.275-5.1 11.375-11.375 11.375Zm0-16.25A4.882 4.882 0 0 0 87.747 52a4.882 4.882 0 0 0 4.875 4.875A4.882 4.882 0 0 0 97.496 52a4.882 4.882 0 0 0-4.875-4.875ZM51.996 104c-6.27 0-11.375-5.1-11.375-11.375S45.725 81.25 51.996 81.25c6.274 0 11.375 5.1 11.375 11.375S58.27 104 51.996 104Zm0-16.25a4.882 4.882 0 0 0-4.875 4.875 4.882 4.882 0 0 0 4.875 4.875 4.882 4.882 0 0 0 4.875-4.875 4.882 4.882 0 0 0-4.875-4.875ZM11.37 63.375C5.1 63.375-.003 58.275-.003 52c0-6.27 5.104-11.375 11.375-11.375 6.27 0 11.375 5.105 11.375 11.375 0 6.275-5.105 11.375-11.375 11.375Zm0-16.25A4.882 4.882 0 0 0 6.497 52a4.882 4.882 0 0 0 4.875 4.875A4.882 4.882 0 0 0 16.246 52a4.882 4.882 0 0 0-4.875-4.875ZM85.8 35.75a3.252 3.252 0 0 1-2.812-1.62 36.01 36.01 0 0 0-13.113-13.118 3.25 3.25 0 0 1-1.187-4.437 3.268 3.268 0 0 1 2.816-1.625c.568 0 1.131.152 1.625.438a42.531 42.531 0 0 1 15.488 15.487 3.256 3.256 0 0 1-1.188 4.442 3.297 3.297 0 0 1-1.629.433Zm-14.3 53.3a3.252 3.252 0 0 1-2.812-1.62 3.258 3.258 0 0 1 1.183-4.442 35.967 35.967 0 0 0 13.112-13.113A3.268 3.268 0 0 1 85.8 68.25a3.24 3.24 0 0 1 1.625.438 3.255 3.255 0 0 1 1.187 4.437 42.532 42.532 0 0 1-15.487 15.487 3.228 3.228 0 0 1-1.625.438Zm-39 0a3.24 3.24 0 0 1-1.625-.438 42.532 42.532 0 0 1-15.487-15.487 3.257 3.257 0 0 1 2.812-4.88 3.27 3.27 0 0 1 2.817 1.626 35.934 35.934 0 0 0 13.112 13.112 3.245 3.245 0 0 1 1.513 1.976 3.23 3.23 0 0 1-.325 2.466A3.268 3.268 0 0 1 32.5 89.05Zm-14.3-53.3a3.252 3.252 0 0 1-2.812-4.88 42.5 42.5 0 0 1 15.487-15.487 3.264 3.264 0 0 1 4.442 1.187 3.26 3.26 0 0 1 .325 2.47 3.2 3.2 0 0 1-1.517 1.972 36 36 0 0 0-13.113 13.113A3.247 3.247 0 0 1 18.2 35.75Z",
|
|
1520
|
+
fill: "currentColor"
|
|
1521
|
+
})));
|
|
1522
|
+
};
|
|
1523
|
+
|
|
1524
|
+
var _path, _path2;
|
|
1525
|
+
|
|
1526
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
1527
|
+
|
|
1528
|
+
var SvgModuleThree = function SvgModuleThree(props) {
|
|
1529
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
1530
|
+
fill: "currentColor",
|
|
1531
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1532
|
+
viewBox: "0 0 25 24"
|
|
1533
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
1534
|
+
d: "M7.417 24.001a.711.711 0 0 1-.114-.009 2.26 2.26 0 0 1-.677-.139l-4.5-1.687a2.262 2.262 0 0 1-1.46-2.1v-5.627c0-.413.118-.822.343-1.183a.732.732 0 0 1 .06-.098 2.227 2.227 0 0 1 1.057-.826l4.5-1.687a2.241 2.241 0 0 1 1.58 0l4.5 1.687c.43.162.798.45 1.062.833a.604.604 0 0 1 .055.092c.224.361.342.769.342 1.182v5.625a2.26 2.26 0 0 1-1.46 2.102l-4.5 1.687c-.214.08-.44.127-.675.139a.808.808 0 0 1-.113.009Zm-5.25-3.937a.753.753 0 0 0 .486.698l4.014 1.504V16.27l-4.5-1.687v5.481Zm6 2.202 4.014-1.505a.754.754 0 0 0 .486-.7v-5.479l-4.5 1.688v5.996Zm-.75-7.316 4-1.5-3.737-1.401a.747.747 0 0 0-.528 0L3.417 13.45l4 1.5Z"
|
|
1535
|
+
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
|
1536
|
+
d: "M16.417 17.582a.75.75 0 0 1-.237-1.461l6.474-2.158a.749.749 0 0 0 .513-.712v-8.46l-7.5 2.5V10.5a.75.75 0 0 1-1.5 0V7.291l-7.5-2.5V8.25a.75.75 0 0 1-1.5.001v-3.5a2.231 2.231 0 0 1 .499-1.407 2.245 2.245 0 0 1 1.04-.728l7.5-2.5a2.243 2.243 0 0 1 1.424.001l7.499 2.5a2.24 2.24 0 0 1 1.038.726 2.234 2.234 0 0 1 .5 1.408v8.5c0 .97-.618 1.828-1.54 2.135l-6.473 2.158a.759.759 0 0 1-.237.038Zm-1.5-11.622 6.748-2.249-6.511-2.172a.752.752 0 0 0-.473 0L8.167 3.71l6.75 2.25Z"
|
|
1537
|
+
})));
|
|
1538
|
+
};
|
|
1539
|
+
|
|
1540
|
+
// Custom SVG
|
|
1541
|
+
|
|
1542
|
+
declare const icons_Brightness1: typeof Brightness1;
|
|
1543
|
+
declare const icons_ArrowDownward: typeof ArrowDownward;
|
|
1544
|
+
declare const icons_ArrowUpward: typeof ArrowUpward;
|
|
1545
|
+
declare const icons_ArrowForward: typeof ArrowForward;
|
|
1546
|
+
declare const icons_ArrowBack: typeof ArrowBack;
|
|
1547
|
+
declare const icons_AutoStoriesOutlined: typeof AutoStoriesOutlined;
|
|
1548
|
+
declare const icons_CampaignOutlined: typeof CampaignOutlined;
|
|
1549
|
+
declare const icons_ContactSupportOutlined: typeof ContactSupportOutlined;
|
|
1550
|
+
declare const icons_LightbulbOutlined: typeof LightbulbOutlined;
|
|
1551
|
+
declare const icons_ShoppingCartOutlined: typeof ShoppingCartOutlined;
|
|
1552
|
+
declare const icons_QuestionMark: typeof QuestionMark;
|
|
1553
|
+
declare const icons_MoreHoriz: typeof MoreHoriz;
|
|
1554
|
+
declare const icons_InfoOutlined: typeof InfoOutlined;
|
|
1555
|
+
declare const icons_Person: typeof Person;
|
|
1556
|
+
declare const icons_VisibilityOutlined: typeof VisibilityOutlined;
|
|
1557
|
+
declare const icons_VisibilityOffOutlined: typeof VisibilityOffOutlined;
|
|
1558
|
+
declare const icons_ContentCut: typeof ContentCut;
|
|
1559
|
+
declare const icons_ContentCopy: typeof ContentCopy;
|
|
1560
|
+
declare const icons_ContentPaste: typeof ContentPaste;
|
|
1561
|
+
declare const icons_Cloud: typeof Cloud;
|
|
1562
|
+
declare const icons_KeyboardArrowUp: typeof KeyboardArrowUp;
|
|
1563
|
+
declare const icons_KeyboardArrowDown: typeof KeyboardArrowDown;
|
|
1564
|
+
declare const icons_KeyboardArrowLeft: typeof KeyboardArrowLeft;
|
|
1565
|
+
declare const icons_KeyboardArrowRight: typeof KeyboardArrowRight;
|
|
1566
|
+
declare namespace icons {
|
|
1567
|
+
export {
|
|
1568
|
+
SvgAppWindowCode as AppWindowCode,
|
|
1569
|
+
SvgAssignmentCircle as Assignment,
|
|
1570
|
+
SvgBashCircle as Bash,
|
|
1571
|
+
SvgBin as Bin,
|
|
1572
|
+
SvgBlocked as Blocked,
|
|
1573
|
+
SvgBlockCircle as Block,
|
|
1574
|
+
SvgBoxes as Boxes,
|
|
1575
|
+
SvgNetworkSearch as Catalog,
|
|
1576
|
+
SvgChecklist as CheckList,
|
|
1577
|
+
SvgCheckmark as CheckMark,
|
|
1578
|
+
SvgClose as Close,
|
|
1579
|
+
SvgCloseCircle as CloseCircle,
|
|
1580
|
+
SvgCoin as Coin,
|
|
1581
|
+
SvgCopy as Copy,
|
|
1582
|
+
SvgCredit as Credit,
|
|
1583
|
+
SvgModule as CustomBlocks,
|
|
1584
|
+
SvgDashboard as Dashboard,
|
|
1585
|
+
SvgExternalLink as ExternalLink,
|
|
1586
|
+
SvgImageResolution as ImageResolution,
|
|
1587
|
+
SvgInformation as Information,
|
|
1588
|
+
SvgInvoice as Invoice,
|
|
1589
|
+
SvgLayers as Layers,
|
|
1590
|
+
SvgLock as Lock,
|
|
1591
|
+
SvgLogo as Logo,
|
|
1592
|
+
SvgShop as Marketplace,
|
|
1593
|
+
SvgMegaphone as Megaphone,
|
|
1594
|
+
SvgMultipleUsers as MultipleUsers,
|
|
1595
|
+
SvgNotificationError as NotificationError,
|
|
1596
|
+
SvgNotificationInfo as NotificationInfo,
|
|
1597
|
+
SvgNotificationSuccess as NotificationSuccess,
|
|
1598
|
+
SvgFolderEmpty1 as Projects,
|
|
1599
|
+
SvgQuestionCircle as QuestionCircle,
|
|
1600
|
+
SvgSatellite as Satellite,
|
|
1601
|
+
SvgSearch as Search,
|
|
1602
|
+
SvgServerLock as ServerLock,
|
|
1603
|
+
SvgSettingsVertical as SettingsVertical,
|
|
1604
|
+
SvgServer2 as Storage,
|
|
1605
|
+
SvgSupport as SupportClear,
|
|
1606
|
+
SvgSupportHeadphones as SupportHeadphones,
|
|
1607
|
+
SvgSupportCircle as Support,
|
|
1608
|
+
SvgSystem as System,
|
|
1609
|
+
SvgTarget as Target,
|
|
1610
|
+
SvgTransaction as Transaction,
|
|
1611
|
+
SvgUploadBottom as Upload,
|
|
1612
|
+
SvgUserCircle as User,
|
|
1613
|
+
SvgViewOff as ViewOff,
|
|
1614
|
+
SvgViewOn as ViewOn,
|
|
1615
|
+
SvgWeatherCloud as WeatherCloud,
|
|
1616
|
+
SvgWebhooks as Webhooks,
|
|
1617
|
+
SvgWorkflow as Workflow,
|
|
1618
|
+
SvgModuleThree as ModuleThree,
|
|
1619
|
+
icons_Brightness1 as Brightness1,
|
|
1620
|
+
icons_ArrowDownward as ArrowDownward,
|
|
1621
|
+
icons_ArrowUpward as ArrowUpward,
|
|
1622
|
+
icons_ArrowForward as ArrowForward,
|
|
1623
|
+
icons_ArrowBack as ArrowBack,
|
|
1624
|
+
icons_AutoStoriesOutlined as AutoStoriesOutlined,
|
|
1625
|
+
icons_CampaignOutlined as CampaignOutlined,
|
|
1626
|
+
icons_ContactSupportOutlined as ContactSupportOutlined,
|
|
1627
|
+
icons_LightbulbOutlined as LightbulbOutlined,
|
|
1628
|
+
icons_ShoppingCartOutlined as ShoppingCartOutlined,
|
|
1629
|
+
icons_QuestionMark as QuestionMark,
|
|
1630
|
+
icons_MoreHoriz as MoreHoriz,
|
|
1631
|
+
icons_InfoOutlined as InfoOutlined,
|
|
1632
|
+
icons_Person as Person,
|
|
1633
|
+
icons_VisibilityOutlined as VisibilityOutlined,
|
|
1634
|
+
icons_VisibilityOffOutlined as VisibilityOffOutlined,
|
|
1635
|
+
icons_ContentCut as ContentCut,
|
|
1636
|
+
icons_ContentCopy as ContentCopy,
|
|
1637
|
+
icons_ContentPaste as ContentPaste,
|
|
1638
|
+
icons_Cloud as Cloud,
|
|
1639
|
+
icons_KeyboardArrowUp as KeyboardArrowUp,
|
|
1640
|
+
icons_KeyboardArrowDown as KeyboardArrowDown,
|
|
1641
|
+
icons_KeyboardArrowLeft as KeyboardArrowLeft,
|
|
1642
|
+
icons_KeyboardArrowRight as KeyboardArrowRight,
|
|
1643
|
+
};
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
declare type IconProps = {
|
|
1647
|
+
name: keyof typeof icons;
|
|
1648
|
+
} & Omit<SvgIconProps, 'children' | 'inheritViewBox' | 'shapeRendering' | 'viewBox'>;
|
|
1649
|
+
/**
|
|
1650
|
+
* Documentation: https://up-components.up42.dev/?path=/story/data-display-icon
|
|
1651
|
+
* Icons: https://up-components.up42.dev/?path=/story/icons
|
|
1652
|
+
*/
|
|
1653
|
+
declare const Icon: ({ name, ...props }: IconProps) => JSX.Element;
|
|
1654
|
+
|
|
495
1655
|
declare type DocumentationPopoverProps = {
|
|
496
1656
|
heading: string;
|
|
497
1657
|
/**
|
|
@@ -605,4 +1765,4 @@ declare type ContextState = {
|
|
|
605
1765
|
};
|
|
606
1766
|
declare const useAlert: () => ContextState;
|
|
607
1767
|
|
|
608
|
-
export { Alert, AlertProps, Avatar, AvatarProps, Banner, BannerProps, Box, BoxProps, Button, ButtonProps, Checkbox, CheckboxProps, Chip, ChipProps, CodeBox, CodeBoxProps, Container, ContainerProps, ControlButton, ControlButtonProps, CreateAlertProps, DataGrid, DataGridProps, DocumentationPopover, DocumentationPopoverProps, EmptyState, EmptyStateProps, FormCheckbox, FormCheckboxProps, FormInput, FormInputProps, FormRadio, FormRadioProps, FormSelect, FormSelectProps, FormSwitch, FormSwitchProps, InfoCard, InfoCardProps, InfoModal, InfoModalProps, InfoPopover, InfoPopoverProps, Input, InputProps, Link, LinkProps, Loading, LoadingProps, Menu, MenuItem, MenuItemProps, MenuProps, Modal, ModalProps, NotFound, PageHeader, PageHeaderProps, PaginatedResponse, Popover, PopoverProps, Radio, RadioProps, Select, SelectProps, Switch, SwitchProps, Tab, TabGroup, TabGroupProps, TabProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableContainer, TableContainerProps, TableFooter, TableFooterProps, TableHead, TableHeadProps, TablePagination, TablePaginationProps, TableProps, TableRow, TableRowProps, TableSortLabel, TableSortLabelProps, Tabs, TabsProps, Tooltip, TooltipProps, Typography, TypographyProps, UpComponentsProvider, capitalize, copyToClipboard, theme, useAlert, useQueryParams, useRemotePagination };
|
|
1768
|
+
export { Alert, AlertProps, Avatar, AvatarProps, Banner, BannerProps, Box, BoxProps, Button, ButtonProps, Checkbox, CheckboxProps, Chip, ChipProps, CodeBox, CodeBoxProps, Container, ContainerProps, ControlButton, ControlButtonProps, CreateAlertProps, DataGrid, DataGridProps, DocumentationPopover, DocumentationPopoverProps, EmptyState, EmptyStateProps, FormCheckbox, FormCheckboxProps, FormInput, FormInputProps, FormRadio, FormRadioProps, FormSelect, FormSelectProps, FormSwitch, FormSwitchProps, Icon, IconProps, InfoCard, InfoCardProps, InfoModal, InfoModalProps, InfoPopover, InfoPopoverProps, Input, InputProps, Link, LinkProps, Loading, LoadingProps, Menu, MenuItem, MenuItemProps, MenuProps, Modal, ModalProps, NotFound, PageHeader, PageHeaderProps, PaginatedResponse, Popover, PopoverProps, Radio, RadioProps, Select, SelectProps, Switch, SwitchProps, Tab, TabGroup, TabGroupProps, TabProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableContainer, TableContainerProps, TableFooter, TableFooterProps, TableHead, TableHeadProps, TablePagination, TablePaginationProps, TableProps, TableRow, TableRowProps, TableSortLabel, TableSortLabelProps, Tabs, TabsProps, Tooltip, TooltipProps, Typography, TypographyProps, UpComponentsProvider, capitalize, copyToClipboard, theme, useAlert, useQueryParams, useRemotePagination };
|