@bitrise/bitkit 9.36.0 → 9.36.1

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": "9.36.0",
4
+ "version": "9.36.1",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -2,12 +2,13 @@ import type { SystemStyleObject } from '@chakra-ui/theme-tools';
2
2
 
3
3
  const PopoverTheme: SystemStyleObject = {
4
4
  baseStyle: {
5
+ popper: {
6
+ zIndex: 'popover',
7
+ },
5
8
  content: {
6
9
  backgroundColor: 'neutral.100',
7
10
  borderRadius: 8,
8
11
  boxShadow: 'large',
9
- py: 24,
10
- px: 32,
11
12
  },
12
13
  },
13
14
  };
@@ -1,6 +1,6 @@
1
1
  import { FC } from 'react';
2
2
  import { PopoverTrigger as ChakraPopoverTrigger } from '@chakra-ui/react';
3
3
 
4
- const PopoverTigger: FC = (props) => <ChakraPopoverTrigger {...props} />;
4
+ const PopoverTrigger: FC = (props) => <ChakraPopoverTrigger {...props} />;
5
5
 
6
- export default PopoverTigger;
6
+ export default PopoverTrigger;
@@ -7,6 +7,7 @@ const zIndices = {
7
7
  fullDialog: 1200,
8
8
  dialogOverlay: 1299,
9
9
  dialog: 1300,
10
+ popover: 1400,
10
11
  };
11
12
 
12
13
  export default zIndices;