@useloops/design-system 1.4.122 → 1.4.124
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/README.md +4 -0
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { SxProps as SxProps$1, Theme as Theme$2 } from '@mui/system';
|
|
|
8
8
|
import { NumericFormatProps } from 'react-number-format';
|
|
9
9
|
import { InputFieldBaseProps as InputFieldBaseProps$1 } from 'WebCore/InputFieldBase';
|
|
10
10
|
import { UniqueIdentifier } from '@dnd-kit/core';
|
|
11
|
+
import { InputLabelHelpProps as InputLabelHelpProps$1 } from 'WebCore/InputLabelHelp';
|
|
11
12
|
import * as _emotion_styled from '@emotion/styled';
|
|
12
13
|
import { SubmitHandler } from 'react-hook-form';
|
|
13
14
|
import { CustomFieldProps as CustomFieldProps$1 } from 'WebCore/CustomField';
|
|
@@ -621,10 +622,10 @@ interface SliderProps {
|
|
|
621
622
|
labelLeft: string;
|
|
622
623
|
labelRight: string;
|
|
623
624
|
labelMiddle?: string;
|
|
624
|
-
min
|
|
625
|
-
max
|
|
626
|
-
labelRightProps?: InputLabelHelpProps;
|
|
627
|
-
labelLeftProps?: InputLabelHelpProps;
|
|
625
|
+
min?: number;
|
|
626
|
+
max?: number;
|
|
627
|
+
labelRightProps?: InputLabelHelpProps$1;
|
|
628
|
+
labelLeftProps?: InputLabelHelpProps$1;
|
|
628
629
|
internalChange?: () => void;
|
|
629
630
|
disabled?: boolean;
|
|
630
631
|
onChange?: (event: Event, value: number | number[], activeThumb: number) => void;
|