@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/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/bitrise.yml +1 -1
- package/lib/cjs/index.d.ts +1 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +3 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/theme.d.ts +248 -1
- package/lib/cjs/theme.d.ts.map +1 -1
- package/lib/cjs/theme.js.map +1 -1
- package/lib/cjs/tsconfig.tsbuildinfo +1 -1
- package/lib/esn/index.d.ts +1 -0
- package/lib/esn/index.d.ts.map +1 -1
- package/lib/esn/index.js +1 -0
- package/lib/esn/index.js.map +1 -1
- package/lib/esn/theme.d.ts +248 -1
- package/lib/esn/theme.d.ts.map +1 -1
- package/lib/esn/theme.js.map +1 -1
- package/lib/esn/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/release.config.js +1 -1
- package/src/index.ts +1 -0
- package/src/theme.ts +1 -3
package/package.json
CHANGED
package/release.config.js
CHANGED
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
|
-
}
|
|
35
|
+
};
|
|
38
36
|
|
|
39
37
|
export default theme;
|