@idealyst/components 1.2.17 → 1.2.19
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.19",
|
|
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.19",
|
|
60
60
|
"@mdi/js": ">=7.0.0",
|
|
61
61
|
"@mdi/react": ">=1.0.0",
|
|
62
62
|
"@react-native-vector-icons/common": ">=12.0.0",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@idealyst/theme": "^1.2.
|
|
109
|
+
"@idealyst/theme": "^1.2.19",
|
|
110
110
|
"@idealyst/tooling": "^1.2.4",
|
|
111
111
|
"@mdi/react": "^1.6.1",
|
|
112
112
|
"@types/react": "^19.1.0",
|
|
@@ -116,6 +116,7 @@ export const inputStyles = defineStyle('Input', (theme: Theme) => ({
|
|
|
116
116
|
flexShrink: 0,
|
|
117
117
|
variants: {
|
|
118
118
|
size: {
|
|
119
|
+
width: theme.sizes.$input.iconSize,
|
|
119
120
|
marginRight: theme.sizes.$input.iconMargin,
|
|
120
121
|
},
|
|
121
122
|
},
|
|
@@ -128,6 +129,7 @@ export const inputStyles = defineStyle('Input', (theme: Theme) => ({
|
|
|
128
129
|
flexShrink: 0,
|
|
129
130
|
variants: {
|
|
130
131
|
size: {
|
|
132
|
+
width: theme.sizes.$input.iconSize,
|
|
131
133
|
marginLeft: theme.sizes.$input.iconMargin,
|
|
132
134
|
},
|
|
133
135
|
},
|
package/src/View/View.web.tsx
CHANGED
|
@@ -118,8 +118,7 @@ const View = forwardRef<HTMLDivElement, ViewProps>(({
|
|
|
118
118
|
<div
|
|
119
119
|
{...webProps}
|
|
120
120
|
style={{
|
|
121
|
-
// Critical:
|
|
122
|
-
display: 'block',
|
|
121
|
+
// Critical: position/overflow must be enforced for scrolling
|
|
123
122
|
position: 'absolute',
|
|
124
123
|
inset: 0,
|
|
125
124
|
overflow: 'auto',
|