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