domql 1.4.5 → 1.4.6

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
@@ -3,7 +3,7 @@
3
3
  "description": "DOM rendering Javascript framework at early stage.",
4
4
  "private": false,
5
5
  "author": "rackai",
6
- "version": "1.4.5",
6
+ "version": "1.4.6",
7
7
  "repository": "https://github.com/rackai/domql",
8
8
  "publishConfig": {
9
9
  "registry": "https://registry.npmjs.org"
@@ -16,7 +16,7 @@ const {
16
16
  css,
17
17
  sheet,
18
18
  cache
19
- } = createEmotion({ key: 'symbols' })
19
+ } = createEmotion({ key: 'smbls' })
20
20
 
21
21
  const style = (params, element, node) => {
22
22
  const execPareams = exec(params, element)
@@ -33,6 +33,7 @@ const classf = (params, element, node) => {
33
33
  for (const key in params) {
34
34
  const prop = exec(params[key], element)
35
35
  if (!prop) continue
36
+ prop.label = key
36
37
  const CSSed = css(prop)
37
38
  classObjHelper[key] = CSSed
38
39
  }