@officesdk/design 0.1.11 → 0.1.12

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.
@@ -403,6 +403,14 @@ interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, '
403
403
  * Custom inline styles
404
404
  */
405
405
  style?: React.CSSProperties;
406
+ /**
407
+ * Custom input className
408
+ */
409
+ inputClassName?: string;
410
+ /**
411
+ * Custom input styles
412
+ */
413
+ inputStyle?: React.CSSProperties;
406
414
  }
407
415
  /**
408
416
  * Input Component
@@ -2207,6 +2207,8 @@ var Input = forwardRef(
2207
2207
  clearIcon,
2208
2208
  className,
2209
2209
  style,
2210
+ inputClassName,
2211
+ inputStyle,
2210
2212
  onFocus,
2211
2213
  onBlur,
2212
2214
  value,
@@ -2288,6 +2290,8 @@ var Input = forwardRef(
2288
2290
  onChange: handleChange,
2289
2291
  onFocus: handleFocus,
2290
2292
  onBlur: handleBlur,
2293
+ className: inputClassName,
2294
+ style: inputStyle,
2291
2295
  ...rest
2292
2296
  }
2293
2297
  ), clearButtonNode),