smbls 0.15.47 → 0.15.49

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.49",
7
7
  "repository": "https://github.com/symbo-ls/smbls",
8
8
  "main": "src/index.js",
9
9
  "files": [
package/src/Select.js CHANGED
@@ -1,6 +1,9 @@
1
1
  'use strict'
2
2
 
3
+ import { Focusable } from './atoms'
4
+
3
5
  export const Select = {
6
+ extend: Focusable,
4
7
  tag: 'select',
5
8
 
6
9
  props: {
@@ -24,5 +27,10 @@ export const Select = {
24
27
  selected: ({ props }) => props.selected,
25
28
  disabled: ({ props }) => props.disabled
26
29
  }
30
+ },
31
+
32
+ attr: {
33
+ name: ({ props }) => props.name,
34
+ disabled: ({ props }) => props.disabled
27
35
  }
28
36
  }
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 = {