@useloops/design-system 1.4.126 → 1.4.127
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/esm/index.js +4 -4
- package/dist/index.d.ts +3 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,13 +3,12 @@ import * as _mui_material from '@mui/material';
|
|
|
3
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';
|
|
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
|
|
447
|
-
underline?:
|
|
445
|
+
sx?: SxProps<Theme>;
|
|
446
|
+
underline?: 'none' | 'hover' | 'always' | undefined;
|
|
448
447
|
noWrap?: boolean;
|
|
449
448
|
component?: any;
|
|
450
449
|
rel?: any;
|