@idealyst/components 1.2.39 → 1.2.40

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.39",
3
+ "version": "1.2.40",
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.39",
59
+ "@idealyst/theme": "^1.2.40",
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.39",
109
+ "@idealyst/theme": "^1.2.40",
110
110
  "@idealyst/tooling": "^1.2.30",
111
111
  "@mdi/react": "^1.6.1",
112
112
  "@types/react": "^19.1.0",
@@ -169,7 +169,6 @@ const Dialog = forwardRef<HTMLDivElement, DialogProps>(({
169
169
  role="dialog"
170
170
  aria-modal="true"
171
171
  aria-labelledby={title ? titleId : undefined}
172
- tabIndex={-1}
173
172
  onClick={(e) => e.stopPropagation()}
174
173
  >
175
174
  {(title || showCloseButton) && (
@@ -33,7 +33,7 @@ export const selectStyles = defineStyle('Select', (theme: Theme) => ({
33
33
  container: (_props: SelectDynamicProps) => ({
34
34
  position: 'relative' as const,
35
35
  _web: {
36
- display: 'inline-flex',
36
+ display: 'flex',
37
37
  flexDirection: 'column',
38
38
  },
39
39
  variants: {
@@ -82,6 +82,7 @@ export const selectStyles = defineStyle('Select', (theme: Theme) => ({
82
82
  },
83
83
  _web: {
84
84
  display: 'flex',
85
+ width: '100%',
85
86
  boxSizing: 'border-box',
86
87
  cursor: disabled ? 'not-allowed' : 'pointer',
87
88
  border: `1px solid ${borderColor}`,