@appquality/unguess-design-system 0.3.0 → 0.3.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.
@@ -1,7 +1,7 @@
1
1
  import { ThemeProvider } from "@zendeskgarden/react-theming";
2
2
  import { Chrome } from '@zendeskgarden/react-chrome';
3
3
  import GlobalStyle from "../src/stories/shared/globalStyle";
4
- import theme from '../src/stories/theme';
4
+ import { theme } from '../src/stories/theme';
5
5
 
6
6
 
7
7
  export const decorators = [
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v0.3.1 (Thu Mar 03 2022)
2
+
3
+ #### ⚠️ Pushed to `master`
4
+
5
+ - feat: change theme export ([@cannarocks](https://github.com/cannarocks))
6
+
7
+ #### Authors: 1
8
+
9
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
10
+
11
+ ---
12
+
1
13
  # v0.2.0 (Thu Mar 03 2022)
2
14
 
3
15
  #### 🚀 Enhancement
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appquality/unguess-design-system",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "dependencies": {
5
5
  "@zendeskgarden/react-buttons": "^8.48.2",
6
6
  "@zendeskgarden/react-chrome": "^8.48.2",
@@ -1,5 +1,5 @@
1
1
  import { createGlobalStyle } from "styled-components";
2
- import theme from "../theme";
2
+ import { theme } from "../theme";
3
3
 
4
4
  const GlobalStyle = createGlobalStyle`
5
5
  body {
@@ -1,6 +1,6 @@
1
1
  import { DEFAULT_THEME } from "@zendeskgarden/react-theming";
2
2
 
3
- const theme = {
3
+ export const theme = {
4
4
  ...DEFAULT_THEME,
5
5
  colors: {
6
6
  ...DEFAULT_THEME.colors,
@@ -12,5 +12,3 @@ const theme = {
12
12
  system: '"Poppins",sans-serif,Helvetica,Arial,sans-serif',
13
13
  },
14
14
  };
15
-
16
- export default theme;