ados-rcm 1.1.788 → 1.1.789

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.
@@ -17,7 +17,6 @@ export interface IADatePickerProps extends IABaseProps, IAWrapProps {
17
17
  RightAddon?: React.ReactNode;
18
18
  actionRef?: TActionRef<IADatePickerActions>;
19
19
  autoClose?: boolean;
20
- canTabOpen?: boolean;
21
20
  icon?: TIcons | Exclude<React.ReactNode, string>;
22
21
  iconSize?: TIconSize;
23
22
  innerInputProps?: React.InputHTMLAttributes<HTMLInputElement>;
@@ -75,11 +75,11 @@ interface IDateRangeInputHandlersConfig {
75
75
  localDr?: IDateRange;
76
76
  maxDate?: Date;
77
77
  minDate?: Date;
78
+ onError: () => void;
78
79
  setEndInputValue: (value: string) => void;
79
80
  setLocalDr: (dr?: IDateRange) => void;
80
81
  setPage: (page: ICalendarPage) => void;
81
82
  setStartInputValue: (value: string) => void;
82
- showDateError: () => void;
83
83
  startInputValue: string;
84
84
  updateDateRange: (newDr?: IDateRange) => void;
85
85
  }
@@ -35,6 +35,12 @@ export interface IAInputProps extends IABaseProps, IAWrapProps {
35
35
  * Description : dataList of AInput
36
36
  */
37
37
  dataList?: string[] | readonly string[];
38
+ /**
39
+ * gap? : number
40
+ *
41
+ * Description : gap of AInput
42
+ */
43
+ gap?: number;
38
44
  /**
39
45
  * inputProps? : React.InputHTMLAttributes<HTMLInputElement>
40
46
  *