@idealyst/components 1.2.45 → 1.2.46
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idealyst/components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.46",
|
|
4
4
|
"description": "Shared component library for React and React Native",
|
|
5
5
|
"documentation": "https://github.com/IdealystIO/idealyst-framework/tree/main/packages/components#readme",
|
|
6
6
|
"readme": "README.md",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"publish:npm": "npm publish"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@idealyst/theme": "^1.2.
|
|
59
|
+
"@idealyst/theme": "^1.2.46",
|
|
60
60
|
"@mdi/js": ">=7.0.0",
|
|
61
61
|
"@mdi/react": ">=1.0.0",
|
|
62
62
|
"@react-native-vector-icons/common": ">=12.0.0",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
109
|
"@idealyst/blur": "^1.2.40",
|
|
110
|
-
"@idealyst/theme": "^1.2.
|
|
110
|
+
"@idealyst/theme": "^1.2.46",
|
|
111
111
|
"@idealyst/tooling": "^1.2.30",
|
|
112
112
|
"@mdi/react": "^1.6.1",
|
|
113
113
|
"@types/react": "^19.1.0",
|
|
@@ -68,6 +68,7 @@ export const textAreaStyles = defineStyle('TextArea', (theme: Theme) => ({
|
|
|
68
68
|
|
|
69
69
|
textareaContainer: (_props: TextAreaVariants) => ({
|
|
70
70
|
position: 'relative' as const,
|
|
71
|
+
width: '100%',
|
|
71
72
|
borderWidth: 1,
|
|
72
73
|
borderColor: theme.colors.border.primary,
|
|
73
74
|
borderRadius: theme.radii.md,
|
|
@@ -80,6 +81,7 @@ export const textAreaStyles = defineStyle('TextArea', (theme: Theme) => ({
|
|
|
80
81
|
},
|
|
81
82
|
},
|
|
82
83
|
_web: {
|
|
84
|
+
boxSizing: 'border-box',
|
|
83
85
|
border: `1px solid ${theme.colors.border.primary}`,
|
|
84
86
|
},
|
|
85
87
|
}),
|
|
@@ -112,9 +114,13 @@ export const textAreaStyles = defineStyle('TextArea', (theme: Theme) => ({
|
|
|
112
114
|
},
|
|
113
115
|
},
|
|
114
116
|
_web: {
|
|
117
|
+
display: 'block',
|
|
118
|
+
width: '100%',
|
|
115
119
|
fontFamily: 'inherit',
|
|
116
120
|
outline: 'none',
|
|
117
121
|
border: 'none',
|
|
122
|
+
borderWidth: 0,
|
|
123
|
+
background: 'transparent',
|
|
118
124
|
transition: 'border-color 0.2s ease, box-shadow 0.2s ease',
|
|
119
125
|
boxSizing: 'border-box',
|
|
120
126
|
overflowY: 'hidden',
|