@bitrise/bitkit 9.40.0 → 9.40.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
|
import { CheckboxGroup as ChakraCheckboxGroup, CheckboxGroupProps as ChakraCheckboxGroupProps } from '@chakra-ui/react';
|
|
2
2
|
import Box, { BoxProps } from '../../Box/Box';
|
|
3
3
|
|
|
4
|
-
export type CheckboxGroupProps = ChakraCheckboxGroupProps & BoxProps
|
|
4
|
+
export type CheckboxGroupProps = ChakraCheckboxGroupProps & Omit<BoxProps, 'onChange'>;
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* CheckboxGroup component to help manage the checked state of its children Checkbox components and conveniently pass a few shared style props to each.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RadioGroup as ChakraRadioGroup, RadioGroupProps as ChakraRadioGroupProps } from '@chakra-ui/react';
|
|
2
2
|
import Box, { BoxProps } from '../../Box/Box';
|
|
3
3
|
|
|
4
|
-
export type RadioGroupProps = ChakraRadioGroupProps & BoxProps
|
|
4
|
+
export type RadioGroupProps = ChakraRadioGroupProps & Omit<BoxProps, 'onChange'>;
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* RadioGroup component to help manage Radio components and conveniently pass a few shared style props to each.
|