@apexcura/ui-components 0.0.8-Beta3 → 0.0.8-Beta4
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 +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -304,6 +304,7 @@ var filterOption = (input, option) => (option?.label ?? "").toLowerCase().includ
|
|
|
304
304
|
var handleChange = () => {
|
|
305
305
|
};
|
|
306
306
|
var SingleSelectElement = (props) => {
|
|
307
|
+
console.log("passedprops.................", props.options);
|
|
307
308
|
return /* @__PURE__ */ import_react10.default.createElement(
|
|
308
309
|
import_antd8.Select,
|
|
309
310
|
{
|
|
@@ -313,7 +314,7 @@ var SingleSelectElement = (props) => {
|
|
|
313
314
|
onChange: handleChange,
|
|
314
315
|
onSearch,
|
|
315
316
|
filterOption,
|
|
316
|
-
options:
|
|
317
|
+
options: props.options
|
|
317
318
|
}
|
|
318
319
|
);
|
|
319
320
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -258,6 +258,7 @@ var filterOption = (input, option) => (option?.label ?? "").toLowerCase().includ
|
|
|
258
258
|
var handleChange = () => {
|
|
259
259
|
};
|
|
260
260
|
var SingleSelectElement = (props) => {
|
|
261
|
+
console.log("passedprops.................", props.options);
|
|
261
262
|
return /* @__PURE__ */ React9.createElement(
|
|
262
263
|
Select2,
|
|
263
264
|
{
|
|
@@ -267,7 +268,7 @@ var SingleSelectElement = (props) => {
|
|
|
267
268
|
onChange: handleChange,
|
|
268
269
|
onSearch,
|
|
269
270
|
filterOption,
|
|
270
|
-
options:
|
|
271
|
+
options: props.options
|
|
271
272
|
}
|
|
272
273
|
);
|
|
273
274
|
};
|