@bitrise/bitkit 12.3.0 → 12.3.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "12.3.0",
4
+ "version": "12.3.2",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -6,7 +6,11 @@ import { DropdownGroup } from '../DropdownOption';
6
6
 
7
7
  const NoResultsFound = ({ children }: { children: ReactNode }) => {
8
8
  const { item } = useDropdownStyles();
9
- return <chakra.div __css={item}>{children}</chakra.div>;
9
+ return (
10
+ <chakra.div __css={item} cursor="default">
11
+ {children}
12
+ </chakra.div>
13
+ );
10
14
  };
11
15
  function useSimpleSearch({ children, onSearch }: { children?: ReactNode; onSearch?: () => void }) {
12
16
  const [searchValue, setSearchValue] = useState('');
package/src/index.ts CHANGED
@@ -154,6 +154,7 @@ export {
154
154
  DropdownGroup,
155
155
  DropdownSearch,
156
156
  NoResultsFound as DropdownNoResultsFound,
157
+ DropdownDetailedOption,
157
158
  typedDropdown,
158
159
  } from './Components/Dropdown/Dropdown';
159
160