@bigbinary/neetoui 5.2.13 → 5.2.14

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/index.d.ts CHANGED
@@ -566,6 +566,14 @@ export type KbdProps = {
566
566
  tooltipProps?: TooltipProps;
567
567
  };
568
568
 
569
+ export type SliderProps = {
570
+ min?: number;
571
+ max?: number;
572
+ defaultValue?: number;
573
+ onChange?: (value: number) => void;
574
+ value?: number | number[];
575
+ };
576
+
569
577
  export type NoDataProps = {
570
578
  title?: string;
571
579
  description?: string;
@@ -708,6 +716,7 @@ export const Pagination: React.FC<PaginationProps>;
708
716
  export const Select: React.ForwardRefExoticComponent<SelectProps>;
709
717
  export const Spinner: React.FC<SpinnerProps>;
710
718
  export const Switch: React.ForwardRefExoticComponent<SwitchProps>;
719
+ export const Slider: React.ForwardRefExoticComponent<SliderProps>;
711
720
  export const Table: React.FC<TableProps>;
712
721
  export const Tag: React.FC<TagProps>;
713
722
  export const Textarea: React.ForwardRefExoticComponent<TextareaProps>;