hrm_ui_lib 4.0.0 → 4.0.1
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.
|
@@ -34,7 +34,7 @@ export interface ITimePickerProps extends TDatepickerBaseProps {
|
|
|
34
34
|
}
|
|
35
35
|
export interface IRangeDatePickerProps extends TDatepickerBaseProps {
|
|
36
36
|
currentDates?: TRangePickerValues;
|
|
37
|
-
changeHandler
|
|
37
|
+
changeHandler?: (date: TRangePickerValues) => void;
|
|
38
38
|
maxDate?: Date | undefined;
|
|
39
39
|
value?: [Date, Date];
|
|
40
40
|
}
|
|
@@ -19,7 +19,7 @@ export interface TRadioGroupProps extends IFormCompProps {
|
|
|
19
19
|
label?: string | ReactElement;
|
|
20
20
|
className?: string;
|
|
21
21
|
isHorizontal?: boolean;
|
|
22
|
-
selected
|
|
22
|
+
selected?: number | string;
|
|
23
23
|
options: TRadioOptionItem[];
|
|
24
24
|
handleChange?: (selected: number | string) => void;
|
|
25
25
|
required?: boolean;
|
package/package.json
CHANGED
package/type/base.d.ts
CHANGED