x-ui-design 0.5.47 → 0.5.48
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/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/components/Select/Select.tsx +2 -1
- package/package.json +1 -1
- package/src/app/page.tsx +1 -8
package/dist/index.esm.js
CHANGED
|
@@ -3779,7 +3779,8 @@ const SelectComponent = ({
|
|
|
3779
3779
|
style: {
|
|
3780
3780
|
minWidth: showSearch && !searchQuery.length ? 1 : 'auto',
|
|
3781
3781
|
display: 'ruby',
|
|
3782
|
-
textAlign: 'center'
|
|
3782
|
+
textAlign: 'center',
|
|
3783
|
+
userSelect: showSearch ? 'text' : 'auto'
|
|
3783
3784
|
}
|
|
3784
3785
|
}, showSearch ? {
|
|
3785
3786
|
contentEditable: 'plaintext-only'
|