react-frontend-common-components 0.0.55 → 0.0.56

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.
package/dist/index.d.ts CHANGED
@@ -29,7 +29,7 @@ interface AppInputProps {
29
29
  suffixIcon?: React.ReactNode;
30
30
  prefixIcon?: React.ReactNode;
31
31
  }
32
- declare const AppInput: ({ className, label, name, value, dataTestId, type, id, disabled, handleChange, onClick, defaultValue, onPressEnter, isAutoFocus, triggerFocus, isOptional, errorMessage, suffixIcon, prefixIcon, }: AppInputProps) => react_jsx_runtime.JSX.Element;
32
+ declare const AppInput: ({ className, label, name, value, dataTestId, type, id, disabled, handleChange, onClick, defaultValue, onPressEnter, isAutoFocus, triggerFocus, isOptional, errorMessage, suffixIcon, prefixIcon, ...props }: AppInputProps) => react_jsx_runtime.JSX.Element;
33
33
 
34
34
  interface AppButtonProps {
35
35
  size?: "small" | "middle" | "large" | "default" | undefined;
@@ -130,7 +130,7 @@ interface AppChartProps {
130
130
  height?: number;
131
131
  width?: number;
132
132
  }
133
- declare const AppChart: ({ type, data, options, className, height, width, }: AppChartProps) => react_jsx_runtime.JSX.Element;
133
+ declare const AppChart: ({ type, data, options, className, height, width, ...props }: AppChartProps) => react_jsx_runtime.JSX.Element;
134
134
 
135
135
  interface ImageType {
136
136
  src: string;
@@ -309,7 +309,7 @@ interface AppSelectProps {
309
309
  placeholder?: string;
310
310
  errorMessage?: string;
311
311
  }
312
- declare const AppSelect: ({ value, handleChange, options, disabled, placeholder, className, errorMessage, }: AppSelectProps) => react_jsx_runtime.JSX.Element;
312
+ declare const AppSelect: ({ value, handleChange, options, disabled, placeholder, className, errorMessage, ...props }: AppSelectProps) => react_jsx_runtime.JSX.Element;
313
313
 
314
314
  interface AppSelectAddProps extends SelectProps {
315
315
  options?: SelectProps["options"];