haya-select 1.0.39 → 1.0.41
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 +1 -1
- package/src/select/index.jsx +6 -4
- package/src/select/option.jsx +1 -1
package/package.json
CHANGED
package/src/select/index.jsx
CHANGED
|
@@ -665,10 +665,12 @@ export default memo(shapeComponent(class HayaSelect extends ShapeComponent {
|
|
|
665
665
|
|
|
666
666
|
return (
|
|
667
667
|
<View
|
|
668
|
-
dataSet={{
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
668
|
+
dataSet={{
|
|
669
|
+
class: "option-presentation",
|
|
670
|
+
toggleIcon: toggleOption?.icon,
|
|
671
|
+
toggleValue: toggleOption?.value,
|
|
672
|
+
value: currentValue.value
|
|
673
|
+
}}
|
|
672
674
|
>
|
|
673
675
|
{toggleOptions && !(currentValue.value in toggled) &&
|
|
674
676
|
<i className="fa fa-fw" />
|
package/src/select/option.jsx
CHANGED