@symbo.ls/input 2.11.180 → 2.11.182
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/{TextArea.js → Textarea.js} +5 -5
- package/index.js +1 -1
- package/package.json +2 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { Flex } from '@symbo.ls/atoms'
|
|
4
4
|
import { Input } from './Input'
|
|
5
5
|
|
|
6
|
-
export const
|
|
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
|
|
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
|
-
|
|
40
|
+
Textarea: {}
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
export const
|
|
43
|
+
export const TextareaWithButton = {
|
|
44
44
|
extend: Flex,
|
|
45
45
|
props: { gap: 'Y2' },
|
|
46
|
-
|
|
46
|
+
Textarea: {
|
|
47
47
|
height: '52px',
|
|
48
48
|
padding: 'A',
|
|
49
49
|
fontSize: 'Z1',
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/input",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.182",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"source": "index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"gitHead": "
|
|
7
|
+
"gitHead": "6551b11621a38e36143875102cad4d66a4fae3df",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@domql/utils": "latest",
|
|
10
10
|
"@symbo.ls/atoms": "latest"
|