@veracity/vui 2.27.0 → 2.27.1
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/cjs/select/select.d.ts.map +1 -1
- package/dist/cjs/select/select.js +1 -1
- package/dist/cjs/select/select.js.map +1 -1
- package/dist/esm/select/select.d.ts.map +1 -1
- package/dist/esm/select/select.js +1 -1
- package/dist/esm/select/select.js.map +1 -1
- package/dist/tsconfig.legacy.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/select/select.tsx +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veracity/vui",
|
|
3
|
-
"version": "2.27.
|
|
3
|
+
"version": "2.27.1",
|
|
4
4
|
"description": "Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"main": "./dist/cjs/index.js",
|
package/src/select/select.tsx
CHANGED
|
@@ -101,7 +101,7 @@ export function Select(props: SelectProps) {
|
|
|
101
101
|
{selectButton ?? <SelectButton {...selectButtonProps} />}
|
|
102
102
|
<SelectContent overflow="hidden">
|
|
103
103
|
{showOptionsFilter && (
|
|
104
|
-
<Box
|
|
104
|
+
<Box>
|
|
105
105
|
<Input
|
|
106
106
|
iconLeft="falSearch"
|
|
107
107
|
id={id}
|
|
@@ -111,6 +111,7 @@ export function Select(props: SelectProps) {
|
|
|
111
111
|
placeholder="Filter…"
|
|
112
112
|
size={size}
|
|
113
113
|
value={query}
|
|
114
|
+
w="100%"
|
|
114
115
|
/>
|
|
115
116
|
</Box>
|
|
116
117
|
)}
|