@up42/up-components 2.3.0 → 2.4.1

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.
Files changed (36) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/cjs/types/components/ContactBox/ContactBox.d.ts +1 -1
  3. package/dist/cjs/types/components/CopyButton/CopyButton.d.ts +1 -1
  4. package/dist/cjs/types/components/InfoModal/InfoModal.d.ts +1 -1
  5. package/dist/cjs/types/components/TabGroup/TabGroup.d.ts +1 -1
  6. package/dist/cjs/types/global/icons/index.d.ts +0 -1
  7. package/dist/cjs/types/index.d.ts +0 -5
  8. package/dist/esm/index.js +2 -2
  9. package/dist/esm/types/components/ContactBox/ContactBox.d.ts +1 -1
  10. package/dist/esm/types/components/CopyButton/CopyButton.d.ts +1 -1
  11. package/dist/esm/types/components/InfoModal/InfoModal.d.ts +1 -1
  12. package/dist/esm/types/components/TabGroup/TabGroup.d.ts +1 -1
  13. package/dist/esm/types/global/icons/index.d.ts +0 -1
  14. package/dist/esm/types/index.d.ts +0 -5
  15. package/dist/index.d.ts +6 -40
  16. package/package.json +1 -1
  17. package/dist/cjs/types/components/Box/Box.d.ts +0 -8
  18. package/dist/cjs/types/components/Box/Box.test.d.ts +0 -1
  19. package/dist/cjs/types/components/Menu/Menu.d.ts +0 -11
  20. package/dist/cjs/types/components/Menu/Menu.test.d.ts +0 -1
  21. package/dist/cjs/types/components/Modal/Modal.d.ts +0 -8
  22. package/dist/cjs/types/components/Modal/Modal.test.d.ts +0 -1
  23. package/dist/cjs/types/components/Popover/Popover.d.ts +0 -8
  24. package/dist/cjs/types/components/Popover/Popover.test.d.ts +0 -1
  25. package/dist/cjs/types/components/Tooltip/Tooltip.d.ts +0 -7
  26. package/dist/cjs/types/components/Tooltip/Tooltip.test.d.ts +0 -1
  27. package/dist/esm/types/components/Box/Box.d.ts +0 -8
  28. package/dist/esm/types/components/Box/Box.test.d.ts +0 -1
  29. package/dist/esm/types/components/Menu/Menu.d.ts +0 -11
  30. package/dist/esm/types/components/Menu/Menu.test.d.ts +0 -1
  31. package/dist/esm/types/components/Modal/Modal.d.ts +0 -8
  32. package/dist/esm/types/components/Modal/Modal.test.d.ts +0 -1
  33. package/dist/esm/types/components/Popover/Popover.d.ts +0 -8
  34. package/dist/esm/types/components/Popover/Popover.test.d.ts +0 -1
  35. package/dist/esm/types/components/Tooltip/Tooltip.d.ts +0 -7
  36. package/dist/esm/types/components/Tooltip/Tooltip.test.d.ts +0 -1
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { SxProps, Theme } from '@mui/material';
2
+ import { SxProps, Theme } from '@mui/material';
3
3
  export declare type ContactBoxProps = {
4
4
  customIcon?: React.ReactNode;
5
5
  text?: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { SxProps, Theme } from '@mui/material';
2
+ import { SxProps, Theme } from '@mui/material';
3
3
  export interface CopyButtonProps {
4
4
  data: string;
5
5
  tooltip?: string;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
+ import { ModalProps as MUIModalProps } from '@mui/material';
2
3
  import { MUIGlobalOmit } from '@global/utils/types';
3
- import { ModalProps as MUIModalProps } from '../Modal/Modal';
4
4
  import { InfoCardProps } from '../InfoCard/InfoCard';
5
5
  export declare type InfoModalProps = MUIGlobalOmit<Omit<MUIModalProps, 'BackdropProps' | 'BackdropComponent' | 'onBackdropClick'>, Omit<InfoCardProps, 'headerAction'> & {
6
6
  /**
@@ -1,6 +1,6 @@
1
+ import { BoxProps } from '@mui/material';
1
2
  import { ReactNode } from 'react';
2
3
  import { TabsProps } from '../Tabs/Tabs';
3
- import { BoxProps } from '../Box/Box';
4
4
  declare type TabDataType = {
5
5
  label: string | ReactNode;
6
6
  content: string | ReactNode;
@@ -78,7 +78,6 @@ export { default as Balance } from './balance-scale.svg';
78
78
  export { default as Brightness1 } from './brightness-dot-circle-filled.svg';
79
79
  export { default as CampaignOutlined } from './megaphone-campaign-announcement.svg';
80
80
  export { default as ContactSupportOutlined } from './question-contact-support-bubble.svg';
81
- export { default as ContentCopy } from '@mui/icons-material/ContentCopy';
82
81
  export { default as ContentCut } from './scissors-cut.svg';
83
82
  export { default as ContentPaste } from './copy-paste.svg';
84
83
  export { default as KeyboardArrowDown } from './chevron-down.svg';
@@ -8,7 +8,6 @@ export { Typography, type TypographyProps } from './components/Typography/Typogr
8
8
  export { Avatar, type AvatarProps } from './components/Avatar/Avatar';
9
9
  export { GridContainer, type GridContainerProps, GridItem, type GridItemProps } from './components/Grid/Grid';
10
10
  export { PageContainer, type PageContainerProps } from './components/PageContainer/PageContainer';
11
- export { Box, type BoxProps } from './components/Box/Box';
12
11
  export { Checkbox, type CheckboxProps } from './components/Checkbox/Checkbox';
13
12
  export { FormCheckbox, type FormCheckboxProps } from './components/FormCheckbox/FormCheckbox';
14
13
  export { FormDatePicker, type FormDatePickerProps, type DatePickerDateType, } from './components/FormDatePicker/FormDatePicker';
@@ -26,17 +25,13 @@ export { Link, type LinkProps } from './components/Link/Link';
26
25
  export { Tabs, Tab, type TabsProps, type TabProps } from './components/Tabs/Tabs';
27
26
  export { TabGroup, type TabGroupProps } from './components/TabGroup/TabGroup';
28
27
  export { EmptyState, type EmptyStateProps } from './components/EmptyState/EmptyState';
29
- export { Modal, type ModalProps } from './components/Modal/Modal';
30
28
  export { InfoModal, type InfoModalProps } from './components/InfoModal/InfoModal';
31
29
  export { Alert, type AlertProps } from './components/Alert/Alert';
32
30
  export { Banner, type BannerProps } from './components/Banner/Banner';
33
- export { Tooltip, type TooltipProps } from './components/Tooltip/Tooltip';
34
31
  export { InfoCard, type InfoCardProps } from './components/InfoCard/InfoCard';
35
32
  export { ContactBox, type ContactBoxProps } from './components/ContactBox/ContactBox';
36
- export { Menu, MenuItem, type MenuProps, type MenuItemProps } from './components/Menu/Menu';
37
33
  export { ControlButton, type ControlButtonProps } from './components/ControlButton/ControlButton';
38
34
  export { CopyButton, type CopyButtonProps } from './components/CopyButton/CopyButton';
39
- export { Popover, type PopoverProps } from './components/Popover/Popover';
40
35
  export { InfoPopover, type InfoPopoverProps } from './components/InfoPopover/InfoPopover';
41
36
  export { PageHeader, type PageHeaderProps } from './components/PageHeader/PageHeader';
42
37
  export { NotFound, type NotFoundProps } from './components/NotFound/NotFound';
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
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, AvatarProps as AvatarProps$1, GridProps, ContainerProps, CheckboxProps as CheckboxProps$1, RadioProps as RadioProps$1, RadioGroupProps, SwitchProps as SwitchProps$1, SelectProps as SelectProps$1, SliderProps as SliderProps$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, SxProps, Theme, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, IconButtonProps, PopoverProps as PopoverProps$1, SvgIconProps, BadgeProps as BadgeProps$1, ChipProps, DividerProps as DividerProps$1 } from '@mui/material';
4
+ import { BoxProps, TextFieldProps, AvatarProps as AvatarProps$1, GridProps, ContainerProps, CheckboxProps as CheckboxProps$1, RadioProps as RadioProps$1, RadioGroupProps, SwitchProps as SwitchProps$1, SelectProps as SelectProps$1, SliderProps as SliderProps$1, LinkProps as LinkProps$1, TabsProps as TabsProps$1, TabProps as TabProps$1, CardProps, ModalProps, AlertProps as AlertProps$1, SxProps, Theme, IconButtonProps, SvgIconProps, BadgeProps as BadgeProps$1, ChipProps, DividerProps as DividerProps$1 } from '@mui/material';
5
5
  export * from '@mui/material';
6
6
  import { ThemeProviderProps } from '@mui/material/styles/ThemeProvider';
7
7
  import * as React from 'react';
@@ -13,7 +13,6 @@ import { TypographyProps as TypographyProps$1 } from '@mui/material/Typography';
13
13
  import * as _mui_system from '@mui/system';
14
14
  import { DatePickerProps } from '@mui/x-date-pickers';
15
15
  import dayjs, { Dayjs } from 'dayjs';
16
- import ContentCopy from '@mui/icons-material/ContentCopy';
17
16
  import { TableProps as TableProps$1 } from '@mui/material/Table';
18
17
  import { TableBodyProps as TableBodyProps$1 } from '@mui/material/TableBody';
19
18
  import { TableCellProps as TableCellProps$1 } from '@mui/material/TableCell';
@@ -51,7 +50,7 @@ type MUIGlobalOmit<MuiProps, ComponentProps = unknown> = ComponentProps &
51
50
  | 'touchRippleRef'
52
51
  >
53
52
 
54
- type FormBaseProps = BoxProps$1 &
53
+ type FormBaseProps = BoxProps &
55
54
  Pick<TextFieldProps, 'id' | 'label' | 'required' | 'error' | 'disabled' | 'focused' | 'helperText'>
56
55
 
57
56
  declare type ButtonProps = MUIGlobalOmit<Omit<ButtonProps$1, 'size' | 'color'>, {
@@ -154,12 +153,6 @@ declare type PageContainerProps = Omit<ContainerProps, 'fixed' | 'maxWidth'> & {
154
153
  */
155
154
  declare const PageContainer: ({ children, fluid, columns, ...props }: PageContainerProps) => JSX.Element;
156
155
 
157
- declare type BoxProps = MUIGlobalOmit<BoxProps$1>;
158
- /**
159
- * Documentation: https://up-components.up42.com/?path=/docs/layout-box--docs
160
- */
161
- declare const Box: React__default.ForwardRefExoticComponent<Pick<Omit<BoxProps$1<"div", {}>, "classes" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple">, "className" | "style" | "children" | "sx" | "slot" | "title" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "component" | ("color" | "fontSize" | "p" | "height" | "width" | "display" | "fontFamily" | "fontStyle" | "fontWeight" | "letterSpacing" | "order" | "overflow" | "visibility" | "left" | "right" | "top" | "bottom" | "border" | "boxShadow" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyContent" | "justifyItems" | "justifySelf" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "whiteSpace" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "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>>;
162
-
163
156
  declare type CheckboxProps = MUIGlobalOmit<CheckboxProps$1>;
164
157
  /**
165
158
  * Documentation: https://up-components.up42.com/?path=/docs/data-entry-checkbox--docs
@@ -387,7 +380,7 @@ declare type TabGroupProps = {
387
380
  */
388
381
  declare const TabGroup: ({ tabs, nameSpace: _nameSpace, tabContentProps, tabsProps, defaultValue, onChange, }: TabGroupProps) => JSX.Element;
389
382
 
390
- declare type EmptyStateProps = MUIGlobalOmit<Omit<BoxProps$1, 'component'>, {
383
+ declare type EmptyStateProps = MUIGlobalOmit<Omit<BoxProps, 'component'>, {
391
384
  /**
392
385
  * Helpful message that conveys the purpose of the screen and the next action to populate the space
393
386
  */
@@ -410,12 +403,6 @@ declare type EmptyStateProps = MUIGlobalOmit<Omit<BoxProps$1, 'component'>, {
410
403
  */
411
404
  declare const EmptyState: ({ icon: CustomIcon, title, subTitle, action, sx, ...props }: EmptyStateProps) => JSX.Element;
412
405
 
413
- declare type ModalProps = MUIGlobalOmit<ModalProps$1>;
414
- /**
415
- * Documentation: https://up-components.up42.com/?path=/docs/feedback-modal--docs
416
- */
417
- declare const Modal: ({ children, ...props }: ModalProps) => JSX.Element;
418
-
419
406
  declare type InfoCardProps = {
420
407
  title: string;
421
408
  subtitle?: string;
@@ -532,12 +519,6 @@ declare const Banner: React__default.ForwardRefExoticComponent<Pick<{
532
519
  title: string;
533
520
  } & Omit<AlertProps, "title" | "role" | "icon" | "closeText" | "onClose">, "className" | "style" | "classes" | "children" | "sx" | "slot" | "title" | "id" | "lang" | "type" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "variant" | "components" | "componentsProps" | "slotProps" | "slots" | "onDismiss" | "actionLabel" | "actionProps"> & React__default.RefAttributes<unknown>>;
534
521
 
535
- declare type TooltipProps = Omit<TooltipProps$1, 'TransitionComponent' | 'TransitionProps' | 'PopperComponent' | 'followCursor'>;
536
- /**
537
- * Documentation: https://up-components.up42.com/?path=/docs/data-display-tooltip--docs
538
- */
539
- declare const Tooltip: ({ children, ...props }: TooltipProps) => JSX.Element;
540
-
541
522
  declare type ContactBoxProps = {
542
523
  customIcon?: React__default.ReactNode;
543
524
  text?: string;
@@ -550,14 +531,6 @@ declare type ContactBoxProps = {
550
531
  */
551
532
  declare const ContactBox: ({ customIcon, text, actions, size, sx }: ContactBoxProps) => JSX.Element;
552
533
 
553
- declare type MenuProps = MUIGlobalOmit<MenuProps$1>;
554
- /**
555
- * Documentation: https://up-components.up42.com/?path=/docs/navigation-menu--docs
556
- */
557
- declare const Menu: React__default.ForwardRefExoticComponent<Pick<Omit<MenuProps$1, "classes" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple">, "className" | "style" | "children" | "color" | "sx" | "slot" | "title" | "id" | "lang" | "role" | "elevation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoFocus" | "open" | "transformOrigin" | "transitionDuration" | "container" | "variant" | "components" | "componentsProps" | "onClose" | "slotProps" | "slots" | "anchorEl" | "disablePortal" | "keepMounted" | "closeAfterTransition" | "disableAutoFocus" | "disableEnforceFocus" | "disableEscapeKeyDown" | "disableRestoreFocus" | "disableScrollLock" | "hideBackdrop" | "onBackdropClick" | "TransitionComponent" | "BackdropComponent" | "BackdropProps" | "TransitionProps" | "anchorOrigin" | "anchorPosition" | "anchorReference" | "marginThreshold" | "PaperProps" | "disableAutoFocusItem" | "MenuListProps" | "PopoverClasses"> & React__default.RefAttributes<unknown>>;
558
- declare type MenuItemProps = MUIGlobalOmit<MenuItemProps$1>;
559
- declare const MenuItem: (props: MenuItemProps) => JSX.Element;
560
-
561
534
  declare type ControlButtonProps = MUIGlobalOmit<IconButtonProps, {
562
535
  size?: 'medium' | 'small';
563
536
  /**
@@ -587,12 +560,6 @@ interface CopyButtonProps {
587
560
  */
588
561
  declare const CopyButton: ({ data, tooltip, sx, onCopy }: CopyButtonProps) => JSX.Element;
589
562
 
590
- declare type PopoverProps = MUIGlobalOmit<PopoverProps$1>;
591
- /**
592
- * Documentation: https://up-components.up42.com/?path=/docs/data-display-popover--docs
593
- */
594
- declare const Popover: ({ children, ...props }: PopoverProps) => JSX.Element;
595
-
596
563
  declare type InfoPopoverProps = InfoCardProps & {
597
564
  icon?: React__default.ElementType;
598
565
  };
@@ -647,7 +614,7 @@ declare type LoadingProps = {
647
614
  * Internal visibility control of the component
648
615
  */
649
616
  visible?: boolean;
650
- } & BoxProps$1;
617
+ } & BoxProps;
651
618
  /**
652
619
  * Documentation: https://up-components.up42.com/?path=/docs/patterns-loading--docs
653
620
  */
@@ -2317,9 +2284,8 @@ var SvgOpenEyeVisibility = function SvgOpenEyeVisibility(props) {
2317
2284
 
2318
2285
  // Custom SVG
2319
2286
 
2320
- declare const icons_ContentCopy: typeof ContentCopy;
2321
2287
  declare namespace icons {
2322
- export { SvgAccessTimeClock as AccessTime, SvgAdd as Add, SvgAlarmBell as AlarmBell, SvgAngle as Angle, SvgAppWindowCode as AppWindowCode, SvgArrowLeftBack as ArrowBack, SvgChevronLeftBack as ArrowBackIos, SvgArrowCircleDown as ArrowCircleDown, SvgArrowDown as ArrowDownward, SvgArrowRightForward as ArrowForward, SvgArrowTopRight as ArrowTopRight, SvgArrowUp as ArrowUpward, SvgBookFlipPageDocumentation as AutoStoriesOutlined, SvgBalanceScale as Balance, SvgBin as Bin, SvgBlockCircle as Block, SvgBlocked as Blocked, SvgBoxes as Boxes, SvgBoxesGrid as BoxesGrid, SvgBrightnessDotCircleFilled as Brightness1, SvgCalendar as Calendar, SvgMegaphoneCampaignAnnouncement as CampaignOutlined, SvgNetworkSearch as Catalog, SvgChecklist as CheckList, SvgCheckmark as CheckMark, SvgClose as Close, SvgCloseCircle as CloseCircle, SvgCloud as Cloud, SvgCoin as Coin, SvgCompass as Compass, SvgQuestionContactSupportBubble as ContactSupportOutlined, icons_ContentCopy as ContentCopy, SvgScissorsCut as ContentCut, SvgCopyPaste as ContentPaste, SvgCopy as Copy, SvgCredit as Credit, SvgDashboard as Dashboard, SvgDataTransferVertical as DataTransferVertical, SvgDottedLines as DottedLines, SvgDownload as Download, SvgExternalLink as ExternalLink, SvgImageResolution as ImageResolution, SvgInvoice as Invoice, SvgChevronDown as KeyboardArrowDown, SvgChevronLeftBack as KeyboardArrowLeft, SvgChevronRightForward as KeyboardArrowRight, SvgChevronUp as KeyboardArrowUp, SvgLayers as Layers, SvgLibrary as Library, SvgLightbulb as LightbulbOutlined, SvgTag as LocalOfferOutlined, SvgLock as Lock, SvgLogo as Logo, SvgMap as Map, SvgMapPin as MapPin, SvgShop as Marketplace, SvgModuleThree as ModuleThree, SvgMenuThreeDotFilledHorizontal as MoreHoriz, SvgMultipleUsers as MultipleUsers, SvgNotificationError as NotificationError, SvgNotificationInfo as NotificationInfo, SvgNotificationSuccess as NotificationSuccess, SvgNotificationWarning as NotificationWarning, SvgPencil as Pencil, SvgUserSingle as Person, SvgPolygon as Polygon, SvgFolderEmpty1 as Projects, SvgQuestionCircle as QuestionCircle, SvgQuestionMark as QuestionMark, SvgResolution as Resolution, SvgSatellite$1 as Satellite, SvgSave as Save, SvgSearch as Search, SvgServerLock as ServerLock, SvgSettingsVertical as SettingsVertical, SvgShield as Shield, SvgShieldLock as ShieldWithLock, SvgShoppingCart as ShoppingCartOutlined, SvgServer2 as Storage, SvgSupportCircle as Support, SvgSupport as SupportClear, SvgSupportHeadphones as SupportHeadphones, SvgSystem as System, SvgTag as Tag, SvgTarget as Target, SvgTransaction as Transaction, SvgUpgradeShield as UpgradeShield, SvgUpload as Upload, SvgUserCircle as User, SvgCloseEyeVisibility as VisibilityOffOutlined, SvgOpenEyeVisibility as VisibilityOutlined, SvgWeatherCloud as WeatherCloud, SvgWebhooks as Webhooks, SvgWorkflow as Workflow, SvgWorkflowPencil as WorkflowPencil };
2288
+ export { SvgAccessTimeClock as AccessTime, SvgAdd as Add, SvgAlarmBell as AlarmBell, SvgAngle as Angle, SvgAppWindowCode as AppWindowCode, SvgArrowLeftBack as ArrowBack, SvgChevronLeftBack as ArrowBackIos, SvgArrowCircleDown as ArrowCircleDown, SvgArrowDown as ArrowDownward, SvgArrowRightForward as ArrowForward, SvgArrowTopRight as ArrowTopRight, SvgArrowUp as ArrowUpward, SvgBookFlipPageDocumentation as AutoStoriesOutlined, SvgBalanceScale as Balance, SvgBin as Bin, SvgBlockCircle as Block, SvgBlocked as Blocked, SvgBoxes as Boxes, SvgBoxesGrid as BoxesGrid, SvgBrightnessDotCircleFilled as Brightness1, SvgCalendar as Calendar, SvgMegaphoneCampaignAnnouncement as CampaignOutlined, SvgNetworkSearch as Catalog, SvgChecklist as CheckList, SvgCheckmark as CheckMark, SvgClose as Close, SvgCloseCircle as CloseCircle, SvgCloud as Cloud, SvgCoin as Coin, SvgCompass as Compass, SvgQuestionContactSupportBubble as ContactSupportOutlined, SvgScissorsCut as ContentCut, SvgCopyPaste as ContentPaste, SvgCopy as Copy, SvgCredit as Credit, SvgDashboard as Dashboard, SvgDataTransferVertical as DataTransferVertical, SvgDottedLines as DottedLines, SvgDownload as Download, SvgExternalLink as ExternalLink, SvgImageResolution as ImageResolution, SvgInvoice as Invoice, SvgChevronDown as KeyboardArrowDown, SvgChevronLeftBack as KeyboardArrowLeft, SvgChevronRightForward as KeyboardArrowRight, SvgChevronUp as KeyboardArrowUp, SvgLayers as Layers, SvgLibrary as Library, SvgLightbulb as LightbulbOutlined, SvgTag as LocalOfferOutlined, SvgLock as Lock, SvgLogo as Logo, SvgMap as Map, SvgMapPin as MapPin, SvgShop as Marketplace, SvgModuleThree as ModuleThree, SvgMenuThreeDotFilledHorizontal as MoreHoriz, SvgMultipleUsers as MultipleUsers, SvgNotificationError as NotificationError, SvgNotificationInfo as NotificationInfo, SvgNotificationSuccess as NotificationSuccess, SvgNotificationWarning as NotificationWarning, SvgPencil as Pencil, SvgUserSingle as Person, SvgPolygon as Polygon, SvgFolderEmpty1 as Projects, SvgQuestionCircle as QuestionCircle, SvgQuestionMark as QuestionMark, SvgResolution as Resolution, SvgSatellite$1 as Satellite, SvgSave as Save, SvgSearch as Search, SvgServerLock as ServerLock, SvgSettingsVertical as SettingsVertical, SvgShield as Shield, SvgShieldLock as ShieldWithLock, SvgShoppingCart as ShoppingCartOutlined, SvgServer2 as Storage, SvgSupportCircle as Support, SvgSupport as SupportClear, SvgSupportHeadphones as SupportHeadphones, SvgSystem as System, SvgTag as Tag, SvgTarget as Target, SvgTransaction as Transaction, SvgUpgradeShield as UpgradeShield, SvgUpload as Upload, SvgUserCircle as User, SvgCloseEyeVisibility as VisibilityOffOutlined, SvgOpenEyeVisibility as VisibilityOutlined, SvgWeatherCloud as WeatherCloud, SvgWebhooks as Webhooks, SvgWorkflow as Workflow, SvgWorkflowPencil as WorkflowPencil };
2323
2289
  }
2324
2290
 
2325
2291
  declare type IconProps = {
@@ -2830,4 +2796,4 @@ declare type ContextState = {
2830
2796
  */
2831
2797
  declare const useAlert: () => ContextState;
2832
2798
 
2833
- export { Alert, type AlertProps, Avatar, type AvatarProps, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, CodeInline, type CodeInlineProps, CodeSnippet, type CodeSnippetItemProps, type CodeSnippetProps, ContactBox, type ContactBoxProps, ControlButton, type ControlButtonProps, CopyButton, type CopyButtonProps, type CreateAlertProps, DataGrid, type DataGridProps, type DatePickerDateType, DateTime, type DateTimeProps, Divider, type DividerProps, DocumentationPopover, type DocumentationPopoverProps, EmptyState, type EmptyStateProps, FormCheckbox, type FormCheckboxProps, FormDatePicker, type FormDatePickerProps, FormDateRangePicker, type FormDateRangePickerProps, FormInput, type FormInputProps, FormRadio, type FormRadioProps, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, GridContainer, type GridContainerProps, GridItem, type GridItemProps, Icon, type IconProps, Illustration, type IllustrationProps, InfoCard, type InfoCardProps, InfoModal, type InfoModalProps, InfoPopover, type InfoPopoverProps, Input, type InputProps, Link, type LinkProps, Loading, type LoadingProps, Menu, MenuItem, type MenuItemProps, type MenuProps, Modal, type ModalProps, NotFound, type NotFoundProps, PageContainer, type PageContainerProps, PageHeader, type PageHeaderProps, type PaginatedResponse, Popover, type PopoverProps, Radio, type RadioProps, Select, type SelectProps, Slider, type SliderProps, Switch, type SwitchProps, Tab, TabGroup, type TabGroupProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, Tag, type TagProps, Tooltip, type TooltipProps, Typography, type TypographyProps, UpComponentsProvider, capitalize, copyToClipboard, formatDate, formatFileSize, formatNumber, theme, useAlert, useDebounce, useQueryParams, useRemotePagination };
2799
+ export { Alert, type AlertProps, Avatar, type AvatarProps, Badge, type BadgeProps, Banner, type BannerProps, Button, type ButtonProps, Checkbox, type CheckboxProps, CodeInline, type CodeInlineProps, CodeSnippet, type CodeSnippetItemProps, type CodeSnippetProps, ContactBox, type ContactBoxProps, ControlButton, type ControlButtonProps, CopyButton, type CopyButtonProps, type CreateAlertProps, DataGrid, type DataGridProps, type DatePickerDateType, DateTime, type DateTimeProps, Divider, type DividerProps, DocumentationPopover, type DocumentationPopoverProps, EmptyState, type EmptyStateProps, FormCheckbox, type FormCheckboxProps, FormDatePicker, type FormDatePickerProps, FormDateRangePicker, type FormDateRangePickerProps, FormInput, type FormInputProps, FormRadio, type FormRadioProps, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, GridContainer, type GridContainerProps, GridItem, type GridItemProps, Icon, type IconProps, Illustration, type IllustrationProps, InfoCard, type InfoCardProps, InfoModal, type InfoModalProps, InfoPopover, type InfoPopoverProps, Input, type InputProps, Link, type LinkProps, Loading, type LoadingProps, NotFound, type NotFoundProps, PageContainer, type PageContainerProps, PageHeader, type PageHeaderProps, type PaginatedResponse, Radio, type RadioProps, Select, type SelectProps, Slider, type SliderProps, Switch, type SwitchProps, Tab, TabGroup, type TabGroupProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, Tag, type TagProps, Typography, type TypographyProps, UpComponentsProvider, capitalize, copyToClipboard, formatDate, formatFileSize, formatNumber, theme, useAlert, useDebounce, useQueryParams, useRemotePagination };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@up42/up-components",
3
- "version": "2.3.0",
3
+ "version": "2.4.1",
4
4
  "description": "UP42 Component Library",
5
5
  "author": "Axel Fuhrmann axel.fuhrmann@up42.com",
6
6
  "license": "ISC",
@@ -1,8 +0,0 @@
1
- import React from 'react';
2
- import { BoxProps as MUIBoxProps } from '@mui/material';
3
- import { MUIGlobalOmit } from '@global/utils/types';
4
- export declare type BoxProps = MUIGlobalOmit<MUIBoxProps>;
5
- /**
6
- * Documentation: https://up-components.up42.com/?path=/docs/layout-box--docs
7
- */
8
- export declare const Box: React.ForwardRefExoticComponent<Pick<Omit<MUIBoxProps<"div", {}>, "classes" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple">, "className" | "style" | "children" | "sx" | "slot" | "title" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "component" | ("color" | "fontSize" | "p" | "height" | "width" | "display" | "fontFamily" | "fontStyle" | "fontWeight" | "letterSpacing" | "order" | "overflow" | "visibility" | "left" | "right" | "top" | "bottom" | "border" | "boxShadow" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyContent" | "justifyItems" | "justifySelf" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "whiteSpace" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & React.RefAttributes<unknown>>;
@@ -1 +0,0 @@
1
- export {};
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- import { MenuProps as MUIMenuProps } from '@mui/material';
3
- import { MenuItemProps as MUIMenuItemProps } from '@mui/material';
4
- import { MUIGlobalOmit } from '@global/utils/types';
5
- export declare type MenuProps = MUIGlobalOmit<MUIMenuProps>;
6
- /**
7
- * Documentation: https://up-components.up42.com/?path=/docs/navigation-menu--docs
8
- */
9
- export declare const Menu: React.ForwardRefExoticComponent<Pick<Omit<MUIMenuProps, "classes" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple">, "className" | "style" | "children" | "color" | "sx" | "slot" | "title" | "id" | "lang" | "role" | "elevation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoFocus" | "open" | "transformOrigin" | "transitionDuration" | "container" | "variant" | "components" | "componentsProps" | "onClose" | "slotProps" | "slots" | "anchorEl" | "disablePortal" | "keepMounted" | "closeAfterTransition" | "disableAutoFocus" | "disableEnforceFocus" | "disableEscapeKeyDown" | "disableRestoreFocus" | "disableScrollLock" | "hideBackdrop" | "onBackdropClick" | "TransitionComponent" | "BackdropComponent" | "BackdropProps" | "TransitionProps" | "anchorOrigin" | "anchorPosition" | "anchorReference" | "marginThreshold" | "PaperProps" | "disableAutoFocusItem" | "MenuListProps" | "PopoverClasses"> & React.RefAttributes<unknown>>;
10
- export declare type MenuItemProps = MUIGlobalOmit<MUIMenuItemProps>;
11
- export declare const MenuItem: (props: MenuItemProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import { ModalProps as MUIModalProps } from '@mui/material';
3
- import { MUIGlobalOmit } from '@global/utils/types';
4
- export declare type ModalProps = MUIGlobalOmit<MUIModalProps>;
5
- /**
6
- * Documentation: https://up-components.up42.com/?path=/docs/feedback-modal--docs
7
- */
8
- export declare const Modal: ({ children, ...props }: ModalProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import { PopoverProps as MUIPopoverProps } from '@mui/material';
3
- import { MUIGlobalOmit } from '@global/utils/types';
4
- export declare type PopoverProps = MUIGlobalOmit<MUIPopoverProps>;
5
- /**
6
- * Documentation: https://up-components.up42.com/?path=/docs/data-display-popover--docs
7
- */
8
- export declare const Popover: ({ children, ...props }: PopoverProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { TooltipProps as MUITooltipProps } from '@mui/material';
3
- export declare type TooltipProps = Omit<MUITooltipProps, 'TransitionComponent' | 'TransitionProps' | 'PopperComponent' | 'followCursor'>;
4
- /**
5
- * Documentation: https://up-components.up42.com/?path=/docs/data-display-tooltip--docs
6
- */
7
- export declare const Tooltip: ({ children, ...props }: TooltipProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- import React from 'react';
2
- import { BoxProps as MUIBoxProps } from '@mui/material';
3
- import { MUIGlobalOmit } from '@global/utils/types';
4
- export declare type BoxProps = MUIGlobalOmit<MUIBoxProps>;
5
- /**
6
- * Documentation: https://up-components.up42.com/?path=/docs/layout-box--docs
7
- */
8
- export declare const Box: React.ForwardRefExoticComponent<Pick<Omit<MUIBoxProps<"div", {}>, "classes" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple">, "className" | "style" | "children" | "sx" | "slot" | "title" | "id" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "component" | ("color" | "fontSize" | "p" | "height" | "width" | "display" | "fontFamily" | "fontStyle" | "fontWeight" | "letterSpacing" | "order" | "overflow" | "visibility" | "left" | "right" | "top" | "bottom" | "border" | "boxShadow" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyContent" | "justifyItems" | "justifySelf" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "whiteSpace" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & React.RefAttributes<unknown>>;
@@ -1 +0,0 @@
1
- export {};
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- import { MenuProps as MUIMenuProps } from '@mui/material';
3
- import { MenuItemProps as MUIMenuItemProps } from '@mui/material';
4
- import { MUIGlobalOmit } from '@global/utils/types';
5
- export declare type MenuProps = MUIGlobalOmit<MUIMenuProps>;
6
- /**
7
- * Documentation: https://up-components.up42.com/?path=/docs/navigation-menu--docs
8
- */
9
- export declare const Menu: React.ForwardRefExoticComponent<Pick<Omit<MUIMenuProps, "classes" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple">, "className" | "style" | "children" | "color" | "sx" | "slot" | "title" | "id" | "lang" | "role" | "elevation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoFocus" | "open" | "transformOrigin" | "transitionDuration" | "container" | "variant" | "components" | "componentsProps" | "onClose" | "slotProps" | "slots" | "anchorEl" | "disablePortal" | "keepMounted" | "closeAfterTransition" | "disableAutoFocus" | "disableEnforceFocus" | "disableEscapeKeyDown" | "disableRestoreFocus" | "disableScrollLock" | "hideBackdrop" | "onBackdropClick" | "TransitionComponent" | "BackdropComponent" | "BackdropProps" | "TransitionProps" | "anchorOrigin" | "anchorPosition" | "anchorReference" | "marginThreshold" | "PaperProps" | "disableAutoFocusItem" | "MenuListProps" | "PopoverClasses"> & React.RefAttributes<unknown>>;
10
- export declare type MenuItemProps = MUIGlobalOmit<MUIMenuItemProps>;
11
- export declare const MenuItem: (props: MenuItemProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import { ModalProps as MUIModalProps } from '@mui/material';
3
- import { MUIGlobalOmit } from '@global/utils/types';
4
- export declare type ModalProps = MUIGlobalOmit<MUIModalProps>;
5
- /**
6
- * Documentation: https://up-components.up42.com/?path=/docs/feedback-modal--docs
7
- */
8
- export declare const Modal: ({ children, ...props }: ModalProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import { PopoverProps as MUIPopoverProps } from '@mui/material';
3
- import { MUIGlobalOmit } from '@global/utils/types';
4
- export declare type PopoverProps = MUIGlobalOmit<MUIPopoverProps>;
5
- /**
6
- * Documentation: https://up-components.up42.com/?path=/docs/data-display-popover--docs
7
- */
8
- export declare const Popover: ({ children, ...props }: PopoverProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { TooltipProps as MUITooltipProps } from '@mui/material';
3
- export declare type TooltipProps = Omit<MUITooltipProps, 'TransitionComponent' | 'TransitionProps' | 'PopperComponent' | 'followCursor'>;
4
- /**
5
- * Documentation: https://up-components.up42.com/?path=/docs/data-display-tooltip--docs
6
- */
7
- export declare const Tooltip: ({ children, ...props }: TooltipProps) => JSX.Element;
@@ -1 +0,0 @@
1
- export {};