@useloops/design-system 1.4.126 → 1.4.128

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/index.d.ts CHANGED
@@ -1,15 +1,14 @@
1
1
  import react, { ReactElement, FunctionComponent, ChangeEvent, PropsWithChildren, ReactNode, FC, Dispatch, SetStateAction } from 'react';
2
2
  import * as _mui_material from '@mui/material';
3
- import { AvatarGroupProps as AvatarGroupProps$1, SxProps, ButtonProps as ButtonProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, MenuProps, MenuItemProps, FormControlLabelProps as FormControlLabelProps$1, Theme, Breakpoint, IconButtonProps as IconButtonProps$1, ButtonGroupProps, LinkProps as LinkProps$1, SelectProps as SelectProps$1, SelectChangeEvent, TextFieldProps as TextFieldProps$1, PaperProps, SwitchProps as SwitchProps$1, TypographyProps as TypographyProps$1, PaletteMode, Direction } from '@mui/material';
3
+ import { AvatarGroupProps as AvatarGroupProps$1, SxProps, ButtonProps as ButtonProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, MenuProps, MenuItemProps, FormControlLabelProps as FormControlLabelProps$1, Theme, Breakpoint, IconButtonProps as IconButtonProps$1, ButtonGroupProps, LinkProps as LinkProps$1, SelectProps as SelectProps$1, SelectChangeEvent, TextFieldProps as TextFieldProps$1, PaperProps, SwitchProps as SwitchProps$1, TypographyProps as TypographyProps$1, TooltipProps as TooltipProps$1, PaletteMode, Direction } from '@mui/material';
4
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
5
5
  import { Theme as Theme$1 } from '@mui/material/styles';
6
- import * as _mui_system from '@mui/system';
7
- import { SxProps as SxProps$1, Theme as Theme$2 } from '@mui/system';
8
6
  import { NumericFormatProps } from 'react-number-format';
9
7
  import { InputFieldBaseProps as InputFieldBaseProps$1 } from 'WebCore/InputFieldBase';
10
8
  import { UniqueIdentifier } from '@dnd-kit/core';
11
9
  import { InputLabelHelpProps as InputLabelHelpProps$1 } from 'WebCore/InputLabelHelp';
12
10
  import * as _emotion_styled from '@emotion/styled';
11
+ import * as _mui_system from '@mui/system';
13
12
  import { SubmitHandler } from 'react-hook-form';
14
13
  import { CustomFieldProps as CustomFieldProps$1 } from 'WebCore/CustomField';
15
14
 
@@ -443,8 +442,8 @@ interface LinkProps {
443
442
  target?: string;
444
443
  onClick?: StyledLinkProps['onClick'];
445
444
  disabled?: boolean;
446
- sx?: SxProps$1<Theme$2>;
447
- underline?: "none" | "hover" | "always" | undefined;
445
+ sx?: SxProps<Theme>;
446
+ underline?: 'none' | 'hover' | 'always' | undefined;
448
447
  noWrap?: boolean;
449
448
  component?: any;
450
449
  rel?: any;
@@ -704,6 +703,7 @@ declare const Toast: FunctionComponent<ToastProps>;
704
703
  interface TooltipProps extends PropsWithChildren {
705
704
  message: string;
706
705
  variation?: 'primary';
706
+ placement?: TooltipProps$1['placement'];
707
707
  }
708
708
  declare const Tooltip: FunctionComponent<TooltipProps>;
709
709