@symbo.ls/input 2.11.181 → 2.11.186

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/Radio.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { Checkbox, CheckboxTitleParagraph } from './CheckBox'
3
+ import { Checkbox, CheckboxTitleParagraph } from './Checkbox'
4
4
 
5
5
  export const Radio = {
6
6
  extend: Checkbox,
@@ -3,7 +3,7 @@
3
3
  import { Flex } from '@symbo.ls/atoms'
4
4
  import { Input } from './Input'
5
5
 
6
- export const TextArea = {
6
+ export const Textarea = {
7
7
  tag: 'textarea',
8
8
  extend: [Input, Flex],
9
9
  props: {
@@ -21,7 +21,7 @@ export const TextArea = {
21
21
  }
22
22
  }
23
23
 
24
- export const TextAreaWithTitle = {
24
+ export const TextareaWithTitle = {
25
25
  extend: Flex,
26
26
  props: {
27
27
  flow: 'column',
@@ -37,13 +37,13 @@ export const TextAreaWithTitle = {
37
37
  color: 'gray4'
38
38
  }
39
39
  },
40
- TextArea: {}
40
+ Textarea: {}
41
41
  }
42
42
 
43
- export const TextAreaWithButton = {
43
+ export const TextareaWithButton = {
44
44
  extend: Flex,
45
45
  props: { gap: 'Y2' },
46
- TextArea: {
46
+ Textarea: {
47
47
  height: '52px',
48
48
  padding: 'A',
49
49
  fontSize: 'Z1',
package/Toggle.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { Checkbox, CheckboxTitleParagraph } from './CheckBox'
3
+ import { Checkbox, CheckboxTitleParagraph } from './Checkbox'
4
4
 
5
5
  export const Toggle = {
6
6
  extend: Checkbox,
package/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  export * from './Input'
4
4
  export * from './Number'
5
- export * from './CheckBox'
5
+ export * from './Checkbox'
6
6
  export * from './Radio'
7
7
  export * from './Toggle'
8
- export * from './TextArea'
8
+ export * from './Textarea'
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@symbo.ls/input",
3
- "version": "2.11.181",
3
+ "version": "2.11.186",
4
4
  "main": "index.js",
5
5
  "source": "index.js",
6
6
  "license": "MIT",
7
- "gitHead": "2ceae888eceede649b8dc39de729d473222d06fa",
7
+ "gitHead": "051bda58f504d4822f46d5ad0f914f0a6069f291",
8
8
  "dependencies": {
9
9
  "@domql/utils": "latest",
10
10
  "@symbo.ls/atoms": "latest"