react-frontend-common-components 0.0.71 → 0.0.72

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-frontend-common-components",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "description": "Reusable frontend library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -16,6 +16,7 @@ interface AppSelectProps extends SelectProps {
16
16
  required?: boolean;
17
17
  placeholder?: string;
18
18
  errorMessage?: string;
19
+ showSearch?:boolean;
19
20
  }
20
21
 
21
22
  const AppSelect = ({
@@ -26,12 +27,14 @@ const AppSelect = ({
26
27
  placeholder,
27
28
  className,
28
29
  errorMessage,
30
+ showSearch,
29
31
  ...props
30
32
  }: AppSelectProps) => {
31
33
  return (
32
34
  <div className={`appselect ${className}`}>
33
35
  <Select
34
36
  className={"select"}
37
+ showSearch={showSearch}
35
38
  disabled={disabled}
36
39
  value={value}
37
40
  placeholder={placeholder}