ados-rcm 1.1.306 → 1.1.307

Sign up to get free protection for your applications and to get access to all the features.
@@ -92,17 +92,29 @@ export interface IADialogProps {
92
92
  */
93
93
  contentStyle?: React.CSSProperties;
94
94
  /**
95
- * buttonStyle? : React.CSSProperties
95
+ * okButtonStyle? : React.CSSProperties
96
96
  *
97
- * Description : buttonStyle of the dialog
97
+ * Description : okButtonStyle of the dialog
98
98
  */
99
- buttonStyle?: React.CSSProperties;
99
+ okButtonStyle?: React.CSSProperties;
100
+ /**
101
+ * cancelButtonStyle? : React.CSSProperties
102
+ *
103
+ * Description : cancelButtonStyle of the dialog
104
+ */
105
+ cancelButtonStyle?: React.CSSProperties;
100
106
  /**
101
107
  * actionStyle? : React.CSSProperties
102
108
  *
103
109
  * Description : actionStyle of the dialog
104
110
  */
105
111
  actionStyle?: React.CSSProperties;
112
+ /**
113
+ * isInteractive? : boolean = true
114
+ *
115
+ * Description : if true, action buttons are interactive
116
+ */
117
+ isInteractive?: boolean;
106
118
  /**
107
119
  * onOk : (e: IAEvent) => void;
108
120
  *
@@ -307,7 +307,7 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
307
307
  /**
308
308
  * validation? : (value?: Date) => string | undefined
309
309
  *
310
- * Description : validation of the String filter
310
+ * Description : validation of the Date filter
311
311
  */
312
312
  validation?: (value?: Date) => string;
313
313
  };
@@ -381,7 +381,7 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
381
381
  /**
382
382
  * validation? : (value?: IDateRange) => string | undefined
383
383
  *
384
- * Description : validation of the String filter
384
+ * Description : validation of the DateRange filter
385
385
  */
386
386
  validation?: (value?: IDateRange) => string;
387
387
  };