@bitrise/bitkit 9.4.4-alpha-chakra.1 → 9.4.4

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.4.4-alpha-chakra.1",
4
+ "version": "9.4.4",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "lib/cjs/index.js",
7
7
  "esnext": "lib/esn/index.js",
package/release.config.js CHANGED
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- branches: ['master', { name: 'alpha', prerelease: true }, { name: 'alpha-*', prerelease: true }],
2
+ branches: ['master', { name: 'alpha', prerelease: true }],
3
3
  plugins: [
4
4
  [
5
5
  '@semantic-release/commit-analyzer',
package/src/index.ts CHANGED
@@ -102,3 +102,4 @@ export { default as Visibility, Props as VisibilityProps } from './Visibility/Vi
102
102
  export { default as VisibilityContainer, Props as VisibilityContainerProps } from './Visibility/VisibilityContainer';
103
103
 
104
104
  export { default as Provider } from './Components/Provider/Provider';
105
+ export { default as theme } from './theme';
package/src/theme.ts CHANGED
@@ -1,5 +1,3 @@
1
- import { SystemStyleObject } from '@chakra-ui/react';
2
-
3
1
  import colors from './Foundations/Colors/Colors';
4
2
  import radii from './Foundations/Radii/Radii.theme';
5
3
  import shadows from './Foundations/Shadows/Shadows';
@@ -34,6 +32,6 @@ const theme = {
34
32
  components: {
35
33
  Text,
36
34
  },
37
- } as SystemStyleObject;
35
+ };
38
36
 
39
37
  export default theme;