@bitrise/bitkit 9.40.0-alpha-chakra.1 → 9.40.0-alpha-chakra.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 +1 -1
- package/src/index.ts +3 -0
- package/src/old.ts +0 -3
- package/src/tsconfig.tsbuildinfo +1 -1
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.40.0-alpha-chakra.
|
|
4
|
+
"version": "9.40.0-alpha-chakra.2",
|
|
5
5
|
"repository": "git@github.com:bitrise-io/bitkit.git",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"license": "UNLICENSED",
|
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
|
|