@apexcura/ui-components 0.0.14-Beta0 → 0.0.14-Beta1
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -182,7 +182,7 @@ var import_react5 = __toESM(require("react"));
|
|
|
182
182
|
var import_antd5 = require("antd");
|
|
183
183
|
var SelectElement = (props) => {
|
|
184
184
|
const handleChange = (value) => {
|
|
185
|
-
console.log("
|
|
185
|
+
console.log("++=====", typeof value);
|
|
186
186
|
if (props.onChange) {
|
|
187
187
|
if (typeof value === "string") {
|
|
188
188
|
const filterOption2 = props.options && props.options.find((eachOption) => eachOption.value === value);
|
package/dist/index.mjs
CHANGED
|
@@ -125,7 +125,7 @@ import React5 from "react";
|
|
|
125
125
|
import { Select } from "antd";
|
|
126
126
|
var SelectElement = (props) => {
|
|
127
127
|
const handleChange = (value) => {
|
|
128
|
-
console.log("
|
|
128
|
+
console.log("++=====", typeof value);
|
|
129
129
|
if (props.onChange) {
|
|
130
130
|
if (typeof value === "string") {
|
|
131
131
|
const filterOption2 = props.options && props.options.find((eachOption) => eachOption.value === value);
|