ywana-core8 0.0.523 → 0.0.524
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/textfield.js +1 -1
package/package.json
CHANGED
package/src/html/textfield.js
CHANGED
@@ -168,7 +168,7 @@ export const DropDown = (props) => {
|
|
168
168
|
if (canShow) {
|
169
169
|
const filterActive = predictive === true && label && label.length > 0
|
170
170
|
const items = filterActive ? options.filter(option => option.label.toUpperCase().indexOf(label.toUpperCase()) >= 0) : options
|
171
|
-
const lis = items.map(option => <li key={option.value} value={option.value}>{option.label}</li>)
|
171
|
+
const lis = items.map(option => <li key={option.value} value={option.value}><Text>{option.label}</Text></li>)
|
172
172
|
return <menu><ul onMouseDown={select}>{lis}</ul></menu>
|
173
173
|
} else {
|
174
174
|
return null
|