smbls 0.15.47 → 0.15.48

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.15.47",
6
+ "version": "0.15.48",
7
7
  "repository": "https://github.com/symbo-ls/smbls",
8
8
  "main": "src/index.js",
9
9
  "files": [
package/src/Select.js CHANGED
@@ -24,5 +24,10 @@ export const Select = {
24
24
  selected: ({ props }) => props.selected,
25
25
  disabled: ({ props }) => props.disabled
26
26
  }
27
+ },
28
+
29
+ attr: {
30
+ name: ({ props }) => props.name,
31
+ disabled: ({ props }) => props.disabled
27
32
  }
28
33
  }
package/src/Tooltip.js CHANGED
@@ -18,8 +18,8 @@ export const Tooltip = {
18
18
 
19
19
  title: {
20
20
  fontWeight: 500,
21
- color: 'gray12'
22
- // text: 'And tooltip is coming'
21
+ color: 'gray12',
22
+ text: 'And tooltip is coming'
23
23
  },
24
24
  p: {
25
25
  fontSize: 'Z2',
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { merge, isArray, overwrite } from '@domql/utils'
3
+ import { merge, isArray } from '@domql/utils'
4
4
  import { getSystemTheme } from './Theme'
5
5
 
6
6
  const keySetters = {