dhre-component-lib 0.3.5 → 0.3.6

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.
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import "./InputTextField.module.scss";
2
3
  export interface CustomInputFieldProps {
3
4
  label?: string;
4
5
  value?: string;
@@ -12,6 +12,7 @@ interface OTPInputProps {
12
12
  showResendButton?: boolean;
13
13
  className?: string;
14
14
  inputClassName?: string;
15
+ icon: React.ReactNode;
15
16
  }
16
17
  declare const OTPInput: React.FC<OTPInputProps>;
17
18
  export default OTPInput;
@@ -8,6 +8,7 @@ interface rangeSlider {
8
8
  text2: string;
9
9
  getSliderValue?: React.ChangeEventHandler<HTMLInputElement>;
10
10
  value?: string;
11
+ rangeMultiples?: number;
11
12
  }
12
13
  declare const RangeSlider: (props: rangeSlider) => React.JSX.Element;
13
14
  export default RangeSlider;
@@ -8,6 +8,7 @@ interface TabsProps {
8
8
  tabs: Tab[];
9
9
  onTabChange: (selectedTab: Tab) => void;
10
10
  selectedTabValue?: string;
11
+ dot?: boolean;
11
12
  }
12
13
  declare const Tabs: React.FC<TabsProps>;
13
14
  export default Tabs;
package/dist/index.d.ts CHANGED
@@ -204,6 +204,7 @@ interface OTPInputProps {
204
204
  showResendButton?: boolean;
205
205
  className?: string;
206
206
  inputClassName?: string;
207
+ icon: React.ReactNode;
207
208
  }
208
209
  declare const OTPInput: React.FC<OTPInputProps>;
209
210
 
@@ -272,6 +273,7 @@ interface TabsProps {
272
273
  tabs: Tab[];
273
274
  onTabChange: (selectedTab: Tab) => void;
274
275
  selectedTabValue?: string;
276
+ dot?: boolean;
275
277
  }
276
278
  declare const Tabs: React.FC<TabsProps>;
277
279
 
@@ -358,6 +360,7 @@ interface rangeSlider {
358
360
  text2: string;
359
361
  getSliderValue?: React.ChangeEventHandler<HTMLInputElement>;
360
362
  value?: string;
363
+ rangeMultiples?: number;
361
364
  }
362
365
  declare const RangeSlider: (props: rangeSlider) => React.JSX.Element;
363
366