smbls 0.9.6 → 0.9.7

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": "UI Library built on Scratch and DOMQL",
4
4
  "private": false,
5
5
  "author": "symbo.ls",
6
- "version": "0.9.6",
6
+ "version": "0.9.7",
7
7
  "repository": "https://github.com/symbo-ls/smbls",
8
8
  "main": "src/index.js",
9
9
  "files": [
package/src/Box.js CHANGED
@@ -4,7 +4,7 @@ import { Shape, Position, Theme, Block, Text, Overflow, Transition, Transform, R
4
4
 
5
5
  const PropsCSS = {
6
6
  class: {
7
- propStyle: ({ props }) => props && props.style
7
+ style: ({ props }) => props && props.style
8
8
  }
9
9
  }
10
10
 
package/src/Button.js CHANGED
@@ -7,7 +7,7 @@ const style = {
7
7
  border: 'none',
8
8
  outline: 0,
9
9
  cursor: 'pointer',
10
- fontFamily: 'default'
10
+ fontFamily: 'inherit'
11
11
  }
12
12
 
13
13
  export const Button = {
package/src/Media.js CHANGED
@@ -21,6 +21,9 @@ const execClass = (key, props, result, element) => {
21
21
  classExec = classExec.reduce((a, c) => merge(a, c), {})
22
22
  }
23
23
 
24
+ if (key === 'style') {
25
+ }
26
+
24
27
  for (const finalProp in classExec) {
25
28
  result[finalProp] = classExec[finalProp]
26
29
  }