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.
- package/dist/components/InputTextField/InputTextField.d.ts +1 -0
- package/dist/components/OtpInput/OtpInput.d.ts +1 -0
- package/dist/components/RangeSlider/RangeSlider.d.ts +1 -0
- package/dist/components/Tabs/Tabs.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +45 -29
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +45 -29
- package/dist/index.js.map +1 -1
- package/dist/theme/colors/colors.scss +54 -54
- package/package.json +71 -71
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
|
|