hplx-react-elements-dev 1.1.52 → 1.1.54
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,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { RadioBtnProps } from "../types";
|
|
3
|
-
declare const RadioBtn: ({ size, disabled, iconfile, id, text, secondaryText, className, value, onChange, checked, }: RadioBtnProps) => JSX.Element;
|
|
3
|
+
declare const RadioBtn: ({ size, disabled, iconfile, id, text, secondaryText, className, value, onChange, checked, name, }: RadioBtnProps) => JSX.Element;
|
|
4
4
|
export default RadioBtn;
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -308,6 +308,7 @@ export interface RadioBtnProps {
|
|
|
308
308
|
className?: any;
|
|
309
309
|
onChange: (event: any) => void;
|
|
310
310
|
checked?: any;
|
|
311
|
+
name?: string;
|
|
311
312
|
}
|
|
312
313
|
export type ToggleSwitchThemeType = "Dark" | "Light";
|
|
313
314
|
export type ToggleSwitchSizeType = "sm" | "md";
|
|
@@ -434,6 +435,15 @@ export interface AddSuggestionProps {
|
|
|
434
435
|
getInputValue?: (value: string) => void;
|
|
435
436
|
}
|
|
436
437
|
export interface DoubleInputProps {
|
|
438
|
+
fieldColor?: string;
|
|
439
|
+
selectDate?: any;
|
|
440
|
+
dateVar?: (val: Date) => void;
|
|
441
|
+
placeholder?: string;
|
|
442
|
+
width?: string;
|
|
443
|
+
isborderRequired?: boolean;
|
|
444
|
+
disable?: boolean;
|
|
445
|
+
disabledDates?: Date[];
|
|
446
|
+
isCalendar?: boolean;
|
|
437
447
|
label?: string;
|
|
438
448
|
labelSize?: typographyTextType;
|
|
439
449
|
labelColor?: string;
|