ados-rcm 1.0.592 → 1.0.594
Sign up to get free protection for your applications and to get access to all the features.
@@ -47,6 +47,12 @@ export interface IAClockProps extends IAWrapProps, IABaseProps {
|
|
47
47
|
* Description : onFinish of AClock
|
48
48
|
*/
|
49
49
|
onFinish?: () => void;
|
50
|
+
/**
|
51
|
+
* noStartOnRender? : boolean
|
52
|
+
*
|
53
|
+
* Description : if true, AClock will not start on render
|
54
|
+
*/
|
55
|
+
noStartOnRender?: boolean;
|
50
56
|
/**
|
51
57
|
* actionRef? : TActionRef<IAClockActions>
|
52
58
|
*
|
@@ -22,6 +22,10 @@ export interface IADateRangePickerProps extends Omit<IADatePickerProps, 'useDate
|
|
22
22
|
* Description : useDateRange of ADateRangePicker
|
23
23
|
*/
|
24
24
|
useDateRange?: TUseValues<IDateRange | undefined, IDateRange>;
|
25
|
+
/**
|
26
|
+
* yearsOptionSize? : number = 5
|
27
|
+
*/
|
28
|
+
yearsOptionSize?: number;
|
25
29
|
/**
|
26
30
|
* resources : Partial<typeof Resources.ADateRangePicker>;
|
27
31
|
*
|