@4alldigital/foundation-ui--core 3.4.0 → 3.4.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@4alldigital/foundation-ui--core",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "Foundation UI Core Component Library (source distribution)",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "author": "Joe Mewes",
34
34
  "license": "MIT",
35
- "gitHead": "588323f234033e2394e15a7ff030cf57888f6708"
35
+ "gitHead": "c0bf0a089038c5d82870b126bec475a1b16f0f37"
36
36
  }
@@ -5,13 +5,11 @@ import React, { useContext } from 'react';
5
5
  interface ThemeContextProps {
6
6
  isDarkTheme: boolean;
7
7
  toggleTheme: () => void;
8
- theme?: any;
9
8
  }
10
9
 
11
10
  export const defaultTheme: ThemeContextProps = {
12
11
  isDarkTheme: false,
13
12
  toggleTheme: () => {},
14
- theme: undefined,
15
13
  };
16
14
 
17
15
  export const ThemeContext = React.createContext<ThemeContextProps>(defaultTheme);