@useloops/design-system 1.4.113 → 1.4.115
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 +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ import { UniqueIdentifier } from '@dnd-kit/core';
|
|
|
12
12
|
import * as _emotion_styled from '@emotion/styled';
|
|
13
13
|
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
14
14
|
import { SubmitHandler } from 'react-hook-form';
|
|
15
|
-
import { SurfaceProps as SurfaceProps$1 } from 'WebCore/Surface';
|
|
16
15
|
|
|
17
16
|
interface ColorRange {
|
|
18
17
|
0: string;
|
|
@@ -453,6 +452,7 @@ type NumberFieldProps = InputFieldBaseProps$1 & {
|
|
|
453
452
|
numericFormatProps?: NumericFormatProps;
|
|
454
453
|
onChange?: (value: number | null) => void;
|
|
455
454
|
step?: number;
|
|
455
|
+
internalChange?: () => void;
|
|
456
456
|
value?: number | null;
|
|
457
457
|
};
|
|
458
458
|
declare const NumberField: FunctionComponent<NumberFieldProps>;
|
|
@@ -832,7 +832,7 @@ declare const passwordValidation: (min?: number) => {
|
|
|
832
832
|
};
|
|
833
833
|
};
|
|
834
834
|
|
|
835
|
-
interface AuthContainerSurfaceProps extends SurfaceProps
|
|
835
|
+
interface AuthContainerSurfaceProps extends SurfaceProps {
|
|
836
836
|
headContent?: ReactNode;
|
|
837
837
|
}
|
|
838
838
|
declare const AuthContainerSurface: FunctionComponent<AuthContainerSurfaceProps>;
|