@domql/emotion 2.0.7 → 2.0.8

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -6,7 +6,7 @@ import { classList } from '@domql/mixins'
6
6
 
7
7
  import { css } from '@emotion/css'
8
8
 
9
- export const style = (params, element, node) => {
9
+ const style = (params, element, node) => {
10
10
  const execPareams = exec(params, element)
11
11
  if (params) {
12
12
  if (isObjectLike(element.class)) element.class.style = execPareams
@@ -15,7 +15,7 @@ export const style = (params, element, node) => {
15
15
  classf(element.class, element, node)
16
16
  }
17
17
 
18
- export const classf = (element, node) => {
18
+ const classf = (element, node) => {
19
19
  const params = element.class
20
20
  if (isObjectLike(params)) {
21
21
  const classObjHelper = {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/emotion",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -12,6 +12,6 @@
12
12
  "scripts": {
13
13
  "vpatch": "npm version patch && npm publish --access public"
14
14
  },
15
- "gitHead": "6d9ef59d4aa1f481159f8fdbe38112479e86e21a",
15
+ "gitHead": "b60c46e45c462d00976902d6cdbea6fd5504542b",
16
16
  "source": "index.js"
17
17
  }