@startupjs-ui/core 0.2.0-alpha.0 → 0.2.0-alpha.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
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.2.0-alpha.0",
7
+ "version": "0.2.0-alpha.1",
8
8
  "type": "module",
9
9
  "main": "index.js",
10
10
  "exports": {
@@ -22,5 +22,5 @@
22
22
  "startupjs": "*"
23
23
  },
24
24
  "license": "MIT",
25
- "gitHead": "a428246a18d0e7f77809043c8240253240d11d66"
25
+ "gitHead": "b48004779559b16c96a2a1995dab13b998eafce9"
26
26
  }
@@ -53,7 +53,7 @@ export default function CssVariables ({ meta, clear = true, children }) {
53
53
  }
54
54
  }
55
55
  }
56
- }, [JSON.stringify(meta)])
56
+ }, [JSON.stringify(meta), clear]) // eslint-disable-line react-hooks/exhaustive-deps
57
57
 
58
58
  return children || null
59
59
  }
@@ -129,7 +129,7 @@ export function transformOverrides (overrides, palette, Color) {
129
129
  return res
130
130
  }
131
131
 
132
- /* eslint-disable dot-notation, no-multi-spaces */
132
+ /* eslint-disable @stylistic/no-multi-spaces */
133
133
  export function prepareColorsObject (
134
134
  palette,
135
135
  Color,
@@ -262,4 +262,4 @@ export function prepareColorsObject (
262
262
 
263
263
  return { colors: C, palette: P, componentColors: CC }
264
264
  }
265
- /* eslint-enable dot-notation, no-multi-spaces */
265
+ /* eslint-enable @stylistic/no-multi-spaces */