@arkyn/components 1.3.8 → 1.3.9
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/bundle.js +704 -697
- package/dist/bundle.umd.cjs +11 -11
- package/dist/components/Input/CurrencyInput/index.js +2 -2
- package/dist/components/Input/SimpleInput/index.js +1 -1
- package/dist/components/Select/index.d.ts.map +1 -1
- package/dist/components/Select/index.js +1 -1
- package/package.json +1 -1
- package/src/components/Input/CurrencyInput/index.tsx +3 -3
- package/src/components/Input/SimpleInput/index.tsx +2 -2
- package/src/components/Select/index.tsx +7 -2
@@ -109,14 +109,19 @@ function Select(props: SelectProps) {
|
|
109
109
|
readOnly={!isSearchable}
|
110
110
|
value={searchValue || ""}
|
111
111
|
placeholder={currentLabel || placeholder}
|
112
|
-
ref={ref}
|
113
112
|
onFocus={handleFocus}
|
114
113
|
onBlur={() => setSearchValue("")}
|
115
114
|
{...rest}
|
116
115
|
onChange={(e) => setSearchValue(e.target.value)}
|
117
116
|
/>
|
118
117
|
|
119
|
-
<input
|
118
|
+
<input
|
119
|
+
type="hidden"
|
120
|
+
ref={ref}
|
121
|
+
name={name}
|
122
|
+
value={currentValue || ""}
|
123
|
+
readOnly
|
124
|
+
/>
|
120
125
|
|
121
126
|
{isFocused && (
|
122
127
|
<ul
|