@apexcura/ui-components 0.0.13-Beta98 → 0.0.13-Beta99
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.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -185,6 +185,7 @@ var SelectElement = (props) => {
|
|
|
185
185
|
console.log("sigleselectvalue----", value);
|
|
186
186
|
if (props.onChange) {
|
|
187
187
|
const filterOption2 = props.options && props.options.filter((eachOption) => eachOption.value === value);
|
|
188
|
+
console.log(filterOption2);
|
|
188
189
|
props.onChange(filterOption2);
|
|
189
190
|
}
|
|
190
191
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -128,6 +128,7 @@ var SelectElement = (props) => {
|
|
|
128
128
|
console.log("sigleselectvalue----", value);
|
|
129
129
|
if (props.onChange) {
|
|
130
130
|
const filterOption2 = props.options && props.options.filter((eachOption) => eachOption.value === value);
|
|
131
|
+
console.log(filterOption2);
|
|
131
132
|
props.onChange(filterOption2);
|
|
132
133
|
}
|
|
133
134
|
};
|