@symbo.ls/input 2.11.523 → 3.0.1

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/Checkbox.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  export const Checkbox = {
4
- extend: 'Focusable',
4
+ extends: 'Focusable',
5
5
 
6
6
  tag: 'label',
7
7
 
@@ -41,7 +41,7 @@ export const Checkbox = {
41
41
  }
42
42
 
43
43
  export const CheckboxHgroup = {
44
- extend: 'Flex',
44
+ extends: 'Flex',
45
45
  tag: 'label',
46
46
 
47
47
  props: {
package/Input.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  export const Input = {
4
- extend: ['Focusable'],
4
+ extends: ['Focusable'],
5
5
 
6
6
  tag: 'input',
7
7
 
package/NumberInput.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  export const NumberInput = {
4
- extend: ['Flex', 'Input'],
4
+ extends: ['Flex', 'Input'],
5
5
 
6
6
  props: {
7
7
  type: 'number',
package/Radio.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  export const Radio = {
4
- extend: 'Checkbox',
4
+ extends: 'Checkbox',
5
5
 
6
6
  Input: {
7
7
  type: 'radio',
@@ -25,7 +25,7 @@ export const Radio = {
25
25
  }
26
26
 
27
27
  export const RadioHgroup = {
28
- extend: 'CheckboxHgroup',
28
+ extends: 'CheckboxHgroup',
29
29
  Checkbox: null,
30
30
  Radio: {}
31
31
  }
package/Textarea.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  export const Textarea = {
4
4
  tag: 'textarea',
5
- extend: ['Input', 'Flex'],
5
+ extends: ['Input', 'Flex'],
6
6
 
7
7
  props: {
8
8
  variant: 'outlined',
@@ -43,8 +43,7 @@ export const Textarea = {
43
43
  }
44
44
 
45
45
  export const TextareaWithButton = {
46
- extend: 'Flex',
47
- props: { gap: 'Y2' },
46
+ props: { display: 'flex', gap: 'Y2' },
48
47
  Textarea: {
49
48
  height: 'C2+W',
50
49
  minWidth: 'H',
package/Toggle.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  export const Toggle = {
4
- extend: 'Checkbox',
4
+ extends: 'Checkbox',
5
5
 
6
6
  Input: {
7
7
  ':checked + div': {
@@ -30,7 +30,7 @@ export const Toggle = {
30
30
  }
31
31
 
32
32
  export const ToggleHgroup = {
33
- extend: 'CheckboxHgroup',
33
+ extends: 'CheckboxHgroup',
34
34
  Checkbox: null,
35
35
  Toggle: {}
36
36
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@symbo.ls/input",
3
- "version": "2.11.523",
3
+ "version": "3.0.1",
4
4
  "main": "index.js",
5
5
  "source": "index.js",
6
6
  "license": "MIT",
7
- "gitHead": "08e5b257605d1475f4628529f8e35373d87eb369",
7
+ "gitHead": "a4e7f586f7e4f60bd7b6a8388bdacc3ae1879433",
8
8
  "dependencies": {
9
9
  "@domql/utils": "^2.5.0",
10
- "@symbo.ls/atoms": "^2.11.523"
10
+ "@symbo.ls/atoms": "^3.0.1"
11
11
  }
12
12
  }