@bitrise/bitkit 9.40.0-alpha-chakra.1 → 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.
|
package/src/index.ts
CHANGED
|
@@ -129,3 +129,6 @@ export { default as Radio } from './Components/Form/Radio/Radio';
|
|
|
129
129
|
|
|
130
130
|
export type { RadioGroupProps } from './Components/Form/Radio/RadioGroup';
|
|
131
131
|
export { default as RadioGroup } from './Components/Form/Radio/RadioGroup';
|
|
132
|
+
|
|
133
|
+
export type { ImageProps } from './Components/Image/Image';
|
|
134
|
+
export { default as Image } from './Components/Image/Image';
|
package/src/old.ts
CHANGED
|
@@ -79,9 +79,6 @@ export { default as Grid } from './Old/Grid/Grid';
|
|
|
79
79
|
export type { Props as HamburgerProps } from './Old/Hamburger/Hamburger';
|
|
80
80
|
export { default as Hamburger } from './Old/Hamburger/Hamburger';
|
|
81
81
|
|
|
82
|
-
export type { Props as ImageProps } from './Old/Image/Image';
|
|
83
|
-
export { default as Image } from './Old/Image/Image';
|
|
84
|
-
|
|
85
82
|
export type { Props as InputProps } from './Old/Input/Input';
|
|
86
83
|
export { default as Input } from './Old/Input/Input';
|
|
87
84
|
|