@oliasoft-open-source/react-ui-library 4.15.1-beta-1 → 4.15.1-beta-2

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 CHANGED
@@ -21482,24 +21482,31 @@ const Select = (props) => {
21482
21482
  /* @__PURE__ */ jsx("div", { children: error2 })
21483
21483
  ] }) : error2;
21484
21484
  const onChangeSelectedValue = (evt, selectedOptions2) => {
21485
+ console.log(1);
21485
21486
  if (deprecatedEventHandler) {
21487
+ console.log(2);
21486
21488
  const newSelectedOptions = multi ? selectedOptions2.map(
21487
21489
  (o) => simpleInputs ? o.value : o
21488
21490
  ) : simpleInputs ? selectedOptions2.value : selectedOptions2;
21489
21491
  if (newSelectedOptions) {
21492
+ console.log(3);
21490
21493
  onChange(newSelectedOptions);
21491
21494
  }
21492
21495
  } else {
21496
+ console.log(4);
21493
21497
  const isSyntheticEvent = !(evt instanceof Event);
21494
21498
  const value = multi ? selectedOptions2 : selectedOptions2.value;
21495
21499
  if (isSyntheticEvent) {
21500
+ console.log(5);
21496
21501
  evt.target.name = name2;
21497
21502
  evt.target.value = value;
21498
21503
  if (!multi) {
21499
21504
  evt.target.label = selectedOptions2.label;
21505
+ console.log(6);
21500
21506
  }
21501
21507
  onChange(evt);
21502
21508
  } else {
21509
+ console.log(7);
21503
21510
  const customEvent = {
21504
21511
  ...evt,
21505
21512
  target: {