@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/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: number;
625
- max: number;
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;