@basic-ui/material 1.0.0-alpha.21 → 1.0.0-alpha.22
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": "@basic-ui/material",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.22",
|
|
4
4
|
"description": "Accessible React Components used as building blocks for UI patterns",
|
|
5
5
|
"author": "Lucas Terra <lucasterra7@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"react": "^16.14.0 || ^17.0.0 || ^18.0.0",
|
|
53
53
|
"react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "5c774973cefe58b9663b4c06051d9c0f6cb78ea9"
|
|
56
56
|
}
|
package/src/Select/Select.tsx
CHANGED
|
@@ -139,7 +139,7 @@ export const Select = forwardRef<
|
|
|
139
139
|
return (
|
|
140
140
|
<SelectProvider value={{ native, onSelect: handleOnChange, value }}>
|
|
141
141
|
<Box display="inline-flex" flexDirection="column" width="100%">
|
|
142
|
-
{!native && <input type="hidden" name={name} />}
|
|
142
|
+
{!native && <input type="hidden" name={name} value={value} />}
|
|
143
143
|
<Container
|
|
144
144
|
theme={theme}
|
|
145
145
|
label={label}
|